diff --git a/.github/labeler.yml b/.github/labeler.yml index 3eff6854081..18a23a7085d 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -141,6 +141,8 @@ "Category: Core - API - App Commands Package": # Source - redbot/core/app_commands/* + # Docs + - docs/framework_app_commands.rst # Tests - tests/core/test_app_commands.py "Category: Core - API - Commands Package": diff --git a/.github/workflows/lint_python.yaml b/.github/workflows/lint_python.yaml index 1cfa71aa8b3..55dcaacfcfd 100644 --- a/.github/workflows/lint_python.yaml +++ b/.github/workflows/lint_python.yaml @@ -20,7 +20,11 @@ jobs: - uses: actions/setup-python@v4 with: python-version: "3.8" - - run: "python -m pip install git+https://github.com/pycqa/pyflakes@1911c20#egg=pyflakes git+https://github.com/pycqa/pycodestyle@d219c68#egg=pycodestyle git+https://github.com/pycqa/flake8@3.7.9#egg=flake8" + - run: > + python -m pip install + 'pyflakes @ https://github.com/pycqa/pyflakes/tarball/1911c20' + 'pycodestyle @ https://github.com/pycqa/pycodestyle/tarball/d219c68' + 'flake8 @ https://github.com/pycqa/flake8/tarball/3.7.9' name: Install Flake8 - run: "python -m flake8 . --count --select=E9,F7,F82 --show-source" name: Flake8 Linting diff --git a/CHANGES.rst b/CHANGES.rst index 853ac03a8cd..59a9488e284 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,139 @@ .. Red changelogs +Redbot 3.5.10 (2024-07-10) +========================== + +| Thanks to all these amazing people that contributed to this release: +| :ghuser:`aikaterna`, :ghuser:`Flame442`, :ghuser:`Jackenmen`, :ghuser:`Kowlin`, :ghuser:`SeaswimmerTheFsh`, :ghuser:`TrustyJAID`, :ghuser:`yamikaitou` + +Read before updating +-------------------- + +#. This release fixes a security issue in one of the APIs we provide for 3rd-party cog creators. See `Security changelog below ` for more information. +#. Following operating systems are no longer supported as they have already reached their end of life: + + - CentOS 7 + - CentOS Stream 8 + - Fedora 38 + - versions of RHEL/Alma Linux/Oracle Linux/Rocky Linux 8 older than 8.8 + - versions of RHEL/Alma Linux/Oracle Linux/Rocky Linux 9 older than 9.2 + +#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point): + + We've updated our default application.yml file and you should update your instance's ``application.yml`` accordingly. + More specifically, we switched from using the built-in YT source to YT source plugin. + `Download Red 3.5.10's default application.yml file `__ + +End-user changelog +------------------ + +.. _important-3510-1: + +Security +******** + +- **Core** - Fixed incorrect authorization in one of the utilities provided to 3rd-party cog creators (`commands.can_manage_channel()`) resulting in anyone being authorized to run a command using it, if the command has no other permission controls. None of the core commands or core cogs are affected. The maintainers of the project are not aware of any public 3rd-party cog utilizing this API at the time of writing this changelog. `Full security advisory can be found on our GitHub `__. + +Additions +********* + +- **Core - Bot Commands** - Added ``[p]set bot banner`` command for setting the bot's banner (:issue:`6321`, :issue:`6401`) + +Changes +******* + +- **Core** - Red's ``--team-members-are-owners`` flag now only considers Team Owner, Admins, and Developers as bot owners (:issue:`6401`) +- **Core - Dependencies** - Red's dependencies have been bumped (:issue:`6402`) +- **Cogs - Audio** - Updated the cog to configure managed Lavalink node to use YT source plugin instead of the built-in, no longer supported, implementation (:issue:`6373`) +- **Cogs - Filter** - The cog now checks poll contents and attachment alt text for filtered words (:issue:`6401`) + +Fixes +***** + +- **Core** - Fixed command autocompletion not showing any proper result (error message) when bot's global checks (channel/server ignores, allowlist/blocklist) do not pass (:issue:`6374`, :issue:`6375`) +- **Cogs - Audio** - Fixed one of the recent YT playback issues (:issue:`6373`) + +Developer changes +----------------- + +Changes +******* + +- |cool| **Core - Dependencies** - Bumped ``discord.py`` to version 2.4.0 (:issue:`6401`) + +Documentation changes +--------------------- + +Additions +********* + +- Added Ubuntu 24.04 install guide (:issue:`6364`) + +Changes +******* + +- Bumped Python version used by Arch Linux, RHEL 8, and RHEL 9 install guides to 3.11 (:issue:`6386`) +- Removed a mention of the Atom editor from the list of the recommended editor now that it's discontinued (:issue:`6388`) + +Removals +******** + +- Removed all mentions of pyenv now that the last OS using it (CentOS 7) is no longer supported (:issue:`6386`) + +Fixes +***** + +- Fixed Java instructions in macOS install guide (:issue:`6368`) +- Fixed list of required ``info.json`` keys from the `guide_cog_creators` document (:issue:`6382`) + +---- + +Redbot 3.5.9 (2024-04-21) +========================= + +| Thanks to all these amazing people that contributed to this release: +| :ghuser:`aikaterna`, :ghuser:`giplgwm`, :ghuser:`Jackenmen`, :ghuser:`Kuro-Rui`, :ghuser:`Kowlin`, :ghuser:`palmtree5`, :ghuser:`TrustyJAID`, :ghuser:`Zephyrkul` + +Read before updating +-------------------- + +#. 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.5.9 uses a new Lavalink jar that you will need to manually update from `our GitHub `__. + +End-user changelog +------------------ + +Fixes +***** + +- **Core** - Fixed inaccuracies in error messages shown when the user passes a time duration outside accepted range (:issue:`6357`) +- **Core** - Commands that ask the user to "Type ``more`` to continue" when they return long output will now typically wait for 60 seconds rather than just 15 (:issue:`6346`, :issue:`6352`) +- |cool| **Cogs - Audio** - Resolved recent issues where the player would be stuck at 0:00 on some tracks (:issue:`6358`) +- **Cogs - Mutes** - The Mutes cog will no longer erroneously accept very large values (i.e. hundreds of years) for mute durations (:issue:`6353`) +- **Cogs - Mutes** - To avoid ambiguity, the Mutes cog will now parse the time only when it's placed at the beginning, the end, or directly after ``t=``/``time=`` prefix in the mute command arguments (:issue:`6274`, :issue:`6349`) +- **Cogs - Streams** - The schedule announcements for YT streams will now use relative Discord timestamps (:issue:`6257`, :issue:`6264`) + +Developer changelog +------------------- + +Changes +******* + +- **Core - Commands Package** - Functions and converters for parsing text into `datetime.timedelta` or `dateutil.relativedelta.relativedelta` in the `redbot.core.commands.converter` package now support negative values when ``minimum`` parameter is set accordingly (:issue:`6349`) +- **Core - Utils Package** - The `redbot.core.utils.chat_formatting.humanize_timedelta()` function now allows specifying the maximum number of different units that will be present in the final string with the ``maximum_units`` parameter (:issue:`6350`) +- **Core - Utils Package** - The `redbot.core.utils.chat_formatting.humanize_timedelta()` function now supports formatting negative `datetime.timedelta` instances. New ``negative_format`` parameter was added to allow specifying a different way of formatting negative `datetime.timedelta` instances (:issue:`6350`) + +Documentation changes +--------------------- + +Fixes +***** + +- Updated links to the Lavalink repository (:issue:`6356`) + +---- + Redbot 3.5.8 (2024-04-01) ========================= diff --git a/docs/autostart_systemd.rst b/docs/autostart_systemd.rst index 45e2b018d26..51ef7e4d50c 100644 --- a/docs/autostart_systemd.rst +++ b/docs/autostart_systemd.rst @@ -28,10 +28,6 @@ Next, your python :code:`path` can be fetched with the following commands: $ source ~/redenv/bin/activate (redenv) $ /usr/bin/which python - # If redbot is installed in a pyenv virtualenv - $ pyenv shell - (redenv) $ pyenv which python - Then create the new service file: :code:`sudo nano /etc/systemd/system/red@.service` diff --git a/docs/cog_guides/audio.rst b/docs/cog_guides/audio.rst index ffc1e2ba51f..348df22d504 100644 --- a/docs/cog_guides/audio.rst +++ b/docs/cog_guides/audio.rst @@ -17,7 +17,7 @@ find detailed docs about usage and commands. You can see additional help for any command in this guide by using ``[p]help`` with the command name, like ``[p]help playlist append``. -In this guide, you will see references to "Lavalink" or the "Lavalink.jar". `Lavalink `_ is the +In this guide, you will see references to "Lavalink" or the "Lavalink.jar". `Lavalink `_ is the Java-based audio backend we use to be able to play music through the bot. Most users will not have to worry much about Lavalink or what it is, as Audio manages this process for you by default. Advanced users can read more about Lavalink and special cases under the @@ -551,7 +551,7 @@ uses OpenJDK 17 in the managed Lavalink configuration. It can be installed by ru sudo apt install openjdk-17-jre-headless -y Otherwise, Lavalink works well with most versions of Java 11, 13, 15, 16, 17, and 18. Azul -Zulu builds are suggested, see `here `__ for more information. +Zulu builds are suggested, see `here `__ for more information. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Setting Up The Lavalink Folder @@ -583,7 +583,7 @@ the ``cd lavalink`` command in the previous section, you can run the following c .. code-block:: sh - curl https://raw.githubusercontent.com/freyacodes/Lavalink/master/LavalinkServer/application.yml.example > application.yml + curl https://raw.githubusercontent.com/lavalink-devs/Lavalink/master/LavalinkServer/application.yml.example > application.yml curl -LOz Lavalink.jar https://github.com/Cog-Creators/Lavalink-Jars/releases/latest/download/Lavalink.jar If you did it properly, the files ``Lavalink.jar`` and ``application.yml`` will show up when we run ``ls``, the Linux command diff --git a/docs/cog_guides/core.rst b/docs/cog_guides/core.rst index 71bc5113dc8..5f87e90ee2a 100644 --- a/docs/cog_guides/core.rst +++ b/docs/cog_guides/core.rst @@ -2867,7 +2867,7 @@ Supports either an attachment or an image URL. **Examples:** - ``[p]set bot avatar`` - With an image attachment, this will set the avatar. - ``[p]set bot avatar`` - Without an attachment, this will show the command help. - - ``[p]set bot avatar https://links.flaree.xyz/k95`` - Sets the avatar to the provided url. + - ``[p]set bot avatar https://avatars.githubusercontent.com/u/23690422`` - Sets the avatar to the provided url. **Arguments:** - ``[url]`` - An image url to be used as an avatar. Leave blank when uploading an attachment. @@ -2895,6 +2895,57 @@ Removes Red's avatar. **Example:** - ``[p]set bot avatar remove`` +.. _core-command-set-bot-banner: + +"""""""""""""" +set bot banner +"""""""""""""" + +.. note:: |owner-lock| + +**Syntax** + +.. code-block:: none + + [p]set bot banner [url] + +**Description** + +Sets Red's banner + +Supports either an attachment or an image URL. + +**Examples:** + - ``[p]set bot banner`` - With an image attachment, this will set the banner. + - ``[p]set bot banner`` - Without an attachment, this will show the command help. + - ``[p]set bot banner https://opengraph.githubassets.com`` - Sets the banner to the provided url. + +**Arguments:** + - ``[url]`` - An image url to be used as an banner. Leave blank when uploading an attachment. + +.. _core-command-set-bot-banner-remove: + +""""""""""""""""""""" +set bot banner remove +""""""""""""""""""""" + +.. note:: |owner-lock| + +**Syntax** + +.. code-block:: none + + [p]set bot banner remove + +.. tip:: Alias: ``set bot banner clear`` + +**Description** + +Removes Red's banner. + +**Example:** + - ``[p]set bot banner remove`` + .. _core-command-set-bot-custominfo: """""""""""""""""" diff --git a/docs/conf.py b/docs/conf.py index f964b5eeb4e..b967f299d28 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -250,7 +250,10 @@ extlinks = { "dpy_docs": (f"{dpy_docs_url}%s", None), "issue": ("https://github.com/Cog-Creators/Red-DiscordBot/issues/%s", "#%s"), - "ghuser": ("https://github.com/%s", "@%s"), + # below URL redirects to user page, if they don't have GH Sponsors set up, + # while allowing us to direct readers directly at a sponsorship opportunity, + # if they do + "ghuser": ("https://github.com/sponsors/%s", "@%s"), } # Doctest diff --git a/docs/framework_app_commands.rst b/docs/framework_app_commands.rst new file mode 100644 index 00000000000..650da9d90e4 --- /dev/null +++ b/docs/framework_app_commands.rst @@ -0,0 +1,13 @@ +.. red app_commands module documentation + +==================== +App Commands Package +==================== + +This package acts almost identically to :doc:`discord.ext.app_commands `; i.e. +all of the attributes from discord.py's are also in ours. +Some of these attributes, however, have been slightly modified, while others have been added to +extend functionalities used throughout the bot, as outlined below. + +.. autoclass:: redbot.core.app_commands.UserFeedbackCheckFailure + :members: diff --git a/docs/framework_commands.rst b/docs/framework_commands.rst index 59da090600e..fb5f41537d9 100644 --- a/docs/framework_commands.rst +++ b/docs/framework_commands.rst @@ -47,6 +47,9 @@ extend functionalities used throughout the bot, as outlined below. .. autoclass:: redbot.core.commands.DMContext +.. autoclass:: redbot.core.commands.UserFeedbackCheckFailure + :members: + .. automodule:: redbot.core.commands.requires :members: PrivilegeLevel, PermState, Requires diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 1bc9e64eb94..64379a8f704 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -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 22.04 LTS**. + you're a beginner, we recommend **Ubuntu 24.04 LTS**. For Raspberry Pi users, just install `Raspbian `_ on a micro-SD card. diff --git a/docs/guide_cog_creation.rst b/docs/guide_cog_creation.rst index bb033d5746f..2f125c17b0a 100644 --- a/docs/guide_cog_creation.rst +++ b/docs/guide_cog_creation.rst @@ -31,7 +31,7 @@ Open a terminal or command prompt and type one of the following .. note:: To install the development version, replace ``Red-DiscordBot`` in the above commands with the - link below. **The development version of the bot contains experimental changes. It is not + value below. **The development version of the bot contains experimental changes. It is not intended for normal users.** We will not support anyone using the development version in any support channels. Using the development version may break third party cogs and not all core commands may work. Downgrading to stable after installing the development version may cause @@ -40,7 +40,7 @@ Open a terminal or command prompt and type one of the following .. code-block:: none - git+https://github.com/Cog-Creators/Red-DiscordBot@V3/develop#egg=Red-DiscordBot + Red-DiscordBot @ https://github.com/Cog-Creators/Red-DiscordBot/tarball/V3/develop (Windows users may need to use :code:`py -3.8` or :code:`python` instead of :code:`python3.8`) @@ -55,7 +55,7 @@ the purposes of this example, we'll call this :code:`mycog`). In this folder, create three files: :code:`__init__.py`, :code:`mycog.py`, and :code:`info.json`. Open the folder in a text editor or IDE (examples include `Sublime Text 3 `_, -`Visual Studio Code `_, `Atom `_, and +`Visual Studio Code `_, and `PyCharm `_). .. attention:: diff --git a/docs/guide_cog_creators.rst b/docs/guide_cog_creators.rst index b4b0674e12b..0ca875b7e8e 100644 --- a/docs/guide_cog_creators.rst +++ b/docs/guide_cog_creators.rst @@ -41,17 +41,16 @@ Any Cog Creator that does not follow these requirements will have their repo rem - Repo-wide ``info.json`` file with the keys - ``author`` - - ``name`` - ``short`` - ``description`` - Cog ``info.json`` files with the keys - ``author`` - - ``name`` - ``short`` - ``requirements`` (if applicable) - ``description`` + - ``min_python_version`` (if applicable) See `info-json-format` for more information on how to set up ``info.json`` files. diff --git a/docs/index.rst b/docs/index.rst index 33911469b7a..e4423f0ec30 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -71,6 +71,7 @@ Welcome to Red - Discord Bot's documentation! framework_bot framework_checks framework_commands + framework_app_commands framework_config framework_datamanager framework_events diff --git a/docs/install_guides/_includes/_install-pyenv-and-setup-path.rst b/docs/install_guides/_includes/_install-pyenv-and-setup-path.rst deleted file mode 100644 index b3f0f4d38b4..00000000000 --- a/docs/install_guides/_includes/_install-pyenv-and-setup-path.rst +++ /dev/null @@ -1,19 +0,0 @@ -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: diff --git a/docs/install_guides/_includes/create-env-with-pyenv-virtualenv.rst b/docs/install_guides/_includes/create-env-with-pyenv-virtualenv.rst deleted file mode 100644 index 3f7b9cb8679..00000000000 --- a/docs/install_guides/_includes/create-env-with-pyenv-virtualenv.rst +++ /dev/null @@ -1,44 +0,0 @@ ------------------------------- -Creating a Virtual Environment ------------------------------- - -.. tip:: - - If you want to learn more about virtual environments, see page: `about-venvs` - -We require installing Red into a virtual environment. Don't be scared, it's very -straightforward. - -************************** -Using ``pyenv virtualenv`` -************************** - -Using ``pyenv virtualenv`` saves you the headache of remembering where you installed your virtual -environments. This option is only available if you installed Python with pyenv. - -First, ensure your pyenv interpreter is set to python 3.8.1 or greater with the following command: - -.. prompt:: bash - - pyenv version - -Now, create a virtual environment with the following command: - -.. prompt:: bash - - pyenv virtualenv - -Replace ```` 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 - -.. 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. diff --git a/docs/install_guides/_includes/install-guide-rhel8-derivatives.rst b/docs/install_guides/_includes/install-guide-rhel8-derivatives.rst index acab1afa171..92bbbd50c82 100644 --- a/docs/install_guides/_includes/install-guide-rhel8-derivatives.rst +++ b/docs/install_guides/_includes/install-guide-rhel8-derivatives.rst @@ -6,16 +6,14 @@ Installing the pre-requirements ------------------------------- -Red Hat Enterprise Linux (RHEL) 8.6-8.x and its derivatives have all required packages available in official repositories. +Red Hat Enterprise Linux (RHEL) 8.8-8.x and its derivatives have all required packages available in official repositories. Install them with dnf: -.. TODO: Use Python 3.11 once RHEL 8.6 goes EOL in 2024. - .. prompt:: bash sudo dnf -y update sudo dnf -y group install development - sudo dnf -y install python39 python39-devel java-17-openjdk-headless nano git + sudo dnf -y install python3.11 python3.11-devel java-17-openjdk-headless nano git Set ``java`` executable to point to Java 17: @@ -25,6 +23,6 @@ Set ``java`` executable to point to Java 17: .. Include common instructions: -.. include:: _includes/create-env-with-venv3.9.rst +.. include:: _includes/create-env-with-venv3.11.rst .. include:: _includes/install-and-setup-red-unix.rst diff --git a/docs/install_guides/_includes/install-guide-rhel9-derivatives.rst b/docs/install_guides/_includes/install-guide-rhel9-derivatives.rst index c38d6cf3439..df67055cfa6 100644 --- a/docs/install_guides/_includes/install-guide-rhel9-derivatives.rst +++ b/docs/install_guides/_includes/install-guide-rhel9-derivatives.rst @@ -6,17 +6,15 @@ Installing the pre-requirements ------------------------------- -Red Hat Enterprise Linux (RHEL) 9 and its derivatives have all required packages available in official repositories. +Red Hat Enterprise Linux (RHEL) 9.2-9.x and its derivatives have all required packages available in official repositories. Install them with dnf: -.. TODO: Use Python 3.11 once RHEL 9.0 goes EOL in 2024. - .. prompt:: bash - sudo dnf -y install python39 python3-devel git java-17-openjdk-headless @development nano + sudo dnf -y install python3.11 python3.11-devel git java-17-openjdk-headless @development nano .. Include common instructions: -.. include:: _includes/create-env-with-venv3.9.rst +.. include:: _includes/create-env-with-venv3.11.rst .. include:: _includes/install-and-setup-red-unix.rst diff --git a/docs/install_guides/_includes/install-python39-pyenv.rst b/docs/install_guides/_includes/install-python39-pyenv.rst deleted file mode 100644 index 6840e4b35d3..00000000000 --- a/docs/install_guides/_includes/install-python39-pyenv.rst +++ /dev/null @@ -1,27 +0,0 @@ ----------------------------- -Installing Python with pyenv ----------------------------- - -On distributions where Python 3.9 needs to be compiled from source, we recommend the use of pyenv. -This simplifies the compilation process and has the added bonus of simplifying setting up Red in a -virtual environment. - -.. include:: _includes/_install-pyenv-and-setup-path.rst - -.. prompt:: bash - - CONFIGURE_OPTS=--enable-optimizations pyenv install 3.9.18 -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.18 - -Pyenv is now installed and your system should be configured to run Python 3.9. diff --git a/docs/install_guides/arch.rst b/docs/install_guides/arch.rst index 6c2c4b5aec0..b72c5e2ad27 100644 --- a/docs/install_guides/arch.rst +++ b/docs/install_guides/arch.rst @@ -18,20 +18,20 @@ Install the pre-requirements with pacman: sudo pacman -Syu git jre17-openjdk-headless base-devel nano -On Arch Linux, Python 3.10 can be installed from the Arch User Repository (AUR) from the ``python310`` package. +On Arch Linux, Python 3.11 can be installed from the Arch User Repository (AUR) from the ``python311`` package. -The manual build process is the Arch-supported install method for AUR packages. You can install ``python310`` package with the following commands: +The manual build process is the Arch-supported install method for AUR packages. You can install ``python311`` package with the following commands: .. prompt:: bash - git clone https://aur.archlinux.org/python310.git /tmp/python310 - cd /tmp/python310 + git clone https://aur.archlinux.org/python311.git /tmp/python311 + cd /tmp/python311 makepkg -sicL cd - - rm -rf /tmp/python310 + rm -rf /tmp/python311 .. Include common instructions: -.. include:: _includes/create-env-with-venv3.10.rst +.. include:: _includes/create-env-with-venv3.11.rst .. include:: _includes/install-and-setup-red-unix.rst diff --git a/docs/install_guides/centos-7.rst b/docs/install_guides/centos-7.rst deleted file mode 100644 index f49e59dcab7..00000000000 --- a/docs/install_guides/centos-7.rst +++ /dev/null @@ -1,46 +0,0 @@ -.. _install-centos-7: - -========================== -Installing Red on CentOS 7 -========================== - -.. include:: _includes/supported-arch-x64+aarch64.rst - -.. 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: - -.. Python 3.10 requires OpenSSL 1.1.1 which CentOS 7 doesn't provide in base repository. - -.. include:: _includes/install-python39-pyenv.rst - -.. include:: _includes/create-env-with-pyenv-virtualenv.rst - -.. include:: _includes/install-and-setup-red-unix.rst diff --git a/docs/install_guides/centos-stream-8.rst b/docs/install_guides/centos-stream-8.rst deleted file mode 100644 index adb0ac7d643..00000000000 --- a/docs/install_guides/centos-stream-8.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _install-centos-stream-8: - -================================= -Installing Red on CentOS Stream 8 -================================= - -.. include:: _includes/install-guide-rhel8-derivatives.rst diff --git a/docs/install_guides/fedora.rst b/docs/install_guides/fedora.rst index 447873ec043..cb6ccf74909 100644 --- a/docs/install_guides/fedora.rst +++ b/docs/install_guides/fedora.rst @@ -12,7 +12,7 @@ Installing Red on Fedora Linux Installing the pre-requirements ------------------------------- -Fedora Linux 38 and above has all required packages available in official repositories. Install +Fedora Linux 39 and above has all required packages available in official repositories. Install them with dnf: .. prompt:: bash diff --git a/docs/install_guides/index.rst b/docs/install_guides/index.rst index 02c0152bc91..493ec90fa03 100644 --- a/docs/install_guides/index.rst +++ b/docs/install_guides/index.rst @@ -6,7 +6,7 @@ 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**. +we recommend **Ubuntu 24.04 LTS**. .. toctree:: :maxdepth: 1 @@ -17,8 +17,6 @@ we recommend **Ubuntu 22.04 LTS**. alma-linux-9 amazon-linux-2023 arch - centos-7 - centos-stream-8 centos-stream-9 debian-11 debian-12 @@ -35,4 +33,5 @@ we recommend **Ubuntu 22.04 LTS**. rocky-linux-9 ubuntu-2004 ubuntu-2204 + ubuntu-2404 ubuntu-non-lts diff --git a/docs/install_guides/mac.rst b/docs/install_guides/mac.rst index c32b4820e3c..d6de8e35489 100644 --- a/docs/install_guides/mac.rst +++ b/docs/install_guides/mac.rst @@ -28,8 +28,7 @@ one-by-one: brew install python@3.11 brew install git - brew tap homebrew/cask-versions - brew install --cask temurin17 + brew install temurin@17 By default, Python installed through Homebrew is not added to the load path. To fix this, you should run these commands: diff --git a/docs/install_guides/rhel-8.rst b/docs/install_guides/rhel-8.rst index cf23e1f2bf8..daad985a208 100644 --- a/docs/install_guides/rhel-8.rst +++ b/docs/install_guides/rhel-8.rst @@ -1,7 +1,7 @@ .. _install-rhel-8: ========================================================= -Installing Red on Red Hat Enterprise Linux (RHEL) 8.6-8.x +Installing Red on Red Hat Enterprise Linux (RHEL) 8.8-8.x ========================================================= .. include:: _includes/install-guide-rhel8-derivatives.rst diff --git a/docs/install_guides/rhel-9.rst b/docs/install_guides/rhel-9.rst index 9d2faa36222..fea182a62ce 100644 --- a/docs/install_guides/rhel-9.rst +++ b/docs/install_guides/rhel-9.rst @@ -1,7 +1,7 @@ .. _install-rhel-9: -=================================================== -Installing Red on Red Hat Enterprise Linux (RHEL) 9 -=================================================== +========================================================= +Installing Red on Red Hat Enterprise Linux (RHEL) 9.2-9.x +========================================================= .. include:: _includes/install-guide-rhel9-derivatives.rst diff --git a/docs/install_guides/ubuntu-2404.rst b/docs/install_guides/ubuntu-2404.rst new file mode 100644 index 00000000000..087e9871d37 --- /dev/null +++ b/docs/install_guides/ubuntu-2404.rst @@ -0,0 +1,33 @@ +.. _install-ubuntu-2404: + +================================== +Installing Red on Ubuntu 24.04 LTS +================================== + +.. include:: _includes/supported-arch-x64+aarch64.rst + +.. include:: _includes/linux-preamble.rst + +------------------------------- +Installing the pre-requirements +------------------------------- + +We recommend adding the ``deadsnakes`` ppa to install Python 3.11: + +.. 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.11 python3.11-dev python3.11-venv git openjdk-17-jre-headless build-essential nano + +.. Include common instructions: + +.. include:: _includes/create-env-with-venv3.11.rst + +.. include:: _includes/install-and-setup-red-unix.rst diff --git a/docs/update_red.rst b/docs/update_red.rst index e83f91ec927..91d9896d99c 100644 --- a/docs/update_red.rst +++ b/docs/update_red.rst @@ -66,11 +66,6 @@ If you have Red 3.5.0 or newer, you can upgrade by following these steps: source ~/redenv/bin/activate - If you used ``pyenv`` for your virtual environment, use: - - .. prompt:: bash - - pyenv shell #. Update Red with this command: .. prompt:: bash @@ -138,11 +133,6 @@ If you have a Red version between 3.2.0 and 3.4.19, you can upgrade by following source ~/redenv/bin/activate - If you used ``pyenv`` for your virtual environment, use: - - .. prompt:: bash - - pyenv shell #. Update Red with this command: .. prompt:: bash diff --git a/docs/version_guarantees.rst b/docs/version_guarantees.rst index b3ace324a71..e90d2c8d62e 100644 --- a/docs/version_guarantees.rst +++ b/docs/version_guarantees.rst @@ -50,7 +50,7 @@ their end-of-life date. ================================ ======================= ============================================================ Operating system version Supported architectures Ideally supported until ================================ ======================= ============================================================ -Windows 10 x86-64 `End/Retirement Date `__ +Windows 10 x86-64 2025-10-14 (`End/Retirement Date `__) Windows 11 x86-64 `Retirement Date `__ macOS 12 (Monterey) x86-64, aarch64 ~2024-10 macOS 13 (Ventura) x86-64, aarch64 ~2025-10 @@ -59,13 +59,11 @@ Alma Linux 8 x86-64, aarch64 2029-05-31 (`How lo Alma Linux 9 x86-64, aarch64 2032-05-31 Amazon Linux 2023 x86-64, aarch64 2028-03-15 (`end-of-life `__) Arch Linux x86-64 forever (support is only provided for an up-to-date system) -CentOS 7 x86-64, aarch64 2024-06-30 (`end of Maintenance Updates `__) -CentOS Stream 8 x86-64, aarch64 2024-05-31 (`end of Maintenance Updates `__) CentOS Stream 9 x86-64, aarch64 2027-05-31 (`expected EOL `__) Debian 11 Bullseye x86-64, aarch64, armv7l ~2024-07 (`End of life `__) Debian 12 Bookworm x86-64, aarch64, armv7l ~2026-09 (`End of life `__) -Fedora Linux 38 x86-64, aarch64 2024-05-14 (`End of Life `__) Fedora Linux 39 x86-64, aarch64 2024-11-12 (`End of Life `__) +Fedora Linux 40 x86-64, aarch64 2025-05-13 (`End of Life `__) openSUSE Leap 15.5 x86-64, aarch64 2024-12-31 (`end of maintenance life cycle `__) openSUSE Tumbleweed x86-64, aarch64 forever (support is only provided for an up-to-date system) Oracle Linux 8 x86-64, aarch64 2029-07-31 (`End of Premier Support `__) @@ -73,16 +71,17 @@ Oracle Linux 9 x86-64, aarch64 2032-06-31 (`End of Raspberry Pi OS (Legacy) 11 armv7l ~2025-10 (approximate date of release of Raspberry Pi OS 13) Raspberry Pi OS 12 aarch64, armv7l ~2025-10 (approximate date of release of Raspberry Pi OS 13) RHEL 8 (latest) x86-64, aarch64 2029-05-31 (`End of Maintenance Support `__) -RHEL 8.6 x86-64, aarch64 2024-05-31 (`End of Extended Update Support `__) RHEL 8.8 x86-64, aarch64 2025-05-31 (`End of Extended Update Support `__) +RHEL 8.10 x86-64, aarch64 2029-05-31 (`End of Extended Update Support `__) RHEL 9 (latest) x86-64, aarch64 2032-05-31 (`End of Maintenance Support `__) -RHEL 9.0 x86-64, aarch64 2024-05-31 (`End of Extended Update Support `__) RHEL 9.2 x86-64, aarch64 2025-05-31 (`End of Extended Update Support `__) +RHEL 9.4 x86-64, aarch64 2026-04-30 (`End of Extended Update Support `__) Rocky Linux 8 x86-64, aarch64 2029-05-31 (`end-of-life `__) Rocky Linux 9 x86-64, aarch64 2032-05-31 (`end-of-life `__) -Ubuntu 20.04 LTS x86-64, aarch64 2025-04-30 (`End of Standard Support `__) -Ubuntu 22.04 LTS x86-64, aarch64 2027-04-30 (`End of Standard Support `__) +Ubuntu 20.04 LTS x86-64, aarch64 2025-06-30 (`End of Standard Support `__) +Ubuntu 22.04 LTS x86-64, aarch64 2027-06-30 (`End of Standard Support `__) Ubuntu 23.10 x86-64, aarch64 2024-07-31 (`End of Standard Support `__) +Ubuntu 24.04 LTS x86-64, aarch64 2029-06-30 (`End of Standard Support `__) ================================ ======================= ============================================================ .. _developer-guarantees: diff --git a/redbot/__init__.py b/redbot/__init__.py index 3191474027e..e8b7d3e79ff 100644 --- a/redbot/__init__.py +++ b/redbot/__init__.py @@ -339,7 +339,7 @@ def _early_init(): # This is bumped automatically by release workflow (`.github/workflows/scripts/bump_version.py`) -_VERSION = "3.5.9.dev1" +_VERSION = "3.5.11.dev1" __version__, version_info = VersionInfo._get_version() diff --git a/redbot/__main__.py b/redbot/__main__.py index d32e7fd3be3..a07eeafe5b3 100644 --- a/redbot/__main__.py +++ b/redbot/__main__.py @@ -397,7 +397,8 @@ async def run_bot(red: Red, cli_flags: Namespace) -> None: "With that out of the way, depending on who you want to be considered as owner," " you can:\n" "a) pass --team-members-are-owners when launching Red" - " - in this case Red will treat all members of the bot application's team as owners\n" + " - in this case Red will treat members of the bot application's team as owners," + " if their team role is Owner, Admin, or Developer\n" f"b) set owner manually with `redbot --edit {cli_flags.instance_name}`\n" "c) pass owner ID(s) when launching Red with --owner" " (and --co-owner if you need more than one) flag\n" diff --git a/redbot/cogs/admin/locales/ar-SA.po b/redbot/cogs/admin/locales/ar-SA.po index 83cc74c873f..7ac868cbd1a 100644 --- a/redbot/cogs/admin/locales/ar-SA.po +++ b/redbot/cogs/admin/locales/ar-SA.po @@ -122,7 +122,7 @@ msgstr "\n" #: redbot/cogs/admin/admin.py:275 msgid "{author} ({author.id}) changed the colour of role '{role.name}'" -msgstr "" +msgstr "{author}({author.id}) تغيير لون رول {role.name}" #: redbot/cogs/admin/admin.py:294 redbot/cogs/admin/admin.py:327 msgid "Done." @@ -144,7 +144,7 @@ msgstr "\n" #: redbot/cogs/admin/admin.py:308 msgid "{author} ({author.id}) changed the name of role '{old_name}' to '{name}'" -msgstr "" +msgstr "{author}({author.id}) تغيير اسم رول {old_name} إلى {name}" #: redbot/cogs/admin/admin.py:332 #, docstring @@ -185,7 +185,7 @@ msgstr "تم تحديث قناة الإعلانات إلى {channel.mention}" #: redbot/cogs/admin/admin.py:375 #, docstring msgid "Unsets the channel for announcements." -msgstr "" +msgstr "إزالة القناة من الإعلانات." #: redbot/cogs/admin/admin.py:400 #, docstring @@ -194,7 +194,11 @@ msgid "\n" " Server admins must have configured the role as user settable.\n" " NOTE: The role is case sensitive!\n" " " -msgstr "" +msgstr "\n" +" أزاله أو ازالة الرول الشخصي منك.\n\n" +" يجب أن يكون لدى أدمن السيرفر اعدادت للتعيين من قبل المستخدم.\n" +" ملاحظة: الرول حساس لحالة الأحرف\n" +" " #: redbot/cogs/admin/admin.py:413 #, docstring @@ -253,15 +257,15 @@ msgstr "لا يمكنني السماح لك بإضافة {role.name} لرتبة #: redbot/cogs/admin/admin.py:475 msgid "The role \"{role.name}\" is already a selfrole." -msgstr "" +msgstr "الرول \"{role.name}\" هو بالفعل رول شخصي." #: redbot/cogs/admin/admin.py:481 msgid "Added {count} selfroles." -msgstr "" +msgstr "إضافة {count} رول شخصي." #: redbot/cogs/admin/admin.py:483 msgid "Added 1 selfrole." -msgstr "" +msgstr "تم اضافة 1 رول شخصي." #: redbot/cogs/admin/admin.py:489 #, docstring diff --git a/redbot/cogs/audio/core/commands/audioset.py b/redbot/cogs/audio/core/commands/audioset.py index 57194fd649e..f3dfb0837d6 100644 --- a/redbot/cogs/audio/core/commands/audioset.py +++ b/redbot/cogs/audio/core/commands/audioset.py @@ -1150,6 +1150,20 @@ async def command_audioset_settings(self, ctx: commands.Context): if is_owner: msg += _("Localtracks path: [{localpath}]\n").format(**global_data) + if ( + is_owner + and not global_data["use_external_lavalink"] + and self.managed_node_controller.plugins + ): + plugins = self.managed_node_controller.plugins + msg += f"\n---{_('Lavalink Plugin Versions')}---" + plugin_name_max_len = 0 + for plugin_name, __ in plugins.items(): + plugin_name_max_len = max(plugin_name_max_len, len(plugin_name)) + for plugin_name, plugin_version in plugins.items(): + key = f"{plugin_name}:".ljust(plugin_name_max_len + 5) + msg += f"\n{key} [{plugin_version}]" + await self.send_embed_msg(ctx, description=box(msg, lang="ini")) @command_audioset.command(name="logs") diff --git a/redbot/cogs/audio/core/commands/locales/ar-SA.po b/redbot/cogs/audio/core/commands/locales/ar-SA.po index c5ecd69f939..20308981844 100644 --- a/redbot/cogs/audio/core/commands/locales/ar-SA.po +++ b/redbot/cogs/audio/core/commands/locales/ar-SA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -233,15 +233,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -274,15 +274,15 @@ msgstr "تمكين" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -322,14 +322,14 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -575,13 +575,13 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "وقت غير صالح" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "لا يمكن أن تكون الثواني أقل من الصفر." @@ -871,8 +871,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "نطاق قائمة التشغيل: [{pscope}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "" @@ -893,8 +893,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "" @@ -937,66 +937,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1007,28 +1011,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1041,27 +1045,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1069,72 +1073,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/bg-BG.po b/redbot/cogs/audio/core/commands/locales/bg-BG.po index baae1877187..79b68617b0c 100644 --- a/redbot/cogs/audio/core/commands/locales/bg-BG.po +++ b/redbot/cogs/audio/core/commands/locales/bg-BG.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "MIME-Version: 1.0\n" @@ -233,15 +233,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -274,15 +274,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -322,14 +322,14 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -571,13 +571,13 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "" @@ -861,8 +861,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "" @@ -883,8 +883,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "дни" @@ -927,66 +927,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -997,28 +1001,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1031,27 +1035,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1059,72 +1063,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/cs-CZ.po b/redbot/cogs/audio/core/commands/locales/cs-CZ.po index 8425b1c7530..a2f99a00bbc 100644 --- a/redbot/cogs/audio/core/commands/locales/cs-CZ.po +++ b/redbot/cogs/audio/core/commands/locales/cs-CZ.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" @@ -235,15 +235,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -276,15 +276,15 @@ msgstr "Povoleno" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -324,14 +324,14 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -573,13 +573,13 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "" @@ -863,8 +863,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "" @@ -885,8 +885,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "dnů" @@ -929,66 +929,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "Pokyny k nastavení Spotify API tokenů." -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -999,28 +1003,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1033,27 +1037,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1061,72 +1065,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/da-DK.po b/redbot/cogs/audio/core/commands/locales/da-DK.po index ee2a89aa1aa..829c617a364 100644 --- a/redbot/cogs/audio/core/commands/locales/da-DK.po +++ b/redbot/cogs/audio/core/commands/locales/da-DK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Danish\n" "MIME-Version: 1.0\n" @@ -233,15 +233,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -274,15 +274,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -322,14 +322,14 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -571,13 +571,13 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "" @@ -861,8 +861,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "" @@ -883,8 +883,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "" @@ -927,66 +927,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -997,28 +1001,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1031,27 +1035,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1059,72 +1063,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/de-DE.po b/redbot/cogs/audio/core/commands/locales/de-DE.po index d4234d741e8..a57a47f4418 100644 --- a/redbot/cogs/audio/core/commands/locales/de-DE.po +++ b/redbot/cogs/audio/core/commands/locales/de-DE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -235,15 +235,15 @@ msgstr "Automatische Wiedergabe am Ende der Warteschlange: {true_or_false}." #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -276,15 +276,15 @@ msgstr "Aktiviert" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -326,14 +326,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -587,13 +587,13 @@ msgstr "Automatische Trennung vom Kanal, wenn der Bot x Sekunden lang alleine is #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "Ungültige Zeit" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "Sekunden können nicht kleiner als Null sein." @@ -902,8 +902,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "Umfang der Playlist: [{pscope}] \n" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "Cache-Einstellungen" @@ -924,8 +924,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "Lokale Lavalink-Cache: [{lavalink_status}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "Tage" @@ -968,66 +968,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "Pfad der lokalen Titel: [{localpath}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "Sendet die Lavalink Server Protokolle als private Nachricht." -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "Keine Protokolle in deinem Datenordner gefunden." -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "Protokolle sind zu groß. Du kannst diese in {path} finden" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "Ich muss in der Lage sein dir Privatnachrichten schreiben zu können um dir die Logs zu senden." -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "Aktiviert/Deaktiviert Titel als Status." -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "Titel als Status: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "Zeige Miniaturbilder bei Audio-Mitteilungen an." -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "Miniaturansicht: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "Benötigte Stimmen in Prozent für Nicht-Mods, um Titel zu überspringen, 0 um zum Deaktivieren." -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "Abstimmung deaktiviert. Alle Benutzer können Warteschlangen Management Befehle verwenden." -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "Stimmen-Anteil auf {percent} % festgelegt." -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "Anleitung um den YouTube API key einzurichten." -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "Anleitung um die Spotify API tokens einzurichten." -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1045,28 +1049,28 @@ msgstr "1. Gehen Sie zu Spotify-Entwicklern und loggen Sie sich mit Ihrem Spotif "6. Kopiere deine Client-ID und dein Client-Geheimes in:\n" "`{prefix}set api spotify client_id client_secret `" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "Legen Sie den Ländercode für Spotify-Suchen fest." -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "Ungültiger Ländercode" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "Bitte verwende einen offiziellen [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) Code." -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "Ländercode auf {country} gesetzt." -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1087,27 +1091,27 @@ msgstr "Legt das Caching-Level fest.\n\n" " Wenn du einen bestimmten Cache deaktivieren möchtest, benutze eine negative Nummer.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "Maximales Alter, [{max_age}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "Spotify-Cache: [{spotify_status}] \n" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "Youtube-Cache: [{youtube_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "Lavalink-Cache: [{lavalink_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1118,15 +1122,15 @@ msgstr "Legt das maximale Cache-Alter fest.\n\n" " ungültig wird.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "Das Cache-Alter darf nicht weniger als 7 Tage betragen. Wenn du den Cache deaktivieren möchtest, führe {prefix}audioset cache aus.\n" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "Ich habe das Cache-Alter auf {age} Tage gesetzt" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" @@ -1135,57 +1139,57 @@ msgstr "Fortbestehende Warteschlangen umschalten.\n\n" " Fortbestehende Warteschlangen erlauben das Wiederherstellen der aktuellen Warteschlange, wenn die Warteschlange geschlossen wird.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "Fortbestehende Warteschlangen: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "Startet die lavalink-Verbindung neu." -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "Fehler beim Herunterfahren von Lavalink" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "Bitte laden Sie Audio neu (`{prefix}reload audio`)." -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "Lavalink wird neugestartet" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "Es kann einige Minuten dauern bis Lavalink komplett gestartet ist." -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "Legt die maximale Lautstärke fest, die auf diesem Server erlaubt ist." -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "Fehler" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "Musik ohne Ton ist keine Musik. Versuch die Lautstärke höher als 0% zu setzen." -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "Einstellungen geändert" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "Die maximale Lautstärke wurde auf 150% begrenzt, pass auf deine Ohren auf." -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "Die maximale Lautstärke wurde auf {max_volume}% begrenzt." diff --git a/redbot/cogs/audio/core/commands/locales/es-ES.po b/redbot/cogs/audio/core/commands/locales/es-ES.po index d45fb09c7c2..61d04c3ff70 100644 --- a/redbot/cogs/audio/core/commands/locales/es-ES.po +++ b/redbot/cogs/audio/core/commands/locales/es-ES.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -235,15 +235,15 @@ msgstr "Reproducción automatica cuando termine la cola: {true_or_false}." #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -276,15 +276,15 @@ msgstr "Activado" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -326,14 +326,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -609,13 +609,13 @@ msgstr "Desconexión automática del canal cuando el bot está solo en él duran #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "Hora inválida" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "Los segundos no pueden ser menos de cero." @@ -927,8 +927,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "Ámbito de la playlist: [{pscope}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "Ajustes de caché" @@ -949,8 +949,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "Caché local de Lavalink: [{lavalink_status}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "días" @@ -1000,66 +1000,70 @@ msgstr "Versión de Lavalink: [{llversion}]\n" msgid "Localtracks path: [{localpath}]\n" msgstr "Ruta local: [{localpath}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "Envía los registros del servidor Lavalink a tus DMs." -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "No se encontraron registros en su carpeta de datos." -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "Los registros son demasiado grandes, puedes encontrarlos en {path}" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "Necesito ser capaz de DM para enviarte los registros." -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "Activar/desactivar los títulos de las pistas como estado." -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "Títulos de canciones como estado: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "Cambiar a mostrar una miniatura en los mensajes de audio." -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "Visualización de miniatura: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "Porcentaje necesario para que los no-mods se salten las pistas, 0 para desactivar." -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "Votación deshabilitada. Todos los usuarios pueden usar comandos de gestión de colas." -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "Porcentaje de voto establecido a {percent}%." -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "Instrucciones para establecer la clave API de YouTube." -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "Instrucciones para establecer los tokens de la API de Spotify." -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1077,28 +1081,28 @@ msgstr "1. Ve a los desarrolladores de Spotify y inicia sesión con tu cuenta de "6. Copia tu ID de cliente y tu secreto de cliente en:\n" "`{prefix}establece api spotify client_id, client_secret,`" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "Establece el código de país para las búsquedas de Spotify." -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "Código de país no válido" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "Por favor, utiliza un código oficial [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)." -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "Código de país establecido a {country}." -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1119,27 +1123,27 @@ msgstr "Establece el nivel de caché.\n\n" " Si desea desactivar un caché específico use un número negativo.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "Edad máxima: [{max_age}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "Caché de Spotifify: [{spotify_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "Caché de YouTube: [{youtube_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "Caché Lavalink: [{lavalink_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1150,15 +1154,15 @@ msgstr "Establece la edad máxima del caché.\n\n" " inválida.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "La edad de la caché no puede ser inferior a 7 días. Si deseas deshabilitarla ejecuta {prefix}audioset.\n" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "He establecido la edad de caché a {age} días" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" @@ -1167,57 +1171,57 @@ msgstr "Alternar colas persistentes.\n\n" " Las colas persistentes permiten restaurar la cola actual cuando la cola se cierre.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "Persistentes en colas: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "Reinicia la conexión de lavalink." -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "Error al apagar el nodo Lavalink" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "Por favor, recarga Audio (`{prefix}recargar audio`)." -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "Reiniciando Lavalink" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "Lavalink puede tardar un par de minutos en ponerse en marcha completamente." -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "Establece el volumen máximo permitido en este servidor." -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "Error" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "La música sin sonido no es música en absoluto. Intenta ajustar el volumen a un valor mayor que 0%." -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "Ajustes modificados" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "El volumen máximo se ha limitado a 150%, tenga cuidado con sus oídos." -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "El volumen máximo ha sido limitado a {max_volume}%." diff --git a/redbot/cogs/audio/core/commands/locales/fi-FI.po b/redbot/cogs/audio/core/commands/locales/fi-FI.po index d4b298dbc34..7a88d6f7e10 100644 --- a/redbot/cogs/audio/core/commands/locales/fi-FI.po +++ b/redbot/cogs/audio/core/commands/locales/fi-FI.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Finnish\n" "MIME-Version: 1.0\n" @@ -235,15 +235,15 @@ msgstr "Toista automaattisesti, kun jono loppuu: {true_or_false}." #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -276,15 +276,15 @@ msgstr "Käytössä" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -326,14 +326,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -586,13 +586,13 @@ msgstr "Katkaise yhteys puhekanavaan kun botti on ollut sillä yksin x sekuntia, #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "Virheellinen ajanmääre" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "Sekuntien määrän tulee olla suurempi kuin nolla." @@ -882,8 +882,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "Soittolistan taso: [{pscope}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "Välimuistin asetukset" @@ -904,8 +904,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "Paikallinen Lavalink-välimuisti: [{lavalink_status}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "päivää" @@ -948,66 +948,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "Paikallisten kappaleiden polku: [{localpath}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "Logeja ei löytynyt datakansiostasi." -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "Logit ovat liian suuret, voit löytää ne täältä: {path}" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "Minun pitää pystyä lähettämään sinulle yksityisviestejä, jotta voin lähettää logit." -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "Ota käyttöön/Poista käyttöön kappaleiden nimet botin tilana." -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "Kappaleiden nimet tilana: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "Vaihda näytetäänkö pikkukuvat viesteissä." -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "Pikkukuvien näyttäminen: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "Äänestysprosentti joka tarvitaan että ei-moderaattorit voivat ohittaa kappaleita, 0 poistaa ominaisuuden käytöstä." -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "Äänestys on poistettu käytöstä. Kaikki käyttäjät voivat käyttää jononhallintakomentoja." -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "Tarvittavaksi ääniprosentiksi asetettiin {percent}%." -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "Ohjeet YouTube API -avaimen asettamiseksi." -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "Ohjeet Spotify API -tokenien asettamiseksi." -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1025,28 +1029,28 @@ msgstr "1. Mene Spotify kehittäjäsivustolle ja kirjaudu sisään.\n" "6. Kopioi client ID ja client secret komentoon:\n" "`{prefix}set api spotify client_id client_secret `" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "Aseta Spotify-hauissa käytettävä maakoodi." -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "Virheellinen maakoodi" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "Käytäthän virallista [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) maakoodia." -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "Maakoodiksi asetettiin {country}." -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1067,27 +1071,27 @@ msgstr "Asettaa välimuistin tason.\n\n" " Jos haluat poistaa tietyn välimuistin käytöstä, käytä negatiivista numeroa.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "Maksimi-ikä: [{max_age}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "Spotify-välimuisti: [{spotify_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "Youtube-välimuisti: [{youtube_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "Lavalink-välimuisti: [{lavalink_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1098,15 +1102,15 @@ msgstr "Asettaa välimuistin maksimi-iän.\n\n" " kelvoton.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "Välimuistin pituus ei voi olla alle seitsemää päivää. Jos haluat poistaa välimuistin käytöstä aja komento {prefix}audioset cache.\n" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "Välimuistin pituus asetettiin {age} päivään" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" @@ -1115,57 +1119,57 @@ msgstr "Vaihda säilyvien jonojen tilaa.\n\n" " Säilyvät jonot mahdollistavat jonon palautuksen sen sulkemisen jälkeen.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "Jonojen säilytys: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "Käynnistää Lavalink-yhteyden uudelleen." -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "Lataathan Audion uudelleen (`{prefix}reload audio`)." -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "Käynnistetetään Lavalink uudelleen" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "Lavalinkin käynnistyminen voi kestää muutaman minuutin." -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/fr-FR.po b/redbot/cogs/audio/core/commands/locales/fr-FR.po index bea5333754a..d1e96fe11e0 100644 --- a/redbot/cogs/audio/core/commands/locales/fr-FR.po +++ b/redbot/cogs/audio/core/commands/locales/fr-FR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -235,15 +235,15 @@ msgstr "Lecture automatique à la fin de la file d'attente: {true_or_false}." #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -276,15 +276,15 @@ msgstr "Activé" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -326,14 +326,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -608,13 +608,13 @@ msgstr "Déconnexion automatique du salon lorsque le bot est seul pendant x seco #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "Temps invalide" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "Les secondes ne peuvent être inférieures à zéro." @@ -925,8 +925,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "Portée de la playlist : [{pscope}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "Paramètres du cache" @@ -947,8 +947,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "Cache Lavalink local : [{lavalink_status}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "jours" @@ -998,66 +998,70 @@ msgstr "Version de Lavalink : [{llversion}]\n" msgid "Localtracks path: [{localpath}]\n" msgstr "Chemin d'accès des musiques locales : [{localpath}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "Aucun log trouvé dans votre dossier de données." -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "Les logs sont trop volumineux, vous pouvez les trouver dans {path}" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "Je dois pouvoir vous envoyer des messages privés pour envoyer les logs." -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "Activer/désactiver titres des pistes comme statut." -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "Titres de musiques comme statut : {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "Activer/désactiver l’affichage d’une vignette sur les messages de l'audio." -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "Affichage des vignettes : {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "Votes désactivés. Tout les utilisateurs peuvent maintenant utiliser les commandes de gestion de la file." -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "Pourcentage de vote défini à {percent} %." -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "Instructions pour définir la clé de l'API YouTube." -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "Instructions pour définir les tokens de l'API Spotify." -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1075,28 +1079,28 @@ msgstr "1. Allez sur les développeurs Spotify et connectez-vous avec votre comp "6. Copiez votre identifiant client et votre secret client dans:\n" "`{prefix}set api spotify client_id client_secret `" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "Définit l'indicatif du pays pour les recherches Spotify." -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "Code pays invalide" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "Code pays défini sur {country}." -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1117,27 +1121,27 @@ msgstr "Définit le niveau de mise en cache.\n\n" " Si vous souhaitez désactiver un cache spécifique, utilisez un nombre négatif.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "Âge max : [{max_age}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "Cache Spotify : [{spotify_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "Cache YouTube: [{youtube_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "Cache Lavalink : [{lavalink_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1148,72 +1152,72 @@ msgstr "Définit l'âge maximum du cache.\n\n" " invalide.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "L'âge du cache ne peut pas être inférieur à 7 jours. Si vous souhaitez le désactiver, exécutez {prefix}audioset cache.\n" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "L'âge du cache a été défini sur {age} jours" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "Liste de lecture permanentes: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "Redémarrage de la connection à Lavalink." -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "Veuillez recharger l'Audio (`{prefix}reload audio`)." -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "Redémarrage de Lavalink" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "Erreur" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "La musique sans son n'est pas du tout de la musique. Essayez de définir le volume plus élevé que 0%." -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "Paramètre modifié" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "Le volume maximum a été limité à 150%, soyez gentil avec vos oreilles." -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "Le volume maximum a été limité à {max_volume}%." diff --git a/redbot/cogs/audio/core/commands/locales/hi-IN.po b/redbot/cogs/audio/core/commands/locales/hi-IN.po index 0419dfee0f6..6e7d9ecb2a9 100644 --- a/redbot/cogs/audio/core/commands/locales/hi-IN.po +++ b/redbot/cogs/audio/core/commands/locales/hi-IN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Hindi\n" "MIME-Version: 1.0\n" @@ -233,15 +233,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -274,15 +274,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -322,14 +322,14 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -571,13 +571,13 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "" @@ -861,8 +861,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "" @@ -883,8 +883,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "दिन" @@ -927,66 +927,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -997,28 +1001,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1031,27 +1035,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1059,72 +1063,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/hr-HR.po b/redbot/cogs/audio/core/commands/locales/hr-HR.po index 2a190986229..c506801e4d6 100644 --- a/redbot/cogs/audio/core/commands/locales/hr-HR.po +++ b/redbot/cogs/audio/core/commands/locales/hr-HR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -233,15 +233,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -274,15 +274,15 @@ msgstr "Aktivirano" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -324,14 +324,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -574,13 +574,13 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "" @@ -864,8 +864,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "Opseg popisa za reprodukciju: [{pscope}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "Postavke predmemorije" @@ -886,8 +886,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "dana" @@ -930,66 +930,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1000,28 +1004,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1034,27 +1038,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1062,72 +1066,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "Greška" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "Postavka promijenjena" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/hu-HU.po b/redbot/cogs/audio/core/commands/locales/hu-HU.po index 2a05944f45c..3791ff0db27 100644 --- a/redbot/cogs/audio/core/commands/locales/hu-HU.po +++ b/redbot/cogs/audio/core/commands/locales/hu-HU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -233,15 +233,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -274,15 +274,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -322,14 +322,14 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -571,13 +571,13 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "" @@ -861,8 +861,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "" @@ -883,8 +883,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "nap" @@ -927,66 +927,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -997,28 +1001,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1031,27 +1035,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1059,72 +1063,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/id-ID.po b/redbot/cogs/audio/core/commands/locales/id-ID.po index ae08e92cdc3..b059a018465 100644 --- a/redbot/cogs/audio/core/commands/locales/id-ID.po +++ b/redbot/cogs/audio/core/commands/locales/id-ID.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "MIME-Version: 1.0\n" @@ -235,15 +235,15 @@ msgstr "Putar otomatis saat antrian berakhir: {true_or_false}." #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -276,15 +276,15 @@ msgstr "Diaktifkan" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -326,14 +326,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -575,13 +575,13 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "" @@ -865,8 +865,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "" @@ -887,8 +887,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "hari" @@ -931,66 +931,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1001,28 +1005,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1035,27 +1039,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1063,72 +1067,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/it-IT.po b/redbot/cogs/audio/core/commands/locales/it-IT.po index 198a8099d4a..2f654f2953b 100644 --- a/redbot/cogs/audio/core/commands/locales/it-IT.po +++ b/redbot/cogs/audio/core/commands/locales/it-IT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" @@ -234,15 +234,15 @@ msgstr "Riproduci automaticamente alla fine della coda: {true_or_false}." #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -275,15 +275,15 @@ msgstr "Abilitato" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -325,14 +325,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -585,13 +585,13 @@ msgstr "Disconnetti automaticamente dal canale quando il bot è da solo per x se #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "I secondi non possono essere inferiori a zero." @@ -891,8 +891,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "" @@ -913,8 +913,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "giorni" @@ -957,66 +957,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1027,28 +1031,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1061,27 +1065,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1089,72 +1093,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/ja-JP.po b/redbot/cogs/audio/core/commands/locales/ja-JP.po index dd597fb35ff..965e4545872 100644 --- a/redbot/cogs/audio/core/commands/locales/ja-JP.po +++ b/redbot/cogs/audio/core/commands/locales/ja-JP.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Japanese\n" "MIME-Version: 1.0\n" @@ -233,15 +233,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -274,15 +274,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -322,14 +322,14 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -571,13 +571,13 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "" @@ -861,8 +861,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "" @@ -883,8 +883,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "日間" @@ -927,66 +927,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "サムネイルを表示するかどうかを切り替えます。" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "サムネイルを表示: {true_or_false}" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -997,28 +1001,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1031,27 +1035,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1059,72 +1063,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/ko-KR.po b/redbot/cogs/audio/core/commands/locales/ko-KR.po index 645c7bf24ec..bfd8188c4c9 100644 --- a/redbot/cogs/audio/core/commands/locales/ko-KR.po +++ b/redbot/cogs/audio/core/commands/locales/ko-KR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Korean\n" "MIME-Version: 1.0\n" @@ -235,15 +235,15 @@ msgstr "큐가 끝날때 자동으로 재생: {true_or_false}." #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -276,15 +276,15 @@ msgstr "활성화됨" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -326,14 +326,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -579,13 +579,13 @@ msgstr "봇이 x초 이상 체널에 환자 있을때 체널에서 자동으로 #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "잘못된 입력값" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "0보다 작을수 없습니다." @@ -869,8 +869,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "캐시 설정" @@ -891,8 +891,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "날" @@ -935,66 +935,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "데이터 폴더에서 로그를 찾을 수 없습니다." -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "로그를 보내려면 DM을 보낼수 있어야 합니다." -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "썸네일 표시: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1005,28 +1009,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "올바른 국가번호를 입력하세요" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "공식 [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) 코드를 사용해주세요." -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "국가 코드 설정 - {country}" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1047,27 +1051,27 @@ msgstr "캐싱 레벨 설정\n\n" " 특정 캐시를 사용하지 않으려면 음수를 사용하세요.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "최대 저장기간: [{max_age}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "Spotify 캐시: [{spotify_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "유튜브 캐시: [{youtube_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "라바링크 캐시: [{lavalink_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1075,72 +1079,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "캐시 기간은 7일 미만일 수 없습니다. 사용하지 않으려면 {prefix}audioset cache를 실행하십시오.\n" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "캐시 사용 기간을 {age} 일로 설정했습니다." -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "라바링크 연결 재시작" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "라바링크 재시작중" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "이 서버에서 허용되는 최대 볼륨을 설정합니다." -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "오류" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "소리 없는 음악은 전혀 음악이 아닙니다. 볼륨을 0%보다 높게 설정해주세요." -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "설정 변경됨" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "최대 불륨이 {max_volume}%로 제한되었습니다." diff --git a/redbot/cogs/audio/core/commands/locales/nb-NO.po b/redbot/cogs/audio/core/commands/locales/nb-NO.po index 9f3afd5281b..33e091eb8df 100644 --- a/redbot/cogs/audio/core/commands/locales/nb-NO.po +++ b/redbot/cogs/audio/core/commands/locales/nb-NO.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Norwegian Bokmal\n" "MIME-Version: 1.0\n" @@ -235,15 +235,15 @@ msgstr "Spill av automatisk når køen slutter: {true_or_false}." #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -276,15 +276,15 @@ msgstr "Aktivert" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -326,14 +326,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -609,13 +609,13 @@ msgstr "Automatisk frakobling fra kanal når det er alene i x sekunder, 0 for å #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "Ugyldig Tid" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "Sekunder kan ikke være mindre enn null." @@ -927,8 +927,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "Spillelistens omfang: [{pscope}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "Innstillinger for hurtigbuffer" @@ -949,8 +949,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "Lokal Lavalink bufret [{lavalink_status}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "dager" @@ -1000,66 +1000,70 @@ msgstr "Lavalink-versjon: [{llversion}]\n" msgid "Localtracks path: [{localpath}]\n" msgstr "Lokalspor vei: [{localpath}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "Sender de administrerte Lavalink-nodeloggene til DM-ene dine." -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "Ingen logger i din datamappe." -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "Loggene er for store, du finner dem i {path}" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "Jeg må være i stand til å sende deg loggene." -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "Aktivere/deaktiver trekk-titler som status." -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "Sang titler som status: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "Bytt visning av et miniatyrbilde på lydmeldinger." -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "Miniatyrvisning: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "Prosentandel som trengs for ikke-mods å hoppe over spor, 0 for å deaktivere." -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "Avstemning deaktivert. Alle brukere kan bruke kommandoer for køstyring." -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "Stemme prosentandel satt til {percent}%." -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "Instruksjoner for å angi YouTube API-nøkkel." -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "Instruksjoner for å angi Spotify API tokenene." -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1077,28 +1081,28 @@ msgstr "1. Gå til Spotify-utviklere og logg inn med Spotify-kontoen din.\n" "6. Kopier din klient-ID og din klient hemmelighet:\n" "`{prefix}set api spotify client_id client_secret `" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "Angi landkoden for Spotify-søk." -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "Ugyldig landskode" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "Vennligst bruk en offisiell kode [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)." -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "Landskoden ble satt til {country}." -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1119,27 +1123,27 @@ msgstr "Angir nivå for hurtigbufring.\n\n" " Hvis du vil deaktivere en bestemt hurtigbuffer bruker et negativt tall.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "Maks alder: [{max_age}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "Spotify-bufret: [{spotify_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "Youtube-bufret: [{youtube_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "Lavalink bufret [{lavalink_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1150,15 +1154,15 @@ msgstr "Stiller inn maksalder for hurtigbufferen.\n\n" " ugyldig.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "Bufrealder kan ikke være mindre enn 7 dager. Hvis du vil deaktivere aktiv {prefix}audioset cache.\n" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "Jeg har satt hurtigbufferalderen til {age} dager" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" @@ -1167,57 +1171,57 @@ msgstr "Veksle vedvarende køer.\n\n" " Vedvarende køer gjør at gjeldende kø gjenopprettes når køen stenges.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "Vedvarer køer: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "Gjenoppretter tilkoblingen med lavalink." -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "Kunne ikke slå av Lavalink-noden" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "Last lyd på nytt (`{prefix}reload audio`)." -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "Omstart Lavalink" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "Det kan ta et par minutter før Lavalink har startet opp." -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "Angi maksimalt volum tillatt på denne serveren." -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "Feil" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "Musikk uten lyd er ikke musikk i det hele tatt. Prøv å sette volumet høyere enn 0 %." -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "Innstillingene er endret" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "Maksimumsvolumet er begrenset til 150%, og være lett for ørene dine." -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "Maksimalt volum er begrenset til {max_volume}%." diff --git a/redbot/cogs/audio/core/commands/locales/nl-NL.po b/redbot/cogs/audio/core/commands/locales/nl-NL.po index a23c2f17654..fc799a90a6a 100644 --- a/redbot/cogs/audio/core/commands/locales/nl-NL.po +++ b/redbot/cogs/audio/core/commands/locales/nl-NL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" @@ -235,15 +235,15 @@ msgstr "Automatisch afspelen wanneer de wachtrij eindigt: {true_or_false}." #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -276,15 +276,15 @@ msgstr "Ingeschakeld" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -326,14 +326,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -586,13 +586,13 @@ msgstr "Verbreek automatisch de verbinding met het kanaal wanneer de bot alleen #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "Ongeldige tijd" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "Seconden kunnen niet minder zijn dan nul." @@ -904,8 +904,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "" @@ -926,8 +926,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "dagen" @@ -970,66 +970,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "Stuurt de beheerde Lavalink node logs naar uw DM's." -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "Geen logs gevonden in uw gegevensmap." -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "Logboeken zijn te groot, je vindt ze in {path}" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "Ik moet je een DM kunnen sturen om je de logs te kunnen sturen." -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "Muziektitel als status aan of uit zetten." -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "Muziektitel als status: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "Schakelen tussen weergave van een miniatuur op audioboodschappen." -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "Miniatuurweergave: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "Percentage dat nodig is voor niet-mods om tracks over te slaan. 0 om uit te schakelen." -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "Stemmen uitgeschakeld. Alle gebruikers kunnen commando's voor wachtrijbeheer gebruiken." -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "Stempercentage ingesteld op {percent}%." -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "Instructies voor het instellen van de YouTube API-sleutel." -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "Instructies voor het instellen van Spotify-API-tokens." -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1047,28 +1051,28 @@ msgstr "1. Ga naar Spotify-ontwikkelaars en log in met uw Spotify-account.\n" "6. Kopieer uw client-ID en uw clientgeheim in:\n" "`{prefix}set api spotify client_id client_secret `" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "Stel de landcode in voor Spotify zoekopdrachten." -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "Ongeldige landcode" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "Gebruik een officiële [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "Landcode ingesteld op {country}." -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1089,27 +1093,27 @@ msgstr "Stelt het cachingniveau in.\n\n" " Als je een specifieke cache wilt uitschakelen gebruik dan een negatief getal.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "Max leeftijd: [{max_age}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "Spotify cache: [{spotify_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "YouTube cache: [{YouTube_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "Lavalink cache: [{lavalink_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1120,15 +1124,15 @@ msgstr "Stelt de maximale leeftijd van de cache in.\n\n" " ongeldig wordt.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "De cache leeftijd kan niet minder dan 7 dagen zijn. Als je deze wilt uitschakelen, start dan de {prefix}audioset cache.\n" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "Ik heb de cache leeftijd ingesteld op {age} dagen" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" @@ -1137,57 +1141,57 @@ msgstr "Schakelen tussen aanhoudende wachtrijen.\n\n" " Aanhoudende wachtrijen maakt het mogelijk om de huidige wachtrij te herstellen wanneer de wachtrij wordt gesloten.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "Dagelijkse wachtrijen: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "Herstart de lavalink verbinding." -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "Lavalink uitschakelen mislukt" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "Herlaad audio (`{prefix}herlaad audio`)." -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "Herstarten Lavalink" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "Het kan een paar minuten duren voordat Lavalink volledig opstart." -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "Stel het maximale volume in in deze server." -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "Fout" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "Muziek zonder geluid is helemaal geen muziek. Probeer het volume hoger dan 0 in te stellen." -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "Instellingen Aangepast" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "Het maximale volume is beperkt tot 150%, wees voorzichtig met uw oren kieken." -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "Het maximale volume is beperkt tot {max_volume}%." diff --git a/redbot/cogs/audio/core/commands/locales/pl-PL.po b/redbot/cogs/audio/core/commands/locales/pl-PL.po index b577a9fc244..b3f62569f69 100644 --- a/redbot/cogs/audio/core/commands/locales/pl-PL.po +++ b/redbot/cogs/audio/core/commands/locales/pl-PL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -235,15 +235,15 @@ msgstr "Odtwarzaj automatycznie, gdy kolejka się zakończy: {true_or_false}." #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -276,15 +276,15 @@ msgstr "Włączone" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -326,14 +326,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -609,13 +609,13 @@ msgstr "Automatycznie odłącz od kanału, gdy bot jest w nim sam przez x sekund #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "Nieprawidłowy czas" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "Ilość sekund nie może być mniejsza niż zero." @@ -927,8 +927,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "Zakres playlisty: [{pscope}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "Ustawienia pamięci podręcznej" @@ -949,8 +949,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "Pamięć podręczna lokalnego Lavalink: [{lavalink_status}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "dni" @@ -1000,66 +1000,70 @@ msgstr "Wersja Lavalink [{llversion}]\n" msgid "Localtracks path: [{localpath}]\n" msgstr "Ścieżka utworów lokalnych: [{localpath}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "Wysyła dzienniki zarządzanego węzła Lavalink do Twoich DM." -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "Nie znaleziono logów w folderze danych." -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "Logi są zbyt duże, możesz je znaleźć w {path}" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "Muszę być w stanie wysłać ci wpisy do DM." -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "Włącz/wyłącz tytuły ścieżek jako status." -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "Tytuły utworów jako status: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "Przełącz wyświetlanie miniaturki w wiadomościach dźwiękowych." -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "Wyświetlanie miniatur: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "Procent wymagany do pominięcia utworów przez non-modów, 0 aby wyłączyć." -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "Głosowanie wyłączone. Wszyscy użytkownicy mogą używać komend zarządzania kolejką." -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "Procent głosów ustawiony na {percent}%." -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "Instrukcje ustawiania klucza API YouTube." -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "Instrukcje ustawiania tokenów Spotify API." -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1077,28 +1081,28 @@ msgstr "1. Przejdź do Spotify developers i zaloguj się na swoje konto Spotify. "6. Skopiuj swój identyfikator klienta i sekret klienta do:\n" "`{prefix}set api spotify client_id client_secret `" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "Ustaw kod kraju dla wyszukiwań Spotify." -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "Nieprawidłowy kod kraju" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "Użyj oficjalnego kodu [ISO 3166-1 alpha-2](https://pl.wikipedia.org/wiki/ISO_3166-1_alfa-2)." -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "Kod kraju ustawiony na {country}." -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1119,27 +1123,27 @@ msgstr "Ustawia poziom buforowania.\n\n" " Jeśli chcesz wyłączyć określoną pamięć podręczną zrób to używając liczby ujemnej.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "Maksymalny wiek: [{max_age}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "Lokalna pamięć podręczna Spotify: [{spotify_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "Lokalna pamięć podręczna YouTube: [{youtube_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "Pamięć podręczna lokalnego Lavalink: [{lavalink_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1150,15 +1154,15 @@ msgstr "Ustawia maksymalny wiek pamięci podręcznej.\n\n" " nieprawidłowy.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "Wiek pamięci podręcznej nie może być krótszy niż 7 dni. Jeśli chcesz go wyłączyć uruchom {prefix}audioset cache.\n" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "Ustawiłem/am wiek skrzynki na {age} dni" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" @@ -1167,57 +1171,57 @@ msgstr "Przełącz trwałe kolejki.\n\n" " Trwałe kolejki pozwalają przywrócić bieżącą kolejkę po zamknięciu kolejki.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "Trwałe kolejki: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "Ponownie uruchamia połączenie lavalink." -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "Nie udało się wyłączyć Lavalink'a" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "Proszę przeładować Audio (`{prefix}reload audio`)." -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "Ponowne uruchamianie Lavalink" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "Pełne uruchomienie Lavalink może potrwać kilka minut." -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "Ustaw maksymalną dozwoloną głośność na tym serwerze." -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "Błąd" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "Muzyka bez dźwięku nie jest w ogóle muzyką. Spróbuj ustawić głośność wyższą niż 0%." -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "Ustawienia zmienione" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "Maksymalna głośność została ograniczona do 150%, bądźcie spokojni o swoje uszy." -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "Maksymalna głośność została ograniczona do {max_volume}%." diff --git a/redbot/cogs/audio/core/commands/locales/pt-BR.po b/redbot/cogs/audio/core/commands/locales/pt-BR.po index 05c2eee52d1..327fa231d37 100644 --- a/redbot/cogs/audio/core/commands/locales/pt-BR.po +++ b/redbot/cogs/audio/core/commands/locales/pt-BR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -235,15 +235,15 @@ msgstr "Reprodução automática ao final da fila: {true_or_false}." #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -276,15 +276,15 @@ msgstr "Habilitado" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -326,14 +326,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -586,13 +586,13 @@ msgstr "Desconectar automaticamente do canal quando o bot estiver sozinho nele p #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "Hora inválida" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "Os segundos não podem ser menos de 0." @@ -904,8 +904,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "Escopo da lista: [{pscope}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "Configurações de Cache" @@ -926,8 +926,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "Cache local do Lavalink: [{lavalink_status}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "dias" @@ -970,66 +970,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "Caminho das faixas locais: [{localpath}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "Nenhum registro encontrado na sua pasta de dados." -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "Os registros são muito grandes, você pode encontrá-los em {path}" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "Eu preciso ser capaz de mandar MDs para te enviar os registros." -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "Ativar/desativar títulos das faixas como status." -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "Títulos da música como status: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "Exiba uma miniatura em mensagens de áudio." -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "Exibição de miniaturas: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "Porcentagem necessária para que os não-mods pulem faixas, 0 para desativar." -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "Votação desativada. Todos os usuários podem usar comandos de gerenciamento de fila." -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "Porcentagem de votação definida para {percent}%." -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "Instruções para definir a chave API do YouTube." -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "Instruções para definir os tokens da API do Spotify." -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1047,28 +1051,28 @@ msgstr "1. Acesse Spotify developers e faça login com sua conta do Spotify.\n" "6. Copie seu ID de cliente e seu segredo de cliente para:\n" "`{prefix}set api spotify client_id cliente_secret `" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "Defina o código do país para pesquisas do Spotify." -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "Código de País Inválido" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "Por favor, use um código [ISO 3166-1 alpha-2](https://pt.wikipedia.org/wiki/ISO_3166-1_alpha-2) oficial." -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "Código do País definido para {country}." -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1089,27 +1093,27 @@ msgstr "Definir o nível de cache.\n\n" " se você deseja desativar um cache específico use um número negativo.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "Idade máxima: [{max_age}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "Cache do Spotify: [{spotify_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "Cache do Youtube: [{youtube_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "Cache do Lavalink: [{lavalink_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1120,15 +1124,15 @@ msgstr "Definir a idade máxima do cache.\n\n" " inválida.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "A idade do cache não pode ser inferior a 7 dias. Se você deseja desativá-lo, execute {prefix}audioset cache.\n" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "Eu defini a idade do cache para {age} dias" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" @@ -1137,57 +1141,57 @@ msgstr "Alternar fila persistente.\n\n" " Filas persistentes permitem que a fila atual seja restaurada quando a fila é fechada.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "Filas persistentes: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "Reinicia a conexão lavalink." -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "Reiniciando Lavalink" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "Pode levar alguns minutos para Lavalink iniciar completamente." -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "Defina o volume máximo permitido neste servidor." -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "Erro" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "Música sem nenhum volume não é música. Tente definir o volume maior que 0%." -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "Configuração alterada" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "Agora o volume máximo é 150%, cuidado para não prejudicar seus ouvidos." -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "O volume máximo é limitado a {max_volume}%." diff --git a/redbot/cogs/audio/core/commands/locales/pt-PT.po b/redbot/cogs/audio/core/commands/locales/pt-PT.po index 0e188f88021..b862db2fb47 100644 --- a/redbot/cogs/audio/core/commands/locales/pt-PT.po +++ b/redbot/cogs/audio/core/commands/locales/pt-PT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -235,15 +235,15 @@ msgstr "Reprodução automática quando a fila terminar, {true_or_false}." #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -276,15 +276,15 @@ msgstr "Ativado" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -326,14 +326,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -600,13 +600,13 @@ msgstr "Desconecta-se automaticamente do canal quando o bot fica sozinho por x s #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "Hora inválida" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "Os segundos não podem ser menores que zero." @@ -918,8 +918,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "Nome da lista de reprodução: [{pscope}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "Configurações da cache" @@ -940,8 +940,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "Cache Lavalink local: [{lavalink_status}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "dias" @@ -991,66 +991,70 @@ msgstr "Versão do Lavalinch: [{llversion}]\n" msgid "Localtracks path: [{localpath}]\n" msgstr "Caminho das faixas locais: [{localpath}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "Envia os logs de nós de Lavalink gerenciados para seus DMs." -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "Nenhum registro encontrado na sua pasta de dados." -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "Os logs são muito grandes, pode encontrá-los em {path}" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "Eu preciso ser capaz de mandar uma MD a si para enviar os logs." -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "Ativar/desativar títulos das faixas como status." -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "Títulos da música como status: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "Exiba uma miniatura em mensagens de áudio." -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "Exibição de miniatura: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "Percentagem necessária para que os não mods saltem de faixas, 0 para desabilitar." -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "Votação desabilitada. Todos os utilizadores podem usar comandos de gestão da fila." -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "Porcentagem de votação definida para {percent}%." -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "Instruções para definir a chave da API do YouTube." -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "Instruções para definir a chave da API do YouTube." -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1061,28 +1065,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "Defina o código do país para pesquisas no Spotify." -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "Código de País Inválido" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "Código do país definido para {country}." -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1095,27 +1099,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "Idade máxima: [{max_age}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1123,72 +1127,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "Erro" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "Definições alteradas" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/ru-RU.po b/redbot/cogs/audio/core/commands/locales/ru-RU.po index 71be0980006..060e23c0a71 100644 --- a/redbot/cogs/audio/core/commands/locales/ru-RU.po +++ b/redbot/cogs/audio/core/commands/locales/ru-RU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -235,15 +235,15 @@ msgstr "Авто-воспроизведение по окончании очер #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -276,15 +276,15 @@ msgstr "Включено" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -326,14 +326,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -609,13 +609,13 @@ msgstr "Автоматическое отключение от канала, к #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "Неверное время" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "Секунды не могут быть меньше нуля." @@ -927,8 +927,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "Размер плейлиста: [{pscope}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "Настройки кэша" @@ -949,8 +949,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "Локальный кэш Lavalink: [{lavalink_status}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "дней" @@ -993,66 +993,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "Путь к локальным трекам: [{localpath}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "Журналы не найдены в папке данных." -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "Логи слишком большие, вы можете найти их в {path}" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "Мне нужно иметь возможность отправить вам отчеты." -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "Включить/отключить названия треков в статусе." -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "Названия песен в статусе: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "Переключить отображение миниатюры на аудио сообщениях." -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "Отображение миниатюр: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "Процент, необходимый для пропуска трека для не модераторов. 0, чтобы отключить." -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "Голосование отключено. Все пользователи могут использовать команды управления очередью." -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "Процент голосов установлен в {percent}%." -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "Инструкции по установке ключа You_Tube API." -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "Инструкции по установке токенов Spotify API." -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1070,28 +1074,28 @@ msgstr "1. Перейдите на страницу Spotify для разраб "6. Скопируйте ваш ID клиента и секрет клиента в:\n" "`{prefix}установите api spotify client_id client_secret `" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "Установите код страны для поиска в Spotify." -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "Неверный код страны" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "Пожалуйста, используйте официальный код [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)." -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "Код страны установлен на {country}." -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1112,27 +1116,27 @@ msgstr "Устанавливает уровень кэширования.\n\n" " Если вы хотите отключить определенный кэш, используйте отрицательное число.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "Макс. возраст: [{max_age}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "Кэш Spotify: [{spotify_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "Кэш Youtube: [{youtube_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "Кэш Lavalink: [{lavalink_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1143,15 +1147,15 @@ msgstr "Устанавливает максимальный возраст кэ " недействительной.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "Возраст кеширования не может быть менее 7 дней. Если вы хотите отключить его, запустите `{prefix}audioset cache`.\n" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "Я установил возраст кэша на {age} дней" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" @@ -1160,57 +1164,57 @@ msgstr "Переключение постоянных очередей.\n\n" " Постоянные очереди позволяют восстановить текущую очередь при закрытии очереди.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "Постоянные очереди {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "Перезапуск соединение с lava link." -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "Пожалуйста, перезагрузите Audio (`{prefix}reload audio`)." -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "Перезапуск Lava link" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "Полный запуск Lava link может занять пару минут." -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "Установите максимальный объем, разрешенный на данном сервере." -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "Ошибка" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "Музыка без звука - это не музыка вообще. Попробуйте установить громкость выше 0%." -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "Настройка изменена" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "Максимальная громкость была ограничена 150%, не напрягайте слух." -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "Максимальный объем был ограничен до {max_volume}%." diff --git a/redbot/cogs/audio/core/commands/locales/sk-SK.po b/redbot/cogs/audio/core/commands/locales/sk-SK.po index f9e6f0d3df1..b28f428caa4 100644 --- a/redbot/cogs/audio/core/commands/locales/sk-SK.po +++ b/redbot/cogs/audio/core/commands/locales/sk-SK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Slovak\n" "MIME-Version: 1.0\n" @@ -233,15 +233,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -274,15 +274,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -322,14 +322,14 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -571,13 +571,13 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "" @@ -861,8 +861,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "" @@ -883,8 +883,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "dní" @@ -927,66 +927,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -997,28 +1001,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1031,27 +1035,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1059,72 +1063,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/sl-SI.po b/redbot/cogs/audio/core/commands/locales/sl-SI.po index 83518d4028c..d0f785cad9e 100644 --- a/redbot/cogs/audio/core/commands/locales/sl-SI.po +++ b/redbot/cogs/audio/core/commands/locales/sl-SI.po @@ -1,14 +1,14 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+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.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" +"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" "X-Crowdin-Language: sl\n" @@ -233,15 +233,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -274,15 +274,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -322,14 +322,14 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -571,13 +571,13 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "" @@ -861,8 +861,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "" @@ -883,8 +883,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "dnevi" @@ -927,66 +927,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -997,28 +1001,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1031,27 +1035,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1059,72 +1063,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/sv-SE.po b/redbot/cogs/audio/core/commands/locales/sv-SE.po index 91c3417dc1e..280636ced15 100644 --- a/redbot/cogs/audio/core/commands/locales/sv-SE.po +++ b/redbot/cogs/audio/core/commands/locales/sv-SE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -233,15 +233,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -274,15 +274,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -322,14 +322,14 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -571,13 +571,13 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "" @@ -861,8 +861,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "" @@ -883,8 +883,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "dagar" @@ -927,66 +927,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -997,28 +1001,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1031,27 +1035,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1059,72 +1063,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/tr-TR.po b/redbot/cogs/audio/core/commands/locales/tr-TR.po index 7568db3b099..456f4a1b651 100644 --- a/redbot/cogs/audio/core/commands/locales/tr-TR.po +++ b/redbot/cogs/audio/core/commands/locales/tr-TR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -235,15 +235,15 @@ msgstr "Sıradaki parçalar bittiğinde otomatik çalma: {true_or_false}." #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -276,15 +276,15 @@ msgstr "Etkinleştirildi" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -326,14 +326,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -586,13 +586,13 @@ msgstr "Botun kanalda kaç saniye yalnız kalırsa kanaldan ayrılacağını aya #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "Geçersiz süre" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "Süre sıfır saniyeden daha düşük olamaz." @@ -904,8 +904,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "Çalma listesi kapsamı: [{pscope}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "Önbellek Ayarları" @@ -926,8 +926,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "Yerel Lavalink önbelleği: [{lavalink_status}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "gün" @@ -970,66 +970,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "Yerel parçalar klasörü: [{localpath}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "Veri klasörünüzde hiç kayıt bulunamadı." -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "Kayıtlar çok büyük, onları {path} konumunda bulabilirsiniz" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "Sana kayıtları gönderebilmek için özel mesaj atabilmem gerek." -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "Şarkı isimlerini statüs olarak ayarlamayı açıp/kapatır." -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "Şarkı isimleri statüs olarak ayarlı:{true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "Thumbnail'leri şarkı bildirimlerinde göstermeyi açar/kapatır." -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "Thumbnail gösterilmesi:" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "Yönetici olmayan kullanıcıların şarkıyı geçmeleri için gerekli olan oy yüzdesi. Devre dışı bırakmak için 0 girin." -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "Oylama devre dışı. Tüm kullanıcılar sıra yönetimi komutlarını kullanabilir." -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "Geçme oylama yüzdesi %{percent} olarak ayarlandı." -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "YouTube API tokenini ayarlamak için bilgiler." -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "Spotify API tokenini ayarlamak için bilgiler." -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1047,28 +1051,28 @@ msgstr "1. Spotify developers sayfasına spotify hesabınızla giriş yapın.\n" "6. İstemci IDnizi ve istemcisi sırrınızı (client secret) kopyalayın ve gerekli yerlere yapıştırın:\n" "`{prefix}set api spotify client_id client_secret `" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "Spotify aramaları için ülke kodunu ayarlayın." -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "Geçersiz Ülke Kodu" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "Lütfen geçerli bir [ISO 3166-1 alpha-2](https://tr.wikipedia.org/wiki/ISO_3166) kodu kullanın." -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "Ülke Kodu {country} olarak ayarlandı." -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1089,27 +1093,27 @@ msgstr "Önbellekleme düzeyini ayarla.\n\n" " Belirli bir önbelleği kapamak istiyorsanız negatif sayı kullanın.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "Maksimum yaş: [{max_age}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "Spotify önbelleği: [{spotify_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "Youtube önbelleği: [{youtube_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "Lavalink önbelleği: [{lavalink_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1120,15 +1124,15 @@ msgstr "Maksimum önbellek yaşını ayarlar.\n\n" " sağlar.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "Önbellek yaşı 7 günden az olamaz. Eğer kapamak istiyorsanız `{prefix}audioset cache` çalıştırın.\n" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "Önbellekleme süresi {age} gün olarak ayarlandı." -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" @@ -1137,57 +1141,57 @@ msgstr "Kalıcı sıraları aç/kapa.\n\n" " Kalıcı sıralar mevcut sıranın sıra durdurulduğunda devam ettirilmesin sağlar.\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "Kalıcı sıralar:{true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "Lavalink bağlantısını yeniden başlatır." -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "Lavalink kapatılamadı" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "Lütfen Audio'yu yeniden başlatın (`{prefix}reload audio`)." -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "Lavalink yeniden başlatılıyor." -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "Lavalink'in tamamen başlatılması bir kaç dakika sürebilir." -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "Bu sunucuda izin verilen en yüksek sesi ayarlayın." -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "Hata" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "Sessiz müzik müziğe benzemez. Sesi %0 dan yükseğe ayarlamayı deneyin." -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "Ayar değiştirildi" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "En yüksek ses %150 ile sınırlıdır, kulaklarınıza iyi davranın." -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "En yüksek ses %{max_volume} ile sınırlıdır." diff --git a/redbot/cogs/audio/core/commands/locales/uk-UA.po b/redbot/cogs/audio/core/commands/locales/uk-UA.po index b1530f36a6b..5865a49a4b2 100644 --- a/redbot/cogs/audio/core/commands/locales/uk-UA.po +++ b/redbot/cogs/audio/core/commands/locales/uk-UA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "MIME-Version: 1.0\n" @@ -233,15 +233,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -274,15 +274,15 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -322,14 +322,14 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -571,13 +571,13 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "" @@ -861,8 +861,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "" @@ -883,8 +883,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "" @@ -927,66 +927,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -997,28 +1001,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1031,27 +1035,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1059,72 +1063,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/vi-VN.po b/redbot/cogs/audio/core/commands/locales/vi-VN.po index 4b26c29b525..d4594ca127c 100644 --- a/redbot/cogs/audio/core/commands/locales/vi-VN.po +++ b/redbot/cogs/audio/core/commands/locales/vi-VN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "MIME-Version: 1.0\n" @@ -233,15 +233,15 @@ msgstr "Tự động phát nhạc khi hàng đợi hết thúc: {true_or_false}. #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -274,15 +274,15 @@ msgstr "Đã bật" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -324,14 +324,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -574,13 +574,13 @@ msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "Số giây không thể nhỏ hơn 0." @@ -867,8 +867,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "Phạm vi danh sách phát [{pscope}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "Cài đặt bộ nhớ đệm" @@ -889,8 +889,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "" @@ -933,66 +933,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "Bật/tắt tiêu đề của bản nhạc dưới dạng trạng thái." -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "Tên bài hát dưới dạng trạng thái: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "Thiết lập hiển thị hình thu nhỏ trên tin nhắn đính kèm." -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "Hiển thị hình thu nhỏ: {true_or_false}." -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "Tỷ lệ phần trăm cần thiết để người không phải mod skip bản nhạc, 0 để tắt." -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "Bỏ phiếu bị vô hiệu hóa. Tất cả người dùng đều có thể sử dụng các lệnh quản lý hàng đợi." -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "Phần trăm bỏ phiếu được đặt thành {percent}%." -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "Hướng dẫn lấy YouTube API key." -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "Hướng dẫn lấy Spotify API tokens." -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1003,28 +1007,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1037,27 +1041,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "Tuổi tối đa: [{max_age}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1065,72 +1069,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "Lỗi" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "Âm nhạc không có âm thanh không phải là âm nhạc. Hãy thử đặt âm lượng cao hơn rồi đến 0%." -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "Thiết lập đã được thay đổi" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "Âm lượng tối đa được giới hạn tới 150, hãy từ từ thôi." -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "Âm lượng cao nhất bị hạn ở {max_volume}%." diff --git a/redbot/cogs/audio/core/commands/locales/zh-CN.po b/redbot/cogs/audio/core/commands/locales/zh-CN.po index 20c5c52fc1f..8e80f7cba6f 100644 --- a/redbot/cogs/audio/core/commands/locales/zh-CN.po +++ b/redbot/cogs/audio/core/commands/locales/zh-CN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -235,15 +235,15 @@ msgstr "队列结束时自动播放: {true_or_false}" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -276,15 +276,15 @@ msgstr "已启用" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -326,14 +326,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -586,13 +586,13 @@ msgstr "当机器人单独在频道中 x 秒时自动断开与频道的连接, #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "无效时间" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "秒数不能小于零" @@ -904,8 +904,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "播放列表类型:[{pscope}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "缓存设置" @@ -926,8 +926,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "本地Lavalink 缓存:[{lavalink_status}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "天" @@ -970,66 +970,70 @@ msgstr "" msgid "Localtracks path: [{localpath}]\n" msgstr "本地曲目路径:[{localpath}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "在您的数据文件夹中找不到日志。" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "日志太大,您可以在 {path} 中找到" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "我需要能够私信你给你发送日志。" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "启用/禁用音轨标题作为状态。" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "歌曲标题作为状态: {true_or_false}" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "切换在音频信息上显示缩略图。" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "缩略图显示: {true_or_false}" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "投票已禁用。所有用户都可以使用队列管理命令。" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "投票百分比设置为 {percent}%。" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "设置 YouTube API 密钥的说明" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "设置 Spotify API 令牌的说明" -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1040,28 +1044,28 @@ msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "`{prefix}set api spotify client_id client_secret `" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "设置Spotify搜索的国家代码" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "无效的国家代码" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "国家代码已设置为 {country}" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1074,27 +1078,27 @@ msgid "Sets the caching level.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1102,72 +1106,72 @@ msgid "Sets the cache max age.\n\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" " " msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "请重新加载音频 (\"{prefix}重新加载音频)。" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "" diff --git a/redbot/cogs/audio/core/commands/locales/zh-TW.po b/redbot/cogs/audio/core/commands/locales/zh-TW.po index b869242c66c..723fee90633 100644 --- a/redbot/cogs/audio/core/commands/locales/zh-TW.po +++ b/redbot/cogs/audio/core/commands/locales/zh-TW.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-01-04 00:13+0000\n" +"POT-Creation-Date: 2024-07-10 14:13+0000\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "MIME-Version: 1.0\n" @@ -235,15 +235,15 @@ msgstr "當佇列已空時的自動播放: {true_or_false}。" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1122 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -276,15 +276,15 @@ msgstr "已啟用" #: redbot/cogs/audio/core/commands/audioset.py:1102 #: redbot/cogs/audio/core/commands/audioset.py:1103 #: redbot/cogs/audio/core/commands/audioset.py:1124 -#: redbot/cogs/audio/core/commands/audioset.py:1207 -#: redbot/cogs/audio/core/commands/audioset.py:1222 -#: redbot/cogs/audio/core/commands/audioset.py:1367 -#: redbot/cogs/audio/core/commands/audioset.py:1368 -#: redbot/cogs/audio/core/commands/audioset.py:1369 -#: redbot/cogs/audio/core/commands/audioset.py:1412 -#: redbot/cogs/audio/core/commands/audioset.py:1413 -#: redbot/cogs/audio/core/commands/audioset.py:1414 -#: redbot/cogs/audio/core/commands/audioset.py:1456 +#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1236 +#: redbot/cogs/audio/core/commands/audioset.py:1381 +#: redbot/cogs/audio/core/commands/audioset.py:1382 +#: redbot/cogs/audio/core/commands/audioset.py:1383 +#: redbot/cogs/audio/core/commands/audioset.py:1426 +#: redbot/cogs/audio/core/commands/audioset.py:1427 +#: redbot/cogs/audio/core/commands/audioset.py:1428 +#: redbot/cogs/audio/core/commands/audioset.py:1470 #: redbot/cogs/audio/core/commands/controller.py:422 #: redbot/cogs/audio/core/commands/controller.py:466 #: redbot/cogs/audio/core/commands/controller.py:775 @@ -326,14 +326,14 @@ msgstr "\n" #: redbot/cogs/audio/core/commands/audioset.py:904 #: redbot/cogs/audio/core/commands/audioset.py:919 #: redbot/cogs/audio/core/commands/audioset.py:939 -#: redbot/cogs/audio/core/commands/audioset.py:1205 -#: redbot/cogs/audio/core/commands/audioset.py:1220 -#: redbot/cogs/audio/core/commands/audioset.py:1241 -#: redbot/cogs/audio/core/commands/audioset.py:1248 -#: redbot/cogs/audio/core/commands/audioset.py:1308 -#: redbot/cogs/audio/core/commands/audioset.py:1330 -#: redbot/cogs/audio/core/commands/audioset.py:1438 -#: redbot/cogs/audio/core/commands/audioset.py:1454 +#: redbot/cogs/audio/core/commands/audioset.py:1219 +#: redbot/cogs/audio/core/commands/audioset.py:1234 +#: redbot/cogs/audio/core/commands/audioset.py:1255 +#: redbot/cogs/audio/core/commands/audioset.py:1262 +#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1344 +#: redbot/cogs/audio/core/commands/audioset.py:1452 +#: redbot/cogs/audio/core/commands/audioset.py:1468 #: redbot/cogs/audio/core/commands/controller.py:420 #: redbot/cogs/audio/core/commands/controller.py:464 #: redbot/cogs/audio/core/commands/controller.py:782 @@ -609,13 +609,13 @@ msgstr "當機器人單獨在頻道超過 x 秒,會自動從頻道斷開。設 #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Invalid Time" msgstr "無效的時間" #: redbot/cogs/audio/core/commands/audioset.py:689 #: redbot/cogs/audio/core/commands/audioset.py:718 -#: redbot/cogs/audio/core/commands/audioset.py:1233 +#: redbot/cogs/audio/core/commands/audioset.py:1247 msgid "Seconds can't be less than zero." msgstr "秒數不能小於零。" @@ -927,8 +927,8 @@ msgid "Playlist scope: [{pscope}]\n" msgstr "播放清單範圍: [{pscope}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1093 -#: redbot/cogs/audio/core/commands/audioset.py:1372 -#: redbot/cogs/audio/core/commands/audioset.py:1417 +#: redbot/cogs/audio/core/commands/audioset.py:1386 +#: redbot/cogs/audio/core/commands/audioset.py:1431 msgid "Cache Settings" msgstr "快取設定" @@ -949,8 +949,8 @@ msgid "Local Lavalink cache: [{lavalink_status}]\n" msgstr "Lavalink 本機快取:[{lavalink_status}]\n" #: redbot/cogs/audio/core/commands/audioset.py:1100 -#: redbot/cogs/audio/core/commands/audioset.py:1366 -#: redbot/cogs/audio/core/commands/audioset.py:1411 +#: redbot/cogs/audio/core/commands/audioset.py:1380 +#: redbot/cogs/audio/core/commands/audioset.py:1425 msgid "days" msgstr "日" @@ -1000,66 +1000,70 @@ msgstr "Lavalink 建置 :[{llversion}]\n" msgid "Localtracks path: [{localpath}]\n" msgstr "本地歌曲路徑:[{localpath}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1160 +#: redbot/cogs/audio/core/commands/audioset.py:1159 +msgid "Lavalink Plugin Versions" +msgstr "" + +#: redbot/cogs/audio/core/commands/audioset.py:1174 #, docstring msgid "Sends the managed Lavalink node logs to your DMs." msgstr "傳送 Lavalink server 日誌到你的私訊。" -#: redbot/cogs/audio/core/commands/audioset.py:1167 -#: redbot/cogs/audio/core/commands/audioset.py:1169 +#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1183 msgid "No logs found in your data folder." msgstr "沒有在你的資料夾中找到日誌紀錄。" -#: redbot/cogs/audio/core/commands/audioset.py:1181 +#: redbot/cogs/audio/core/commands/audioset.py:1195 msgid "Logs are too large, you can find them in {path}" msgstr "日誌記錄過大,不過你可以在 {path} 找到。" -#: redbot/cogs/audio/core/commands/audioset.py:1191 +#: redbot/cogs/audio/core/commands/audioset.py:1205 msgid "I need to be able to DM you to send you the logs." msgstr "我需要能夠私訊你才能傳日誌紀錄給你。" -#: redbot/cogs/audio/core/commands/audioset.py:1200 +#: redbot/cogs/audio/core/commands/audioset.py:1214 #, docstring msgid "Enable/disable tracks' titles as status." msgstr "啟用/停用歌曲標題作為狀態。" -#: redbot/cogs/audio/core/commands/audioset.py:1206 +#: redbot/cogs/audio/core/commands/audioset.py:1220 msgid "Song titles as status: {true_or_false}." msgstr "歌曲標題作為狀態: {true_or_false}。" -#: redbot/cogs/audio/core/commands/audioset.py:1215 +#: redbot/cogs/audio/core/commands/audioset.py:1229 #, docstring msgid "Toggle displaying a thumbnail on audio messages." msgstr "切換在播放消息上顯示縮圖。" -#: redbot/cogs/audio/core/commands/audioset.py:1221 +#: redbot/cogs/audio/core/commands/audioset.py:1235 msgid "Thumbnail display: {true_or_false}." msgstr "縮圖顯示: {true_or_false}。" -#: redbot/cogs/audio/core/commands/audioset.py:1230 +#: redbot/cogs/audio/core/commands/audioset.py:1244 #, docstring msgid "Percentage needed for non-mods to skip tracks, 0 to disable." msgstr "須設定 百分比 給非管理的成員略過曲目,設定 0 以取消該功能。" -#: redbot/cogs/audio/core/commands/audioset.py:1242 +#: redbot/cogs/audio/core/commands/audioset.py:1256 msgid "Voting disabled. All users can use queue management commands." msgstr "停用投票功能。 所有使用者都可以使用播放清單管理命令。" -#: redbot/cogs/audio/core/commands/audioset.py:1249 +#: redbot/cogs/audio/core/commands/audioset.py:1263 msgid "Vote percentage set to {percent}%." msgstr "投票比率 已設定為 {percent}%。" -#: redbot/cogs/audio/core/commands/audioset.py:1258 +#: redbot/cogs/audio/core/commands/audioset.py:1272 #, docstring msgid "Instructions to set the YouTube API key." msgstr "設定 YouTube API key 的指示說明。" -#: redbot/cogs/audio/core/commands/audioset.py:1277 +#: redbot/cogs/audio/core/commands/audioset.py:1291 #, docstring msgid "Instructions to set the Spotify API tokens." msgstr "設定Spotify API token的說明。" -#: redbot/cogs/audio/core/commands/audioset.py:1278 +#: redbot/cogs/audio/core/commands/audioset.py:1292 msgid "1. Go to Spotify developers and log in with your Spotify account.\n" "(https://developer.spotify.com/dashboard/applications)\n" "2. Click \"Create An App\".\n" @@ -1077,28 +1081,28 @@ msgstr "1. 前往 Spotify developers 並 登入你的 Spotify 帳號。\n" "6. 複製你的 client ID 和你的 client secret 到:\n" "`{prefix}set api spotify client_id client_secret `" -#: redbot/cogs/audio/core/commands/audioset.py:1295 -#: redbot/cogs/audio/core/commands/audioset.py:1317 +#: redbot/cogs/audio/core/commands/audioset.py:1309 +#: redbot/cogs/audio/core/commands/audioset.py:1331 #, docstring msgid "Set the country code for Spotify searches." msgstr "設定Spotify搜索的國家/地區代碼。" -#: redbot/cogs/audio/core/commands/audioset.py:1299 -#: redbot/cogs/audio/core/commands/audioset.py:1321 +#: redbot/cogs/audio/core/commands/audioset.py:1313 +#: redbot/cogs/audio/core/commands/audioset.py:1335 msgid "Invalid Country Code" msgstr "無效的國碼" -#: redbot/cogs/audio/core/commands/audioset.py:1300 -#: redbot/cogs/audio/core/commands/audioset.py:1322 +#: redbot/cogs/audio/core/commands/audioset.py:1314 +#: redbot/cogs/audio/core/commands/audioset.py:1336 msgid "Please use an official [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code." msgstr "請使用官方 [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) 代碼。" -#: redbot/cogs/audio/core/commands/audioset.py:1309 -#: redbot/cogs/audio/core/commands/audioset.py:1331 +#: redbot/cogs/audio/core/commands/audioset.py:1323 +#: redbot/cogs/audio/core/commands/audioset.py:1345 msgid "Country Code set to {country}." msgstr "國碼已設為 {country}。" -#: redbot/cogs/audio/core/commands/audioset.py:1339 +#: redbot/cogs/audio/core/commands/audioset.py:1353 #, docstring msgid "Sets the caching level.\n\n" " Level can be one of the following:\n\n" @@ -1119,27 +1123,27 @@ msgstr "設定快取等級。\n\n" " 如果您想停用指定的快取,可使用負數。\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1361 -#: redbot/cogs/audio/core/commands/audioset.py:1406 +#: redbot/cogs/audio/core/commands/audioset.py:1375 +#: redbot/cogs/audio/core/commands/audioset.py:1420 msgid "Max age: [{max_age}]\n" msgstr "最長期限:[{max_age}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1362 -#: redbot/cogs/audio/core/commands/audioset.py:1407 +#: redbot/cogs/audio/core/commands/audioset.py:1376 +#: redbot/cogs/audio/core/commands/audioset.py:1421 msgid "Spotify cache: [{spotify_status}]\n" msgstr "Spotify快取: [{spotify_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1363 -#: redbot/cogs/audio/core/commands/audioset.py:1408 +#: redbot/cogs/audio/core/commands/audioset.py:1377 +#: redbot/cogs/audio/core/commands/audioset.py:1422 msgid "Youtube cache: [{youtube_status}]\n" msgstr "Youtube快取: [{youtube_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1364 -#: redbot/cogs/audio/core/commands/audioset.py:1409 +#: redbot/cogs/audio/core/commands/audioset.py:1378 +#: redbot/cogs/audio/core/commands/audioset.py:1423 msgid "Lavalink cache: [{lavalink_status}]\n" msgstr "Lavalink快取: [{lavalink_status}]\n" -#: redbot/cogs/audio/core/commands/audioset.py:1424 +#: redbot/cogs/audio/core/commands/audioset.py:1438 #, docstring msgid "Sets the cache max age.\n\n" " This commands allows you to set the max number of days before an entry in the cache becomes\n" @@ -1150,15 +1154,15 @@ msgstr "設定快取最長期限:\n\n" " \n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1431 +#: redbot/cogs/audio/core/commands/audioset.py:1445 msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n" msgstr "快取期限不得少於 7 天。如果您要停用它,請執行 {prefix}audioset cache。\n" -#: redbot/cogs/audio/core/commands/audioset.py:1436 +#: redbot/cogs/audio/core/commands/audioset.py:1450 msgid "I've set the cache age to {age} days" msgstr "我已將快取期限設定為 {age} 天" -#: redbot/cogs/audio/core/commands/audioset.py:1443 +#: redbot/cogs/audio/core/commands/audioset.py:1457 #, docstring msgid "Toggle persistent queues.\n\n" " Persistent queues allows the current queue to be restored when the queue closes.\n" @@ -1167,57 +1171,57 @@ msgstr "切換持久隊列。\n\n" " 持久隊列允許在隊列關閉時恢復當前隊列。\n" " " -#: redbot/cogs/audio/core/commands/audioset.py:1455 +#: redbot/cogs/audio/core/commands/audioset.py:1469 msgid "Persisting queues: {true_or_false}." msgstr "永久佇列:{true_or_false}" -#: redbot/cogs/audio/core/commands/audioset.py:1463 +#: redbot/cogs/audio/core/commands/audioset.py:1477 #, docstring msgid "Restarts the lavalink connection." msgstr "重啟Lavalink連接。" -#: redbot/cogs/audio/core/commands/audioset.py:1471 +#: redbot/cogs/audio/core/commands/audioset.py:1485 #: redbot/cogs/audio/core/commands/llset.py:731 msgid "Failed To Shutdown Lavalink Node" msgstr "關閉 Lavalink 節點失敗!" -#: redbot/cogs/audio/core/commands/audioset.py:1472 +#: redbot/cogs/audio/core/commands/audioset.py:1486 #: redbot/cogs/audio/core/commands/llset.py:187 #: redbot/cogs/audio/core/commands/llset.py:732 msgid "Please reload Audio (`{prefix}reload audio`)." msgstr "請重新加載Audio (`{prefix}reload audio`)。" -#: redbot/cogs/audio/core/commands/audioset.py:1479 +#: redbot/cogs/audio/core/commands/audioset.py:1493 msgid "Restarting Lavalink" msgstr "正在重新啟動 Lavalink" -#: redbot/cogs/audio/core/commands/audioset.py:1480 +#: redbot/cogs/audio/core/commands/audioset.py:1494 msgid "It can take a couple of minutes for Lavalink to fully start up." msgstr "Lavalink完全開啟可能需要幾分鐘。" -#: redbot/cogs/audio/core/commands/audioset.py:1487 +#: redbot/cogs/audio/core/commands/audioset.py:1501 #, docstring msgid "Set the maximum volume allowed in this server." msgstr "設置此服務器允許的最大音量。" -#: redbot/cogs/audio/core/commands/audioset.py:1491 +#: redbot/cogs/audio/core/commands/audioset.py:1505 msgid "Error" msgstr "錯誤" -#: redbot/cogs/audio/core/commands/audioset.py:1492 +#: redbot/cogs/audio/core/commands/audioset.py:1506 msgid "Music without sound isn't music at all. Try setting the volume higher then 0%." msgstr "沒有聲音的音樂并不是音樂,請嘗試將音量提高至大於0的數字。" -#: redbot/cogs/audio/core/commands/audioset.py:1500 -#: redbot/cogs/audio/core/commands/audioset.py:1508 +#: redbot/cogs/audio/core/commands/audioset.py:1514 +#: redbot/cogs/audio/core/commands/audioset.py:1522 msgid "Setting changed" msgstr "已變更設定。" -#: redbot/cogs/audio/core/commands/audioset.py:1501 +#: redbot/cogs/audio/core/commands/audioset.py:1515 msgid "The maximum volume has been limited to 150%, be easy on your ears." msgstr "最大音量已被限制至150%,音量過大可能對聽力造成損害。" -#: redbot/cogs/audio/core/commands/audioset.py:1509 +#: redbot/cogs/audio/core/commands/audioset.py:1523 msgid "The maximum volume has been limited to {max_volume}%." msgstr "最大音量已被限制至{max_volume}%。" diff --git a/redbot/cogs/audio/core/events/dpy.py b/redbot/cogs/audio/core/events/dpy.py index b4327a70bc2..7627dc42da7 100644 --- a/redbot/cogs/audio/core/events/dpy.py +++ b/redbot/cogs/audio/core/events/dpy.py @@ -40,10 +40,10 @@ "add_reactions": _("Add Reactions"), "view_audit_log": _("View Audit Log"), "priority_speaker": _("Priority Speaker"), - "stream": _("Go Live"), + "stream": _("Video"), "read_messages": _("Read Text Channels & See Voice Channels"), "send_messages": _("Send Messages"), - "send_tts_messages": _("Send TTS Messages"), + "send_tts_messages": _("Send Text-to-speech Messages"), "manage_messages": _("Manage Messages"), "embed_links": _("Embed Links"), "attach_files": _("Attach Files"), @@ -70,12 +70,16 @@ "create_private_threads": _("Create Private Threads"), "external_stickers": _("Use External Stickers"), "send_messages_in_threads": _("Send Messages in Threads"), - "start_embedded_activities": _("Start Activities"), - "moderate_members": _("Moderate Member"), + "use_embedded_activities": _("Use Activities"), + "moderate_members": _("Time out members"), + "view_creator_monetization_analytics": _("View Creator Monetization Analytics"), "use_soundboard": _("Use Soundboard"), "create_expressions": _("Create Expressions"), + "create_events": _("Create Events"), "use_external_sounds": _("Use External Sounds"), "send_voice_messages": _("Send Voice Messages"), + "send_polls": _("Create Polls"), + "use_external_apps": _("Use External Apps"), } DANGEROUS_COMMANDS = { diff --git a/redbot/cogs/audio/core/events/locales/ar-SA.po b/redbot/cogs/audio/core/events/locales/ar-SA.po index c17db71e868..69873194feb 100644 --- a/redbot/cogs/audio/core/events/locales/ar-SA.po +++ b/redbot/cogs/audio/core/events/locales/ar-SA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,189 +176,205 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "تمكين" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "معطل" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "لم يتم العثور على دور DJ. تعطيل وضع DJ." -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "بيئة غير صالحة" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "" diff --git a/redbot/cogs/audio/core/events/locales/bg-BG.po b/redbot/cogs/audio/core/events/locales/bg-BG.po index f13feb71477..ab8b5a969b9 100644 --- a/redbot/cogs/audio/core/events/locales/bg-BG.po +++ b/redbot/cogs/audio/core/events/locales/bg-BG.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,189 +176,205 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "" diff --git a/redbot/cogs/audio/core/events/locales/cs-CZ.po b/redbot/cogs/audio/core/events/locales/cs-CZ.po index 30bec1bc447..92c12d7c3b3 100644 --- a/redbot/cogs/audio/core/events/locales/cs-CZ.po +++ b/redbot/cogs/audio/core/events/locales/cs-CZ.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,189 +176,205 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Povoleno" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Zakázáno" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "Momentálně se mi nedaří získat skladbu z uzlu Lavalink, zkuste to za pár minut znovu." -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "" diff --git a/redbot/cogs/audio/core/events/locales/da-DK.po b/redbot/cogs/audio/core/events/locales/da-DK.po index 9040d8c0dc3..fa7aec3efd8 100644 --- a/redbot/cogs/audio/core/events/locales/da-DK.po +++ b/redbot/cogs/audio/core/events/locales/da-DK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Danish\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,189 +176,205 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "" diff --git a/redbot/cogs/audio/core/events/locales/de-DE.po b/redbot/cogs/audio/core/events/locales/de-DE.po index 7c7348298e4..0f46254eb5c 100644 --- a/redbot/cogs/audio/core/events/locales/de-DE.po +++ b/redbot/cogs/audio/core/events/locales/de-DE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -56,8 +56,8 @@ msgid "Priority Speaker" msgstr "Priorisierter Sprecher" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" -msgstr "Auf Sendung gehen" +msgid "Video" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 msgid "Read Text Channels & See Voice Channels" @@ -68,8 +68,8 @@ msgid "Send Messages" msgstr "Nachrichten senden" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" -msgstr "TTS Nachrichten senden" +msgid "Send Text-to-speech Messages" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 msgid "Manage Messages" @@ -176,132 +176,148 @@ msgid "Send Messages in Threads" msgstr "Nachrichten in Threads senden" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" -msgstr "Starte Aktivitäten" +msgid "Use Activities" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" -msgstr "Mitglied moderieren" +msgid "Time out members" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 +msgid "View Creator Monetization Analytics" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:76 msgid "Use Soundboard" msgstr "Soundboard verwenden" -#: redbot/cogs/audio/core/events/dpy.py:76 +#: redbot/cogs/audio/core/events/dpy.py:77 msgid "Create Expressions" msgstr "Ausdrücke erstellen" -#: redbot/cogs/audio/core/events/dpy.py:77 +#: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 msgid "Use External Sounds" msgstr "Externe Sounds verwenden" -#: redbot/cogs/audio/core/events/dpy.py:78 +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "Sprachnachrichten senden" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "Dieser Befehl ändert den ausführbaren Pfad von Java, Dies ist nützlich, wenn Sie mehrere Installationen von Java haben und die Standardinstallation Probleme verursacht. Bitte ändern Sie dies nicht, außer Sie sind sicher, dass die von Ihnen angegebene Java-Version von Red unterstützt wird. Die Standard- und unterstützten Versionen sind derzeit Java 17 und 11." -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "Dieser Befehl wird die maximale RAM-Zuordnung für den verwalteten Lavalink-Knoten ändern In der Regel müssen Sie dies nie ändern, bevor Sie eine Änderung in Erwägung ziehen, wenden Sie sich bitte an unser Support-Team." -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "Dieser Befehl wird den gemanagten Lavalink-Knoten deaktivieren, wenn Sie diesen Befehl umschalten, müssen Sie einen externen Lavalink-Knoten angeben, mit dem eine Verbindung hergestellt werden soll. Falls Sie dies nicht tun, wird Audio nicht mehr funktionieren." -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "Dieser Befehl wird verwendet, um die IP anzugeben, die Red für die Verbindung zu einem externen Lavalink-Knoten verwendet. " -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "Dieser Befehl wird verwendet, um das Authentifizierungspasswort anzugeben, das Red verwendet, um sich mit einem externen Lavalink-Knoten zu verbinden." -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "Dieser Befehl wird zwischen gesicherten und ungesicherten Verbindungen zu einem externen Lavalink-Knoten umgeschaltet." -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "Dieser Befehl wird verwendet, um den Verbindungsport anzugeben, der von Red verwendet wird, um sich mit einem externen Lavalink-Knoten zu verbinden." -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "Dieser Befehl legt fest, an welche Netzwerkschnittstelle und IP der Knoten Lavalink sich binden wird standardmäßig ist dies 'localhost', ändern Sie dies nur, wenn der verwaltete Lavalink-Knoten an eine bestimmte IP/Schnittstelle gebunden werden soll." -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "Dieser Befehl ändert das Authentifizierungspasswort, das benötigt wird, um sich mit diesem verwalteten Knoten zu verbinden. Der Standardwert ist 'youshallnotpass'." -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "Dieser Befehl ändert den Verbindungs-Port, um sich mit diesem verwalteten Knoten zu verbinden. Ändern Sie dies nur, wenn der Standardport '2333' Konflikte mit bestehenden Anwendungen verursacht." -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "Dieser Befehl schaltet die Unterstützung von direkten Url-Streams wie Icecast oder Shoutcast-Streams um. Ein Beispiel ist ; das Deaktivieren dieser Option macht es den Bot unmöglich, einen direkten Url-Stream zu spielen." -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "Dieser Befehl schaltet die Unterstützung der lokalen Audiowiedergabe um. Ein Beispiel ist `/mnt/data/my_super_funky_track. p3`; Deaktivieren dieser Option führt dazu, dass der Bot keine lokalen Track-Inhalte abspielen kann." -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "Dieser Befehl schaltet die Unterstützung der SoundCloud-Wiedergabe um. Ein Beispiel ist ; die Deaktivierung wird es den Bot unmöglich machen, SoundCloud-Inhalte abzuspielen." -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "Dieser Befehl schaltet die Unterstützung der YouTube-Wiedergabe um (Spotify hängt von YouTube ab). Wenn Sie dies deaktivieren, wird der Bot nicht in der Lage sein, YouTube-Inhalte abzuspielen: Dies schließt Spotify ein." -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "Dieser Befehl aktiviert oder deaktiviert die Unterstützung der Wiedergabe von Twitch-Inhalten. Ein Beispiel dafür ist https://twitch.tv/monstercat; Wenn Sie dies deaktivieren, kann der Bot keinen Twitch-Inhalt abspielen." -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "Dieser Befehl aktiviert oder deaktiviert die Unterstützung der Wiedergabe von Vimeo-Inhalten. Ein Beispiel dafür ist https://vimeo.com/157743578; Wenn Sie dies deaktivieren, kann der Bot keinen Vimeo-Inhalt abspielen." -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "Diese Einstellung steuert den Framebuffer des verwalteten Knotens. Ändern Sie dies nicht, es sei denn, Sie werden dazu aufgefordert." -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "Diese Einstellung steuert den JDA-NAS-Puffer des verwalteten Knotens. Ändern Sie dies nicht, es sei denn, Sie werden dazu aufgefordert." -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "Dieser Befehl wird alle Einstellungen zurücksetzen, die von `[p]llset` geändert wurden." -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "Sie haben versucht, den verwalteten Lavalink-Knoten von Audio auf einer nicht unterstützten Architektur auszuführen. Es stehen nur Einstellungsbefehle zur Verfügung." -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "Mir fehlen die Berechtigungen, um Nachrichten in diesem Server zu senden. Bitte kümmern Sie sich so bald wie möglich darum." -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "Mir fehlen Berechtigungen auf diesem Server, bitte richten Sie dies so bald wie möglich an.\n\n" "Erwartete Berechtigungen:\n" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Aktiviert" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Deaktiviert" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "Sie sollten diesen Kommand nicht nutzen." -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" @@ -311,58 +327,58 @@ msgstr "\n" "Wenn Sie fortfahren möchten, geben Sie dieses token, Groß- und Kleinschreibung beachtend und ohne Leerzeichen, in Ihrer nächsten Nachricht ein.\n\n" "{confirm_token}" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "Keine DJ-Rolle gefunden. DJ-Modus deaktiviert." -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "`{user_input}` ist kein gültiger Wert für `{command}`" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "Argument kann nicht analysiert werden" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "Ungültiges Argument" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "Das Argument, das du für `{}` angegeben hast, ist ungültig: Ich erwartete ein `{}`." -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "Ungültige Umgebung" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "Die Verbindung zum Lavalink Knoten ist verloren gegangen." -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "Keine Player verfügbar" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "Die Bot ist nicht mit einem Sprachkanal verbunden." -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "Tracks können nicht abgerufen werden" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "Ich bin momentan nicht in der Lage, einen Titel von Lavalink zu bekommen. Versuchen Sie es in ein paar Minuten erneut." -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "Es gab ein Problem bei der Kommunikation mit Discord." -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "Dieser Fehler wurde dem Bot-Besitzer gemeldet." diff --git a/redbot/cogs/audio/core/events/locales/es-ES.po b/redbot/cogs/audio/core/events/locales/es-ES.po index 98d5b9a46d1..b4399d4090f 100644 --- a/redbot/cogs/audio/core/events/locales/es-ES.po +++ b/redbot/cogs/audio/core/events/locales/es-ES.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -56,8 +56,8 @@ msgid "Priority Speaker" msgstr "Orador prioritario" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" -msgstr "Transmitir en directo" +msgid "Video" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 msgid "Read Text Channels & See Voice Channels" @@ -68,8 +68,8 @@ msgid "Send Messages" msgstr "Enviar mensajes" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" -msgstr "Enviar mensajes TTS" +msgid "Send Text-to-speech Messages" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 msgid "Manage Messages" @@ -176,132 +176,148 @@ msgid "Send Messages in Threads" msgstr "Enviar mensajes en hilos" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" -msgstr "Iniciar actividades" +msgid "Use Activities" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" -msgstr "Moderar miembro" +msgid "Time out members" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 +msgid "View Creator Monetization Analytics" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:76 msgid "Use Soundboard" msgstr "Usar panel de sonidos" -#: redbot/cogs/audio/core/events/dpy.py:76 +#: redbot/cogs/audio/core/events/dpy.py:77 msgid "Create Expressions" msgstr "Crear Expresiones" -#: redbot/cogs/audio/core/events/dpy.py:77 +#: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 msgid "Use External Sounds" msgstr "Usar sonidos externos" -#: redbot/cogs/audio/core/events/dpy.py:78 +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "Enviar mensajes de voz" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "Este comando cambiará la asignación máxima de RAM para el nodo de Lavalink administrado, por lo general nunca tendría que cambiar esto, antes de considerarlo por favor consulte a nuestro equipo de soporte." -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "Este comando desactivará el nodo Lavalink administrado, si activa este comando debe especificar un nodo Lavalink externo al que conectar, si no lo hace, Audio dejará de funcionar." -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "Este comando se utiliza para especificar la IP que será utilizada por Red para conectarse a un nodo Lavalink externo. " -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "Este comando se utiliza para especificar la contraseña de autenticación usada por Red para conectarse a un nodo Lavalink externo." -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "Este comando se usa para alternar entre conexiones seguras y no seguras a un nodo Lavalink externo." -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "Este comando se utiliza para especificar el puerto de conexión utilizado por Red para conectarse a un nodo Lavalink externo." -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "Este comando especifica a qué interfaz de red e IP se enlazará el nodo Lavalink administrado, por defecto esto es 'localhost', sólo cambie esto si desea que el nodo Lavalink administrado se conecte a una IP/interfaz específica." -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "Este comando cambia la contraseña de autenticación necesaria para conectarse a este nodo administrado. El valor por defecto es 'youshallnotpass'." -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "Este comando cambia el puerto de conexión usado para conectarse a este nodo administrado, sólo cambiar esto si el puerto por defecto '2333' está causando conflictos con aplicaciones existentes." -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "Este comando activa el soporte de streams de url directos como los streams Icecast o Shoutcast. Un ejemplo es ; deshabilitar esto hará que el bot no pueda reproducir ningún contenido directo de vapor de url." -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "Este comando activa el soporte para la reproducción de audio de pistas locales. Un ejemplo es `/mnt/data/my_super_funky_track.mp3`; deshabilitar esto hará que el bot no pueda reproducir ningún contenido local de la pista." -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "Este comando activa el soporte de la reproducción de SoundCloud. Un ejemplo es ; deshabilitar esto hará que el bot no pueda reproducir ningún contenido de SoundCloud." -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "Este comando activa el soporte de la reproducción de YouTube (Spotify depende de YouTube). Desactivar esto hará que el bot no pueda reproducir ningún contenido de YouTube: esto incluye Spotify." -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "Este comando activa el soporte de la reproducción de Twitch. Un ejemplo de esto es ; deshabilitar esto hará que el bot no pueda reproducir ningún contenido de Twitch." -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "Este comando activa el soporte de la reproducción de Vimeo. Un ejemplo de esto es ; deshabilitar esto hará que el bot no pueda reproducir ningún contenido de Vimeo." -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "Esta configuración controla el framebuffer del nodo administrado, no cambie esto a menos que se lo indique." -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "Esta configuración controla el buffer JDA-NAS del nodo administrado, no cambie esto a menos que se le indique." -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "Este comando reiniciará todas las configuraciónes cambiada por `[p]llset`." -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "Has intentado ejecutar el nodo Lavalink administrado del Cog Audio en una arquitectura no soportada. Sólo los comandos relacionados con la configuración estarán disponibles." -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "No tengo permisos para enviar mensajes en este servidor. Por favor, solucione tan pronto como pueda." -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "No tengo permisos en este servidor, por favor solucione esto tan pronto como sea posible.\n\n" "Permisos esperados:\n" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Activado" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Desactivado" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "No deberías estar ejecutando este comando." -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" @@ -311,58 +327,58 @@ msgstr "\n" "Si desea continuar, introduzca este token sensible a mayúsculas y minúsculas sin espacios como su siguiente mensaje.\n\n" "{confirm_token}" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "No se ha encontrado el rol de DJ. Desactivando el modo DJ." -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "`{user_input}` no es un valor válido para `{command}`" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "No se puede analizar el argumento" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "Argumento no válido" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "El argumento que has dado para `{}` no es válido: esperaba un `{}`." -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "Entorno no válido" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "La conexión al nodo Lavalink se ha perdido." -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "Jugador no disponible" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "El bot no está conectado a un canal de voz." -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "No se puede cargar la canción" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "No puedo obtener una canción desde el nodo de Lavalink en este momento, inténtalo de nuevo en unos minutos." -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "Hubo un problema de comunicación con Discord." -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "Este error ha sido reportado al propietario del bot." diff --git a/redbot/cogs/audio/core/events/locales/fi-FI.po b/redbot/cogs/audio/core/events/locales/fi-FI.po index 647efa28292..9072dd4685d 100644 --- a/redbot/cogs/audio/core/events/locales/fi-FI.po +++ b/redbot/cogs/audio/core/events/locales/fi-FI.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Finnish\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,190 +176,206 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "Minulta puuttuu oikeuksia tällä palvelimella, korjaathan tämän mahdollisimman pian.\n\n" "Puuttuvat oikeudet:\n" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Käytössä" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Ei käytössä" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "DJ-roolia ei löydy. Poistetaan DJ-tila käytöstä." -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "`{user_input}` ei ole kelvollinen arvo kohteelle `{command}`" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "Argumentin käsittely epäonnistui" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "Virheellinen argumentti" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "Argumentti jonka annoit kohteelle `{}` ei ole kelvollinen: Oletin että saan`{}`." -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "Virheellinen ympäristö" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "Toistinta ei saatavilla" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "Botti ei ole yhdistettynä puhekanavaan." -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "Kappaletta ei voitu hakea" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "Ongelma Discordin kanssa kommunikoitaessa." -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "Tämä virhe ilmoitettiin botin omistajalle." diff --git a/redbot/cogs/audio/core/events/locales/fr-FR.po b/redbot/cogs/audio/core/events/locales/fr-FR.po index 560e9ab6cbd..fd365cde38b 100644 --- a/redbot/cogs/audio/core/events/locales/fr-FR.po +++ b/redbot/cogs/audio/core/events/locales/fr-FR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -56,8 +56,8 @@ msgid "Priority Speaker" msgstr "Voix prioritaire" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" -msgstr "Passer en direct" +msgid "Video" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 msgid "Read Text Channels & See Voice Channels" @@ -68,8 +68,8 @@ msgid "Send Messages" msgstr "Envoyer des messages" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" -msgstr "Envoyer des messages TTS" +msgid "Send Text-to-speech Messages" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 msgid "Manage Messages" @@ -176,190 +176,206 @@ msgid "Send Messages in Threads" msgstr "Envoyer des messages dans des fils de discussion" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" -msgstr "Commencer les activités" +msgid "Use Activities" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" -msgstr "Membres Modérateurs" +msgid "Time out members" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 +msgid "View Creator Monetization Analytics" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:76 msgid "Use Soundboard" msgstr "Utiliser le soundboard" -#: redbot/cogs/audio/core/events/dpy.py:76 +#: redbot/cogs/audio/core/events/dpy.py:77 msgid "Create Expressions" msgstr "Créer des expressions" -#: redbot/cogs/audio/core/events/dpy.py:77 +#: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 msgid "Use External Sounds" msgstr "Utiliser des sons externes" -#: redbot/cogs/audio/core/events/dpy.py:78 +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "Envoyer des messages vocaux" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "Cette commande va changer le chemin de l'exécutable de Java, est utile si vous avez plusieurs installations de Java et que celle par défaut pose des problèmes. Veuillez ne pas modifier cela à moins que vous soyez certain que la version Java que vous spécifiez est prise en charge par Red. Les versions par défaut et supportées sont actuellement Java 17 et 11." -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "Cette commande va changer l'allocation maximale de RAM pour le noeud Lavalink géré, généralement vous n'aurez jamais à changer cela, avant d'envisager de le modifier, veuillez consulter notre équipe d'assistance." -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "Cette commande désactivera le noeud Lavalink géré, Si vous activez cette commande, vous devez spécifier un noeud Lavalink externe auquel vous devez vous connecter, si vous ne le faites pas, Audio arrêtera de fonctionner." -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "Cette commande est utilisée pour spécifier l'adresse IP qui sera utilisée par Red pour se connecter à un noeud Lavalink externe. " -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "Cette commande est utilisée pour spécifier le mot de passe d'authentification utilisé par Red pour se connecter à un noeud Lavalink externe." -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "Cette commande est utilisée pour basculer entre les connexions sécurisées et non sécurisées vers un noeud Lavalink externe." -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "Cette commande est utilisée pour spécifier le port de connexion qui sera utilisée par Red pour se connecter à un noeud Lavalink externe." -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "Cette commande spécifie à quelle interface réseau et à quelle adresse IP le noeud Lavalink géré sera lié, par défaut, c'est 'localhost', seulement changer cela si vous voulez que le noeud Lavalink géré soit lié à une adresse IP/interface spécifique." -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "Cette commande modifie le mot de passe requis pour se connecter à ce nœud géré. La valeur par défaut est 'youshallnotpass'." -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "Cette commande modifie le port de connexion utilisé pour se connecter à ce nœud géré. À changer seulement si le port par défaut '2333' provoque des bugs avec des applications existantes." -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "Cette commande active le support des URL directes comme les flux Icecast ou Shoutcast. Par exemple :. Le désactiver rendra le bot incapable de jouer le contenu d'une URL directe." -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "Il me manque des permissions sur ce serveur. Veuillez régler ce problème dès que possible.\n\n" "Permissions attendues :\n" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Activé" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Désactivé" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "Aucun rôle DJ détecté. Désactivation du mode DJ." -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "`{user_input}` n'est pas une valeur valide pour `{command}`" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "Impossible d'analyser l'argument" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "Argument invalide" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "L'argument que vous avez donné pour `{}` n'est pas valide : je m'attendais à `{}`." -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "Environnement invalide" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "La connexion avec Lavalink a été perdue." -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "Aucun lecteur audio disponible" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "Le bot n'est pas connecté à un salon vocal." -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "Impossible d'obtenir la piste" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "Je ne parviens actuellement pas à avoir une musique depuis Lavalink. Réessayez dans quelques minutes." -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "Il y a eu un problème de communication avec Discord." -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "Cette erreur a été signalée au propriétaire du bot." diff --git a/redbot/cogs/audio/core/events/locales/hi-IN.po b/redbot/cogs/audio/core/events/locales/hi-IN.po index 408a88c5b10..ba720f72488 100644 --- a/redbot/cogs/audio/core/events/locales/hi-IN.po +++ b/redbot/cogs/audio/core/events/locales/hi-IN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Hindi\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,189 +176,205 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "" diff --git a/redbot/cogs/audio/core/events/locales/hr-HR.po b/redbot/cogs/audio/core/events/locales/hr-HR.po index dae9b983b1e..f29cc5092d6 100644 --- a/redbot/cogs/audio/core/events/locales/hr-HR.po +++ b/redbot/cogs/audio/core/events/locales/hr-HR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -56,8 +56,8 @@ msgid "Priority Speaker" msgstr "Prioritetni zvučnik" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" -msgstr "Pokreni pozornicu" +msgid "Video" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 msgid "Read Text Channels & See Voice Channels" @@ -68,8 +68,8 @@ msgid "Send Messages" msgstr "Slanje poruka" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" -msgstr "Slanje Tekst u govor (TTS) poruka" +msgid "Send Text-to-speech Messages" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 msgid "Manage Messages" @@ -176,132 +176,148 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "Ova naredba će promijeniti maksimalnu dodjelu RAM-a upravljanom Lavalink čvoru. Inače ovo nikada nećete morati mijenjati. Prije nego što razmislite o promjeni, obratite se našem timu za podršku." -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "Ova naredba će onemogućiti upravljani Lavalink čvor, ako uključite ovu naredbu, morate navesti vanjski Lavalink čvor na koji ćete se povezati, ako to ne učinite Audio će prestat raditi." -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "Ova naredba se koristi za određivanje IP adrese koju Red koristi za povezivanje na eksterni Lavalink čvor. " -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "Ova naredba se koristi za određivanje lozinke koju Red koristi za povezivanje na eksterni Lavalink čvor." -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "Ova naredba se koristi za prebacivanje između sigurnih i nesigurnih veza na eksterni Lavalink čvor." -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "Ova naredba se koristi za određivanje port-a koji Red koristi za spajanje na eksterni Lavalink čvor." -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "Ova naredba određuje na koje mrežno sučelje i IP će se upravljani Lavalink čvor vezati, prema zadanim postavkama ovo je 'localhost', promijenite ovo jedino ako želite da se upravljani Lavalink čvor veže na određeni IP/sučelje." -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "Ova naredba mijenja lozinku potrebnu za povezivanje s ovim upravljanim čvorom. Zadana vrijednost je 'youshallnotpass'." -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "Ova naredba mijenja port koji se koristi za povezivanje s ovim upravljanim čvorom, promijenite ga jedino ako zadani port '2333' uzrokuje sukobe s postojećim aplikacijama." -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "Ova naredba će resetirati svaku postavku koju je promijenio `[p]llset`." -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "Pokušali ste pokrenuti Audio-upravljan Lavalink čvor na nepodržanoj arhitekturi. Biti će dostupne samo naredbe povezane s postavkama." -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "Nedostaju mi dozvole u ovom serveru, riješite to što prije moguće.\n\n" "Očekivane dozvole:\n" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Aktivirano" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Deaktivirano" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "Ne biste trebali pokretati ovu naredbu." -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" @@ -311,58 +327,58 @@ msgstr "\n" "Ako želite nastaviti, unesite ovaj token, pazeći na velika i mala slova, bez razmaka kao sljedeću poruku.\n\n" "{confirm_token}" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "Nije pronađena DJ uloga. Onemogućavam DJ način rada." -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "`{user_input}` nije važeća vrijednost za `{command}`" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "Nije moguće obradit argument" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "Neispravan Argument" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "Argument koji ste dali za `{}` nije valjan: očekivao sam `{}`." -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "Neispravno Okruženje" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "Veza s Lavalinkom je izgubljena." -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "Nema dostupnog Playera" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "Bot nije spojen na glasovni kanal." -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "Nije moguće dobiti pjesmu" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "Trenutno ne mogu dobiti pjesmu od Lavalinka, pokušajte ponovno za par minuta." -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "Došlo je do problema u komunikaciji s Discordom." -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "Greška je prijavljena vlasniku bota." diff --git a/redbot/cogs/audio/core/events/locales/hu-HU.po b/redbot/cogs/audio/core/events/locales/hu-HU.po index a8d51797234..e49d07492a4 100644 --- a/redbot/cogs/audio/core/events/locales/hu-HU.po +++ b/redbot/cogs/audio/core/events/locales/hu-HU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,189 +176,205 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Letiltva" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "" diff --git a/redbot/cogs/audio/core/events/locales/id-ID.po b/redbot/cogs/audio/core/events/locales/id-ID.po index 196e0dff91d..5a5eff919f2 100644 --- a/redbot/cogs/audio/core/events/locales/id-ID.po +++ b/redbot/cogs/audio/core/events/locales/id-ID.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,189 +176,205 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Diaktifkan" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Dinonaktifkan" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "" diff --git a/redbot/cogs/audio/core/events/locales/it-IT.po b/redbot/cogs/audio/core/events/locales/it-IT.po index c203c2cbd1f..9b4ae0f9771 100644 --- a/redbot/cogs/audio/core/events/locales/it-IT.po +++ b/redbot/cogs/audio/core/events/locales/it-IT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,189 +176,205 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Abilitato" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Disabilitato" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "" diff --git a/redbot/cogs/audio/core/events/locales/ja-JP.po b/redbot/cogs/audio/core/events/locales/ja-JP.po index 2626519211c..e643c6aa5cf 100644 --- a/redbot/cogs/audio/core/events/locales/ja-JP.po +++ b/redbot/cogs/audio/core/events/locales/ja-JP.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Japanese\n" "MIME-Version: 1.0\n" @@ -56,8 +56,8 @@ msgid "Priority Speaker" msgstr "優先スピーカー" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" -msgstr "Go Live" +msgid "Video" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 msgid "Read Text Channels & See Voice Channels" @@ -68,8 +68,8 @@ msgid "Send Messages" msgstr "メッセージを送信" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" -msgstr "TTS メッセージを送信" +msgid "Send Text-to-speech Messages" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 msgid "Manage Messages" @@ -176,189 +176,205 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "現在、Lavalinkノードからトラックを取得できません。数分後にもう一度お試しください。" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "" diff --git a/redbot/cogs/audio/core/events/locales/ko-KR.po b/redbot/cogs/audio/core/events/locales/ko-KR.po index 5f28e98316c..e91f518710a 100644 --- a/redbot/cogs/audio/core/events/locales/ko-KR.po +++ b/redbot/cogs/audio/core/events/locales/ko-KR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Korean\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,190 +176,206 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "저에게 이 서버에 대한 몇가지 권한이 누락된 것 같아요, 최대한 빠르게 해당 권한을 부여해 주세요. \n\n" "누락되었다고 예상되어지는 권한입니다.:\n" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "활성화됨" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "비활성화됨" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "DJ역할을 찾지 못했습니다. DJ역할을 비활성화합니다." -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "`{user_input}` 은 `{command}`의 적합한 값이 아니에요" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "인수룰 구분할 수 없습니다." -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "잘못된 인수입니다." -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "`{}`에 대해 제공 한 인수가 유효하지 않습니다.`{}`를 예상했습니다." -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "잘못된 환경입니다." -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "사용가능한 플레이어가 없습니다." -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "봇이 음성체널에 접속해 있지 않아요." -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "트랙을 찾을수 없습니다" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "디스코드와 통신하는데 문제가 있습니다." -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "봇 관리자에게 해당 에러가 보고되었습니다." diff --git a/redbot/cogs/audio/core/events/locales/nb-NO.po b/redbot/cogs/audio/core/events/locales/nb-NO.po index 2e5ae2137c9..444c3f656ed 100644 --- a/redbot/cogs/audio/core/events/locales/nb-NO.po +++ b/redbot/cogs/audio/core/events/locales/nb-NO.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Norwegian Bokmal\n" "MIME-Version: 1.0\n" @@ -56,8 +56,8 @@ msgid "Priority Speaker" msgstr "Prioritert taler" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" -msgstr "Gå Live" +msgid "Video" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 msgid "Read Text Channels & See Voice Channels" @@ -68,8 +68,8 @@ msgid "Send Messages" msgstr "Send Meldinger" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" -msgstr "Send TTS-meldinger" +msgid "Send Text-to-speech Messages" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 msgid "Manage Messages" @@ -176,190 +176,206 @@ msgid "Send Messages in Threads" msgstr "Send meldinger i tråder" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" -msgstr "Start aktiviteter" +msgid "Use Activities" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" -msgstr "Moderat medlem" +msgid "Time out members" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "Denne kommandoen vil endre den maksimale RAM fordelingen for den administrerte Lavalink-noden, normalt vil du aldri måtte endre dette før du vurderer å endre det, vennligst kontakt vårt supportteam." -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "Denne kommandoen vil deaktivere den administrerte lavalunk-noden, hvis du slår av og på denne kommandoen må du angi en ekstern Lavalink node for å koble til, hvis du ikke gjør det, vil lyd slutte å virke." -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "Denne kommandoen brukes til å angi IP som skal brukes ved Rød for å koble til en ekstern Lavalink node. " -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "Denne kommandoen brukes til å angi godkjenningspassord som brukes av Red til å koble til en ekstern Lavalink node." -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "Denne kommandoen brukes veksling mellom sikrede og usikrede forbindelser til en ekstern Lavalink node." -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "Denne kommandoen brukes til å angi tilkoblingsporten som brukes av Red til å koble til en ekstern Lavalink node." -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "Denne kommandoen angir hvilken nettverkstilkobling og IP den administrerte Lavalink noden vil binde seg til som standard er dette 'localhost', endrer bare dette hvis du vil at Lavalink den håndterte noden skal bindes til en bestemt IP/grensesnitt." -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "Kommandoen endrer godkjenningspassordet som kreves for å koble til denne administrerte node.Standardverdien er 'dushallnotpass'." -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "Jeg mangler tillatelser i denne serveren, Vennligst adresse dette så snart som mulig.\n\n" "Forventede tillatelser:\n" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Aktivert" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Deaktivert" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "Ingen DJ rolle funnet. Deaktivering av DJ modus." -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "`{user_input}` er ikke en gyldig verdi for `{command}`" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "Kan ikke analysere argument" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "Ugyldig Argument" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "Argumentet du ga for `{}` er ikke gyldig: Jeg forventet en `{}`." -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "Ugyldig miljø" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "Ingen spiller tilgjengelig" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "Botten er ikke koblet til en talekanal." -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "Kunne ikke motta spor" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "Det var et problem som kommuniserte med Discord." -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "Denne feilen er rapportert til bot eieren." diff --git a/redbot/cogs/audio/core/events/locales/nl-NL.po b/redbot/cogs/audio/core/events/locales/nl-NL.po index e60eb67857f..dd195d17353 100644 --- a/redbot/cogs/audio/core/events/locales/nl-NL.po +++ b/redbot/cogs/audio/core/events/locales/nl-NL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,189 +176,205 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Ingeschakeld" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Uitgeschakeld" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "" diff --git a/redbot/cogs/audio/core/events/locales/pl-PL.po b/redbot/cogs/audio/core/events/locales/pl-PL.po index d0af58e159f..022abdeab65 100644 --- a/redbot/cogs/audio/core/events/locales/pl-PL.po +++ b/redbot/cogs/audio/core/events/locales/pl-PL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -56,8 +56,8 @@ msgid "Priority Speaker" msgstr "Priorytetowy rozmówca" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" -msgstr "Nadawaj" +msgid "Video" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 msgid "Read Text Channels & See Voice Channels" @@ -68,8 +68,8 @@ msgid "Send Messages" msgstr "Wysyłanie wiadomości" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" -msgstr "Wysyłanie wiadomości TTS" +msgid "Send Text-to-speech Messages" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 msgid "Manage Messages" @@ -176,132 +176,148 @@ msgid "Send Messages in Threads" msgstr "Wyślij wiadomości w wątkach" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" -msgstr "Rozpocznij aktywność" +msgid "Use Activities" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" -msgstr "Moderacja użytkownika" +msgid "Time out members" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "Ta komenda zmieni maksymalną alokację pamięci RAM dla zarządzanego węzła Lavalink, zwykle nigdy nie musisz tego zmieniać, zanim zastanowimy się nad jego zmianą, skontaktuj się z naszym zespołem pomocy technicznej." -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "Ta komenda wyłączy zarządzany węzeł Lavalink jeśli włączysz to polecenie musisz określić zewnętrzny węzeł Lavalink aby się połączyć, jeśli nie zrobisz tego dźwięk przestanie działać." -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "Ta komenda jest używana do określenia adresu IP, który będzie używany przez Czerwony do połączenia z zewnętrznym węzłem Lavalink. " -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "To polecenie jest używane do określenia hasła uwierzytelniania używanego przez Czerwonego do połączenia z zewnętrznym węzłem Lavalink." -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "To polecenie jest używane do przełączania pomiędzy zabezpieczonymi i niezabezpieczonymi połączeniami do zewnętrznego węzła Lavalink." -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "Ta komenda jest używana do określenia portu połączenia używanego przez Czerwoną do połączenia z zewnętrznym węzłem Lavalink." -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "Ta komenda określa, z którym interfejsem sieciowym i IP zarządzany węzeł Lavalink będzie powiązany, domyślnie to jest 'localhost', tylko jeśli chcesz, aby zarządzany węzeł Lavalink wiązał się z określonym IP/interfejsem." -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "Ta komenda zmienia hasło uwierzytelniania wymagane do połączenia z tym zarządzanym węzłem. Wartością domyślną jest 'youshallnotpass'." -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "Ta komenda zmienia port połączenia używany do połączenia z tym zarządzanym węzłem, zmień to tylko wtedy, gdy domyślny port '2333' powoduje konflikt z istniejącymi aplikacjami." -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "Ta komenda przełącza obsługę bezpośrednich strumieni url takich jak Icecast lub Shoutcast. Przykładem jest ; wyłączenie tego sprawi, że bot nie będzie w stanie odtworzyć żadnej bezpośredniej zawartości pary Url." -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "Ta komenda przełącza obsługę lokalnego odtwarzania dźwięku. Przykładem jest `/mnt/data/my_super_funky_track.mp3`; wyłączenie tego sprawi, że bot nie będzie mógł odtworzyć lokalnej zawartości śladu." -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "Ta komenda przełącza obsługę odtwarzania SoundCloud. Przykładem jest ; wyłączenie tego sprawi, że bot nie będzie mógł odtwarzać żadnych treści SoundCloud." -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "Ta komenda przełącza obsługę odtwarzania YouTube (Spotify zależy od YouTube). Wyłączenie tej opcji sprawi, że bot nie będzie mógł odtworzyć żadnej zawartości YouTube: w tym Spotify." -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "Ta komenda przełącza obsługę odtwarzania na Twitchu. Przykładem tego jest ; wyłączenie tego sprawi, że bot nie będzie mógł odtworzyć żadnych treści Twitcha." -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "Ta komenda przełącza obsługę odtwarzania Vimeo. Przykładem tego jest ; wyłączenie tego sprawi, że bot nie będzie mógł odtworzyć żadnej zawartości Vimeo." -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "To ustawienie kontroluje bufor ramki zarządzanego węzła, nie zmieniaj tego bez instrukcji." -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "To ustawienie kontroluje bufor JDA-NAS zarządzanego węzła, nie zmieniaj tego bez instrukcji." -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "Ta komenda zresetuje każde ustawienie zmienione przez `[p]llset`." -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "Próbowałeś uruchomić węzeł Lavalink zarządzany przez Audio na nieobsługiwanej architekturze. Dostępne będą tylko polecenia związane z ustawieniami." -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "Brakuje mi uprawnień do wysyłania wiadomości na tym serwerze. Skontaktuj się z nim tak szybko, jak to możliwe." -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "Brakuje mi uprawnień na tym serwerze, prosimy o przekierowanie tego adresu tak szybko, jak to możliwe.\n\n" "Oczekiwane uprawnienia:\n" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Włączone" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Wyłączone" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "Nie powinieneś uruchamiać tego polecenia." -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" @@ -311,58 +327,58 @@ msgstr "\n" "Jeśli chcesz kontynuować, wprowadź ten token uwzględniający wielkość liter bez spacji jako następna wiadomość.\n\n" "{confirm_token}" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "Nie znaleziono roli DJ. Wyłączanie trybu DJ." -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "`{user_input}` nie jest poprawną wartością dla `{command}`" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "Nie można przeanalizować argumentu" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "Nieprawidłowy argument" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "Argument który podałeś dla `{}` jest nieprawidłowy: oczekiwałem/am `{}`." -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "Nieprawidłowe środowisko" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "Połączenie z węzłem Lavalink zostało utracone." -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "Brak dostępnego odtwarzacza" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "Bot nie jest podłączony do kanału głosowego." -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "Nie można pobrać utworu" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "W tej chwili nie mogę pobrać ścieżki z węzła Lavalink, spróbuj ponownie za kilka minut." -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "Wystąpił problem z komunikacją z Discordem." -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "Ten błąd został zgłoszony właścicielowi bota." diff --git a/redbot/cogs/audio/core/events/locales/pt-BR.po b/redbot/cogs/audio/core/events/locales/pt-BR.po index 2d5310c5f97..b8c18f2ece5 100644 --- a/redbot/cogs/audio/core/events/locales/pt-BR.po +++ b/redbot/cogs/audio/core/events/locales/pt-BR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,190 +176,206 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "Faltam permissões neste servidor. Por favor, resolva isso assim que possível.\n\n" "Permissões esperadas:\n" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Habilitado" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Desabilitado" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "Nenhum cargo de DJ encontrado. Desabilitando o modo DJ." -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "`{user_input}` não é um valor válido para `{command}`" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "Não foi possível analisar o argumento" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "Argumento inválido" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "O argumento que você deu para `{}` não é válido: eu esperava por `{}`." -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "Ambiente inválido" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "Nenhum reprodutor disponível" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "O bot não está conectado a um canal de voz." -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "Não foi possível obter a faixa" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "Não foi possível obter uma faixa do nó do Lavalink no momento, tente novamente em alguns minutos." -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "Ocorreu um problema de comunicação com o Discord." -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "Este erro foi reportado ao proprietário do bot." diff --git a/redbot/cogs/audio/core/events/locales/pt-PT.po b/redbot/cogs/audio/core/events/locales/pt-PT.po index ec89407ce5f..bf63ed26aa9 100644 --- a/redbot/cogs/audio/core/events/locales/pt-PT.po +++ b/redbot/cogs/audio/core/events/locales/pt-PT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -56,8 +56,8 @@ msgid "Priority Speaker" msgstr "Voz prioritária" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" -msgstr "Entrar em direto" +msgid "Video" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 msgid "Read Text Channels & See Voice Channels" @@ -68,8 +68,8 @@ msgid "Send Messages" msgstr "Enviar mensagens" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" -msgstr "Enviar Mensagens TTS" +msgid "Send Text-to-speech Messages" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 msgid "Manage Messages" @@ -176,131 +176,147 @@ msgid "Send Messages in Threads" msgstr "Enviar Mensagens em Tópicos" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" -msgstr "Iniciar Atividades" +msgid "Use Activities" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" -msgstr "Moderar Membro" +msgid "Time out members" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 +msgid "View Creator Monetization Analytics" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:76 msgid "Use Soundboard" msgstr "Usar Soundboard" -#: redbot/cogs/audio/core/events/dpy.py:76 +#: redbot/cogs/audio/core/events/dpy.py:77 msgid "Create Expressions" msgstr "Criar expressões" -#: redbot/cogs/audio/core/events/dpy.py:77 +#: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 msgid "Use External Sounds" msgstr "Usar Sons Externos" -#: redbot/cogs/audio/core/events/dpy.py:78 +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "Enviar Mensagens de Voz" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "Este comando irá alterar o caminho executável do Java, isso é útil se você tem várias instalações do Java e a padrão está causando problemas. Por favor, não mude isso, a menos que tenha certeza de que a versão Java que está especificando é suportada pelo Red. As versões padrão e suportadas atualmente são o Java 17 e o 11." -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "Este comando irá alterar a alocação máxima de RAM para o nó gerenciado Lavalink, Normalmente você nunca precisará mudar isto, antes de considerar alterá-lo por favor consulte nossa equipe de suporte." -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "Este comando desativará o nó Lavalink gerenciado, se você alternar este comando você deve especificar um nó Lavalink externo a se conectar, se você não fizer isso o Áudio irá parar de funcionar." -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "Este comando é usado para especificar o IP que será usado pelo Red para conectar a um nó Lavalink externo. " -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "Este comando é usado para especificar a senha de autenticação usada pelo Red para conectar a um nó externo Lavalink." -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "Este comando é usado para alternar entre conexões seguras e não seguras para um nó Lavalink externo." -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "Este comando é usado para especificar a porta de conexão usada pelo Red para conectar a um nó de Lavalink externo." -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "Este comando especifica a qual interface de rede e IP o nó Lavalink gerenciado será vinculado, por padrão isto é 'localhost', só mude isso se você quiser que o nó gerenciado de Lavalink vincule a um IP/interface específico." -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "Este comando altera a senha de autenticação necessária para conectar a este nó gerenciado. O valor padrão é 'youshallnotpass'." -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "Este comando altera a porta de conexão utilizada para conectar a este nó gerenciado, somente mude isso se a porta padrão '2333' estiver causando conflitos com aplicações existentes." -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "Este comando alterna o suporte a streams de url diretas como Icecast ou Shoutcast fluxos. Um exemplo é format@@1; desabilitar isso não fará com que o bot não possa reproduzir qualquer conteúdo Steam Url direta." -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "Este comando alterna o suporte à reprodução de áudio local. Um exemplo é `/mnt/data/my_super_funky_track. p3`; desabilitar isto fará com que o bot não possa reproduzir qualquer conteúdo local." -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "Este comando alterna o suporte à reprodução do SoundCloud. Um exemplo é ; desabilitar isso fará com que o bot não possa reproduzir conteúdo do SoundCloud." -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "Este comando alterna o suporte da reprodução do YouTube (Spotify depende do YouTube). Desabilitar isso fará com que o bot não possa reproduzir qualquer conteúdo do YouTube: isso inclui o Spotify." -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "Esse comando alterna o apoio da reprodução do Twitch. Um exemplo disso é ; desabilitar isso fará com que o bot não possa jogar qualquer conteúdo da Twitch." -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "Este comando alterna o suporte da reprodução Vimeo. Um exemplo disso é ; desabilitar isso fará com que o bot não possa jogar nenhum conteúdo Vimeo." -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "Esta configuração controla o framework gerenciado, não altere isso a menos que instruído." -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "Esta configuração controla o buffer JDA-NAS do nó gerenciado, não muda isso a menos que instruído." -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "Este comando irá redefinir todas as configurações alteradas por `[p]llset`." -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "Você tentou executar o nó Lavalink gerenciado do Áudio em uma arquitetura não suportada. Somente comandos relacionados a configurações estarão disponíveis." -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "Faltam permissões para enviar mensagens neste servidor. Por favor, resolva isso o mais rápido possível." -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "Não tenho permissores neste servidor, Por favor resolva o mais rápido possível:\n" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Ativado" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Desactivado" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "Você não deve estar executando este comando." -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" @@ -310,58 +326,58 @@ msgstr "\n" "Se você deseja continuar, insira este token sensível a maiúsculas e minúsculas sem espaços como a sua próxima mensagem.\n\n" "{confirm_token}" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "Nenhum cargo de DJ encontrado. Desativando o modo DJ." -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "`{user_input}` não é um valor válido para `{command}`" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "Incapaz de analisar Argumento" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "Argumento Inválido" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "O argumento que você deu para `{}` não é válido: eu estava esperando um `{}`." -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "Ambiente inválido" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "A conexão com o node Lavalink foi perdida." -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "Nenhum jogador disponível" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "O bot não está conectado a um canal de voz." -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "Não foi possível obter a faixa" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "Não consigo obter uma faixa do nó de Lavalink no momento, tente novamente em alguns minutos." -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "Houve um problema na comunicação com o Discord." -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "Este erro foi denunciado ao dono do bot." diff --git a/redbot/cogs/audio/core/events/locales/ru-RU.po b/redbot/cogs/audio/core/events/locales/ru-RU.po index 5a3fa4d49f3..9abbd4e4a25 100644 --- a/redbot/cogs/audio/core/events/locales/ru-RU.po +++ b/redbot/cogs/audio/core/events/locales/ru-RU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,190 +176,206 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "Мне не хватает полномочий на этом сервере, Пожалуйста, решите эту проблему как можно скорее.\n\n" "Ожидаемые полномочия:\n" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Включено" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Отключено" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "Роль DJ не найдена. Отключение режима DJ." -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "`{user_input}` не является допустимым значением для `{command}`" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "Не удается разобрать аргумент" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "Недопустимый аргумент" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "Аргумент, который вы привели для `{}`, недействителен: Я ожидал `{}`." -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "Неверное окружение" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "Нет доступных проигрывателей" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "Бот не подключен к голосовому каналу." -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "Не удается получить трек" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "Возникла проблема со связью с Discord." -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "Об этой ошибке было сообщено владельцу бота." diff --git a/redbot/cogs/audio/core/events/locales/sk-SK.po b/redbot/cogs/audio/core/events/locales/sk-SK.po index 00eb1d55bbc..3b79923d0c5 100644 --- a/redbot/cogs/audio/core/events/locales/sk-SK.po +++ b/redbot/cogs/audio/core/events/locales/sk-SK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Slovak\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,189 +176,205 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Aktivované" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Deaktivované" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "Nie je tu nájdená žiadna DJ rola. Vypínam DJ mód." -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "Žiaden prehrávač nie je dostupný" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "Bot nie je pripojený na hlasový kanál." -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "Nepodarilo sa získať stopu" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "Vyskytla sa chyba pri komunikácii s Discordom." -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "Táto chyba bola nahlásená vlastníkovi bota." diff --git a/redbot/cogs/audio/core/events/locales/sl-SI.po b/redbot/cogs/audio/core/events/locales/sl-SI.po index 9f972698c5a..79d4ccbf78d 100644 --- a/redbot/cogs/audio/core/events/locales/sl-SI.po +++ b/redbot/cogs/audio/core/events/locales/sl-SI.po @@ -1,14 +1,14 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+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.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" +"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" "X-Crowdin-Language: sl\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,190 +176,206 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "Nimam nekaterih dovoljenj, prosim odpravi to težavo čim hitreje:\n\n" "Potrebna dovoljenja:\n" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Omogočeno" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Onemogočeno" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "DJ rola ne obstaja. Izklapljam DJ način." -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "Vrednost `{user_input}` ni veljavna za `{command}`" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "Argumenta ni mogoče razčleniti" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "Neveljaven argument" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "Podani argument za `{}` ni veljaven: Pričakoval sem `{}`." -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "Neveljavno okolje" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "Na voljo ni noben predvajalnik" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "Bot ni povezan do zvočnega kanala." -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "Skladbe ni mogoče dobiti" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "Prišlo je do težave pri komunikaciji z Discordom." -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "Napaka je bila posredovana lastniku bota." diff --git a/redbot/cogs/audio/core/events/locales/sv-SE.po b/redbot/cogs/audio/core/events/locales/sv-SE.po index 7f605e20970..0bd38a39b80 100644 --- a/redbot/cogs/audio/core/events/locales/sv-SE.po +++ b/redbot/cogs/audio/core/events/locales/sv-SE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,189 +176,205 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "" diff --git a/redbot/cogs/audio/core/events/locales/tr-TR.po b/redbot/cogs/audio/core/events/locales/tr-TR.po index 4315924a7f9..d93d1cb875c 100644 --- a/redbot/cogs/audio/core/events/locales/tr-TR.po +++ b/redbot/cogs/audio/core/events/locales/tr-TR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -56,8 +56,8 @@ msgid "Priority Speaker" msgstr "Öncelikli Hoparlör" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" -msgstr "Yayına başla" +msgid "Video" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 msgid "Read Text Channels & See Voice Channels" @@ -68,8 +68,8 @@ msgid "Send Messages" msgstr "Mesaj Gönder" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" -msgstr "Sesli Mesaj Gönder" +msgid "Send Text-to-speech Messages" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 msgid "Manage Messages" @@ -141,7 +141,7 @@ msgstr "Webhook'ları Yönet" #: redbot/cogs/audio/core/events/dpy.py:64 msgid "Manage Expressions" -msgstr "" +msgstr "İfadeleri Yönet" #: redbot/cogs/audio/core/events/dpy.py:65 msgid "Use Application Commands" @@ -176,190 +176,206 @@ msgid "Send Messages in Threads" msgstr "Alt Başlıklarda Mesaj Gönder" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" -msgstr "Aktivite Başlat" +msgid "Use Activities" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" -msgstr "Üyeleri Yönet" +msgid "Time out members" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 +msgid "Use Soundboard" +msgstr "Ses Panelini Kullan" + +#: redbot/cogs/audio/core/events/dpy.py:77 msgid "Create Expressions" +msgstr "İfade Oluştur" + +#: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:77 +#: redbot/cogs/audio/core/events/dpy.py:79 msgid "Use External Sounds" -msgstr "" +msgstr "Dış Ses Kullan" -#: redbot/cogs/audio/core/events/dpy.py:78 +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" +msgstr "Sesli Mesaj Gönder" + +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "Ses modülünün Lavalink sunucusunu desteklenmeyen bir mimaride çalıştırmayı denediniz. Yalnızca ayarlarla ilgili komutlar kullanılabilir." -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "Bu sunucuda gerekli izinlere sahip değilim, lütfen bu sorunu en kısa zamanda çözün.\n\n" "Beklediğim İzinler:\n" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Etkinleştirildi" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Devre dışı bırakıldı" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "Bu komutu çalıştırmamalısın." -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "DJ rolü bulunamadı. DJ modu kapatılıyor." -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "`{user_input}` `{command}` için geçerli bir değer değil" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "Değişken işlenemedi" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "Geçersiz argüment" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "`{}` için sunduğunuz değişken geçersiz, ben bir `{}` bekliyordum." -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "Geçersiz Ortam" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "Lavalink'e bağlanırken bir bağlantı hatası oluştu." -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "Kullanılabilir müzik çalar yok" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "Bot her hangi bir ses kanalında değil." -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "Parça alınamıyor" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "Şu anda Lavalink'ten şarkıyı çalamıyorum, lütfen birkaç dakika sonra tekrar deneyin." -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "Discord ile haberleşirken sorun oluştu." -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "Hata bot sahibine bildirildi." diff --git a/redbot/cogs/audio/core/events/locales/uk-UA.po b/redbot/cogs/audio/core/events/locales/uk-UA.po index 82bdc4237b5..9a7c70ca08c 100644 --- a/redbot/cogs/audio/core/events/locales/uk-UA.po +++ b/redbot/cogs/audio/core/events/locales/uk-UA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,189 +176,205 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "" diff --git a/redbot/cogs/audio/core/events/locales/vi-VN.po b/redbot/cogs/audio/core/events/locales/vi-VN.po index 388ef180c56..fc62aa4bc4a 100644 --- a/redbot/cogs/audio/core/events/locales/vi-VN.po +++ b/redbot/cogs/audio/core/events/locales/vi-VN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,190 +176,206 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "Tôi bị thiếu quyền trong máy chủ này.\n\n" "Những quyền cần thiết:\n" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "Đã bật" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "Đã tắt" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "Tôi không thấy role DJ nào cả, đang tắt chế độ DJ." -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "Không thể đối chiếu cú pháp" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "Giá trị không hợp lệ" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "Có gì đó không đúng với `{}`: Tôi tưởng bạn muốn `{}`." -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "Tôi chưa bật trình phát nhạc" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "Nhưng mà Tôi chưa vào kênh thoại nào." -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "Tôi không lấy được nhạc. Thử lại lần nữa đi" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "Hmm hình như có vấn đề khi kết nối với Discord." -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "Lỗi này Tôi đã báo cáo với chủ sở hữu." diff --git a/redbot/cogs/audio/core/events/locales/zh-CN.po b/redbot/cogs/audio/core/events/locales/zh-CN.po index 7dc07a8b1c1..9b82c7a7644 100644 --- a/redbot/cogs/audio/core/events/locales/zh-CN.po +++ b/redbot/cogs/audio/core/events/locales/zh-CN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgid "Priority Speaker" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" +msgid "Video" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 @@ -68,7 +68,7 @@ msgid "Send Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" +msgid "Send Text-to-speech Messages" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 @@ -176,189 +176,205 @@ msgid "Send Messages in Threads" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" +msgid "Use Activities" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" +msgid "Time out members" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 -msgid "Use Soundboard" +msgid "View Creator Monetization Analytics" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:76 -msgid "Create Expressions" +msgid "Use Soundboard" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:77 -msgid "Use External Sounds" +msgid "Create Expressions" msgstr "" #: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 +msgid "Use External Sounds" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "已启用" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "已禁用" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" "{confirm_token}" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "" diff --git a/redbot/cogs/audio/core/events/locales/zh-TW.po b/redbot/cogs/audio/core/events/locales/zh-TW.po index d353127452b..7a525fa18df 100644 --- a/redbot/cogs/audio/core/events/locales/zh-TW.po +++ b/redbot/cogs/audio/core/events/locales/zh-TW.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-06-20 09:30+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "MIME-Version: 1.0\n" @@ -56,8 +56,8 @@ msgid "Priority Speaker" msgstr "優先發言者" #: redbot/cogs/audio/core/events/dpy.py:43 -msgid "Go Live" -msgstr "開始直播" +msgid "Video" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:44 msgid "Read Text Channels & See Voice Channels" @@ -68,8 +68,8 @@ msgid "Send Messages" msgstr "發送訊息" #: redbot/cogs/audio/core/events/dpy.py:46 -msgid "Send TTS Messages" -msgstr "傳送文字朗讀訊息" +msgid "Send Text-to-speech Messages" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:47 msgid "Manage Messages" @@ -176,132 +176,148 @@ msgid "Send Messages in Threads" msgstr "在討論串中傳送訊息" #: redbot/cogs/audio/core/events/dpy.py:73 -msgid "Start Activities" -msgstr "開始活動" +msgid "Use Activities" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:74 -msgid "Moderate Member" -msgstr "版主成員" +msgid "Time out members" +msgstr "" #: redbot/cogs/audio/core/events/dpy.py:75 +msgid "View Creator Monetization Analytics" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:76 msgid "Use Soundboard" msgstr "使用音效板" -#: redbot/cogs/audio/core/events/dpy.py:76 +#: redbot/cogs/audio/core/events/dpy.py:77 msgid "Create Expressions" msgstr "新增表示式" -#: redbot/cogs/audio/core/events/dpy.py:77 +#: redbot/cogs/audio/core/events/dpy.py:78 +msgid "Create Events" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:79 msgid "Use External Sounds" msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:78 +#: redbot/cogs/audio/core/events/dpy.py:80 msgid "Send Voice Messages" msgstr "傳送語音訊息" +#: redbot/cogs/audio/core/events/dpy.py:81 +msgid "Create Polls" +msgstr "" + #: redbot/cogs/audio/core/events/dpy.py:82 +msgid "Use External Apps" +msgstr "" + +#: redbot/cogs/audio/core/events/dpy.py:86 msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11." msgstr "" -#: redbot/cogs/audio/core/events/dpy.py:88 +#: redbot/cogs/audio/core/events/dpy.py:92 msgid "This command will change the maximum RAM allocation for the managed Lavalink node, usually you will never have to change this, before considering changing it please consult our support team." msgstr "此命令將更改託管 Lavalink 節點的最大 RAM 分配,通常您永遠不必更改它,在考慮更改它之前請諮詢我們的開發團隊。" -#: redbot/cogs/audio/core/events/dpy.py:93 +#: redbot/cogs/audio/core/events/dpy.py:97 msgid "This command will disable the managed Lavalink node, if you toggle this command you must specify an external Lavalink node to connect to, if you do not do so Audio will stop working." msgstr "此命令將禁用託管的 Lavalink 節點,如果您切換此命令,則必須指定要連接的外部 Lavalink 節點,否則Audio將停止工作。" -#: redbot/cogs/audio/core/events/dpy.py:98 +#: redbot/cogs/audio/core/events/dpy.py:102 msgid "This command is used to specify the IP which will be used by Red to connect to an external Lavalink node. " msgstr "此命令用於指定 Red 將用於連接到外部 Lavalink 節點的 IP。 " -#: redbot/cogs/audio/core/events/dpy.py:101 +#: redbot/cogs/audio/core/events/dpy.py:105 msgid "This command is used to specify the authentication password used by Red to connect to an external Lavalink node." msgstr "該命令用於指定 Red 連接到外部 Lavalink 節點時使用的認證密碼。" -#: redbot/cogs/audio/core/events/dpy.py:105 +#: redbot/cogs/audio/core/events/dpy.py:109 msgid "This command is used toggle between secured and unsecured connections to an external Lavalink node." msgstr "此命令用於在與外部 Lavalink 節點的安全和不安全連接之間切換。" -#: redbot/cogs/audio/core/events/dpy.py:108 +#: redbot/cogs/audio/core/events/dpy.py:112 msgid "This command is used to specify the connection port used by Red to connect to an external Lavalink node." msgstr "該命令用於指定Red用於連接外部Lavalink節點的連接端口。" -#: redbot/cogs/audio/core/events/dpy.py:111 +#: redbot/cogs/audio/core/events/dpy.py:115 msgid "This command specifies which network interface and IP the managed Lavalink node will bind to, by default this is 'localhost', only change this if you want the managed Lavalink node to bind to a specific IP/interface." msgstr "此命令指定託管 Lavalink 節點將綁定到哪個網絡接口和 IP,默認情況下這是“localhost”,僅當您希望託管 Lavalink 節點綁定到特定 IP/接口時才需更改此設置。" -#: redbot/cogs/audio/core/events/dpy.py:116 +#: redbot/cogs/audio/core/events/dpy.py:120 msgid "This command changes the authentication password required to connect to this managed node.The default value is 'youshallnotpass'." msgstr "此命令為更改連接到此受管節點所需的身份驗證密碼。默認值為“youshallnotpass”。" -#: redbot/cogs/audio/core/events/dpy.py:120 +#: redbot/cogs/audio/core/events/dpy.py:124 msgid "This command changes the connection port used to connect to this managed node, only change this if the default port '2333' is causing conflicts with existing applications." msgstr "此命令更改用於連接到此受管節點的連接端口,僅當默認端口“2333”與現有應用程序發生衝突時才更改此端口。" -#: redbot/cogs/audio/core/events/dpy.py:124 +#: redbot/cogs/audio/core/events/dpy.py:128 msgid "This command toggles the support of direct url streams like Icecast or Shoutcast streams. An example is ; disabling this will make the bot unable to play any direct url steam content." msgstr "此命令切換對直接 url 直播的支持,如 Icecast 或 Shoutcast 。 如: ; 禁用此功能將使機器人無法播放任何直接 url 蒸汽內容。" -#: redbot/cogs/audio/core/events/dpy.py:134 +#: redbot/cogs/audio/core/events/dpy.py:138 msgid "This command toggles the support of local track audio playback. An example is `/mnt/data/my_super_funky_track.mp3`; disabling this will make the bot unable to play any local track content." msgstr "此命令切換對本地軌道音頻播放的支持。 如: `/mnt/data/my_super_funky_track.mp3`; 禁用此功能將使機器人無法播放任何本地曲目內容。" -#: redbot/cogs/audio/core/events/dpy.py:139 +#: redbot/cogs/audio/core/events/dpy.py:143 msgid "This command toggles the support of SoundCloud playback. An example is ; disabling this will make the bot unable to play any SoundCloud content." msgstr "此命令切換對 SoundCloud 的播放支持。 如: ; 禁用此功能將使機器人無法播放任何 SoundCloud 內容。" -#: redbot/cogs/audio/core/events/dpy.py:144 +#: redbot/cogs/audio/core/events/dpy.py:148 msgid "This command toggles the support of YouTube playback (Spotify depends on YouTube). Disabling this will make the bot unable to play any YouTube content: this includes Spotify." msgstr "此命令切換對 YouTube 的播放支持(Spotify 取決於 YouTube)。 禁用此功能將使機器人無法播放任何 YouTube 內容,包括 Spotify。" -#: redbot/cogs/audio/core/events/dpy.py:149 +#: redbot/cogs/audio/core/events/dpy.py:153 msgid "This command toggles the support of Twitch playback. An example of this is ; disabling this will make the bot unable to play any Twitch content." msgstr "此命令切換對 Twitch 的播放支持。 如: ; 禁用此功能將使機器人無法播放任何 Twitch 內容。" -#: redbot/cogs/audio/core/events/dpy.py:154 +#: redbot/cogs/audio/core/events/dpy.py:158 msgid "This command toggles the support of Vimeo playback. An example of this is ; disabling this will make the bot unable to play any Vimeo content." msgstr "此命令切換對 Vimeo 的播放支持。 如: ; 禁用此功能將使機器人無法播放任何 Vimeo 內容。" -#: redbot/cogs/audio/core/events/dpy.py:159 +#: redbot/cogs/audio/core/events/dpy.py:163 msgid "This setting controls the managed node's framebuffer, do not change this unless instructed." msgstr "此設置控制受管節點的幀緩衝區,除非有官方指示,否則不要更改此設置。" -#: redbot/cogs/audio/core/events/dpy.py:163 +#: redbot/cogs/audio/core/events/dpy.py:167 msgid "This setting controls the managed node's JDA-NAS buffer, do not change this unless instructed." msgstr "此設置控制受管節點的 JDA-NAS 緩衝區,除非有官方指示,否則不要更改此設置。" -#: redbot/cogs/audio/core/events/dpy.py:167 +#: redbot/cogs/audio/core/events/dpy.py:171 msgid "This command will reset every setting changed by `[p]llset`." msgstr "此指令將重置由 `[p]llset` 更改的所有設定值。" -#: redbot/cogs/audio/core/events/dpy.py:184 +#: redbot/cogs/audio/core/events/dpy.py:188 msgid "You have attempted to run Audio's managed Lavalink node on an unsupported architecture. Only settings related commands will be available." msgstr "您已嘗試在不受支持的架構上運行託管Audio的 Lavalink 節點。 目前只有與設置相關的命令可用。" -#: redbot/cogs/audio/core/events/dpy.py:206 +#: redbot/cogs/audio/core/events/dpy.py:210 msgid "I'm missing permissions to send messages in this server. Please address this as soon as possible." msgstr "我缺少在此伺務器中發送消息的權限。 請盡快解決這個問題。" -#: redbot/cogs/audio/core/events/dpy.py:232 +#: redbot/cogs/audio/core/events/dpy.py:236 msgid "I'm missing permissions in this server, Please address this as soon as possible.\n\n" "Expected Permissions:\n" msgstr "我缺少此伺務器的權限,請盡快解決此問題。\n\n" "預期權限:\n" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Enabled" msgstr "已啟用" -#: redbot/cogs/audio/core/events/dpy.py:239 +#: redbot/cogs/audio/core/events/dpy.py:243 msgid "Disabled" msgstr "已停用" -#: redbot/cogs/audio/core/events/dpy.py:270 +#: redbot/cogs/audio/core/events/dpy.py:274 msgid "You should not be running this command." msgstr "您不應該使用此指令。" -#: redbot/cogs/audio/core/events/dpy.py:273 +#: redbot/cogs/audio/core/events/dpy.py:277 msgid "\n" "{template}\n" "If you wish to continue, enter this case sensitive token without spaces as your next message.\n\n" @@ -311,58 +327,58 @@ msgstr "\n" "如果您想繼續,請輸入這個不帶空格區分大小寫的令牌作為您的下一條消息。\n\n" "{confirm_token}" -#: redbot/cogs/audio/core/events/dpy.py:317 +#: redbot/cogs/audio/core/events/dpy.py:321 msgid "No DJ role found. Disabling DJ mode." msgstr "沒有找到DJ身分組。 自動停用DJ模式中。" -#: redbot/cogs/audio/core/events/dpy.py:327 +#: redbot/cogs/audio/core/events/dpy.py:331 msgid "`{user_input}` is not a valid value for `{command}`" msgstr "`{user_input}` 不是 `{command}` 的有效數值" -#: redbot/cogs/audio/core/events/dpy.py:335 +#: redbot/cogs/audio/core/events/dpy.py:339 msgid "Unable To Parse Argument" msgstr "無法分析參數" -#: redbot/cogs/audio/core/events/dpy.py:347 -#: redbot/cogs/audio/core/events/dpy.py:356 +#: redbot/cogs/audio/core/events/dpy.py:351 +#: redbot/cogs/audio/core/events/dpy.py:360 msgid "Invalid Argument" msgstr "無效的參數" -#: redbot/cogs/audio/core/events/dpy.py:348 +#: redbot/cogs/audio/core/events/dpy.py:352 msgid "The argument you gave for `{}` is not valid: I was expecting a `{}`." msgstr "您為 `{}` 提供的參數無效:我支持的是 `{}`。" -#: redbot/cogs/audio/core/events/dpy.py:366 +#: redbot/cogs/audio/core/events/dpy.py:370 msgid "Invalid Environment" msgstr "無效的環境。" -#: redbot/cogs/audio/core/events/dpy.py:367 +#: redbot/cogs/audio/core/events/dpy.py:371 msgid "Connection to Lavalink node has been lost." msgstr "與 Lavalink 節點的連接已丟失。" -#: redbot/cogs/audio/core/events/dpy.py:375 +#: redbot/cogs/audio/core/events/dpy.py:379 msgid "No Player Available" msgstr "沒有可用的播放器" -#: redbot/cogs/audio/core/events/dpy.py:376 +#: redbot/cogs/audio/core/events/dpy.py:380 msgid "The bot is not connected to a voice channel." msgstr "機器人未連接到語音頻道。" -#: redbot/cogs/audio/core/events/dpy.py:384 +#: redbot/cogs/audio/core/events/dpy.py:388 #: redbot/cogs/audio/core/events/lavalink.py:183 msgid "Unable to Get Track" msgstr "無法獲取歌曲。" -#: redbot/cogs/audio/core/events/dpy.py:385 +#: redbot/cogs/audio/core/events/dpy.py:389 #: redbot/cogs/audio/core/events/lavalink.py:184 msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes." msgstr "我目前無法從 Lavalink 節點獲取曲目,請過幾分鐘再試。" -#: redbot/cogs/audio/core/events/dpy.py:396 +#: redbot/cogs/audio/core/events/dpy.py:400 msgid "There was an issue communicating with Discord." msgstr "與 Discord 通信時出現問題。" -#: redbot/cogs/audio/core/events/dpy.py:397 +#: redbot/cogs/audio/core/events/dpy.py:401 msgid "This error has been reported to the bot owner." msgstr "此錯誤已報告給機器人所有者。" diff --git a/redbot/cogs/audio/core/utilities/locales/ar-SA.po b/redbot/cogs/audio/core/utilities/locales/ar-SA.po index acc10977dbf..c03a72410f6 100644 --- a/redbot/cogs/audio/core/utilities/locales/ar-SA.po +++ b/redbot/cogs/audio/core/utilities/locales/ar-SA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "" msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "" +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/bg-BG.po b/redbot/cogs/audio/core/utilities/locales/bg-BG.po index e8447334b65..ee4701729b4 100644 --- a/redbot/cogs/audio/core/utilities/locales/bg-BG.po +++ b/redbot/cogs/audio/core/utilities/locales/bg-BG.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "" msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "" +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/cs-CZ.po b/redbot/cogs/audio/core/utilities/locales/cs-CZ.po index 43477ad3fe9..5a64ff9f83e 100644 --- a/redbot/cogs/audio/core/utilities/locales/cs-CZ.po +++ b/redbot/cogs/audio/core/utilities/locales/cs-CZ.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "Nejprve se připojte k hlasovému kanálu." msgid "Connection to Lavalink node has not yet been established." msgstr "Spojení s Lavalink uzlem ještě nebylo navázáno." -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "Skladby Nelze Přehrát" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "Dosaženo limitu velikosti fronty." +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "Skladby Nelze Přehrát" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/da-DK.po b/redbot/cogs/audio/core/utilities/locales/da-DK.po index 4ef4071c32f..f97ffbbe50d 100644 --- a/redbot/cogs/audio/core/utilities/locales/da-DK.po +++ b/redbot/cogs/audio/core/utilities/locales/da-DK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Danish\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "" msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "" +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/de-DE.po b/redbot/cogs/audio/core/utilities/locales/de-DE.po index 230dae0f6a9..c672c12cdcd 100644 --- a/redbot/cogs/audio/core/utilities/locales/de-DE.po +++ b/redbot/cogs/audio/core/utilities/locales/de-DE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "Verbinde dich zuerst mit einem Sprachkanal." msgid "Connection to Lavalink node has not yet been established." msgstr "Verbindung zu Lavalink wurde noch nicht hergestellt." -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "Titel können nicht wiedergegeben werden" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "Maximale Warteschlangengröße erreicht." +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "Titel können nicht wiedergegeben werden" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/es-ES.po b/redbot/cogs/audio/core/utilities/locales/es-ES.po index 1ec7b246ecd..4bd1965ee83 100644 --- a/redbot/cogs/audio/core/utilities/locales/es-ES.po +++ b/redbot/cogs/audio/core/utilities/locales/es-ES.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "Conéctate a un canal de voz primero." msgid "Connection to Lavalink node has not yet been established." msgstr "Aún no se ha establecido la conexión con Lavalink." -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "No se pueden reproducir canciones" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "Límite de cola alcanzado." +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "No se pueden reproducir canciones" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/fi-FI.po b/redbot/cogs/audio/core/utilities/locales/fi-FI.po index 49561107606..da2a4ea1b10 100644 --- a/redbot/cogs/audio/core/utilities/locales/fi-FI.po +++ b/redbot/cogs/audio/core/utilities/locales/fi-FI.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Finnish\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "Yhdistä ensin puhekanavalle." msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "Kappaleiden toisto ei onnistu" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "Jonon enimmäispituus on saavutettu." +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "Kappaleiden toisto ei onnistu" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/fr-FR.po b/redbot/cogs/audio/core/utilities/locales/fr-FR.po index e66c7b5dad2..c0a4a7fe6ac 100644 --- a/redbot/cogs/audio/core/utilities/locales/fr-FR.po +++ b/redbot/cogs/audio/core/utilities/locales/fr-FR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "Rejoignez un salon vocal d'abord." msgid "Connection to Lavalink node has not yet been established." msgstr "La connexion au nœud Lavalink n'a pas encore été établie." -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "Impossible de jouer des pistes" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "Limite de la file de lecture atteinte." +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "Impossible de jouer des pistes" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/hi-IN.po b/redbot/cogs/audio/core/utilities/locales/hi-IN.po index eee32c7a6a4..917ce4050dc 100644 --- a/redbot/cogs/audio/core/utilities/locales/hi-IN.po +++ b/redbot/cogs/audio/core/utilities/locales/hi-IN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Hindi\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "" msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "" +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/hr-HR.po b/redbot/cogs/audio/core/utilities/locales/hr-HR.po index 7311870b94e..655c038ab06 100644 --- a/redbot/cogs/audio/core/utilities/locales/hr-HR.po +++ b/redbot/cogs/audio/core/utilities/locales/hr-HR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "Prvo se pridruži govornome kanalu." msgid "Connection to Lavalink node has not yet been established." msgstr "Veza s Lavalink čvorom još nije uspostavljena." -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "Nije moguće reproducirati pjesme" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "Dostignuto ograničenje za red čekanja." +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "Nije moguće reproducirati pjesme" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/hu-HU.po b/redbot/cogs/audio/core/utilities/locales/hu-HU.po index c6e1757dff1..861757a9db5 100644 --- a/redbot/cogs/audio/core/utilities/locales/hu-HU.po +++ b/redbot/cogs/audio/core/utilities/locales/hu-HU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "" msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "" +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/id-ID.po b/redbot/cogs/audio/core/utilities/locales/id-ID.po index ff8f51a07d7..730e1017bea 100644 --- a/redbot/cogs/audio/core/utilities/locales/id-ID.po +++ b/redbot/cogs/audio/core/utilities/locales/id-ID.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "" msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "" +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/it-IT.po b/redbot/cogs/audio/core/utilities/locales/it-IT.po index a21c38d5d8e..77dd5a8ab68 100644 --- a/redbot/cogs/audio/core/utilities/locales/it-IT.po +++ b/redbot/cogs/audio/core/utilities/locales/it-IT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "" msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "" +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/ja-JP.po b/redbot/cogs/audio/core/utilities/locales/ja-JP.po index 94e63bffca7..38abe48f5db 100644 --- a/redbot/cogs/audio/core/utilities/locales/ja-JP.po +++ b/redbot/cogs/audio/core/utilities/locales/ja-JP.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Japanese\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "" msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "" +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/ko-KR.po b/redbot/cogs/audio/core/utilities/locales/ko-KR.po index b7e7abc213a..1e595375540 100644 --- a/redbot/cogs/audio/core/utilities/locales/ko-KR.po +++ b/redbot/cogs/audio/core/utilities/locales/ko-KR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Korean\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "먼저 음성체널에 연결하세요." msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "트랙을 재생할수 없습니다" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "큐 최대 제한에 도달했습니다." +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "트랙을 재생할수 없습니다" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/nb-NO.po b/redbot/cogs/audio/core/utilities/locales/nb-NO.po index 9c421466c32..817e08922b6 100644 --- a/redbot/cogs/audio/core/utilities/locales/nb-NO.po +++ b/redbot/cogs/audio/core/utilities/locales/nb-NO.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Norwegian Bokmal\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "Koble til en talekanal først." msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "Kan ikke spille spor" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "Grensen for kø er nådd." +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "Kan ikke spille spor" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/nl-NL.po b/redbot/cogs/audio/core/utilities/locales/nl-NL.po index 122e795d24c..e5b16273024 100644 --- a/redbot/cogs/audio/core/utilities/locales/nl-NL.po +++ b/redbot/cogs/audio/core/utilities/locales/nl-NL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "Verbind eerst met een spraakkanaal." msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "Kan tracks niet afspelen" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "" +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "Kan tracks niet afspelen" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/pl-PL.po b/redbot/cogs/audio/core/utilities/locales/pl-PL.po index fa8379ae5ec..ac8c513fba4 100644 --- a/redbot/cogs/audio/core/utilities/locales/pl-PL.po +++ b/redbot/cogs/audio/core/utilities/locales/pl-PL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "Najpierw połącz się z kanałem głosowym." msgid "Connection to Lavalink node has not yet been established." msgstr "Połączenie z Lavalink nie zostało jeszcze nawiązane." -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "Nie można odtworzyć utworów" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "Osiągnięto limit rozmiaru kolejki." +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "Nie można odtworzyć utworów" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/pt-BR.po b/redbot/cogs/audio/core/utilities/locales/pt-BR.po index b1cb2cba68c..53339d98222 100644 --- a/redbot/cogs/audio/core/utilities/locales/pt-BR.po +++ b/redbot/cogs/audio/core/utilities/locales/pt-BR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -17,23 +17,23 @@ msgstr "" #: redbot/cogs/audio/core/utilities/formatting.py:74 msgid "tracks" -msgstr "" +msgstr "faixas" #: redbot/cogs/audio/core/utilities/formatting.py:84 #: redbot/cogs/audio/core/utilities/formatting.py:272 msgid "Page {page_num}/{total_pages}" -msgstr "" +msgstr "Página {page_num}/{total_pages}" #: redbot/cogs/audio/core/utilities/formatting.py:95 #: redbot/cogs/audio/core/utilities/playlists.py:526 msgid "Connection to Lavalink node has failed" -msgstr "" +msgstr "Falha na conexão com o node Lavalink" #: redbot/cogs/audio/core/utilities/formatting.py:98 #: redbot/cogs/audio/core/utilities/player.py:591 #: redbot/cogs/audio/core/utilities/playlists.py:529 msgid "Please check your console or logs for details." -msgstr "" +msgstr "Por favor, verifique o seu console ou os logs para obter detalhes." #: redbot/cogs/audio/core/utilities/formatting.py:106 #: redbot/cogs/audio/core/utilities/playlists.py:561 @@ -43,11 +43,7 @@ msgstr "Primeiro você deve se juntar a um canal de voz." #: redbot/cogs/audio/core/utilities/formatting.py:109 #: redbot/cogs/audio/core/utilities/playlists.py:554 msgid "Connection to Lavalink node has not yet been established." -msgstr "" - -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "Não foi possível tocar a música" +msgstr "Conexão com o node Lavalink ainda não foi estabelecida." #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 @@ -55,6 +51,10 @@ msgstr "Não foi possível tocar a música" msgid "Queue size limit reached." msgstr "" +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "Não foi possível tocar a música" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/pt-PT.po b/redbot/cogs/audio/core/utilities/locales/pt-PT.po index 5dbae58f75e..968ef6ba3b1 100644 --- a/redbot/cogs/audio/core/utilities/locales/pt-PT.po +++ b/redbot/cogs/audio/core/utilities/locales/pt-PT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "Primeiro, conecte-se a um canal de voz." msgid "Connection to Lavalink node has not yet been established." msgstr "Conexão com o nó Lavalink ainda não foi estabelecida." -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "Não foi possível reproduzir as faixas" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "Limite de tamanho da fila atingido." +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "Não foi possível reproduzir as faixas" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/ru-RU.po b/redbot/cogs/audio/core/utilities/locales/ru-RU.po index a691a2d9d68..b870e3b3053 100644 --- a/redbot/cogs/audio/core/utilities/locales/ru-RU.po +++ b/redbot/cogs/audio/core/utilities/locales/ru-RU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "Сначала подключитесь к голосовому кана msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "Не удается воспроизвести треки" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "Достигнут предел размера очереди." +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "Не удается воспроизвести треки" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/sk-SK.po b/redbot/cogs/audio/core/utilities/locales/sk-SK.po index 1c6a499a636..7efe268cd7d 100644 --- a/redbot/cogs/audio/core/utilities/locales/sk-SK.po +++ b/redbot/cogs/audio/core/utilities/locales/sk-SK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Slovak\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "" msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "" +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/sl-SI.po b/redbot/cogs/audio/core/utilities/locales/sl-SI.po index 683a7e072ff..94f7c29be78 100644 --- a/redbot/cogs/audio/core/utilities/locales/sl-SI.po +++ b/redbot/cogs/audio/core/utilities/locales/sl-SI.po @@ -1,14 +1,14 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+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.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" +"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" "X-Crowdin-Language: sl\n" @@ -45,16 +45,16 @@ msgstr "" msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "" +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/sv-SE.po b/redbot/cogs/audio/core/utilities/locales/sv-SE.po index 5aba95395df..bbc22e64be3 100644 --- a/redbot/cogs/audio/core/utilities/locales/sv-SE.po +++ b/redbot/cogs/audio/core/utilities/locales/sv-SE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "" msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "" +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/tr-TR.po b/redbot/cogs/audio/core/utilities/locales/tr-TR.po index ea76eee10c0..5a0f734340b 100644 --- a/redbot/cogs/audio/core/utilities/locales/tr-TR.po +++ b/redbot/cogs/audio/core/utilities/locales/tr-TR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "Önce bir sesli bir kanala katılın." msgid "Connection to Lavalink node has not yet been established." msgstr "Lavalink ile bağlantı henüz sağlanmadı." -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "Parçalar Çalınamıyor" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "Sıraya alma limitine ulaşıldı." +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "Parçalar Çalınamıyor" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/uk-UA.po b/redbot/cogs/audio/core/utilities/locales/uk-UA.po index dfc64766ddb..1092176f1c0 100644 --- a/redbot/cogs/audio/core/utilities/locales/uk-UA.po +++ b/redbot/cogs/audio/core/utilities/locales/uk-UA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "" msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "" +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/vi-VN.po b/redbot/cogs/audio/core/utilities/locales/vi-VN.po index ed0e7a659e2..58f6b6c92a7 100644 --- a/redbot/cogs/audio/core/utilities/locales/vi-VN.po +++ b/redbot/cogs/audio/core/utilities/locales/vi-VN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "Kết nối với một kênh thoại trước." msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "Không thể phát các bài hát" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "Đạt đến số lượng hàng đợi giới hạn." +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "Không thể phát các bài hát" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/zh-CN.po b/redbot/cogs/audio/core/utilities/locales/zh-CN.po index 66aca373dc8..94ad5d7b326 100644 --- a/redbot/cogs/audio/core/utilities/locales/zh-CN.po +++ b/redbot/cogs/audio/core/utilities/locales/zh-CN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "您必须先加入一个语音频道。" msgid "Connection to Lavalink node has not yet been established." msgstr "" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "无法播放曲目" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "" +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "无法播放曲目" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/core/utilities/locales/zh-TW.po b/redbot/cogs/audio/core/utilities/locales/zh-TW.po index 08a127e21ca..bb6fa28697e 100644 --- a/redbot/cogs/audio/core/utilities/locales/zh-TW.po +++ b/redbot/cogs/audio/core/utilities/locales/zh-TW.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-07-10 12:45+0000\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "MIME-Version: 1.0\n" @@ -45,16 +45,16 @@ msgstr "請先加入一個語音頻道。" msgid "Connection to Lavalink node has not yet been established." msgstr "尚未建立與 Lavalink 節點的連接。" -#: redbot/cogs/audio/core/utilities/formatting.py:116 -msgid "Unable To Play Tracks" -msgstr "無法播放歌曲" - #: redbot/cogs/audio/core/utilities/formatting.py:116 #: redbot/cogs/audio/core/utilities/player.py:442 #: redbot/cogs/audio/core/utilities/player.py:524 msgid "Queue size limit reached." msgstr "已達到隊列數量限制。" +#: redbot/cogs/audio/core/utilities/formatting.py:116 +msgid "Unable To Play Tracks" +msgstr "無法播放歌曲" + #: redbot/cogs/audio/core/utilities/formatting.py:154 #: redbot/cogs/audio/core/utilities/player.py:599 msgid "Track Enqueued" diff --git a/redbot/cogs/audio/manager.py b/redbot/cogs/audio/manager.py index 5c5ecf9a00b..7023d10f33c 100644 --- a/redbot/cogs/audio/manager.py +++ b/redbot/cogs/audio/manager.py @@ -49,7 +49,11 @@ _ = Translator("Audio", pathlib.Path(__file__)) log = getLogger("red.Audio.manager") -_FAILED_TO_START: Final[Pattern] = re.compile(rb"Web server failed to start\. (.*)") +_LL_READY_LOG: Final[bytes] = b"Lavalink is ready to accept connections." +_LL_PLUGIN_LOG: Final[Pattern[bytes]] = re.compile( + rb"Found plugin '(?P.+)' version (?P\S+)$", re.MULTILINE +) +_FAILED_TO_START: Final[Pattern[bytes]] = re.compile(rb"Web server failed to start\. (.*)") # Version regexes # @@ -294,12 +298,15 @@ def __ge__(self, other: object) -> bool: class ServerManager: - JAR_VERSION: Final[str] = LavalinkVersion(3, 7, 11, red=2) + JAR_VERSION: Final[str] = LavalinkVersion(3, 7, 11, red=3) + YT_PLUGIN_VERSION: Final[str] = "1.4.0" + LAVALINK_DOWNLOAD_URL: Final[str] = ( "https://github.com/Cog-Creators/Lavalink-Jars/releases/download/" f"{JAR_VERSION}/" "Lavalink.jar" ) + YT_PLUGIN_REPOSITORY: Final[str] = "https://maven.lavalink.dev/releases" _java_available: ClassVar[Optional[bool]] = None _java_version: ClassVar[Optional[Tuple[int, int]]] = None @@ -323,6 +330,7 @@ def __init__(self, config: Config, cog: "Audio", timeout: Optional[int] = None) self.cog = cog self._args = [] self._pipe_task = None + self.plugins: dict[str, str] = {} @property def lavalink_download_dir(self) -> pathlib.Path: @@ -422,7 +430,20 @@ async def _start(self, java_path: str) -> None: async def process_settings(self): data = change_dict_naming_convention(await self._config.yaml.all()) - with open(self.lavalink_app_yml, "w") as f: + ll_config = data["lavalink"] + sources = ll_config["server"]["sources"] + plugins = ll_config.setdefault("plugins", []) + + enable_yt_plugin = sources["youtube"] + if enable_yt_plugin: + sources["youtube"] = False + yt_plugin = { + "dependency": f"dev.lavalink.youtube:youtube-plugin:{self.YT_PLUGIN_VERSION}", + "repository": self.YT_PLUGIN_REPOSITORY, + } + plugins.append(yt_plugin) + + with open(self.lavalink_app_yml, "w", encoding="utf-8") as f: yaml.safe_dump(data, f) async def _get_jar_args(self) -> Tuple[List[str], Optional[str]]: @@ -518,12 +539,14 @@ async def _wait_for_launcher(self) -> None: log.info("Waiting for Managed Lavalink node to be ready") for i in itertools.cycle(range(50)): line = await self._proc.stdout.readline() - if b"Lavalink is ready to accept connections." in line: + if _LL_READY_LOG in line: self.ready.set() log.info("Managed Lavalink node is ready to receive requests.") self._pipe_task = asyncio.create_task(self._pipe_output()) break - if _FAILED_TO_START.search(line): + if match := _LL_PLUGIN_LOG.search(line): + self.plugins[match["name"].decode()] = match["version"].decode() + elif _FAILED_TO_START.search(line): raise ManagedLavalinkStartFailure( f"Lavalink failed to start: {line.decode().strip()}" ) diff --git a/redbot/cogs/cleanup/locales/fr-FR.po b/redbot/cogs/cleanup/locales/fr-FR.po index 396bc160441..ad4dd19cbae 100644 --- a/redbot/cogs/cleanup/locales/fr-FR.po +++ b/redbot/cogs/cleanup/locales/fr-FR.po @@ -32,7 +32,7 @@ msgstr "Ce cog contient des commandes utilisées pour \"nettoyer\" (supprimer) d #: redbot/cogs/cleanup/cleanup.py:58 msgid "Try a smaller number instead." -msgstr "" +msgstr "Essayez un nombre plus petit à la place." #: redbot/cogs/cleanup/cleanup.py:61 msgid "Are you sure you want to delete {number} messages?" diff --git a/redbot/cogs/cleanup/locales/tr-TR.po b/redbot/cogs/cleanup/locales/tr-TR.po index f2f4ae2b946..21431f7345a 100644 --- a/redbot/cogs/cleanup/locales/tr-TR.po +++ b/redbot/cogs/cleanup/locales/tr-TR.po @@ -32,7 +32,7 @@ msgstr "Bu cog mesajları \"temizlemek\" (silmek) için kullanılan komutlar iç #: redbot/cogs/cleanup/cleanup.py:58 msgid "Try a smaller number instead." -msgstr "" +msgstr "Bunun yerine daha küçük bir sayı deneyin." #: redbot/cogs/cleanup/cleanup.py:61 msgid "Are you sure you want to delete {number} messages?" diff --git a/redbot/cogs/downloader/locales/fr-FR.po b/redbot/cogs/downloader/locales/fr-FR.po index f230cdf7cb9..c0f3d260a89 100644 --- a/redbot/cogs/downloader/locales/fr-FR.po +++ b/redbot/cogs/downloader/locales/fr-FR.po @@ -168,11 +168,11 @@ msgstr "Il n'y a aucun repo installé." #: redbot/cogs/downloader/downloader.py:647 msgid "# Installed Repos\n" -msgstr "" +msgstr "# Cogs installés \n" #: redbot/cogs/downloader/downloader.py:649 msgid "# Installed Repo\n" -msgstr "" +msgstr "# Cogs installés \n" #: redbot/cogs/downloader/downloader.py:658 #, docstring @@ -663,27 +663,32 @@ msgstr "" #: redbot/cogs/downloader/downloader.py:1356 msgid "# Installed Cogs\n" "{text}" -msgstr "" +msgstr "# Cog installé :\n" +"{text}" #: redbot/cogs/downloader/downloader.py:1358 msgid "# Installed Cog\n" "{text}" -msgstr "" +msgstr "# Cog installé :\n" +"{text}" #: redbot/cogs/downloader/downloader.py:1369 msgid "> Available Cogs\n" "No cogs are available." -msgstr "" +msgstr "> Cogs disponibles :\n" +"Aucun cog n'est disponible." #: redbot/cogs/downloader/downloader.py:1371 msgid "> Available Cogs\n" "{text}" -msgstr "" +msgstr "> Cog disponible :\n" +"{text}" #: redbot/cogs/downloader/downloader.py:1373 msgid "> Available Cog\n" "{text}" -msgstr "" +msgstr "> Cogs disponibles :\n" +"{text}" #: redbot/cogs/downloader/downloader.py:1380 #, docstring @@ -707,11 +712,16 @@ msgid "Information on {cog_name}:\n" "{end_user_data_statement}\n\n" "Made by: {author}\n" "Requirements: {requirements}" -msgstr "" +msgstr "Informations sur {cog_name}:\n" +"{description}\n\n" +"Déclaration de données utilisateur final :\n" +"{end_user_data_statement}\n\n" +"Réalisée par : {author}\n" +"Exigences : {requirements}" #: redbot/cogs/downloader/downloader.py:1411 msgid "Author of the cog didn't provide end user data statement." -msgstr "" +msgstr "L'auteur du cog n'a pas fourni de déclaration de données utilisateur finale." #: redbot/cogs/downloader/downloader.py:1480 msgid "\n" @@ -746,7 +756,8 @@ msgstr "\n" #: redbot/cogs/downloader/downloader.py:1494 msgid "\n" "Cog with this name is already installed from a different repo: " -msgstr "" +msgstr "\n" +"Un cog avec ce nom est déjà installés à partir d'un autre repo. " #: redbot/cogs/downloader/downloader.py:1511 msgid " (Minimum: {min_version})" @@ -769,7 +780,7 @@ msgstr "\n" #: redbot/cogs/downloader/downloader.py:1539 msgid "\n" "This cog requires higher python version than you have: " -msgstr "" +msgstr "Ce cog nécessite une version de Python supérieure à celle que vous avez : " #: redbot/cogs/downloader/downloader.py:1543 msgid "\n" @@ -790,27 +801,28 @@ msgstr "Mise à jour du cog effectuée avec succès" #: redbot/cogs/downloader/downloader.py:1634 msgid "\n" "End user data statements of these cogs have changed: " -msgstr "" +msgstr "Les déclarations de données de l'utilisateur final de ces cogs ont changé :" #: redbot/cogs/downloader/downloader.py:1636 msgid "\n" "You can use {command} to see the updated statements.\n" -msgstr "" +msgstr "Vous pouvez utiliser {command} pour voir les instructions mises à jour." #: redbot/cogs/downloader/downloader.py:1642 msgid "\n" "End user data statement of this cog has changed:" -msgstr "" +msgstr "\n" +"La déclaration de données utilisateur de ce cog a été modifiée :" #: redbot/cogs/downloader/downloader.py:1644 msgid "\n" "You can use {command} to see the updated statement.\n" -msgstr "" +msgstr "Vous pouvez utiliser {command} pour voir les instructions mises à jour." #: redbot/cogs/downloader/downloader.py:1651 msgid "\n" "You may need to resync your slash commands with `{prefix}slash sync`." -msgstr "" +msgstr "Vous devrez peut-être resynchroniser vos commandes slash avec `{prefix}slash sync`." #: redbot/cogs/downloader/downloader.py:1657 msgid "\n" @@ -895,11 +907,11 @@ msgstr "Commande :" #: redbot/cogs/downloader/downloader.py:1811 msgid "Cog package name:" -msgstr "" +msgstr "Nom du package Cog:" #: redbot/cogs/downloader/downloader.py:1812 msgid "Cog name:" -msgstr "" +msgstr "Nom du Cog:" #: redbot/cogs/downloader/downloader.py:1813 msgid "Made by:" @@ -924,7 +936,12 @@ msgid "Command: {command}\n" "Made by: {author}\n" "Repo name: {repo_name}\n" "Repo URL: {repo_url}\n" -msgstr "" +msgstr "Commande : {command}\n" +"Nom du paquet Cog : {cog_pkg}\n" +"Nom du Cog : {cog}\n" +"Fait par : {author}\n" +"Nom du dépôt : {repo_name}\n" +"URL du dépôt : {repo_url}\n" #: redbot/cogs/downloader/downloader.py:1839 msgid "Repo branch: {branch_name}\n" diff --git a/redbot/cogs/economy/locales/fr-FR.po b/redbot/cogs/economy/locales/fr-FR.po index 564e87702b9..7dca3de596a 100644 --- a/redbot/cogs/economy/locales/fr-FR.po +++ b/redbot/cogs/economy/locales/fr-FR.po @@ -67,7 +67,7 @@ msgstr "Valeur invalide, l'argument doit être un entier, éventuellement préc #: redbot/cogs/economy/economy.py:118 msgid "Invalid value, the amount of currency to increase or decrease must be an integer different from zero." -msgstr "" +msgstr "Valeur invalide, le montant de la devise à augmenter ou à diminuer doit être un entier différent de zéro." #: redbot/cogs/economy/economy.py:130 #, docstring @@ -141,7 +141,9 @@ msgstr "{author} définit le solde du compte de {user} à {num} {currency}." msgid "Get some free currency.\n\n" " The amount awarded and frequency can be configured.\n" " " -msgstr "" +msgstr "Obtenez des devises gratuites.\n\n" +" Le montant attribué et la fréquence peuvent être configurés.\n" +" " #: redbot/cogs/economy/economy.py:312 redbot/cogs/economy/economy.py:368 msgid "You've reached the maximum amount of {currency}! Please spend some more 😬\n\n" @@ -159,7 +161,7 @@ msgstr "{author.mention} Tenez, voici un peu de {currency}. Amusez-vous bien ! ( #: redbot/cogs/economy/economy.py:345 redbot/cogs/economy/economy.py:402 msgid "{author.mention} Too soon. Your next payday is {relative_time}." -msgstr "" +msgstr "{author.mention} Trop tôt. Pour le prochain payday, vous devez attendre {relative_time}." #: redbot/cogs/economy/economy.py:410 #, docstring @@ -253,14 +255,16 @@ msgstr "\n" #: redbot/cogs/economy/economy.py:662 #, docstring msgid "Base command to manage Economy settings." -msgstr "" +msgstr "Commande de base pour gérer les paramètres de l'Economie." #: redbot/cogs/economy/economy.py:666 #, docstring msgid "\n" " Shows the current economy settings\n" " " -msgstr "" +msgstr "\n" +" Montre les paramètres économiques actuels\n" +" " #: redbot/cogs/economy/economy.py:681 msgid "---Economy Settings---\n" @@ -269,11 +273,16 @@ msgid "---Economy Settings---\n" "Slot cooldown: {slot_time}\n" "Payday amount: {payday_amount}\n" "Payday cooldown: {payday_time}\n" -msgstr "" +msgstr "--- Paramètres Économiques---\n" +"Enchère minimum : {slot_min}\n" +"Enchère maximale : {slot_max}\n" +"Temps de recharge des emplacements : {slot_time} \n" +"Montant du jour de paie : {payday_amount}\n" +"Délai de récupération du jour de paie : {payday_time}" #: redbot/cogs/economy/economy.py:698 msgid "---Role Payday Amounts---\n" -msgstr "" +msgstr "---Montants du Role Jour de paye--\n" #: redbot/cogs/economy/economy.py:702 #, docstring @@ -287,7 +296,7 @@ msgstr "" #: redbot/cogs/economy/economy.py:719 msgid "Warning: Minimum bid is greater than the maximum bid ({max_bid}). Slots will not work." -msgstr "" +msgstr "Attention : l'enchère minimale est supérieure à l'enchère maximale ({max_bid}). Les enchères ne fonctionneront pas." #: redbot/cogs/economy/economy.py:730 msgid "Minimum bid is now {bid} {currency}." @@ -305,7 +314,7 @@ msgstr "" #: redbot/cogs/economy/economy.py:754 msgid "Warning: Maximum bid is less than the minimum bid ({min_bid}). Slots will not work." -msgstr "" +msgstr "Attention : l'enchère maximale est inférieure à l'enchère minimale ({min_bid}). Les enchères ne fonctionneront pas." #: redbot/cogs/economy/economy.py:765 msgid "Maximum bid is now {bid} {currency}." @@ -384,7 +393,7 @@ msgstr "La banque doit être par serveur pour que les paydays par rôle fonction #: redbot/cogs/economy/economy.py:883 msgid "The payday value attached to role has been removed. Users with this role will now receive the default pay of {num} {currency}." -msgstr "" +msgstr "La valeur du jour de paye attachée au rôle a été supprimée. Les utilisateurs avec ce rôle recevront désormais le paiement par défaut de {num} {currency}." #: redbot/cogs/economy/economy.py:892 msgid "Every payday will now give {num} {currency} to people with the role {role_name}." diff --git a/redbot/cogs/filter/filter.py b/redbot/cogs/filter/filter.py index 04ba0054ecb..84a31100998 100644 --- a/redbot/cogs/filter/filter.py +++ b/redbot/cogs/filter/filter.py @@ -445,7 +445,6 @@ async def remove_from_filter( async def filter_hits( self, - text: str, server_or_channel: Union[ discord.Guild, discord.TextChannel, @@ -453,6 +452,7 @@ async def filter_hits( discord.StageChannel, discord.Thread, ], + *texts: str, ) -> Set[str]: if isinstance(server_or_channel, discord.Guild): guild = server_or_channel @@ -483,7 +483,8 @@ async def filter_hits( self.pattern_cache[(guild.id, channel and channel.id)] = pattern if pattern: - hits |= set(pattern.findall(text)) + for text in texts: + hits |= set(pattern.findall(text)) return hits async def check_filter(self, message: discord.Message): @@ -506,7 +507,15 @@ async def check_filter(self, message: discord.Message): user_count = 0 member_data["filter_count"] = user_count - hits = await self.filter_hits(message.content, message.channel) + texts = [message.content] + poll = message.poll + if poll is not None: + texts.append(poll.question or "") + for answer in poll.answers: + texts.append(answer.text or "") + for attachment in message.attachments: + texts.append(attachment.description or "") + hits = await self.filter_hits(message.channel, *texts) if hits: # modlog doesn't accept PartialMessageable @@ -607,7 +616,7 @@ async def maybe_filter_name(self, member: discord.Member): await set_contextual_locales_from_guild(self.bot, guild) - if await self.filter_hits(member.display_name, member.guild): + if await self.filter_hits(member.guild, member.display_name): name_to_use = guild_data["filter_default_name"] reason = _("Filtered nickname") if member.nick else _("Filtered name") try: diff --git a/redbot/cogs/filter/locales/ar-SA.po b/redbot/cogs/filter/locales/ar-SA.po index befec547697..74804601742 100644 --- a/redbot/cogs/filter/locales/ar-SA.po +++ b/redbot/cogs/filter/locales/ar-SA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/bg-BG.po b/redbot/cogs/filter/locales/bg-BG.po index 1cc02a222c8..9a79742b432 100644 --- a/redbot/cogs/filter/locales/bg-BG.po +++ b/redbot/cogs/filter/locales/bg-BG.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/cs-CZ.po b/redbot/cogs/filter/locales/cs-CZ.po index 72ec994c97d..8378b84ae16 100644 --- a/redbot/cogs/filter/locales/cs-CZ.po +++ b/redbot/cogs/filter/locales/cs-CZ.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" @@ -258,23 +258,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "Filtrovaná přezdívka" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "Filtrovaný název" diff --git a/redbot/cogs/filter/locales/da-DK.po b/redbot/cogs/filter/locales/da-DK.po index 40f2fe0070c..753c9f98d04 100644 --- a/redbot/cogs/filter/locales/da-DK.po +++ b/redbot/cogs/filter/locales/da-DK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Danish\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/de-DE.po b/redbot/cogs/filter/locales/de-DE.po index 297f4692673..c92e6a5779f 100644 --- a/redbot/cogs/filter/locales/de-DE.po +++ b/redbot/cogs/filter/locales/de-DE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -257,23 +257,23 @@ msgstr "Name und Nicknamen werden nun nicht mehr gefiltert." msgid "Names and nicknames will now be filtered." msgstr "Name und Nicknamen werden nun gefiltert." -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "Automatischer Ban (zu viele gefilterte Nachrichten.)" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "Gefilterter Nickname" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "Gefilterter Name" diff --git a/redbot/cogs/filter/locales/es-ES.po b/redbot/cogs/filter/locales/es-ES.po index f52d9bae291..443787f932b 100644 --- a/redbot/cogs/filter/locales/es-ES.po +++ b/redbot/cogs/filter/locales/es-ES.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -264,23 +264,23 @@ msgstr "Los nombres y apodos ya no serán filtrados." msgid "Names and nicknames will now be filtered." msgstr "Ahora se filtrarán los nombres y los apodos." -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "Palabras filtradas utilizadas: {words}" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "Palabra filtrada utilizada: {word}" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "Autoban (demasiados mensajes filtrados.)" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "Apodo filtrado" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "Nombre filtrado" diff --git a/redbot/cogs/filter/locales/fi-FI.po b/redbot/cogs/filter/locales/fi-FI.po index 145b9817c0a..06b5c16428a 100644 --- a/redbot/cogs/filter/locales/fi-FI.po +++ b/redbot/cogs/filter/locales/fi-FI.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Finnish\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/fr-FR.po b/redbot/cogs/filter/locales/fr-FR.po index a54f0eec4a0..7d698d990ae 100644 --- a/redbot/cogs/filter/locales/fr-FR.po +++ b/redbot/cogs/filter/locales/fr-FR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -257,23 +257,23 @@ msgstr "Les noms et pseudos ne seront plus filtrés." msgid "Names and nicknames will now be filtered." msgstr "Les noms et les pseudos seront maintenant filtrés." -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "Mots filtrés utilisés : {words}" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "Mot filtré utilisé : {word}" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "Autoban (trop de messages filtrés.)" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "Pseudo filtré" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "Nom filtré" diff --git a/redbot/cogs/filter/locales/hi-IN.po b/redbot/cogs/filter/locales/hi-IN.po index 8592a0454ad..52061e29559 100644 --- a/redbot/cogs/filter/locales/hi-IN.po +++ b/redbot/cogs/filter/locales/hi-IN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Hindi\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/hr-HR.po b/redbot/cogs/filter/locales/hr-HR.po index 13f386f4449..6c37a11f4b4 100644 --- a/redbot/cogs/filter/locales/hr-HR.po +++ b/redbot/cogs/filter/locales/hr-HR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/hu-HU.po b/redbot/cogs/filter/locales/hu-HU.po index 4c991449db3..8d07972f3f4 100644 --- a/redbot/cogs/filter/locales/hu-HU.po +++ b/redbot/cogs/filter/locales/hu-HU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "Szűrt becenév" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "Szűrt név" diff --git a/redbot/cogs/filter/locales/id-ID.po b/redbot/cogs/filter/locales/id-ID.po index 88633bc7763..5ac88b3e171 100644 --- a/redbot/cogs/filter/locales/id-ID.po +++ b/redbot/cogs/filter/locales/id-ID.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/it-IT.po b/redbot/cogs/filter/locales/it-IT.po index 5cfcfee136a..3f49943bc6a 100644 --- a/redbot/cogs/filter/locales/it-IT.po +++ b/redbot/cogs/filter/locales/it-IT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/ja-JP.po b/redbot/cogs/filter/locales/ja-JP.po index a648627cafd..482d2f91515 100644 --- a/redbot/cogs/filter/locales/ja-JP.po +++ b/redbot/cogs/filter/locales/ja-JP.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Japanese\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/ko-KR.po b/redbot/cogs/filter/locales/ko-KR.po index 23c6fb3cdd6..cdc4db178d0 100644 --- a/redbot/cogs/filter/locales/ko-KR.po +++ b/redbot/cogs/filter/locales/ko-KR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Korean\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/nb-NO.po b/redbot/cogs/filter/locales/nb-NO.po index b62da0a1d68..11a84c0f9ec 100644 --- a/redbot/cogs/filter/locales/nb-NO.po +++ b/redbot/cogs/filter/locales/nb-NO.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Norwegian Bokmal\n" "MIME-Version: 1.0\n" @@ -264,23 +264,23 @@ msgstr "Navn og kallenavn vil ikke lenger bli filtrert." msgid "Names and nicknames will now be filtered." msgstr "Navn og kallenavn vil nå bli filtrert." -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "Filtrerte ord som brukes: {words}" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "Filtrert ord brukt: {word}" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "Autoban (for mange filtrerte meldinger.)" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "Filtrert kallenavn" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "Filtrert navn" diff --git a/redbot/cogs/filter/locales/nl-NL.po b/redbot/cogs/filter/locales/nl-NL.po index 912e0afc7ad..6a27f53a504 100644 --- a/redbot/cogs/filter/locales/nl-NL.po +++ b/redbot/cogs/filter/locales/nl-NL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "Namen en bijnamen worden niet langer gefilterd." msgid "Names and nicknames will now be filtered." msgstr "Namen en bijnamen zullen nu worden gefilterd." -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "Autoban (te veel gefilterde berichten.)" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "Gefilterde bijnaam" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "Gefilterde naam" diff --git a/redbot/cogs/filter/locales/pl-PL.po b/redbot/cogs/filter/locales/pl-PL.po index 4849229979a..8e7f9ed769c 100644 --- a/redbot/cogs/filter/locales/pl-PL.po +++ b/redbot/cogs/filter/locales/pl-PL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -264,23 +264,23 @@ msgstr "Nazwy i pseudonimy nie będą już filtrowane." msgid "Names and nicknames will now be filtered." msgstr "Nazwy i pseudonimy zostaną teraz filtrowane." -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "Użyte przefiltrowane słowa: {words}" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "Użyte przefiltrowane słowo: {word}" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "Autoban (zbyt wiele filtrowanych wiadomości.)" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "Przefiltrowany pseudonim" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "Nazwa filtrowana" diff --git a/redbot/cogs/filter/locales/pt-BR.po b/redbot/cogs/filter/locales/pt-BR.po index fadaf2e2c57..7170a0d2806 100644 --- a/redbot/cogs/filter/locales/pt-BR.po +++ b/redbot/cogs/filter/locales/pt-BR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/pt-PT.po b/redbot/cogs/filter/locales/pt-PT.po index 02ec8132c35..b8d849ec35d 100644 --- a/redbot/cogs/filter/locales/pt-PT.po +++ b/redbot/cogs/filter/locales/pt-PT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/ru-RU.po b/redbot/cogs/filter/locales/ru-RU.po index 9368831a053..d512ddf3cf8 100644 --- a/redbot/cogs/filter/locales/ru-RU.po +++ b/redbot/cogs/filter/locales/ru-RU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -264,23 +264,23 @@ msgstr "Имена и никнеймы больше не будут фильтр msgid "Names and nicknames will now be filtered." msgstr "Имена и никнеймы теперь будут отфильтрованы." -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "Использованные отфильтрованные слова: {words}" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "Использованное фильтрованное слово: {word}" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "Автобан (слишком много отфильтрованных сообщений.)" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "Отфильтрованный никнейм" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "Отфильтрованное имя" diff --git a/redbot/cogs/filter/locales/sk-SK.po b/redbot/cogs/filter/locales/sk-SK.po index d6efac71ac2..30436561d2c 100644 --- a/redbot/cogs/filter/locales/sk-SK.po +++ b/redbot/cogs/filter/locales/sk-SK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Slovak\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/sl-SI.po b/redbot/cogs/filter/locales/sl-SI.po index 03275cf7ff7..477aad6783a 100644 --- a/redbot/cogs/filter/locales/sl-SI.po +++ b/redbot/cogs/filter/locales/sl-SI.po @@ -1,14 +1,14 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+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.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" +"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" "X-Crowdin-Language: sl\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/sv-SE.po b/redbot/cogs/filter/locales/sv-SE.po index 68c212b34fe..24014ff8985 100644 --- a/redbot/cogs/filter/locales/sv-SE.po +++ b/redbot/cogs/filter/locales/sv-SE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/tr-TR.po b/redbot/cogs/filter/locales/tr-TR.po index f37bee44cdb..ece929cf36b 100644 --- a/redbot/cogs/filter/locales/tr-TR.po +++ b/redbot/cogs/filter/locales/tr-TR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -264,23 +264,23 @@ msgstr "İsimler ve takma adlar artık filtrelenmeyecek." msgid "Names and nicknames will now be filtered." msgstr "İsimler ve takma adlar artık filtrelenecek." -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "Kullanılan yasaklı kelimeler: {words}" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "Kullanılan yasaklı kelime: {word}" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "Otomatik banlama (çok fazla filtrelenmiş mesaj)" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "Filtre adı" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "Filtre adı" diff --git a/redbot/cogs/filter/locales/uk-UA.po b/redbot/cogs/filter/locales/uk-UA.po index 1651b877bb0..c08a6490aee 100644 --- a/redbot/cogs/filter/locales/uk-UA.po +++ b/redbot/cogs/filter/locales/uk-UA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/vi-VN.po b/redbot/cogs/filter/locales/vi-VN.po index 83062878207..eee27f391a7 100644 --- a/redbot/cogs/filter/locales/vi-VN.po +++ b/redbot/cogs/filter/locales/vi-VN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/zh-CN.po b/redbot/cogs/filter/locales/zh-CN.po index 82b9021456f..162feaba002 100644 --- a/redbot/cogs/filter/locales/zh-CN.po +++ b/redbot/cogs/filter/locales/zh-CN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -255,23 +255,23 @@ msgstr "" msgid "Names and nicknames will now be filtered." msgstr "" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "" diff --git a/redbot/cogs/filter/locales/zh-TW.po b/redbot/cogs/filter/locales/zh-TW.po index 1c7e04cdffc..55c31deab3d 100644 --- a/redbot/cogs/filter/locales/zh-TW.po +++ b/redbot/cogs/filter/locales/zh-TW.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-05-13 10:40+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "MIME-Version: 1.0\n" @@ -264,23 +264,23 @@ msgstr "名稱和暱稱將不再被過濾。" msgid "Names and nicknames will now be filtered." msgstr "現在將過濾名稱和暱稱。" -#: redbot/cogs/filter/filter.py:526 +#: redbot/cogs/filter/filter.py:535 msgid "Filtered words used: {words}" msgstr "使用的過濾詞:{words}" -#: redbot/cogs/filter/filter.py:528 +#: redbot/cogs/filter/filter.py:537 msgid "Filtered word used: {word}" msgstr "使用的過濾詞:{word}" -#: redbot/cogs/filter/filter.py:542 +#: redbot/cogs/filter/filter.py:551 msgid "Autoban (too many filtered messages.)" msgstr "自動禁止(過濾的消息太多。)" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered nickname" msgstr "已過濾暱稱" -#: redbot/cogs/filter/filter.py:612 +#: redbot/cogs/filter/filter.py:621 msgid "Filtered name" msgstr "已過濾名稱" diff --git a/redbot/cogs/mod/locales/fr-FR.po b/redbot/cogs/mod/locales/fr-FR.po index 2b664ec843c..e7468fc559f 100644 --- a/redbot/cogs/mod/locales/fr-FR.po +++ b/redbot/cogs/mod/locales/fr-FR.po @@ -707,30 +707,33 @@ msgstr "" #: redbot/cogs/mod/settings.py:178 msgid "Autowarn for mention spam is already disabled." -msgstr "" +msgstr "Autowarn pour spam de mention est déjà désactivé." #: redbot/cogs/mod/settings.py:180 msgid "Autowarn for mention spam disabled." -msgstr "" +msgstr "Autowarn pour spam de mention désactivé." #: redbot/cogs/mod/settings.py:183 msgid "`` must be 1 or higher to autowarn." -msgstr "" +msgstr "`` doit être 1 ou supérieur à autowarn." #: redbot/cogs/mod/settings.py:189 msgid "\n" "Autowarn is equal to or higher than autokick." -msgstr "" +msgstr "\n" +"Autowarn est égal ou supérieur a l'explusion automatique ." #: redbot/cogs/mod/settings.py:193 msgid "\n" "Autowarn is equal to or higher than autoban." -msgstr "" +msgstr "\n" +"Autowarn est égal ou supérieur à l'autoban." #: redbot/cogs/mod/settings.py:197 msgid "Autowarn for mention spam enabled. Anyone mentioning {max_mentions} or more people in a single message will be autowarned.\n" "{mismatch_message}" -msgstr "" +msgstr "Autowarn pour le spam de mention activé. Quiconque mentionnant {max_mentions} ou plus de personnes dans un seul message sera automatiquement autowarn.\n" +"{mismatch_message}" #: redbot/cogs/mod/settings.py:207 #, docstring @@ -752,12 +755,13 @@ msgstr "Expulsion automatique pour le spam de mention désactivée." #: redbot/cogs/mod/settings.py:223 msgid "`` must be 1 or higher to autokick." -msgstr "" +msgstr "`` doit être 1 ou plus élevé pour l'autokick." #: redbot/cogs/mod/settings.py:229 msgid "\n" "Autokick is equal to or lower than autowarn." -msgstr "" +msgstr "\n" +"L'autokick est égal ou inférieur à celui de l'autowarn." #: redbot/cogs/mod/settings.py:233 msgid "\n" diff --git a/redbot/cogs/modlog/locales/cs-CZ.po b/redbot/cogs/modlog/locales/cs-CZ.po index c4d631af73c..51b4e8b0f76 100644 --- a/redbot/cogs/modlog/locales/cs-CZ.po +++ b/redbot/cogs/modlog/locales/cs-CZ.po @@ -18,30 +18,30 @@ msgstr "" #: redbot/cogs/modlog/modlog.py:19 #, docstring msgid "Browse and manage modlog cases. To manage modlog settings, use `[p]modlogset`." -msgstr "" +msgstr "Procházejte a spravujte modlog případů. Chcete-li spravovat nastavení modlogu, použijte `[p]modlogset`." #: redbot/cogs/modlog/modlog.py:32 #, docstring msgid "Show the specified case." -msgstr "" +msgstr "Zobrazit zvolený případ." #: redbot/cogs/modlog/modlog.py:36 msgid "That case does not exist for this server." -msgstr "" +msgstr "Tento případ neexistuje pro tento server." #: redbot/cogs/modlog/modlog.py:45 redbot/cogs/modlog/modlog.py:82 #: redbot/cogs/modlog/modlog.py:117 msgid "Timestamp:" -msgstr "" +msgstr "Časové razítko:" #: redbot/cogs/modlog/modlog.py:52 #, docstring msgid "Display cases for the specified member." -msgstr "" +msgstr "Seznam případů pro daného člena." #: redbot/cogs/modlog/modlog.py:64 redbot/cogs/modlog/modlog.py:103 msgid "That user does not exist." -msgstr "" +msgstr "Tento uživatel neexistuje." #: redbot/cogs/modlog/modlog.py:67 redbot/cogs/modlog/modlog.py:106 msgid "Something unexpected went wrong while fetching that user by ID." @@ -54,7 +54,7 @@ msgstr "Tento uživatel nemá žádné případy." #: redbot/cogs/modlog/modlog.py:91 #, docstring msgid "List cases for the specified member." -msgstr "" +msgstr "Seznam případů pro daného člena." #: redbot/cogs/modlog/modlog.py:126 #, docstring @@ -63,11 +63,15 @@ msgid "Specify a reason for a modlog case.\n\n" " the owner of unless you are a mod, admin or server owner.\n\n" " If no case number is specified, the latest case will be used.\n" " " -msgstr "" +msgstr "Zadejte důvod pro moderátorský případ:\n\n" +" Měj na vědomí, že můžeš upravovat pouze případy\n" +" u kterých jsi vlastníkem. Neplatí v případě, že jsi moderátor, admin či vlastník serveru.\n\n" +" pakli-že není specifikováno číslo případu, bude použit ten poslední.\n" +" " #: redbot/cogs/modlog/modlog.py:139 msgid "There are no modlog cases in this server." -msgstr "" +msgstr "Na tomto serveru nejsou žádné moderátorské záznamy." #: redbot/cogs/modlog/modlog.py:145 msgid "That case does not exist!" @@ -75,9 +79,9 @@ msgstr "Tento případ neexistuje!" #: redbot/cogs/modlog/modlog.py:152 msgid "You are not authorized to modify that case!" -msgstr "" +msgstr "Nemáte oprávnění měnit tento případ!" #: redbot/cogs/modlog/modlog.py:160 msgid "Reason for case #{num} has been updated." -msgstr "" +msgstr "Důvod pro případ #{num} byl aktualizován." diff --git a/redbot/cogs/mutes/converters.py b/redbot/cogs/mutes/converters.py index 46cbabc3030..18a11430d10 100644 --- a/redbot/cogs/mutes/converters.py +++ b/redbot/cogs/mutes/converters.py @@ -1,63 +1,79 @@ +from __future__ import annotations + import logging import re -from typing import Union, Dict -from datetime import timedelta +from typing import Optional, TypedDict +from datetime import timedelta, datetime, timezone +from typing_extensions import Annotated from discord.ext.commands.converter import Converter from redbot.core import commands from redbot.core import i18n +from redbot.core.commands.converter import TIME_RE +_ = i18n.Translator("Mutes", __file__) log = logging.getLogger("red.cogs.mutes") -# the following regex is slightly modified from Red -# it's changed to be slightly more strict on matching with finditer -# this is to prevent "empty" matches when parsing the full reason -# This is also designed more to allow time interval at the beginning or the end of the mute -# to account for those times when you think of adding time *after* already typing out the reason -# https://github.com/Cog-Creators/Red-DiscordBot/blob/V3/develop/redbot/core/commands/converter.py#L55 -TIME_RE_STRING = r"|".join( - [ - r"((?P\d+?)\s?(weeks?|w))", - r"((?P\d+?)\s?(days?|d))", - r"((?P\d+?)\s?(hours?|hrs|hr?))", - r"((?P\d+?)\s?(minutes?|mins?|m(?!o)))", # prevent matching "months" - r"((?P\d+?)\s?(seconds?|secs?|s))", - ] -) -TIME_RE = re.compile(TIME_RE_STRING, re.I) -TIME_SPLIT = re.compile(r"t(?:ime)?=") +TIME_SPLIT = re.compile(r"t(?:ime\s?)?=\s*") -_ = i18n.Translator("Mutes", __file__) + +def _edgematch(pattern: re.Pattern[str], argument: str) -> Optional[re.Match[str]]: + """Internal utility to match at either end of the argument string""" + # precondition: pattern does not end in $ + # precondition: argument does not end in whitespace + return pattern.match(argument) or re.search( + pattern.pattern + "$", argument, flags=pattern.flags + ) -class MuteTime(Converter): +class _MuteTime(TypedDict, total=False): + duration: timedelta + reason: str + until: datetime + + +class _MuteTimeConverter(Converter): """ This will parse my defined multi response pattern and provide usable formats to be used in multiple responses """ - async def convert( - self, ctx: commands.Context, argument: str - ) -> Dict[str, Union[timedelta, str, None]]: - time_split = TIME_SPLIT.split(argument) - result: Dict[str, Union[timedelta, str, None]] = {} + async def convert(self, ctx: commands.Context, argument: str) -> _MuteTime: + time_split = TIME_SPLIT.search(argument) + result: _MuteTime = {} if time_split: - maybe_time = time_split[-1] + maybe_time = argument[time_split.end() :] + strategy = re.match else: maybe_time = argument + strategy = _edgematch - time_data = {} - for time in TIME_RE.finditer(maybe_time): - argument = argument.replace(time[0], "") - for k, v in time.groupdict().items(): - if v: - time_data[k] = int(v) - if time_data: + match = strategy(TIME_RE, maybe_time) + if match: + time_data = {k: int(v) for k, v in match.groupdict().items() if v is not None} + for k in time_data: + if k in ("years", "months"): + raise commands.BadArgument( + _("`{unit}` is not a valid unit of time for this command").format(unit=k) + ) try: - result["duration"] = timedelta(**time_data) + result["duration"] = duration = timedelta(**time_data) + result["until"] = ctx.message.created_at + duration + # Catch if using the timedelta with the current date will also result in an Overflow error except OverflowError: raise commands.BadArgument( _("The time provided is too long; use a more reasonable time.") ) + if duration <= timedelta(seconds=0): + raise commands.BadArgument(_("The time provided must not be in the past.")) + if time_split: + start, end = time_split.span() + end += match.end() + else: + start, end = match.span() + argument = argument[:start] + argument[end:] result["reason"] = argument.strip() return result + + +MuteTime = Annotated[_MuteTime, _MuteTimeConverter] diff --git a/redbot/cogs/mutes/locales/ar-SA.po b/redbot/cogs/mutes/locales/ar-SA.po index 2d7a2f90663..72fd03cc474 100644 --- a/redbot/cogs/mutes/locales/ar-SA.po +++ b/redbot/cogs/mutes/locales/ar-SA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: ar_SA\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "حسنًا حينئذ." -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/bg-BG.po b/redbot/cogs/mutes/locales/bg-BG.po index 627e5a20015..55c87df0c3d 100644 --- a/redbot/cogs/mutes/locales/bg-BG.po +++ b/redbot/cogs/mutes/locales/bg-BG.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: bg_BG\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` не е валидна единица за време на тази команда" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "" -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/cs-CZ.po b/redbot/cogs/mutes/locales/cs-CZ.po index 10e497f0ddb..6ea35b5c559 100644 --- a/redbot/cogs/mutes/locales/cs-CZ.po +++ b/redbot/cogs/mutes/locales/cs-CZ.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: cs_CZ\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` není platnou jednotkou času pro tento příkaz" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "Dobře, tedy." -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/da-DK.po b/redbot/cogs/mutes/locales/da-DK.po index 26a15d22148..f1bb6137327 100644 --- a/redbot/cogs/mutes/locales/da-DK.po +++ b/redbot/cogs/mutes/locales/da-DK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Danish\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: da_DK\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "" -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/de-DE.po b/redbot/cogs/mutes/locales/de-DE.po index aa10ee52f78..610700fc831 100644 --- a/redbot/cogs/mutes/locales/de-DE.po +++ b/redbot/cogs/mutes/locales/de-DE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: de_DE\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` ist keine gültige Zeiteinheit für diesen Befehl" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "Server Stummschaltung" @@ -338,43 +346,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -387,34 +395,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -427,27 +437,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "Also gut." -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -460,27 +470,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "Kanal Stummschaltung" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "{users} wurde{time} in diesem Kanal stummgeschaltet." -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "{users} wurden in diesem Kanal stummgeschaltet{time}." -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -491,21 +497,21 @@ msgstr "Hebe die Stummschaltung für Benutzer auf.\n\n" " `[reason]` ist der Grund für die Aufhebung der Stummschaltung.\n" " " -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "Du kannst meine Stummschaltung nicht aufheben." -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "Du kannst deine Stummschaltung nicht selber aufheben." -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "Für {users} wurde die Stummschaltung in diesem Server aufgehoben." -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -513,7 +519,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -521,23 +527,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "Für {users} wurde die Stummschaltung in diesem Kanal aufgehoben." -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "dieser Server" @@ -571,19 +577,15 @@ msgstr "Stummschalten eines Benutzers in seinem aktuellen Sprachkanal.\n\n" " `[p]voicemute @member1 @member2 spam 5 Stunden `\n" " `[p]voicemute @member1 3 Tage`" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "Sprach-Stummschaltung" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "Der folgende Benutzer konnte nicht stummgeschaltet werden\n" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -592,7 +594,7 @@ msgstr "Die Stummschaltung für einen Nutzer in seinem aktuellen Sprach-Kanal au " `` ist eine durch Leerzeichen getrennte Liste von Nutzernamen, IDs oder Erwähnungen.\n" " `[reason]` ist der Grund für die Aufhebung der Stummschaltung." -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "Für die folgenden Nutzer konnte die Stummschaltung nicht aufgehoben werden\n" diff --git a/redbot/cogs/mutes/locales/es-ES.po b/redbot/cogs/mutes/locales/es-ES.po index a42f905780a..6a1d303ac39 100644 --- a/redbot/cogs/mutes/locales/es-ES.po +++ b/redbot/cogs/mutes/locales/es-ES.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: es_ES\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` no es una unidad de tiempo válida para este comando" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "El tiempo entregado es demasiado largo; utilice un tiempo más razonable." +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -96,8 +104,8 @@ msgid "Automatic unmute" msgstr "Desilenciar automáticamente" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "Mutear servidor" @@ -122,12 +130,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "{reason} en los siguientes canales: {channels}\n" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "Voz desmuteada" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "Canal desmuteado" @@ -185,7 +193,7 @@ msgstr "Se ha eliminado manualmente el rol de silencio" msgid "Manually applied mute role" msgstr "Se ha aplicado manualmente el rol de silencio" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "Servidor muteado" @@ -351,15 +359,15 @@ msgstr "Tiempo de silencio por defecto eliminado." msgid "Please provide a valid time format." msgstr "Por favor, proporcione un formato de hora válido." -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "Tiempo de silencio por defecto establecido en {time}." -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" @@ -368,28 +376,28 @@ msgstr "\n" " Muestra silencios activos en este servidor.\n" " " -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "__Silencios del servidor__\n" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "__Silencios de <#{channel_id}>__\n" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "No hay silencios en este servidor en este momento." -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -402,34 +410,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "No puedes silenciarme." -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "No puedes silenciarte a ti mismo." -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -449,27 +459,27 @@ msgstr "Silenciar usuarios.\n\n" " `[p]mute @member1 3 days`\n\n" " " -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "{users} ha(n) sido silenciado(s) en este servidor{time}." -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "{users} ha sido silenciado en este servidor{time}." -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "{member} no pudo ser (des)silenciado por las siguientes razones:\n" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "De acuerdo." -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -490,27 +500,23 @@ msgstr "Silencia a un usuario en el canal de texto actual. (or en el padre corre " `[p]mutechannel @member1 3 days`\n" " " -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "Silencio de Canal" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "{users} han sido silenciados en este canal{time}." -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "{users} ha sido silenciado en este canal{time}." -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -521,21 +527,21 @@ msgstr "Deja de silenciar a los usuarios.\n\n" " `[reason]` es la razón para el dessilenciado.\n" " " -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "No puedes desenmudecerme a mí." -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "No puedes desenmudecerte a ti mismo." -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "{users} fue dessilenciado en este servidor." -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -543,7 +549,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -554,23 +560,23 @@ msgstr "Deja de silenciar a un usuario en este canal (o en el padre de este hilo " `[reason]` es la razón por la que no se mute.\n" " " -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "{users} desenmudecidos en este canal." -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "este servidor" @@ -604,19 +610,15 @@ msgstr "Enmudecer a un usuario en su canal de voz actual.\n\n" " `[p]voicemute @member1 @member2 spam 5 hours`\n" " `[p]voicemute @member1 3 days`" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr " durante {duration}" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "Enmudecimiento" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "Los siguientes usuarios no pudieron ser silenciados\n" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -625,7 +627,7 @@ msgstr "Deja de silenciar a un usuario en su canal de voz actual.\n\n" " `` es una lista separada de nombres de usuario, ID o menciones separadas.\n" " `[reason]` es la razón para quitar el silencio." -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "Los siguientes usuarios no pudieron ser desenmudecidos\n" diff --git a/redbot/cogs/mutes/locales/fi-FI.po b/redbot/cogs/mutes/locales/fi-FI.po index e1bcb751693..74d44e6e500 100644 --- a/redbot/cogs/mutes/locales/fi-FI.po +++ b/redbot/cogs/mutes/locales/fi-FI.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Finnish\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: fi_FI\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` ei ole kelvollinen ajanyksikkö tälle komennolle" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "" -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/fr-FR.po b/redbot/cogs/mutes/locales/fr-FR.po index 40f315dc234..0ad27eafc06 100644 --- a/redbot/cogs/mutes/locales/fr-FR.po +++ b/redbot/cogs/mutes/locales/fr-FR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: fr_FR\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` n'est pas une unité de temps valide pour cette commande" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -96,8 +104,8 @@ msgid "Automatic unmute" msgstr "Démute automatique" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "Démuter le serveur" @@ -121,12 +129,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "{reason} dans les canaux suivants : {channels}\n" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "Rétablir la voix" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "Rétablir le son du canal" @@ -183,7 +191,7 @@ msgstr "Rôle muet enlevé manuellement" msgid "Manually applied mute role" msgstr "Rôle muet appliqué manuellement" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "Couper le son du serveur" @@ -331,43 +339,43 @@ msgstr "Temps muet par défaut supprimé." msgid "Please provide a valid time format." msgstr "Veuillez fournir un format de temps valide." -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "Temps de mute défini par défaut sur {time}." -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "__Serveur Muet__\n" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "__<#{channel_id}> Silencieux__\n" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "Il n'y a pas de \"mute\" sur ce serveur en ce moment." -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -380,34 +388,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "Vous ne pouvez pas me rendre muet." -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "Vous ne pouvez pas vous mettre muet vous-même." -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -427,27 +437,27 @@ msgstr "Couper le son des utilisateurs.\n\n" " `[p]mute @member1 @member2 spam 5 hpurs`\n" " `[p]mute @member1 @member2 spam 3 days` " -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "{users} a été mis en sourdine dans ce serveur{time}." -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "{users} ont été mis en sourdine dans ce serveur{time}." -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "{member} ne peut être (un)muted pour les raisons suivantes:\n" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "Ok alors." -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -460,27 +470,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "Canaux silencieux" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "{users} a été mis en sourdine dans ce salon{time}." -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "{users} ont été mis en sourdine dans ce salon{time}." -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -488,21 +494,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "Vous ne pouvez pas rétablir mon son." -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "Vous ne pouvez pas rétablir votre son vous-même." -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "{users} a été dé-mute sur ce serveur." -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -510,7 +516,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -521,23 +527,23 @@ msgstr "Démuter un utilisateur dans ce salon (ou dans le parent de ce thread).\ " `[reason]` est la raison du non muet.\n" " " -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "{users} dé-mute dans ce salon." -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "ce serveur" @@ -565,26 +571,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr " pour {duration}" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "Les utilisateurs suivants ne peuvent être mis en sourdine\n" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "Les utilisateurs suivants ne peuvent être mis en sourdine\n" diff --git a/redbot/cogs/mutes/locales/hi-IN.po b/redbot/cogs/mutes/locales/hi-IN.po index aeac3374573..7ea1d0adeaa 100644 --- a/redbot/cogs/mutes/locales/hi-IN.po +++ b/redbot/cogs/mutes/locales/hi-IN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Hindi\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: hi_IN\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` इस आदेश के लिए समय की मान्य इकाई नहीं है" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "" -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/hr-HR.po b/redbot/cogs/mutes/locales/hr-HR.po index a331ba8327b..122022158cf 100644 --- a/redbot/cogs/mutes/locales/hr-HR.po +++ b/redbot/cogs/mutes/locales/hr-HR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: hr_HR\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` nije važeća jedinica vremena za ovu naredbu" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "Navedeno vrijeme je predugo; navedi kraće vrijeme." +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "Ok onda." -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/hu-HU.po b/redbot/cogs/mutes/locales/hu-HU.po index 2f07b573ccf..1587d378403 100644 --- a/redbot/cogs/mutes/locales/hu-HU.po +++ b/redbot/cogs/mutes/locales/hu-HU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: hu_HU\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "Az `{unit}` nem érvényes időegység e parancshoz" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "Rendben." -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/id-ID.po b/redbot/cogs/mutes/locales/id-ID.po index c9eca2bf8c3..385bc9866d9 100644 --- a/redbot/cogs/mutes/locales/id-ID.po +++ b/redbot/cogs/mutes/locales/id-ID.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: id_ID\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "" -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/it-IT.po b/redbot/cogs/mutes/locales/it-IT.po index 5bb4367ce9d..2884464a366 100644 --- a/redbot/cogs/mutes/locales/it-IT.po +++ b/redbot/cogs/mutes/locales/it-IT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: it_IT\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` non è un periodo di tempo valido per questo comando" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "OK allora." -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/ja-JP.po b/redbot/cogs/mutes/locales/ja-JP.po index 3568fdd3ea3..597a4caa5cb 100644 --- a/redbot/cogs/mutes/locales/ja-JP.po +++ b/redbot/cogs/mutes/locales/ja-JP.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Japanese\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: ja_JP\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}`はこのコマンドの有効な時間単位ではありません" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "" -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/ko-KR.po b/redbot/cogs/mutes/locales/ko-KR.po index dbcf5c25620..4b97cfd876e 100644 --- a/redbot/cogs/mutes/locales/ko-KR.po +++ b/redbot/cogs/mutes/locales/ko-KR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Korean\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: ko_KR\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "자동 음소거 해제" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "서버 음소거 해제" @@ -120,12 +128,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "음성 음소거 해제" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "채널 음소거 해제" @@ -182,7 +190,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "서버 음소거" @@ -330,43 +338,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -379,34 +387,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -419,27 +429,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "" -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -452,27 +462,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "채널 음소거" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -480,21 +486,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "음소거를 해제할 수 없습니다." -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "자신은 음소거를 해제할 수 없습니다." -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -502,7 +508,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -510,23 +516,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -554,26 +560,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "음성 음소거" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "다음 사용자를 음소거할 수 없습니다.\n" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/nb-NO.po b/redbot/cogs/mutes/locales/nb-NO.po index c735d8c0daf..3548421b2e3 100644 --- a/redbot/cogs/mutes/locales/nb-NO.po +++ b/redbot/cogs/mutes/locales/nb-NO.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Norwegian Bokmal\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: nb_NO\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` er ikke en gyldig tidsenhet for denne kommandoen" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -96,8 +104,8 @@ msgid "Automatic unmute" msgstr "Automatisk avdemping" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "Server udempet" @@ -122,12 +130,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "{reason} I følgende kanaler: {channels}\n" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "Stemme udempet" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "Kanal udemp" @@ -185,7 +193,7 @@ msgstr "Manuelt fjernet dempet rolle" msgid "Manually applied mute role" msgstr "Manuelt brukt demping rolle" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "Server udempet" @@ -351,15 +359,15 @@ msgstr "Standard dempingstid fjernet." msgid "Please provide a valid time format." msgstr "Oppgi et gyldig tidsformat." -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "Standard dempingstid satt til {time}." -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" @@ -368,28 +376,28 @@ msgstr "\n" " Viser aktive muter på denne serveren.\n" " " -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "__Server Demping__\n" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "__<#{channel_id}> Demping__\n" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "Det er ingen muter på denne serveren akkurat nå." -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -402,34 +410,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "Du kan ikke dempe meg." -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "Du kan ikke dempe deg selv." -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,27 @@ msgstr "Demp brukere.\n\n" " `[p]mute @member1 3 days`\n\n" " " -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "{users} er dempet i denne serveren{time}." -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "{users} er dempet i denne serveren{time}." -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "{member} kunne ikke dempes av følgende årsaker:\n" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "Ok da." -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -483,27 +493,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "Kanal demp" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "{users} har blitt dempet i denne kanalen{time}." -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "{users} har blitt dempet i denne kanalen{time}." -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -514,21 +520,21 @@ msgstr "Udemp brukere.\n\n" " `[reason]` er årsaken til den fjernede dempingen.\n" " " -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "Du kan ikke oppheve dempingen." -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "Du kan ikke udempe deg selv." -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "{users} fjernet mutasjonen på serveren." -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -536,7 +542,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -544,23 +550,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "{users} av-dempet i denne kanalen." -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "denne serveren" @@ -595,19 +601,15 @@ msgstr "Demp en bruker i sin nåværende talekanal.\n\n" " `[p]voicemute @member1 @member2 spam 5 hours`\n" " `[p]voicemute @member1 3 days`" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr " for {duration}" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "Stemme demping" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "Følgende brukere kunne ikke dempes\n" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -616,7 +618,7 @@ msgstr "Slå på en bruker i sin nåværende talekanal.\n\n" " `` er en mellomromsseparert liste over brukernavn, ID'er eller meninger.\n" " `[reason]` er årsaken til den fjernede dempingen." -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "Kan ikke fjerne følgende brukere\n" diff --git a/redbot/cogs/mutes/locales/nl-NL.po b/redbot/cogs/mutes/locales/nl-NL.po index 991ef54e789..440ef967bc9 100644 --- a/redbot/cogs/mutes/locales/nl-NL.po +++ b/redbot/cogs/mutes/locales/nl-NL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: nl_NL\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` is geen geldige tijdseenheid voor deze command" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "Ohke." -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/pl-PL.po b/redbot/cogs/mutes/locales/pl-PL.po index 8efcad60933..31f9a26fb78 100644 --- a/redbot/cogs/mutes/locales/pl-PL.po +++ b/redbot/cogs/mutes/locales/pl-PL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: pl_PL\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` nie jest poprawną jednostką czasu dla tej komendy" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "OK." -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/pt-BR.po b/redbot/cogs/mutes/locales/pt-BR.po index 592ec9d8f37..83aee845708 100644 --- a/redbot/cogs/mutes/locales/pt-BR.po +++ b/redbot/cogs/mutes/locales/pt-BR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: pt_BR\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` não é uma unidade de tempo válida para este comando" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "OK então." -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/pt-PT.po b/redbot/cogs/mutes/locales/pt-PT.po index 9efb0b8e522..10473bc804b 100644 --- a/redbot/cogs/mutes/locales/pt-PT.po +++ b/redbot/cogs/mutes/locales/pt-PT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: pt_PT\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` não é uma unidade de tempo válida para este comando" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "" -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/ru-RU.po b/redbot/cogs/mutes/locales/ru-RU.po index 161f6a6abcb..61646bf39aa 100644 --- a/redbot/cogs/mutes/locales/ru-RU.po +++ b/redbot/cogs/mutes/locales/ru-RU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: ru_RU\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` не является допустимой единицей времени для этой команды" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -96,8 +104,8 @@ msgid "Automatic unmute" msgstr "Автоматическое снятие заглушки" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "Снять заглушку с сервера" @@ -122,12 +130,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "{reason} В следующих каналах: {channels}\n" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "Снять заглушку голоса" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "Снять заглушку с канала" @@ -185,7 +193,7 @@ msgstr "Ручное удаление роли заглушки" msgid "Manually applied mute role" msgstr "Роль заглушки, применяемая вручную" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "Заглушка сервера" @@ -351,15 +359,15 @@ msgstr "Стандартное время заглушки удалено." msgid "Please provide a valid time format." msgstr "Пожалуйста, укажите правильный формат времени." -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "Время заглушки по умолчанию установлено на {time}." -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" @@ -368,28 +376,28 @@ msgstr "\n" " Отображает активные заглушки на этом сервере.\n" " " -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "__Заглушки сервера__\n" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "__Заглушки <#{channel_id}>__\n" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "На этом сервере пока нет заглушек." -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -402,34 +410,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "Вы не можете заглушить меня." -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "Вы не можете заглушить себя." -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,27 @@ msgstr "Заглушить пользователей.\n\n" " `[p]mute @member1 3 дня`\n\n" " " -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "{users} был заглушен на этом сервере{time}." -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "{users} были заглушены на этом сервере{time}." -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "{member} не может быть заглушен (или разглушен) по следующим причинам:\n" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "Хорошо." -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -483,27 +493,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "Канал заглушен" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "{users} был заглушен в этом канале{time}." -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "{users} были заглушены в этом канале{time}." -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -514,21 +520,21 @@ msgstr "Снять заглушку с пользователей.\n\n" " `[reason]` - причина для снятия заглушки.\n" " " -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "Вы не можете снять заглушку с меня." -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "Вы не можете снять заглушку с себя." -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "с {users} была снята заглушка на этом сервере." -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -536,7 +542,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -544,23 +550,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "{users} включены на этом канале." -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -595,19 +601,15 @@ msgstr "Заглушить пользователя в его текущем г " `[p]voicemute @member1 @member2 spam 5 hours`\n" " `[p]voicemute @member1 3 дня`" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr " на {duration}" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "Заглушка голоса" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "Следующие пользователи не могут быть заглушены\n" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -616,7 +618,7 @@ msgstr "Снять заглушку с пользователя в его тек " `` - список имен пользователей, идентификаторов или упоминаний, разделенных пробелами.\n" " `[reason]` - причина снятия заглушки." -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "Со следующих пользователей невозможно снятие заглушки\n" diff --git a/redbot/cogs/mutes/locales/sk-SK.po b/redbot/cogs/mutes/locales/sk-SK.po index 58f97d1b2b6..02e1ff2331c 100644 --- a/redbot/cogs/mutes/locales/sk-SK.po +++ b/redbot/cogs/mutes/locales/sk-SK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Slovak\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: sk_SK\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "" -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/sl-SI.po b/redbot/cogs/mutes/locales/sl-SI.po index fcdfb450a36..17cc599ba61 100644 --- a/redbot/cogs/mutes/locales/sl-SI.po +++ b/redbot/cogs/mutes/locales/sl-SI.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: sl_SI\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` ni veljavna časovna enota za ta ukaz" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "" -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/sv-SE.po b/redbot/cogs/mutes/locales/sv-SE.po index aeb3b2f824c..a3e0d2eff77 100644 --- a/redbot/cogs/mutes/locales/sv-SE.po +++ b/redbot/cogs/mutes/locales/sv-SE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: sv_SE\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` är inte en giltig tidsenhet för detta kommando" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "" -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/tr-TR.po b/redbot/cogs/mutes/locales/tr-TR.po index 60ceba374a8..a73a606446f 100644 --- a/redbot/cogs/mutes/locales/tr-TR.po +++ b/redbot/cogs/mutes/locales/tr-TR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: tr_TR\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` bu komut için geçerli bir zaman birimi değil" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -96,8 +104,8 @@ msgid "Automatic unmute" msgstr "Susturma cezanız otomatik olarak kaldırıldı" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "Sunucu susturma cezanız bitti" @@ -122,12 +130,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "{reason} Şu kanallarda: {channels}\n" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "Sesli kanal susturma cezanız kalktı" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "Kanal susturması kalktı" @@ -185,7 +193,7 @@ msgstr "Susturulma cezanız manuel olarak kaldırıldı" msgid "Manually applied mute role" msgstr "Susturulma cezanız manuel olarak verildi" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "Sunucu susturma cezası" @@ -351,15 +359,15 @@ msgstr "Varsayılan susturma süresi kaldırıldı." msgid "Please provide a valid time format." msgstr "Lütfen geçerli bir zaman biçimi sağlayın." -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "Varsayılan susturma süresi {time} olarak ayarlandı." -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" @@ -368,28 +376,28 @@ msgstr "\n" " Sunucuda devam eden susturmaları gösterir.\n" " " -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "__Sunucudaki Susturmalar__\n" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "__<#{channel_id}> Susturmalar__\n" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "Bu sunucuda şu anda susturulmuş kişi bulunmamakta." -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -402,34 +410,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "Beni susturamazsın." -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "Kendini susturamazsın." -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,27 @@ msgstr "Kullanıcıları sustur.\n\n" " `[p]mute @üye1 3 days`\n\n" " " -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "{users} bu sunucudan {time} susturuldu." -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "{users} bu sunucuda susturuldu. Süre: {time}." -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "{member} şu sebeplerden dolayı susturulamadı veya susturması kaldırılamadı:\n" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "Tamam o zaman." -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -491,27 +501,23 @@ msgstr "Bir kullanıcıyı mevcut metin kanalında sustur.\n\n" " `[p]mute @üye1 3 days`\n" " " -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "Kanalda susturma" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "{users} bu kanalda {time} susturuldu." -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "{users} bulunduğu sesli kanaldan susturuldu. Süre: {time}." -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -522,21 +528,21 @@ msgstr "Kullanıcıların susturmasını kaldır.\n\n" " `[reason]` susturmanın kaldırılma sebebidir.\n" " " -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "Benim susturmamı kaldıramazsın." -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "Kendi susturmanı kaldıramazsın." -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "{users} bu sunucudaki susturması kaldırıldı." -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -544,7 +550,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -552,23 +558,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "{users} yazı/sesli kanalından susturması kaldırıldı." -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "bu sunucu" @@ -604,19 +610,15 @@ msgstr "Bir kullanıcıyı mevcut ses kanalından sustur.\n\n" " `[p]voicemute @üye1 3 days`\n" "`" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr " {duration}" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "Sesli kanalda susturma" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "Şu kullanıcılar susturulamadı\n" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -625,7 +627,7 @@ msgstr "Bir kullanıcının şu an bulunduğu ses kanalında susturmasını kald " `` kullanıcı adları, IDleri veya pinglerinden oluşan boşluklarla ayrışmış bir listedir.\n" " `[reason]` susturmanın kaldırılma sebebidir." -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "Bu kullanıcının susturma cezası kaldırılamadı\n" diff --git a/redbot/cogs/mutes/locales/uk-UA.po b/redbot/cogs/mutes/locales/uk-UA.po index e22a3ccbc65..09eedaa9de9 100644 --- a/redbot/cogs/mutes/locales/uk-UA.po +++ b/redbot/cogs/mutes/locales/uk-UA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: uk_UA\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "" -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/vi-VN.po b/redbot/cogs/mutes/locales/vi-VN.po index a137fa6fa3a..52d4a135706 100644 --- a/redbot/cogs/mutes/locales/vi-VN.po +++ b/redbot/cogs/mutes/locales/vi-VN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: vi_VN\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "" -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/zh-CN.po b/redbot/cogs/mutes/locales/zh-CN.po index 07e7473ca5b..2644b35b10c 100644 --- a/redbot/cogs/mutes/locales/zh-CN.po +++ b/redbot/cogs/mutes/locales/zh-CN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: zh_CN\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}` 不是此命令的有效时间" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -94,8 +102,8 @@ msgid "Automatic unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "" @@ -118,12 +126,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "" @@ -180,7 +188,7 @@ msgstr "" msgid "Manually applied mute role" msgstr "" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "" @@ -328,43 +336,43 @@ msgstr "" msgid "Please provide a valid time format." msgstr "" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -377,34 +385,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -417,27 +427,27 @@ msgid "Mute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "" -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,23 @@ msgid "Mute a user in the current text channel (or in the parent of the current " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -478,21 +484,21 @@ msgid "Unmute users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -500,7 +506,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -508,23 +514,23 @@ msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "" @@ -552,26 +558,22 @@ msgid "Mute a user in their current voice channel.\n\n" " `[p]voicemute @member1 3 days`" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr "" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" " `[reason]` is the reason for the unmute." msgstr "" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "" diff --git a/redbot/cogs/mutes/locales/zh-TW.po b/redbot/cogs/mutes/locales/zh-TW.po index b1e520a7d37..665ad406c1e 100644 --- a/redbot/cogs/mutes/locales/zh-TW.po +++ b/redbot/cogs/mutes/locales/zh-TW.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-04-01 01:01+0000\n" +"POT-Creation-Date: 2024-04-21 01:02+0000\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "MIME-Version: 1.0\n" @@ -15,10 +15,18 @@ msgstr "" "X-Crowdin-File-ID: 704\n" "Language: zh_TW\n" -#: redbot/cogs/mutes/converters.py:60 +#: redbot/cogs/mutes/converters.py:57 +msgid "`{unit}` is not a valid unit of time for this command" +msgstr "`{unit}`不是此命令的有效時間單位" + +#: redbot/cogs/mutes/converters.py:65 redbot/cogs/mutes/mutes.py:1016 msgid "The time provided is too long; use a more reasonable time." msgstr "提供的時間過長;應使用更合理的時間。" +#: redbot/cogs/mutes/converters.py:68 +msgid "The time provided must not be in the past." +msgstr "" + #: redbot/cogs/mutes/mutes.py:34 msgid "That user is already muted in {location}." msgstr "" @@ -96,8 +104,8 @@ msgid "Automatic unmute" msgstr "自動取消靜音" #: redbot/cogs/mutes/mutes.py:348 redbot/cogs/mutes/mutes.py:456 -#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1493 -#: redbot/cogs/mutes/mutes.py:1567 +#: redbot/cogs/mutes/mutes.py:657 redbot/cogs/mutes/mutes.py:1510 +#: redbot/cogs/mutes/mutes.py:1584 msgid "Server unmute" msgstr "伺務器取消靜音" @@ -122,12 +130,12 @@ msgid "{reason} In the following channels: {channels}\n" msgstr "{reason} 在以下頻道中:{channels}\n" #: redbot/cogs/mutes/mutes.py:519 redbot/cogs/mutes/mutes.py:734 -#: redbot/cogs/mutes/voicemutes.py:222 +#: redbot/cogs/mutes/voicemutes.py:224 msgid "Voice unmute" msgstr "取消語音靜音" #: redbot/cogs/mutes/mutes.py:522 redbot/cogs/mutes/mutes.py:737 -#: redbot/cogs/mutes/mutes.py:1636 +#: redbot/cogs/mutes/mutes.py:1653 msgid "Channel unmute" msgstr "取消頻道靜音" @@ -185,7 +193,7 @@ msgstr "手動刪除靜音身分組" msgid "Manually applied mute role" msgstr "手動套用靜音身分組" -#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1271 +#: redbot/cogs/mutes/mutes.py:681 redbot/cogs/mutes/mutes.py:1280 msgid "Server mute" msgstr "伺務器靜音" @@ -351,15 +359,15 @@ msgstr "默認靜音時間已刪除。" msgid "Please provide a valid time format." msgstr "請提供有效的時間格式。" -#: redbot/cogs/mutes/mutes.py:1013 +#: redbot/cogs/mutes/mutes.py:1020 msgid "Default mute time set to {time}." msgstr "默認靜音時間設置為 {time}。" -#: redbot/cogs/mutes/mutes.py:1025 +#: redbot/cogs/mutes/mutes.py:1032 msgid "This server does not have a mute role setup and I do not have permission to timeout users. You can setup a mute role with {command_1} or {command_2} if you just want a basic role created setup.\n\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1046 +#: redbot/cogs/mutes/mutes.py:1053 #, docstring msgid "\n" " Displays active mutes on this server.\n" @@ -368,28 +376,28 @@ msgstr "\n" " 顯示此服務器上的靜音活動。\n" " " -#: redbot/cogs/mutes/mutes.py:1053 +#: redbot/cogs/mutes/mutes.py:1060 msgid "__Server Mutes__\n" msgstr "__伺務器靜音__\n" -#: redbot/cogs/mutes/mutes.py:1069 redbot/cogs/mutes/mutes.py:1080 -#: redbot/cogs/mutes/mutes.py:1101 +#: redbot/cogs/mutes/mutes.py:1076 redbot/cogs/mutes/mutes.py:1087 +#: redbot/cogs/mutes/mutes.py:1108 msgid "__Until__: {time_left}\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1076 +#: redbot/cogs/mutes/mutes.py:1083 msgid "__Server Timeouts__\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1085 +#: redbot/cogs/mutes/mutes.py:1092 msgid "__<#{channel_id}> Mutes__\n" msgstr "__<#{channel_id}> 靜音__\n" -#: redbot/cogs/mutes/mutes.py:1114 +#: redbot/cogs/mutes/mutes.py:1121 msgid "There are no mutes on this server right now." msgstr "目前此伺務器上沒有正在的靜音。" -#: redbot/cogs/mutes/mutes.py:1127 +#: redbot/cogs/mutes/mutes.py:1134 #, docstring msgid "Timeout users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -402,34 +410,36 @@ msgid "Timeout users.\n\n" " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1142 redbot/cogs/mutes/mutes.py:1223 -#: redbot/cogs/mutes/mutes.py:1376 redbot/cogs/mutes/voicemutes.py:88 +#: redbot/cogs/mutes/mutes.py:1149 redbot/cogs/mutes/mutes.py:1231 +#: redbot/cogs/mutes/mutes.py:1385 redbot/cogs/mutes/voicemutes.py:88 msgid "You cannot mute me." msgstr "您不能將我禁言" -#: redbot/cogs/mutes/mutes.py:1144 redbot/cogs/mutes/mutes.py:1225 -#: redbot/cogs/mutes/mutes.py:1378 redbot/cogs/mutes/voicemutes.py:90 +#: redbot/cogs/mutes/mutes.py:1151 redbot/cogs/mutes/mutes.py:1233 +#: redbot/cogs/mutes/mutes.py:1387 redbot/cogs/mutes/voicemutes.py:90 msgid "You cannot mute yourself." msgstr "您不能將自己禁言。" -#: redbot/cogs/mutes/mutes.py:1155 redbot/cogs/mutes/mutes.py:1164 -#: redbot/cogs/mutes/mutes.py:1237 redbot/cogs/mutes/mutes.py:1246 +#: redbot/cogs/mutes/mutes.py:1162 redbot/cogs/mutes/mutes.py:1172 +#: redbot/cogs/mutes/mutes.py:1245 redbot/cogs/mutes/mutes.py:1255 +#: redbot/cogs/mutes/mutes.py:1396 redbot/cogs/mutes/mutes.py:1406 +#: redbot/cogs/mutes/voicemutes.py:109 redbot/cogs/mutes/voicemutes.py:119 msgid " for {length} until {duration}" msgstr "" -#: redbot/cogs/mutes/mutes.py:1187 +#: redbot/cogs/mutes/mutes.py:1195 msgid "{users} has been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1189 +#: redbot/cogs/mutes/mutes.py:1197 msgid "{users} have been timed out in this server{time}." msgstr "" -#: redbot/cogs/mutes/mutes.py:1194 +#: redbot/cogs/mutes/mutes.py:1202 msgid "None of the users provided could be muted properly." msgstr "" -#: redbot/cogs/mutes/mutes.py:1208 +#: redbot/cogs/mutes/mutes.py:1216 #, docstring msgid "Mute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -450,27 +460,27 @@ msgstr "靜音用戶。\n\n" " `[p]mute @member1 3 days`\n\n" " " -#: redbot/cogs/mutes/mutes.py:1278 +#: redbot/cogs/mutes/mutes.py:1287 msgid "{users} has been muted in this server{time}." msgstr "{users} 已在此服務器中被靜音 {time} 。" -#: redbot/cogs/mutes/mutes.py:1280 +#: redbot/cogs/mutes/mutes.py:1289 msgid "{users} have been muted in this server{time}." msgstr "{users} 已在此服務器中被靜音 {time}。" -#: redbot/cogs/mutes/mutes.py:1292 +#: redbot/cogs/mutes/mutes.py:1301 msgid "{member} could not be (un)muted for the following reasons:\n" msgstr "由於以下原因,{member} 無法被(取消)靜音:\n" -#: redbot/cogs/mutes/mutes.py:1312 +#: redbot/cogs/mutes/mutes.py:1321 msgid "Some users could not be properly muted or unmuted. Would you like to see who, where, and why?" msgstr "" -#: redbot/cogs/mutes/mutes.py:1340 +#: redbot/cogs/mutes/mutes.py:1349 msgid "OK then." msgstr "OK then." -#: redbot/cogs/mutes/mutes.py:1362 +#: redbot/cogs/mutes/mutes.py:1371 #, docstring msgid "Mute a user in the current text channel (or in the parent of the current thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -491,27 +501,23 @@ msgstr "使當前文字頻道(或當前討論串)中的用戶靜音。\n\n" " `[p]mutechannel @member1 3 days`\n" " " -#: redbot/cogs/mutes/mutes.py:1386 redbot/cogs/mutes/mutes.py:1391 -msgid " until {duration}" -msgstr "" - -#: redbot/cogs/mutes/mutes.py:1421 +#: redbot/cogs/mutes/mutes.py:1438 msgid "Channel mute" msgstr "頻道靜音" -#: redbot/cogs/mutes/mutes.py:1429 redbot/cogs/mutes/voicemutes.py:154 +#: redbot/cogs/mutes/mutes.py:1446 redbot/cogs/mutes/voicemutes.py:156 msgid "{users} has been muted in this channel{time}." msgstr "{users} 已在此頻道中被靜音 {time} 。" -#: redbot/cogs/mutes/mutes.py:1431 redbot/cogs/mutes/voicemutes.py:156 +#: redbot/cogs/mutes/mutes.py:1448 redbot/cogs/mutes/voicemutes.py:158 msgid "{users} have been muted in this channel{time}." msgstr "{users} 已在此頻道中被靜音{time}。" -#: redbot/cogs/mutes/mutes.py:1436 +#: redbot/cogs/mutes/mutes.py:1453 msgid "The following users could not be muted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1451 +#: redbot/cogs/mutes/mutes.py:1468 #, docstring msgid "Unmute users.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -522,21 +528,21 @@ msgstr "取消靜音用戶。\n\n" " `[reason]` 是取消靜音的原因。\n" " " -#: redbot/cogs/mutes/mutes.py:1459 redbot/cogs/mutes/mutes.py:1531 -#: redbot/cogs/mutes/mutes.py:1605 redbot/cogs/mutes/voicemutes.py:182 +#: redbot/cogs/mutes/mutes.py:1476 redbot/cogs/mutes/mutes.py:1548 +#: redbot/cogs/mutes/mutes.py:1622 redbot/cogs/mutes/voicemutes.py:184 msgid "You cannot unmute me." msgstr "您不能將我取消禁言" -#: redbot/cogs/mutes/mutes.py:1461 redbot/cogs/mutes/mutes.py:1533 -#: redbot/cogs/mutes/mutes.py:1607 redbot/cogs/mutes/voicemutes.py:184 +#: redbot/cogs/mutes/mutes.py:1478 redbot/cogs/mutes/mutes.py:1550 +#: redbot/cogs/mutes/mutes.py:1624 redbot/cogs/mutes/voicemutes.py:186 msgid "You cannot unmute yourself." msgstr "您不能將自己取消禁言。" -#: redbot/cogs/mutes/mutes.py:1506 redbot/cogs/mutes/mutes.py:1580 +#: redbot/cogs/mutes/mutes.py:1523 redbot/cogs/mutes/mutes.py:1597 msgid "{users} unmuted in this server." msgstr "{users} 在此服務器中取消靜言。" -#: redbot/cogs/mutes/mutes.py:1523 +#: redbot/cogs/mutes/mutes.py:1540 #, docstring msgid "Force Unmute users who have had channel overwrite mutes in every channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -544,7 +550,7 @@ msgid "Force Unmute users who have had channel overwrite mutes in every channel. " " msgstr "" -#: redbot/cogs/mutes/mutes.py:1597 +#: redbot/cogs/mutes/mutes.py:1614 #, docstring msgid "Unmute a user in this channel (or in the parent of this thread).\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -555,23 +561,23 @@ msgstr "取消靜言此頻道(或此頻道的討論串) 中的用戶。\n\n" " `[reason]` 是取消靜言的原因。\n" " " -#: redbot/cogs/mutes/mutes.py:1646 redbot/cogs/mutes/voicemutes.py:232 +#: redbot/cogs/mutes/mutes.py:1663 redbot/cogs/mutes/voicemutes.py:234 msgid "{users} unmuted in this channel." msgstr "{users} 在此頻道中取消靜言。" -#: redbot/cogs/mutes/mutes.py:1651 +#: redbot/cogs/mutes/mutes.py:1668 msgid "The following users could not be unmuted:\n" msgstr "" -#: redbot/cogs/mutes/mutes.py:1730 +#: redbot/cogs/mutes/mutes.py:1747 msgid "I lack the moderate members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1774 +#: redbot/cogs/mutes/mutes.py:1791 msgid "I lack the timeout members permission." msgstr "" -#: redbot/cogs/mutes/mutes.py:1777 +#: redbot/cogs/mutes/mutes.py:1794 msgid "this server" msgstr "這伺服器" @@ -606,19 +612,15 @@ msgstr "在用戶當前的語音通道中使用戶靜言。\n\n" " `[p]voicemute @member1 @member2 spam 5 hours`\n" " `[p]voicemute @member1 3 days`" -#: redbot/cogs/mutes/voicemutes.py:108 redbot/cogs/mutes/voicemutes.py:115 -msgid " for {duration}" -msgstr " for {duration}" - -#: redbot/cogs/mutes/voicemutes.py:146 +#: redbot/cogs/mutes/voicemutes.py:148 msgid "Voice mute" msgstr "語音靜音" -#: redbot/cogs/mutes/voicemutes.py:161 +#: redbot/cogs/mutes/voicemutes.py:163 msgid "The following users could not be muted\n" msgstr "無法將以下用戶靜音\n" -#: redbot/cogs/mutes/voicemutes.py:175 +#: redbot/cogs/mutes/voicemutes.py:177 #, docstring msgid "Unmute a user in their current voice channel.\n\n" " `` is a space separated list of usernames, ID's, or mentions.\n" @@ -627,7 +629,7 @@ msgstr "在當前語音通道中取消靜音用戶。\n\n" " `` 是用空格分隔的用戶名、ID 或提及列表。\n" " `[reason]` 是取消靜音的原因。" -#: redbot/cogs/mutes/voicemutes.py:237 +#: redbot/cogs/mutes/voicemutes.py:239 msgid "The following users could not be unmuted\n" msgstr "無法取消以下用戶的靜言\n" diff --git a/redbot/cogs/mutes/mutes.py b/redbot/cogs/mutes/mutes.py index edf65ee13e9..eea518af836 100644 --- a/redbot/cogs/mutes/mutes.py +++ b/redbot/cogs/mutes/mutes.py @@ -1005,13 +1005,20 @@ async def default_mute_time(self, ctx: commands.Context, *, time: Optional[MuteT await self.config.guild(ctx.guild).default_time.clear() await ctx.send(_("Default mute time removed.")) else: - data = time.get("duration", {}) - if not data: + duration = time.get("duration", None) + if not duration: return await ctx.send(_("Please provide a valid time format.")) - await self.config.guild(ctx.guild).default_time.set(data.total_seconds()) + if duration >= timedelta(days=365000): + # prevent setting a default time now that might eventually cause an overflow + # later as the date goes up. 1000 years gives us approximately 8000 more years + # of wiggle room. + return await ctx.send( + _("The time provided is too long; use a more reasonable time.") + ) + await self.config.guild(ctx.guild).default_time.set(duration.total_seconds()) await ctx.send( _("Default mute time set to {time}.").format( - time=humanize_timedelta(timedelta=data) + time=humanize_timedelta(timedelta=duration) ) ) @@ -1142,15 +1149,15 @@ async def timeout( return await ctx.send(_("You cannot mute me.")) if ctx.author in users: return await ctx.send(_("You cannot mute yourself.")) - duration = time_and_reason.get("duration", None) - if duration and duration > timedelta(days=28): - await ctx.send(_(MUTE_UNMUTE_ISSUES["mute_is_too_long"])) - return + until = time_and_reason.get("until", None) reason = time_and_reason.get("reason", None) time = "" - until = None - if duration: - until = datetime.now(timezone.utc) + duration + duration = None + if until: + duration = time_and_reason.get("duration") + if duration and duration > timedelta(days=28): + await ctx.send(_(MUTE_UNMUTE_ISSUES["mute_is_too_long"])) + return length = humanize_timedelta(timedelta=duration) time = _(" for {length} until {duration}").format( length=length, duration=discord.utils.format_dt(until) @@ -1159,7 +1166,8 @@ async def timeout( else: default_duration = await self.config.guild(ctx.guild).default_time() if default_duration: - until = datetime.now(timezone.utc) + timedelta(seconds=default_duration) + duration = timedelta(seconds=default_duration) + until = ctx.message.created_at + duration length = humanize_timedelta(seconds=default_duration) time = _(" for {length} until {duration}").format( length=length, duration=discord.utils.format_dt(until) @@ -1227,12 +1235,12 @@ async def mute( if not await self._check_for_mute_role(ctx): return async with ctx.typing(): - duration = time_and_reason.get("duration", None) + until = time_and_reason.get("until", None) reason = time_and_reason.get("reason", None) time = "" - until = None - if duration: - until = datetime.now(timezone.utc) + duration + duration = None + if until: + duration = time_and_reason.get("duration") length = humanize_timedelta(timedelta=duration) time = _(" for {length} until {duration}").format( length=length, duration=discord.utils.format_dt(until) @@ -1241,7 +1249,8 @@ async def mute( else: default_duration = await self.config.guild(ctx.guild).default_time() if default_duration: - until = datetime.now(timezone.utc) + timedelta(seconds=default_duration) + duration = timedelta(seconds=default_duration) + until = ctx.message.created_at + duration length = humanize_timedelta(seconds=default_duration) time = _(" for {length} until {duration}").format( length=length, duration=discord.utils.format_dt(until) @@ -1377,18 +1386,26 @@ async def channel_mute( if ctx.author in users: return await ctx.send(_("You cannot mute yourself.")) async with ctx.typing(): - duration = time_and_reason.get("duration", None) + until = time_and_reason.get("until", None) reason = time_and_reason.get("reason", None) time = "" - until = None - if duration: - until = datetime.now(timezone.utc) + duration - time = _(" until {duration}").format(duration=discord.utils.format_dt(until)) + duration = None + if until: + duration = time_and_reason.get("duration") + length = humanize_timedelta(timedelta=duration) + time = _(" for {length} until {duration}").format( + length=length, duration=discord.utils.format_dt(until) + ) + else: default_duration = await self.config.guild(ctx.guild).default_time() if default_duration: - until = datetime.now(timezone.utc) + timedelta(seconds=default_duration) - time = _(" until {duration}").format(duration=discord.utils.format_dt(until)) + duration = timedelta(seconds=default_duration) + until = ctx.message.created_at + duration + length = humanize_timedelta(seconds=default_duration) + time = _(" for {length} until {duration}").format( + length=length, duration=discord.utils.format_dt(until) + ) author = ctx.message.author channel = ctx.message.channel if isinstance(channel, discord.Thread): diff --git a/redbot/cogs/mutes/voicemutes.py b/redbot/cogs/mutes/voicemutes.py index 075c5339d1f..57cf2360656 100644 --- a/redbot/cogs/mutes/voicemutes.py +++ b/redbot/cogs/mutes/voicemutes.py @@ -99,23 +99,25 @@ async def voice_mute( if not can_move: issue_list.append((user, perm_reason)) continue - duration = time_and_reason.get("duration", None) + until = time_and_reason.get("until", None) reason = time_and_reason.get("reason", None) time = "" - until = None - if duration: - until = datetime.now(timezone.utc) + duration - time = _(" for {duration}").format( - duration=humanize_timedelta(timedelta=duration) + duration = None + if until: + duration = time_and_reason.get("duration") + length = humanize_timedelta(timedelta=duration) + time = _(" for {length} until {duration}").format( + length=length, duration=discord.utils.format_dt(until) ) + else: default_duration = await self.config.guild(ctx.guild).default_time() if default_duration: - until = datetime.now(timezone.utc) + timedelta(seconds=default_duration) - time = _(" for {duration}").format( - duration=humanize_timedelta( - timedelta=timedelta(seconds=default_duration) - ) + duration = timedelta(seconds=default_duration) + until = ctx.message.created_at + duration + length = humanize_timedelta(seconds=default_duration) + time = _(" for {length} until {duration}").format( + length=length, duration=discord.utils.format_dt(until) ) guild = ctx.guild author = ctx.author diff --git a/redbot/cogs/streams/locales/ar-SA.po b/redbot/cogs/streams/locales/ar-SA.po index a9d9cdddb23..b1d9bacf191 100644 --- a/redbot/cogs/streams/locales/ar-SA.po +++ b/redbot/cogs/streams/locales/ar-SA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "بث بدون عنوان" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "المتابِعون" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "مجموع المشاهدات" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "تشغيل: " -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "لاشيء" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "NSFW " -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "الفئة {adult}: {category} علامات: {tags}" diff --git a/redbot/cogs/streams/locales/bg-BG.po b/redbot/cogs/streams/locales/bg-BG.po index aefaadb2937..612c6c51816 100644 --- a/redbot/cogs/streams/locales/bg-BG.po +++ b/redbot/cogs/streams/locales/bg-BG.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "" -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "Няма" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/cs-CZ.po b/redbot/cogs/streams/locales/cs-CZ.po index 58655a59287..808940c3ced 100644 --- a/redbot/cogs/streams/locales/cs-CZ.po +++ b/redbot/cogs/streams/locales/cs-CZ.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "{display_name}, právě vysílá!" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" -msgstr "Tento stream bude spuštěn v {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" -msgstr "Tento stream byl naplánován na {min} minut" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "Nepojmenované vysílání" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr " - Znovu spustit" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "Sledující" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "Celkové shlédnutí" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "Hraje: " -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "Žádná" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "NSFW | " -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "{adult}Kategorie: {category} | Štítky: {tags}" diff --git a/redbot/cogs/streams/locales/da-DK.po b/redbot/cogs/streams/locales/da-DK.po index 0ade6e6f3b4..84894f4a01f 100644 --- a/redbot/cogs/streams/locales/da-DK.po +++ b/redbot/cogs/streams/locales/da-DK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Danish\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "" -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/de-DE.po b/redbot/cogs/streams/locales/de-DE.po index a687865612f..99b7da68d2e 100644 --- a/redbot/cogs/streams/locales/de-DE.po +++ b/redbot/cogs/streams/locales/de-DE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -392,45 +392,45 @@ msgstr "{mention}, {display_name} ist live!" msgid "{display_name} is live!" msgstr "{display_name} ist live!" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" -msgstr "Dieser Stream wird in {time} beginnen" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" -msgstr "Dieser Stream wurde vor {min} Minuten geplant" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "Unbenannte Übertragung" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr " - Wiederholung" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "Followers" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "Alle Aufrufe" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "Gerade läuft: " -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "Keine" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "NSFW | " -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "{adult}Kategorie: {category} | Tags: {tags}" diff --git a/redbot/cogs/streams/locales/es-ES.po b/redbot/cogs/streams/locales/es-ES.po index 47baddeb0ea..257f2e5c0a3 100644 --- a/redbot/cogs/streams/locales/es-ES.po +++ b/redbot/cogs/streams/locales/es-ES.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -392,45 +392,45 @@ msgstr "{mention}, {display_name} está en directo!" msgid "{display_name} is live!" msgstr "{display_name} está en directo!" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" -msgstr "Este stream comenzará en {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" -msgstr "Este stream fue programado para hace {min} minutos" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "Difusión sin título" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr " - Repetición" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "Seguidores" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "Visualizaciones totales" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "Jugando: " -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "Ninguno" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "NSFW | " -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "Categoría {adult}: {category} | Etiquetas: {tags}" diff --git a/redbot/cogs/streams/locales/fi-FI.po b/redbot/cogs/streams/locales/fi-FI.po index c5d5d277dc5..9b59a34b31b 100644 --- a/redbot/cogs/streams/locales/fi-FI.po +++ b/redbot/cogs/streams/locales/fi-FI.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Finnish\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "Toistetaan: " -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/fr-FR.po b/redbot/cogs/streams/locales/fr-FR.po index 0cc75fb3c8c..6d125aae96f 100644 --- a/redbot/cogs/streams/locales/fr-FR.po +++ b/redbot/cogs/streams/locales/fr-FR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -367,45 +367,45 @@ msgstr "{mention}, {display_name} est en live !" msgid "{display_name} is live!" msgstr "{display_name} est en live !" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" -msgstr "Ce stream va commencer dans {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" -msgstr "Ce stream était prévu pour il y a {min} minutes" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "Diffusion sans titre" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr " - Rerun" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "Abonnés" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "Vues totales" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "Joue à : " -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "Aucun" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "NSFW | " -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "{adult}Catégorie : {category} | Tags : {tags}" diff --git a/redbot/cogs/streams/locales/hi-IN.po b/redbot/cogs/streams/locales/hi-IN.po index 61290529111..3e37796f63d 100644 --- a/redbot/cogs/streams/locales/hi-IN.po +++ b/redbot/cogs/streams/locales/hi-IN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Hindi\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "" -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/hr-HR.po b/redbot/cogs/streams/locales/hr-HR.po index c67ea543ef6..ca1ce38b036 100644 --- a/redbot/cogs/streams/locales/hr-HR.po +++ b/redbot/cogs/streams/locales/hr-HR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -354,45 +354,45 @@ msgstr "{mention}, {display_name} prenosi uživo!" msgid "{display_name} is live!" msgstr "{display_name} prenosi uživo!" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" -msgstr "Stream će započet za {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "Neimenovan stream" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr " - Repriza" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "Pratitelji" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "Ukupno pregleda" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "Igra: " -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "Ništa" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "NSFW | " -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "{adult}Kategorija: {category} | Oznake: {tags}" diff --git a/redbot/cogs/streams/locales/hu-HU.po b/redbot/cogs/streams/locales/hu-HU.po index cd4639fade5..82bf2bba780 100644 --- a/redbot/cogs/streams/locales/hu-HU.po +++ b/redbot/cogs/streams/locales/hu-HU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "" -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/id-ID.po b/redbot/cogs/streams/locales/id-ID.po index 52dc2f1fc54..7044301d00e 100644 --- a/redbot/cogs/streams/locales/id-ID.po +++ b/redbot/cogs/streams/locales/id-ID.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "" -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "Tak satupun" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/it-IT.po b/redbot/cogs/streams/locales/it-IT.po index b1a6b552145..7bc91cda4f2 100644 --- a/redbot/cogs/streams/locales/it-IT.po +++ b/redbot/cogs/streams/locales/it-IT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" @@ -361,45 +361,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "" -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "Nessuno" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/ja-JP.po b/redbot/cogs/streams/locales/ja-JP.po index 45e8a3f128e..b313f46325d 100644 --- a/redbot/cogs/streams/locales/ja-JP.po +++ b/redbot/cogs/streams/locales/ja-JP.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Japanese\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "" -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "無い" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/ko-KR.po b/redbot/cogs/streams/locales/ko-KR.po index 7758ec7b6ae..cfecacb0351 100644 --- a/redbot/cogs/streams/locales/ko-KR.po +++ b/redbot/cogs/streams/locales/ko-KR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Korean\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "재생 중: " -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "읎어요." -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/nb-NO.po b/redbot/cogs/streams/locales/nb-NO.po index 05926c29833..7f9d7b04dc5 100644 --- a/redbot/cogs/streams/locales/nb-NO.po +++ b/redbot/cogs/streams/locales/nb-NO.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Norwegian Bokmal\n" "MIME-Version: 1.0\n" @@ -392,45 +392,45 @@ msgstr "{mention}, {display_name} er live!" msgid "{display_name} is live!" msgstr "{display_name} er live!" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" -msgstr "Denne strømmen starter om {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" -msgstr "Denne strømmen ble planlagt for {min} minutter siden" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "Frakoblet sending" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr " - kjøre om igjen" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "Følgere" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "Visninger totalt" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "Spiller: " -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "Ingen" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "NSFW | " -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "{adult}Kategori: {category} + Tagger: {tags}" diff --git a/redbot/cogs/streams/locales/nl-NL.po b/redbot/cogs/streams/locales/nl-NL.po index 263bf22fd45..e9cdaf08cec 100644 --- a/redbot/cogs/streams/locales/nl-NL.po +++ b/redbot/cogs/streams/locales/nl-NL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "" -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "Geen" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/pl-PL.po b/redbot/cogs/streams/locales/pl-PL.po index 509e7ab2e75..17d4bb91c15 100644 --- a/redbot/cogs/streams/locales/pl-PL.po +++ b/redbot/cogs/streams/locales/pl-PL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "Aktualnie gram: " -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "Brak" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/pt-BR.po b/redbot/cogs/streams/locales/pt-BR.po index d692ceace52..7ec146e751b 100644 --- a/redbot/cogs/streams/locales/pt-BR.po +++ b/redbot/cogs/streams/locales/pt-BR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "" -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/pt-PT.po b/redbot/cogs/streams/locales/pt-PT.po index 69bbb1f7878..a9faeb35ee7 100644 --- a/redbot/cogs/streams/locales/pt-PT.po +++ b/redbot/cogs/streams/locales/pt-PT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -352,45 +352,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "" -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/ru-RU.po b/redbot/cogs/streams/locales/ru-RU.po index 8863cf20636..d4dd91ded14 100644 --- a/redbot/cogs/streams/locales/ru-RU.po +++ b/redbot/cogs/streams/locales/ru-RU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -363,45 +363,45 @@ msgstr "{mention}, {display_name} в эфире!" msgid "{display_name} is live!" msgstr "{display_name} в прямом эфире!" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" -msgstr "Трансляция начнется через {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" -msgstr "Эта трансляция была запланирована на {min} минут назад" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "Трансляция без названия" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr " - Повторный запуск" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "Подписчики" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "Всего просмотров" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "Воспроизводится: " -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "Отсутствует" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "NSFW | " -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "{adult}Категория: {category} | Теги: {tags}" diff --git a/redbot/cogs/streams/locales/sk-SK.po b/redbot/cogs/streams/locales/sk-SK.po index 40db409cbcd..ad2ded5f54a 100644 --- a/redbot/cogs/streams/locales/sk-SK.po +++ b/redbot/cogs/streams/locales/sk-SK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Slovak\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "" -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/sl-SI.po b/redbot/cogs/streams/locales/sl-SI.po index f1f5890b9c9..d9e7503e41f 100644 --- a/redbot/cogs/streams/locales/sl-SI.po +++ b/redbot/cogs/streams/locales/sl-SI.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "" -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/sv-SE.po b/redbot/cogs/streams/locales/sv-SE.po index bc6964c5fef..797f68ff570 100644 --- a/redbot/cogs/streams/locales/sv-SE.po +++ b/redbot/cogs/streams/locales/sv-SE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "" -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "Inget" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/tr-TR.po b/redbot/cogs/streams/locales/tr-TR.po index 3e3895b43b7..40c20b176d3 100644 --- a/redbot/cogs/streams/locales/tr-TR.po +++ b/redbot/cogs/streams/locales/tr-TR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -392,45 +392,45 @@ msgstr "{mention}, {display_name} canlı yayında!" msgid "{display_name} is live!" msgstr "{display_name} canlı yayında!" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" -msgstr "Bu yayının başlamasına kalan: {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" -msgstr "Bu yayın {min} dakika öncesi için planlanmıştı" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "İsimsiz yayın" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr " - Tekrar" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "Takipçiler" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "Toplam görüntülenme" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "Oynatılıyor: " -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "None" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "NSFW | " -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "{adult}Kategori: {category} | Etiketler: {tags}" diff --git a/redbot/cogs/streams/locales/uk-UA.po b/redbot/cogs/streams/locales/uk-UA.po index eea09684f27..c508f81ddaa 100644 --- a/redbot/cogs/streams/locales/uk-UA.po +++ b/redbot/cogs/streams/locales/uk-UA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "" -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/vi-VN.po b/redbot/cogs/streams/locales/vi-VN.po index bc890853a1a..3d8e1ba8a94 100644 --- a/redbot/cogs/streams/locales/vi-VN.po +++ b/redbot/cogs/streams/locales/vi-VN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "MIME-Version: 1.0\n" @@ -351,45 +351,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr "" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "" -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "" -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "" diff --git a/redbot/cogs/streams/locales/zh-CN.po b/redbot/cogs/streams/locales/zh-CN.po index 31495247472..cea229c06d2 100644 --- a/redbot/cogs/streams/locales/zh-CN.po +++ b/redbot/cogs/streams/locales/zh-CN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -356,45 +356,45 @@ msgstr "" msgid "{display_name} is live!" msgstr "" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" -msgstr "此流将在 {time} 后开始" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" -msgstr "此流排定在 {min} 分钟前" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "无标题广播" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr " - Rerun" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "关注者" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "总浏览量" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "正在播放: " -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "无" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "NSFW | " -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "{adult}类别: {category} | 标签: {tags}" diff --git a/redbot/cogs/streams/locales/zh-TW.po b/redbot/cogs/streams/locales/zh-TW.po index 97848720d8a..a0a721dca1d 100644 --- a/redbot/cogs/streams/locales/zh-TW.po +++ b/redbot/cogs/streams/locales/zh-TW.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2023-09-06 18:42+0000\n" +"POT-Creation-Date: 2024-04-04 07:32+0000\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "MIME-Version: 1.0\n" @@ -392,45 +392,45 @@ msgstr "{mention},{display_name} 正在直播!" msgid "{display_name} is live!" msgstr "{display_name} 正在直播!" -#: redbot/cogs/streams/streamtypes.py:226 -msgid "This stream will start in {time}" -msgstr "此直播將在 {time} 開始" +#: redbot/cogs/streams/streamtypes.py:227 +msgid "This stream will start " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:232 -msgid "This stream was scheduled for {min} minutes ago" -msgstr "此直播預定於 {min} 分鐘前" +#: redbot/cogs/streams/streamtypes.py:231 +msgid "This stream was scheduled for " +msgstr "" -#: redbot/cogs/streams/streamtypes.py:447 +#: redbot/cogs/streams/streamtypes.py:446 msgid "Untitled broadcast" msgstr "無標題broadcast" -#: redbot/cogs/streams/streamtypes.py:449 +#: redbot/cogs/streams/streamtypes.py:448 msgid " - Rerun" msgstr " - Rerun" -#: redbot/cogs/streams/streamtypes.py:452 -#: redbot/cogs/streams/streamtypes.py:498 +#: redbot/cogs/streams/streamtypes.py:451 +#: redbot/cogs/streams/streamtypes.py:497 msgid "Followers" msgstr "跟隨者" -#: redbot/cogs/streams/streamtypes.py:453 -#: redbot/cogs/streams/streamtypes.py:499 +#: redbot/cogs/streams/streamtypes.py:452 +#: redbot/cogs/streams/streamtypes.py:498 msgid "Total views" msgstr "總瀏覽次數" -#: redbot/cogs/streams/streamtypes.py:458 +#: redbot/cogs/streams/streamtypes.py:457 msgid "Playing: " msgstr "正在播放: " -#: redbot/cogs/streams/streamtypes.py:504 +#: redbot/cogs/streams/streamtypes.py:503 msgid "None" msgstr "無" -#: redbot/cogs/streams/streamtypes.py:507 +#: redbot/cogs/streams/streamtypes.py:506 msgid "NSFW | " msgstr "NSFW | " -#: redbot/cogs/streams/streamtypes.py:511 +#: redbot/cogs/streams/streamtypes.py:510 msgid "{adult}Category: {category} | Tags: {tags}" msgstr "{adult}類別:{category} | 標籤:{tags}" diff --git a/redbot/cogs/streams/streamtypes.py b/redbot/cogs/streams/streamtypes.py index c95a05b5b6e..5c7290eb4be 100644 --- a/redbot/cogs/streams/streamtypes.py +++ b/redbot/cogs/streams/streamtypes.py @@ -221,17 +221,16 @@ async def make_embed(self, data): if vid_data["liveStreamingDetails"].get("scheduledStartTime", None) is not None: if "actualStartTime" not in vid_data["liveStreamingDetails"]: start_time = parse_time(vid_data["liveStreamingDetails"]["scheduledStartTime"]) + start_time_unix = time.mktime(start_time.timetuple()) start_in = start_time - datetime.now(timezone.utc) if start_in.total_seconds() > 0: - embed.description = _("This stream will start in {time}").format( - time=humanize_timedelta( - timedelta=timedelta(minutes=start_in.total_seconds() // 60) - ) # getting rid of seconds + embed.description = _("This stream will start ").format( + time=int(start_time_unix) ) else: - embed.description = _( - "This stream was scheduled for {min} minutes ago" - ).format(min=round((start_in.total_seconds() * -1) // 60)) + embed.description = _("This stream was scheduled for ").format( + time=int(start_time_unix) + ) embed.timestamp = start_time is_schedule = True else: diff --git a/redbot/core/_cli.py b/redbot/core/_cli.py index b8dbc65e492..333e78fe700 100644 --- a/redbot/core/_cli.py +++ b/redbot/core/_cli.py @@ -267,11 +267,13 @@ def parse_cli_flags(args): ) parser.add_argument( "--team-members-are-owners", + "--team-developers-are-owners", action="store_true", dest="use_team_features", default=False, help=( - "Treat application team members as owners. " + "Treat application team members as owners, if their team role is Owner, " + "Admin, or Developer. " "This is off by default. Owners can load and run arbitrary code. " "Do not enable if you would not trust all of your team members with " "all of the data on the host machine." diff --git a/redbot/core/app_commands/__init__.py b/redbot/core/app_commands/__init__.py index a4b62e31672..45b1888fd96 100644 --- a/redbot/core/app_commands/__init__.py +++ b/redbot/core/app_commands/__init__.py @@ -10,10 +10,12 @@ AllChannels as AllChannels, AppCommand as AppCommand, AppCommandChannel as AppCommandChannel, + AppCommandContext as AppCommandContext, AppCommandError as AppCommandError, AppCommandGroup as AppCommandGroup, AppCommandPermissions as AppCommandPermissions, AppCommandThread as AppCommandThread, + AppInstallationType as AppInstallationType, Argument as Argument, BotMissingPermissions as BotMissingPermissions, Command as Command, @@ -45,6 +47,8 @@ TranslationContextTypes as TranslationContextTypes, TranslationError as TranslationError, Translator as Translator, + allowed_contexts as allowed_contexts, + allowed_installs as allowed_installs, autocomplete as autocomplete, check as check, CheckFailure as CheckFailure, @@ -54,22 +58,31 @@ context_menu as context_menu, default_permissions as default_permissions, describe as describe, + dm_only as dm_only, + guild_install as guild_install, guild_only as guild_only, guilds as guilds, locale_str as locale_str, + private_channel_only as private_channel_only, rename as rename, + user_install as user_install, ) from . import checks as checks +from .errors import ( + UserFeedbackCheckFailure as UserFeedbackCheckFailure, +) __all__ = ( "AllChannels", "AppCommand", "AppCommandChannel", + "AppCommandContext", "AppCommandError", "AppCommandGroup", "AppCommandPermissions", "AppCommandThread", + "AppInstallationType", "Argument", "BotMissingPermissions", "Command", @@ -101,6 +114,8 @@ "TranslationContextTypes", "TranslationError", "Translator", + "allowed_contexts", + "allowed_installs", "autocomplete", "check", "CheckFailure", @@ -110,9 +125,14 @@ "context_menu", "default_permissions", "describe", + "dm_only", + "guild_install", "guild_only", "guilds", "locale_str", + "private_channel_only", "rename", + "user_install", "checks", + "UserFeedbackCheckFailure", ) diff --git a/redbot/core/app_commands/errors.py b/redbot/core/app_commands/errors.py new file mode 100644 index 00000000000..4003c64cb26 --- /dev/null +++ b/redbot/core/app_commands/errors.py @@ -0,0 +1,10 @@ +"""Errors module for the app_commands package.""" +from discord import app_commands + + +class UserFeedbackCheckFailure(app_commands.CheckFailure): + """A version of CheckFailure responding with a custom error message.""" + + def __init__(self, message=None, *args): + self.message = message + super().__init__(message, *args) diff --git a/redbot/core/bot.py b/redbot/core/bot.py index 30f4ba92ded..a0ce1960c7b 100644 --- a/redbot/core/bot.py +++ b/redbot/core/bot.py @@ -1257,7 +1257,11 @@ async def _pre_connect(self) -> None: def _setup_owners(self) -> None: if self.application.team: if self._use_team_features: - self.owner_ids.update(m.id for m in self.application.team.members) + self.owner_ids.update( + m.id + for m in self.application.team.members + if m.role in (discord.TeamMemberRole.admin, discord.TeamMemberRole.developer) + ) elif self._owner_id_overwrite is None: self.owner_ids.add(self.application.owner.id) @@ -2324,7 +2328,7 @@ async def send_interactive( *, user: Optional[discord.User] = None, box_lang: Optional[str] = None, - timeout: int = 15, + timeout: int = 60, join_character: str = "", ) -> List[discord.Message]: """ diff --git a/redbot/core/commands/context.py b/redbot/core/commands/context.py index bbd33b7d371..76bf18818b1 100644 --- a/redbot/core/commands/context.py +++ b/redbot/core/commands/context.py @@ -151,7 +151,7 @@ async def send_interactive( self, messages: Iterable[str], box_lang: Optional[str] = None, - timeout: int = 15, + timeout: int = 60, join_character: str = "", ) -> List[discord.Message]: """ diff --git a/redbot/core/commands/converter.py b/redbot/core/commands/converter.py index 9ef82cdffad..015a4c079ca 100644 --- a/redbot/core/commands/converter.py +++ b/redbot/core/commands/converter.py @@ -57,20 +57,22 @@ # Taken with permission from # https://github.com/mikeshardmind/SinbadCogs/blob/816f3bc2ba860243f75112904b82009a8a9e1f99/scheduler/time_utils.py#L9-L19 -TIME_RE_STRING = r"\s?".join( - [ - r"((?P\d+?)\s?(years?|y))?", - r"((?P\d+?)\s?(months?|mo))?", - r"((?P\d+?)\s?(weeks?|w))?", - r"((?P\d+?)\s?(days?|d))?", - r"((?P\d+?)\s?(hours?|hrs|hr?))?", - r"((?P\d+?)\s?(minutes?|mins?|m(?!o)))?", # prevent matching "months" - r"((?P\d+?)\s?(seconds?|secs?|s))?", - ] +# with modifications +TIME_RE = re.compile( + r""" + (\s?( # match deliminators here to make word border below unambiguous + (?P[\+-]?\d+)\s?(years?|y) + | (?P[\+-]?\d+)\s?(months?|mo) + | (?P[\+-]?\d+)\s?(weeks?|w) + | (?P[\+-]?\d+)\s?(days?|d) + | (?P[\+-]?\d+)\s?(hours?|hrs|hr?) + | (?P[\+-]?\d+)\s?(minutes?|mins?|m) + | (?P[\+-]?\d+)\s?(seconds?|secs?|s) + ))+\b + """, + flags=re.IGNORECASE | re.VERBOSE, ) -TIME_RE = re.compile(TIME_RE_STRING, re.I) - def _parse_and_match(string_to_match: str, allowed_units: List[str]) -> Optional[Dict[str, int]]: """ @@ -92,13 +94,13 @@ def parse_timedelta( argument: str, *, maximum: Optional[timedelta] = None, - minimum: Optional[timedelta] = None, + minimum: Optional[timedelta] = timedelta(seconds=0), allowed_units: Optional[List[str]] = None, ) -> Optional[timedelta]: """ This converts a user provided string into a timedelta - The units should be in order from largest to smallest. + If a unit is specified multiple times, only the last is considered. This works with or without whitespace. Parameters @@ -109,6 +111,7 @@ def parse_timedelta( If provided, any parsed value higher than this will raise an exception minimum : Optional[datetime.timedelta] If provided, any parsed value lower than this will raise an exception + Defaults to 0 seconds, pass `datetime.timedelta.min` explicitly to allow negative values allowed_units : Optional[List[str]] If provided, you can constrain a user to expressing the amount of time in specific units. The units you can chose to provide are the same as the @@ -132,6 +135,10 @@ def parse_timedelta( "minutes", "seconds", ] + if minimum is None: + minimum = timedelta(seconds=0) + if maximum is None: + maximum = timedelta.max params = _parse_and_match(argument, allowed_units) if params: try: @@ -140,17 +147,23 @@ def parse_timedelta( raise BadArgument( _("The time set is way too high, consider setting something reasonable.") ) - if maximum and maximum < delta: + if maximum < delta: raise BadArgument( _( "This amount of time is too large for this command. (Maximum: {maximum})" - ).format(maximum=humanize_timedelta(timedelta=maximum)) + ).format( + maximum=humanize_timedelta(seconds=math.floor(maximum.total_seconds())) + or _("0 seconds") + ) ) - if minimum and delta < minimum: + if delta < minimum: raise BadArgument( _( "This amount of time is too small for this command. (Minimum: {minimum})" - ).format(minimum=humanize_timedelta(timedelta=minimum)) + ).format( + minimum=humanize_timedelta(seconds=math.ceil(minimum.total_seconds())) + or _("0 seconds") + ) ) return delta return None @@ -162,7 +175,7 @@ def parse_relativedelta( """ This converts a user provided string into a datetime with offset from NOW - The units should be in order from largest to smallest. + If a unit is specified multiple times, only the last is considered. This works with or without whitespace. Parameters @@ -331,6 +344,7 @@ class TimedeltaConverter(dpy_commands.Converter): If provided, any parsed value higher than this will raise an exception minimum : Optional[datetime.timedelta] If provided, any parsed value lower than this will raise an exception + Defaults to 0 seconds, pass `datetime.timedelta.min` explicitly to allow negative values allowed_units : Optional[List[str]] If provided, you can constrain a user to expressing the amount of time in specific units. The units you can choose to provide are the same as the @@ -341,7 +355,14 @@ class TimedeltaConverter(dpy_commands.Converter): apply. """ - def __init__(self, *, minimum=None, maximum=None, allowed_units=None, default_unit=None): + def __init__( + self, + *, + minimum=timedelta(seconds=0), + maximum=None, + allowed_units=None, + default_unit=None, + ): self.allowed_units = allowed_units self.default_unit = default_unit self.minimum = minimum @@ -369,7 +390,7 @@ def get_timedelta_converter( *, default_unit: Optional[str] = None, maximum: Optional[timedelta] = None, - minimum: Optional[timedelta] = None, + minimum: Optional[timedelta] = timedelta(seconds=0), allowed_units: Optional[List[str]] = None, ) -> Type[timedelta]: ... @@ -380,7 +401,7 @@ def get_timedelta_converter( *, default_unit: Optional[str] = None, maximum: Optional[timedelta] = None, - minimum: Optional[timedelta] = None, + minimum: Optional[timedelta] = timedelta(seconds=0), allowed_units: Optional[List[str]] = None, ) -> Type[timedelta]: """ @@ -395,6 +416,7 @@ def get_timedelta_converter( If provided, any parsed value higher than this will raise an exception minimum : Optional[datetime.timedelta] If provided, any parsed value lower than this will raise an exception + Defaults to 0 seconds, pass `datetime.timedelta.min` explicitly to allow negative values allowed_units : Optional[List[str]] If provided, you can constrain a user to expressing the amount of time in specific units. The units you can choose to provide are the same as the diff --git a/redbot/core/commands/locales/ar-SA.po b/redbot/core/commands/locales/ar-SA.po index 990e799c875..263e5232e5e 100644 --- a/redbot/core/commands/locales/ar-SA.po +++ b/redbot/core/commands/locales/ar-SA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: ar_SA\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "" -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "`{arg}` ليس رقماً." -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "`{arg}` ليس رقماً محدوداً." -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "" -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "" diff --git a/redbot/core/commands/locales/bg-BG.po b/redbot/core/commands/locales/bg-BG.po index 687fc7cc316..a87f2f3e137 100644 --- a/redbot/core/commands/locales/bg-BG.po +++ b/redbot/core/commands/locales/bg-BG.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: bg_BG\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` не е валидна единица за време на тази команда" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "Зададеното време е твърде високо, помислете за настройка на нещо разумно." -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Този период от време е твърде голям за тази команда. (Максимум: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Този период от време е твърде малък за тази команда. (Минимум: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "„{input}“ не изглежда като валиден потребителски идентификатор." -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "Командата \"{arg}\" не е намерена." -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "Cog \"{arg}\" не е намерен." diff --git a/redbot/core/commands/locales/cs-CZ.po b/redbot/core/commands/locales/cs-CZ.po index 3602746fdeb..9bf0b2b4296 100644 --- a/redbot/core/commands/locales/cs-CZ.po +++ b/redbot/core/commands/locales/cs-CZ.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: cs_CZ\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` není platnou jednotkou času pro tento příkaz" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "" -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Tento čas je pro tento příkaz příliš velký. (Maximum: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Tento čas je pro tento příkaz příliš velký. (Maximum: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "'{input}' nevypadá jako platné ID uživatele." -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "`{arg}` není číslo." -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "Chybí klíč nebo hodnota." -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "Neočekávaný klíč `{key}`." -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "Příkaz \"{arg}\" nebyl nalezen." -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "" diff --git a/redbot/core/commands/locales/da-DK.po b/redbot/core/commands/locales/da-DK.po index 650917e0dc6..768a1dac594 100644 --- a/redbot/core/commands/locales/da-DK.po +++ b/redbot/core/commands/locales/da-DK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Danish\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: da_DK\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "" -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "" -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "" diff --git a/redbot/core/commands/locales/de-DE.po b/redbot/core/commands/locales/de-DE.po index df1aba4683a..b6c7c08cd72 100644 --- a/redbot/core/commands/locales/de-DE.po +++ b/redbot/core/commands/locales/de-DE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: de_DE\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` ist keine gültige Zeiteinheit für diesen Befehl" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "Die eingestellte Zeit ist viel zu hoch, stelle etwas Angemesseneres ein." -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Diese Zeitspanne ist für diesen Befehl zu groß. (Maximal: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Diese Zeitspanne ist für diesen Befehl zu klein. (Minimum: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "'{input}' sieht nicht wie eine gültige Nutzer-ID aus." -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "`{arg}` ist keine Zahl." -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "`{arg}` ist keine endliche Zahl." -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "Ein Schlüssel oder Wert fehlt." -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "Unerwarteter Schlüssel `{key}`." -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "Der Befehl \"{arg}\" wurde nicht gefunden." -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "Das Cog \"{arg}\" wurde nicht gefunden." diff --git a/redbot/core/commands/locales/es-ES.po b/redbot/core/commands/locales/es-ES.po index e2a3c60dfc2..e629cdf18b5 100644 --- a/redbot/core/commands/locales/es-ES.po +++ b/redbot/core/commands/locales/es-ES.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: es_ES\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` no es una unidad de tiempo válida para este comando" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "El tiempo fijado es demasiado alto, considere establecer algo razonable." -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Esta cantidad de tiempo es demasiado grande para este comando. (Máximo: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Esta cantidad de tiempo es demasiado pequeña para este comando. (Mínimo: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "'{input}' no parece ser un ID de usuario válido." -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "`{arg}` no es un número." -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "`{arg}` no es un número finito." -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "Falta una llave o un valor." -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "Llave inesperada {key}`." -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "El comando \"{arg}\" no se ha encontrado." -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "El Cog \"{arg}\" no se ha encontrado." diff --git a/redbot/core/commands/locales/fi-FI.po b/redbot/core/commands/locales/fi-FI.po index f2a83c9707d..8c78a06cd12 100644 --- a/redbot/core/commands/locales/fi-FI.po +++ b/redbot/core/commands/locales/fi-FI.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Finnish\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: fi_FI\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` ei ole kelvollinen ajanyksikkö tälle komennolle" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "Asetettu aika on aivan liian suuri, harkitse sen asettamista joksikin kohtuulliseksi." -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Aika on liian suuri tälle komennolle. (Maksimi: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Aika on liian pieni tälle komennolle. (Minimi: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "`{arg}` ei ole numero." -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "`{arg}` ei ole kelvollinen numero." -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "" -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "" diff --git a/redbot/core/commands/locales/fr-FR.po b/redbot/core/commands/locales/fr-FR.po index df6a040403d..af486a0db57 100644 --- a/redbot/core/commands/locales/fr-FR.po +++ b/redbot/core/commands/locales/fr-FR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: fr_FR\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` n'est pas une unité de temps valide pour cette commande" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "Le temps fixé est beaucoup trop élevé, envisager de configurer quelque chose de raisonnable." -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Ce temps est trop grand pour cette commande. (Maximum : {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Ce temps est trop petit pour cette commande. (Minimum : {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "'{input}' ne ressemble pas à un identifiant d'utilisateur valide." -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "`{arg}` n'est pas un nombre." -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "`{arg}` n'est pas un nombre fini." -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "Une clé ou une valeur est manquante." -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "Clé inattendue `{key}`." -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "Commande \"{arg}\" non trouvée." -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "Cog \"{arg}\" non trouvé." diff --git a/redbot/core/commands/locales/hi-IN.po b/redbot/core/commands/locales/hi-IN.po index d0b8e2722f4..c75ff45c55d 100644 --- a/redbot/core/commands/locales/hi-IN.po +++ b/redbot/core/commands/locales/hi-IN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Hindi\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: hi_IN\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` इस आदेश के लिए समय की मान्य इकाई नहीं है" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "निर्धारित समय बहुत अधिक है, कुछ उचित निर्धारित करने पर विचार करें।" -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "यह समय इस आदेश के लिए बहुत बड़ा है। (ज्यादा से ज्यादा: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "यह समय इस आदेश के लिए बहुत छोटा है। (न्यूनतम: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "`{input}` वैध उपयोगकर्ता आईडी की तरह नहीं दिखता है।" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "एक कुंजी या मान गुम है।" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "अप्रत्याशित कुंजी `{key}`" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "कमांड \"{arg}\" नहीं मिला।" -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "कोग \"{arg}\" नहीं मिला।" diff --git a/redbot/core/commands/locales/hr-HR.po b/redbot/core/commands/locales/hr-HR.po index 3cc8489b81d..d6afef197bf 100644 --- a/redbot/core/commands/locales/hr-HR.po +++ b/redbot/core/commands/locales/hr-HR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: hr_HR\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` nije važeća jedinica vremena za ovu naredbu" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "Postavljeno vrijeme je previsoko, razmislite o postavljanju nečeg razumnog." -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Ovo vrijeme je preveliko za ovu naredbu. (Maksimum: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Ovo vrijeme je premalo za ovu naredbu. (Minimum: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "'{input}' ne izgleda kao valjani korisnički ID." -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "Nedostaje ključ ili vrijednost." -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "Neočekivan ključ `{key}`." -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "Naredba \"{arg}\" nije pronađena." -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "Cog \"{arg}\" nije pronađen." diff --git a/redbot/core/commands/locales/hu-HU.po b/redbot/core/commands/locales/hu-HU.po index e8ebebb556b..5da0d33a799 100644 --- a/redbot/core/commands/locales/hu-HU.po +++ b/redbot/core/commands/locales/hu-HU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: hu_HU\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "Az `{unit}` nem érvényes időegység e parancshoz" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "Az idő nagyon magasra van állítva, fontold meg egy ésszerű érték megadását." -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Ez az időegység túl nagy e parancshoz. (Maximum: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Ez az időegység túl kicsi e parancshoz. (Minimum: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "" -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "" diff --git a/redbot/core/commands/locales/id-ID.po b/redbot/core/commands/locales/id-ID.po index ebc89725197..3bbd6b726b1 100644 --- a/redbot/core/commands/locales/id-ID.po +++ b/redbot/core/commands/locales/id-ID.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: id_ID\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "" -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "`{arg}` bukanlah sebuah angka." -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "`{arg}` bukanlah sebuah angka terbatas." -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "" -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "" diff --git a/redbot/core/commands/locales/it-IT.po b/redbot/core/commands/locales/it-IT.po index 91fbf80e59f..e236da1f171 100644 --- a/redbot/core/commands/locales/it-IT.po +++ b/redbot/core/commands/locales/it-IT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: it_IT\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` non è un periodo di tempo valido per questo comando" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "Il tempo impostato è troppo elevato, per favore imposta un tempo ragionevole." -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Questa quantità di tempo è troppo grande per questo comando. (Il tempo massimo é: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Questa quantità di tempo è troppo piccola per questo comando. (Minimo: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "'{input}' non sembra essere un ID utente valido." -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "`{arg}\" non è un numero." -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "`{arg}` non è un numero finito." -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "Manca una chiave o un valore." -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "Valore {key} inaspettato`." -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "Comando \"{arg}\" non trovato." -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "Modulo \"{arg}\" non trovato." diff --git a/redbot/core/commands/locales/ja-JP.po b/redbot/core/commands/locales/ja-JP.po index d401cef377c..ac80b0a190a 100644 --- a/redbot/core/commands/locales/ja-JP.po +++ b/redbot/core/commands/locales/ja-JP.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Japanese\n" "MIME-Version: 1.0\n" @@ -15,53 +15,57 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: ja_JP\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" -msgstr "" +msgstr "`{unit}`はこのコマンドの有効な時間単位ではありません" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." -msgstr "" +msgstr "時間設定が高すぎます。合理的な設定を検討してください。" -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" -msgstr "" +msgstr "この時間はこのコマンドには大きすぎます。(最大: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "0 秒" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" -msgstr "" +msgstr "この時間はこのコマンドには大きすぎます。(最大: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." -msgstr "" +msgstr "'{input}' は有効なユーザー ID ではありません。" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." -msgstr "" +msgstr "'{arg}' は数字ではありません。" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." -msgstr "" +msgstr "'{arg}' は有限数ではありません。" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." -msgstr "" +msgstr "キーまたは値がありません。" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." -msgstr "" +msgstr "予期しないキー `{key} ` 。" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." -msgstr "" +msgstr "コマンド \"{arg}\" は見つかりません。" -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." -msgstr "" +msgstr "Cog \"{arg}\" が見つかりません。" #: redbot/core/commands/help.py:125 redbot/core/commands/help.py:144 msgid "No" -msgstr "" +msgstr "いいえ" #: redbot/core/commands/help.py:127 msgid "Yes" @@ -69,28 +73,29 @@ msgstr "イエス" #: redbot/core/commands/help.py:133 msgid "Disabled" -msgstr "" +msgstr "無効" #: redbot/core/commands/help.py:138 msgid "\n" "Custom Tagline: {tag}" -msgstr "" +msgstr "\n" +"カスタムタグライン: {tag}" #: redbot/core/commands/help.py:145 msgid "Yes, reactions" -msgstr "" +msgstr "はい、リアクション" #: redbot/core/commands/help.py:146 msgid "Yes, buttons" -msgstr "" +msgstr "はい、ボタン" #: redbot/core/commands/help.py:147 msgid "Yes, buttons with select menu" -msgstr "" +msgstr "はい、選択メニューのボタン" #: redbot/core/commands/help.py:148 msgid "Yes, select menu only" -msgstr "" +msgstr "はい、メニューのみを選択" #: redbot/core/commands/help.py:152 msgid "Maximum characters per page: {page_char_limit}\n" @@ -103,76 +108,86 @@ msgid "Maximum characters per page: {page_char_limit}\n" "Delete delay: {delete_delay}\n" "React with a checkmark when help is sent via DM: {use_tick}\n" "Reaction timeout (only used if menus are used): {react_timeout} seconds{tagline_info}" -msgstr "" +msgstr "1 ページあたりの最大文字数: {page_char_limit}\n" +"ギルドあたりの最大ページ数 (メニューが使用されていない場合にのみ使用): {max_pages_in_guild}\n" +"ヘルプはメニューです: {use_menus}\n" +"ヘルプは非表示のコマンドを表示します: {show_hidden}\n" +"ヘルプはコマンドのエイリアスを表示します: {show_aliases}\n" +"ヘルプは使用できるコマンドのみを表示します: {verify_checks}\n" +"ヘルプは直接尋ねられたときに使用できないコマンドを表示します: {verify_exists}\n" +"削除の遅延: {delete_delay}\n" +"ヘルプが DM 経由で送信されたときにチェックマークで反応します: {use_tick}\n" +"反応タイムアウト (メニューが使用されている場合にのみ使用): {react_timeout} 秒{tagline_info}" #: redbot/core/commands/help.py:303 msgid "Type {command1} for more info on a command. You can also type {command2} for more info on a category." -msgstr "" +msgstr "コマンドの詳細については {command1} と入力してください。カテゴリの詳細については {command2} と入力することもできます。" #: redbot/core/commands/help.py:355 msgid "Syntax: {command_signature}" -msgstr "" +msgstr "構文 {command_signature}" #: redbot/core/commands/help.py:361 msgid "Aliases" -msgstr "" +msgstr "エイリアス" #: redbot/core/commands/help.py:361 msgid "Alias" -msgstr "" +msgstr "エイリアス" #: redbot/core/commands/help.py:382 msgid "{aliases} and {number} more aliases." -msgstr "" +msgstr "{aliases} と {number} のエイリアスが続きます。" #: redbot/core/commands/help.py:386 msgid "{aliases} and one more alias." -msgstr "" +msgstr "{aliases} ともう 1 つのエイリアス。" #: redbot/core/commands/help.py:433 redbot/core/commands/help.py:435 #: redbot/core/commands/help.py:447 msgid "Subcommands:" -msgstr "" +msgstr "サブコマンド:" #: redbot/core/commands/help.py:435 redbot/core/commands/help.py:613 msgid " (continued)" -msgstr "" +msgstr " (再開されました)" #: redbot/core/commands/help.py:509 redbot/core/commands/help.py:769 #: redbot/core/commands/help.py:784 redbot/core/commands/help.py:805 msgid "{ctx.me.display_name} Help Menu" -msgstr "" +msgstr "{ctx.me.display_name} ヘルプメニュー" #: redbot/core/commands/help.py:556 msgid "*Page {page_num} of {page_count}*\n" "{content_description}" -msgstr "" +msgstr "*ページ {page_num} / {page_count}*\n" +"{content_description}" #: redbot/core/commands/help.py:611 redbot/core/commands/help.py:613 #: redbot/core/commands/help.py:625 msgid "Commands:" -msgstr "" +msgstr "コマンド:" #: redbot/core/commands/help.py:664 redbot/core/commands/help.py:693 #: redbot/core/commands/help.py:706 msgid "No Category:" -msgstr "" +msgstr "カテゴリなし:" #: redbot/core/commands/help.py:677 msgid "{title} (continued)" -msgstr "" +msgstr "{title} (再開されました)" #: redbot/core/commands/help.py:780 msgid "Help topic for {command_name} not found." -msgstr "" +msgstr "{command_name} のヘルプトピックが見つかりません。" #: redbot/core/commands/help.py:799 msgid "Command {command_name} has no subcommand named {not_found}." -msgstr "" +msgstr "コマンド {command_name} には {not_found} というサブコマンドはありません。" #: redbot/core/commands/help.py:904 msgid "I couldn't send the help message to you in DM. Either you blocked me or you disabled DMs in this server." -msgstr "" +msgstr "私はDMであなたにヘルプメッセージを送信できませんでした。あなたが私をブロックしたか、このサーバーでDMを無効にしたかのどちらかです。" #: redbot/core/commands/help.py:940 #, docstring @@ -182,5 +197,9 @@ msgid "\n" " (Help) you know I need someone\n" " (Help!)\n" " " -msgstr "" +msgstr "\n" +"誰かが必要です\n" +" (ヘルプ) 誰でもいいじゃない\n" +" (ヘルプ) 私には誰かが必要だということは知っていますよね\n" +" (ヘルプ!) " diff --git a/redbot/core/commands/locales/ko-KR.po b/redbot/core/commands/locales/ko-KR.po index cf0dd0e1024..229dc1e0c73 100644 --- a/redbot/core/commands/locales/ko-KR.po +++ b/redbot/core/commands/locales/ko-KR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Korean\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: ko_KR\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "" -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "" -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "" diff --git a/redbot/core/commands/locales/nb-NO.po b/redbot/core/commands/locales/nb-NO.po index 05a8467559d..fd4e8145fcc 100644 --- a/redbot/core/commands/locales/nb-NO.po +++ b/redbot/core/commands/locales/nb-NO.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Norwegian Bokmal\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: nb_NO\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` er ikke en gyldig tidsenhet for denne kommandoen" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "Tiden som settes er for høy, kan man vurdere å sette noe rimelig." -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Denne tidsperioden er for stor for denne kommandoen (Maks: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Det er for lite tid for denne kommandoen. (Minimum: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "'{input}' ser ikke ut som en gyldig bruker-ID." -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "`{arg} er ikke et tall." -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "`{arg}` er ikke et helt tall." -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "Mangler en nøkkel eller verdi." -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "Uventet nøkkel `{key}." -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "Kommandoen \"{arg}\" ble ikke funnet." -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "Cog \"{arg}\" ikke funnet." diff --git a/redbot/core/commands/locales/nl-NL.po b/redbot/core/commands/locales/nl-NL.po index 935c8936ba3..0b1a56f170a 100644 --- a/redbot/core/commands/locales/nl-NL.po +++ b/redbot/core/commands/locales/nl-NL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: nl_NL\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` is geen geldige tijdseenheid voor deze command" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "" -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Deze hoeveelheid tijd is te groot voor deze opdracht. (Maximum: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Deze hoeveelheid tijd is te klein voor deze opdracht. (Minimum: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "" -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "" diff --git a/redbot/core/commands/locales/pl-PL.po b/redbot/core/commands/locales/pl-PL.po index 24d5e51ec9a..84c5c82b0dc 100644 --- a/redbot/core/commands/locales/pl-PL.po +++ b/redbot/core/commands/locales/pl-PL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: pl_PL\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` nie jest poprawną jednostką czasu dla tej komendy" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "Ustawiony czas jest o wiele za wysoki, rozważ ustawienie czegoś rozsądnego." -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Ta ilość czasu jest za duża dla tej komendy. (Maximum: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Ta ilość czasu jest za mała dla tej komendy. (Minimum: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "" -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "" diff --git a/redbot/core/commands/locales/pt-BR.po b/redbot/core/commands/locales/pt-BR.po index 9e1b408d690..f82e06edc89 100644 --- a/redbot/core/commands/locales/pt-BR.po +++ b/redbot/core/commands/locales/pt-BR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: pt_BR\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` não é uma unidade de tempo válida para este comando" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "O tempo definito é muito alto, considere definir algo razoável." -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Esta quantidade de tempo é muito grande para este comando. (Máximo: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Esta quantidade de tempo é muito pequena para este comando. (Mínimo: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "'{input}' não parece ser um ID de usuário válido." -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "Falta uma chave ou valor." -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "Chave inesperada `{key}`." -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "Comando \"{arg}\" não encontrado." -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "Cog \"{arg}\" não encontrada." diff --git a/redbot/core/commands/locales/pt-PT.po b/redbot/core/commands/locales/pt-PT.po index 14c8dc69984..f0fc29fee3d 100644 --- a/redbot/core/commands/locales/pt-PT.po +++ b/redbot/core/commands/locales/pt-PT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: pt_PT\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` não é uma unidade de tempo válida para este comando" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "O limite de tempo é muito alto, considere definir algo mais razoável." -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Esta quantidade de tempo é muito grande para este comando. (Máximo: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Esta quantidade de tempo é muito pequena para este comando. (Mínimo: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "'{input}' não parece ser um ID de utilizador válido." -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "`{arg}` não é um número." -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "`{arg}` não é um número finito." -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "Falta uma chave ou valor." -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "Chave inesperada `{key}`." -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "Comando \"{arg}\" não encontrado." -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "Cog \"{arg}\" não encontrado." diff --git a/redbot/core/commands/locales/ru-RU.po b/redbot/core/commands/locales/ru-RU.po index 373dcbcc387..c93bc8546ab 100644 --- a/redbot/core/commands/locales/ru-RU.po +++ b/redbot/core/commands/locales/ru-RU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: ru_RU\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` не является допустимой единицей времени для этой команды" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "Установленное время слишком велико, подумайте о том, чтобы установить что-то разумное." -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Данное количество времени слишком длинное для этой команды. (Максимум: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Количество времени слишком маленькое для этой команды. (Минимум: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "'{input}' не похож на допустимый ID пользователя." -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "`{arg}` не является числом." -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "`{arg}` не является конечным числом." -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "Отсутствует ключ или значение." -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "Неожиданный ключ `{key}`." -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "Команда \"{arg}\" не найдена." -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "Cog \"{arg}\" не найден." diff --git a/redbot/core/commands/locales/sk-SK.po b/redbot/core/commands/locales/sk-SK.po index 746b6736a3a..173a760dd86 100644 --- a/redbot/core/commands/locales/sk-SK.po +++ b/redbot/core/commands/locales/sk-SK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Slovak\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: sk_SK\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "" -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "" -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "" diff --git a/redbot/core/commands/locales/sl-SI.po b/redbot/core/commands/locales/sl-SI.po index 94d2cddf0c1..1208e2f4832 100644 --- a/redbot/core/commands/locales/sl-SI.po +++ b/redbot/core/commands/locales/sl-SI.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: sl_SI\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` ni veljavna časovna enota za ta ukaz" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "Nastavljeni čas je previsok, razmislite o nastavitvi nečesa razumnega." -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Ta čas je prevelik za ta ukaz. (Maksimalno: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Ta čas je prenizek za ta ukaz. (Minimalno: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "" -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "" diff --git a/redbot/core/commands/locales/sv-SE.po b/redbot/core/commands/locales/sv-SE.po index d692fc690a4..5a7eaed68fb 100644 --- a/redbot/core/commands/locales/sv-SE.po +++ b/redbot/core/commands/locales/sv-SE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: sv_SE\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` är inte en giltig tidsenhet för detta kommando" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "Den angivna tiden är alldeles för hög, överväg att ställa in något rimligt." -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Denna tid är för stor för detta kommando. (Maximal: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Denna tid är för liten för detta kommando. (Minimum: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "Kommando \"{arg}\" hittades inte." -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "Kugg \"{arg}\" hittades inte." diff --git a/redbot/core/commands/locales/tr-TR.po b/redbot/core/commands/locales/tr-TR.po index 02870fc90db..22bf1e8b793 100644 --- a/redbot/core/commands/locales/tr-TR.po +++ b/redbot/core/commands/locales/tr-TR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: tr_TR\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` bu komut için geçerli bir zaman birimi değil" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "Ayarlanan süre aşırı uzun, daha mantıklı bir şey ayarlamayı düşünün." -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "Bu süre bu komut için çok fazla. (Maksimum: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "Bu komut için bu süre çok kısa. (Minimum: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "`{input}` geçerli bir kullanıcı ID'si gibi gözükmüyor." -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "`{arg}` bir sayı değil." -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "`{arg}` sonu olan bir sayı değil." -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "Değer veya anahtar eksik." -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "Beklenmedik anahtar {key}`." -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "\"{arg}\" komutu bulunamadı." -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "\"{arg}\" cogu bulunamadı." diff --git a/redbot/core/commands/locales/uk-UA.po b/redbot/core/commands/locales/uk-UA.po index b66071d65aa..62806b8d8aa 100644 --- a/redbot/core/commands/locales/uk-UA.po +++ b/redbot/core/commands/locales/uk-UA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: uk_UA\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "" -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "" -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "" diff --git a/redbot/core/commands/locales/vi-VN.po b/redbot/core/commands/locales/vi-VN.po index 18b5b9c944d..6c95ca1a8f9 100644 --- a/redbot/core/commands/locales/vi-VN.po +++ b/redbot/core/commands/locales/vi-VN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: vi_VN\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "" -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "" -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "" diff --git a/redbot/core/commands/locales/zh-CN.po b/redbot/core/commands/locales/zh-CN.po index 6ef6205bc8a..0804bc781bc 100644 --- a/redbot/core/commands/locales/zh-CN.po +++ b/redbot/core/commands/locales/zh-CN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: zh_CN\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}` 不是此命令的有效时间" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "设置的时间太长,考虑设置一些合理的" -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "这个时间对于这个命令太大。(最大: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "这个时间对于这个命令太小了 (最小: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "未找到命令“{arg}”。请检查!" -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "无法找到 cog\"{arg}\"。请检查!" diff --git a/redbot/core/commands/locales/zh-TW.po b/redbot/core/commands/locales/zh-TW.po index 880e7efd5d6..f09e3a4bc1f 100644 --- a/redbot/core/commands/locales/zh-TW.po +++ b/redbot/core/commands/locales/zh-TW.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-20 22:28+0000\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "MIME-Version: 1.0\n" @@ -15,47 +15,51 @@ msgstr "" "X-Crowdin-File-ID: 188\n" "Language: zh_TW\n" -#: redbot/core/commands/converter.py:85 +#: redbot/core/commands/converter.py:87 msgid "`{unit}` is not a valid unit of time for this command" msgstr "`{unit}`不是此命令的有效時間單位" -#: redbot/core/commands/converter.py:141 redbot/core/commands/converter.py:203 +#: redbot/core/commands/converter.py:148 redbot/core/commands/converter.py:216 msgid "The time set is way too high, consider setting something reasonable." msgstr "時間超出允許範圍,請輸入一個合理的時間。" -#: redbot/core/commands/converter.py:145 +#: redbot/core/commands/converter.py:152 msgid "This amount of time is too large for this command. (Maximum: {maximum})" msgstr "對於該命令來說,此時間量太大。 (最大值: {maximum})" -#: redbot/core/commands/converter.py:151 +#: redbot/core/commands/converter.py:156 redbot/core/commands/converter.py:165 +msgid "0 seconds" +msgstr "" + +#: redbot/core/commands/converter.py:161 msgid "This amount of time is too small for this command. (Minimum: {minimum})" msgstr "對於該命令來說,此時間量太小。 (最小值: {minimum})" -#: redbot/core/commands/converter.py:232 +#: redbot/core/commands/converter.py:245 msgid "'{input}' doesn't look like a valid user ID." msgstr "'{input}' 看起來不是有效的使用者ID。" -#: redbot/core/commands/converter.py:255 +#: redbot/core/commands/converter.py:268 msgid "`{arg}` is not a number." msgstr "`{arg}` 不是一個數字。" -#: redbot/core/commands/converter.py:257 +#: redbot/core/commands/converter.py:270 msgid "`{arg}` is not a finite number." msgstr "`{arg}` 不是有限數。" -#: redbot/core/commands/converter.py:280 +#: redbot/core/commands/converter.py:293 msgid "Missing a key or value." msgstr "缺少key或數值。" -#: redbot/core/commands/converter.py:286 +#: redbot/core/commands/converter.py:299 msgid "Unexpected key `{key}`." msgstr "意外的關鍵“{key}”。" -#: redbot/core/commands/converter.py:511 +#: redbot/core/commands/converter.py:533 msgid "Command \"{arg}\" not found." msgstr "指令\"{arg}\"不存在。" -#: redbot/core/commands/converter.py:521 +#: redbot/core/commands/converter.py:543 msgid "Cog \"{arg}\" not found." msgstr "模組 \"{arg}\" 不存在。" diff --git a/redbot/core/commands/requires.py b/redbot/core/commands/requires.py index b5526a6712c..9a94bd03d02 100644 --- a/redbot/core/commands/requires.py +++ b/redbot/core/commands/requires.py @@ -761,7 +761,7 @@ def decorator(func: _T) -> _T: def _can_manage_channel_deco( - privilege_level: Optional[PrivilegeLevel] = None, allow_thread_owner: bool = False + *, privilege_level: Optional[PrivilegeLevel] = None, allow_thread_owner: bool = False ) -> Callable[[_T], _T]: async def predicate(ctx: "Context") -> bool: if utils.can_user_manage_channel( @@ -803,7 +803,7 @@ def can_manage_channel(*, allow_thread_owner: bool = False) -> Callable[[_T], _T as that, in addition to members with manage channel/threads permission, can also be done by the thread owner. """ - return _can_manage_channel_deco(allow_thread_owner) + return _can_manage_channel_deco(allow_thread_owner=allow_thread_owner) def is_owner(): @@ -837,7 +837,9 @@ def guildowner_or_can_manage_channel(*, allow_thread_owner: bool = False) -> Cal as that, in addition to members with manage channel/threads permission, can also be done by the thread owner. """ - return _can_manage_channel_deco(PrivilegeLevel.GUILD_OWNER, allow_thread_owner) + return _can_manage_channel_deco( + privilege_level=PrivilegeLevel.GUILD_OWNER, allow_thread_owner=allow_thread_owner + ) def guildowner(): @@ -871,7 +873,9 @@ def admin_or_can_manage_channel(*, allow_thread_owner: bool = False) -> Callable as that, in addition to members with manage channel/threads permission, can also be done by the thread owner. """ - return _can_manage_channel_deco(PrivilegeLevel.ADMIN, allow_thread_owner) + return _can_manage_channel_deco( + privilege_level=PrivilegeLevel.ADMIN, allow_thread_owner=allow_thread_owner + ) def admin(): @@ -905,7 +909,9 @@ def mod_or_can_manage_channel(*, allow_thread_owner: bool = False) -> Callable[[ as that, in addition to members with manage channel/threads permission, can also be done by the thread owner. """ - return _can_manage_channel_deco(PrivilegeLevel.MOD, allow_thread_owner) + return _can_manage_channel_deco( + privilege_level=PrivilegeLevel.MOD, allow_thread_owner=allow_thread_owner + ) def mod(): diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index f1a483e555f..42aab5221bb 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -2848,21 +2848,12 @@ async def _set_bot_description(self, ctx: commands.Context, *, description: str ctx.bot.description = description await ctx.tick() - @_set_bot.group(name="avatar", invoke_without_command=True) - @commands.is_owner() - async def _set_bot_avatar(self, ctx: commands.Context, url: str = None): - """Sets [botname]'s avatar - - Supports either an attachment or an image URL. - - **Examples:** - - `[p]set bot avatar` - With an image attachment, this will set the avatar. - - `[p]set bot avatar` - Without an attachment, this will show the command help. - - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url. - - **Arguments:** - - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment. - """ + async def _set_bot_image( + self, + image_type: Literal["avatar", "banner"], + ctx: commands.Context, + url: Optional[str] = None, + ): if len(ctx.message.attachments) > 0: # Attachments take priority data = await ctx.message.attachments[0].read() elif url is not None: @@ -2883,20 +2874,49 @@ async def _set_bot_avatar(self, ctx: commands.Context, url: str = None): try: async with ctx.typing(): - await ctx.bot.user.edit(avatar=data) + if image_type == "avatar": + await ctx.bot.user.edit(avatar=data) + else: + await ctx.bot.user.edit(banner=data) except discord.HTTPException: - await ctx.send( - _( - "Failed. Remember that you can edit my avatar " - "up to two times a hour. The URL or attachment " - "must be a valid image in either JPG, PNG, or GIF format." + if image_type == "avatar": + await ctx.send( + _( + "Failed. Remember that you can edit my avatar " + "up to two times a hour. The URL or attachment " + "must be a valid image in either JPG, PNG, GIF, or WEBP format." + ) + ) + else: + await ctx.send( + _( + "Failed. Remember that you can edit my banner " + "up to two times a hour. The URL or attachment " + "must be a valid image in either JPG, PNG, GIF, or WEBP format." + ) ) - ) except ValueError: - await ctx.send(_("JPG / PNG / GIF format only.")) + await ctx.send(_("JPG / PNG / GIF / WEBP format only.")) else: await ctx.send(_("Done.")) + @_set_bot.group(name="avatar", invoke_without_command=True) + @commands.is_owner() + async def _set_bot_avatar(self, ctx: commands.Context, url: str = None): + """Sets [botname]'s avatar + + Supports either an attachment or an image URL. + + **Examples:** + - `[p]set bot avatar` - With an image attachment, this will set the avatar. + - `[p]set bot avatar` - Without an attachment, this will show the command help. + - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url. + + **Arguments:** + - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment. + """ + await self._set_bot_image("avatar", ctx, url) + @_set_bot_avatar.command(name="remove", aliases=["clear"]) @commands.is_owner() async def _set_bot_avatar_remove(self, ctx: commands.Context): @@ -2910,6 +2930,36 @@ async def _set_bot_avatar_remove(self, ctx: commands.Context): await ctx.bot.user.edit(avatar=None) await ctx.send(_("Avatar removed.")) + @_set_bot.group(name="banner", invoke_without_command=True) + @commands.is_owner() + async def _set_bot_banner(self, ctx: commands.Context, url: str = None): + """Sets [botname]'s banner + + Supports either an attachment or an image URL. + + **Examples:** + - `[p]set bot banner` - With an image attachment, this will set the banner. + - `[p]set bot banner` - Without an attachment, this will show the command help. + - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url. + + **Arguments:** + - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment. + """ + await self._set_bot_image("banner", ctx, url) + + @_set_bot_banner.command(name="remove", aliases=["clear"]) + @commands.is_owner() + async def _set_bot_banner_remove(self, ctx: commands.Context): + """ + Removes [botname]'s banner. + + **Example:** + - `[p]set bot banner remove` + """ + async with ctx.typing(): + await ctx.bot.user.edit(banner=None) + await ctx.send(_("Banner removed.")) + @_set_bot.command(name="username", aliases=["name"]) @commands.is_owner() async def _set_bot_username(self, ctx: commands.Context, *, username: str): diff --git a/redbot/core/locales/ar-SA.po b/redbot/core/locales/ar-SA.po index ff25dd1b79d..c9bf6aedaf2 100644 --- a/redbot/core/locales/ar-SA.po +++ b/redbot/core/locales/ar-SA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -59,16 +59,17 @@ msgstr "" #: redbot/core/_cog_manager.py:416 msgid "The provided path appears to be a cog package, are you sure that this is the path that you want to add as a **cog path**?\n\n" "For example, in the following case, you should be adding the {path} as a **cog path**:\n" -msgstr "" +msgstr "المسار المُقدم يبدو كحزمة cog، هل أنت متأكد أن هذا هو المسار الذي تريد إضافته **كمسار cog**؟ \n\n" +"على سبيل المثال، في الحالة التالية، يجب عليك إضافة {path} **كمسار cog**." #: redbot/core/_cog_manager.py:423 msgid "\n" "Please consult the Cog Manager UI documentation, if you're unsure: " -msgstr "" +msgstr "يرجى الرجوع إلى واجهة المستخدم لمدير cog إذا كنت غير متأكد. " #: redbot/core/_cog_manager.py:429 msgid "Okay, the path will not be added." -msgstr "" +msgstr "حسنًا، لن يتم إضافة المسار." #: redbot/core/_cog_manager.py:438 msgid "Path successfully added." @@ -741,11 +742,11 @@ msgstr "لا يمكن دفع ثمن هذا الأمر في DM بدون بنك ع msgid "You need at least {cost} {currency} to use this command." msgstr "تحتاج على الأقل إلى {cost} {currency} لاستخدام هذا الأمر." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1388,14 +1389,14 @@ msgid "Embeds are now {} for this channel." msgstr "مضمن الآن {} لهذه القناة." #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "مفعّل" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "معطل" @@ -1538,8 +1539,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "انتهت مهلة الرد." @@ -2228,54 +2229,84 @@ msgstr "إعادة تعيين الوصف." msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "تم." + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." -msgstr "تم." - -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2288,28 +2319,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2320,15 +2351,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "أنت تفتقر إلى الصلاحيات لتغيير اسمي المستعار." -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2343,24 +2374,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "تم مسح سجل النظام." -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "تم تعيين النص المخصص." -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2376,7 +2407,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2389,15 +2420,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "تم مسح اللعبة." -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2410,15 +2441,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "تم مسح الإستماع." -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2431,15 +2462,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "تم مسح المشاهدة." -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2452,15 +2483,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2473,44 +2504,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "تغيرت الحالة إلى {}." -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2528,15 +2559,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "وهذا الدور هو بالفعل دور المدير." -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "وهذا الدور يعتبر الآن دور admin." -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2553,15 +2584,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "وهذا الرتبة هى بالفعل دور admin." -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "وهذا الدور يعتبر الآن دور mod." -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2573,15 +2604,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "وهذا الدور ليس رتبة admin في البداية." -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "وهذا الرتبة يعتبر الآن دور admin." -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2593,15 +2624,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "وهذا الدور ليس رتبة admin في البداية." -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "وهذا الرتبة يعتبر الآن دور mod." -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2619,7 +2650,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2636,21 +2667,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2667,15 +2698,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "تم تعيين الان." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2691,7 +2722,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2706,15 +2737,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2729,15 +2760,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2757,19 +2788,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "تم تعيين رمز API{service}." -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2779,19 +2810,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2802,20 +2833,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2823,7 +2854,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2835,7 +2866,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2846,7 +2877,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2858,7 +2889,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2870,7 +2901,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2879,15 +2910,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "لا توجد قنوات إضافية يتم إرسالها إليها." -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "قناة غير معروفة بالمعرفة: {id}" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2895,18 +2926,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2914,7 +2945,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2929,23 +2960,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "تم تعطيل حذف الأمر." -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "حذف تعيين التأخير إلى {num} ثانية." -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "بوت سيقوم بحذف رسائل الأوامر بعد {num} ثانية. قم بتعيين هذه القيمة إلى -1 لإيقاف حذف الرسائل" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "لن أحذف رسائل الأوامر." -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2956,19 +2987,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "يستخدم البوت {} لون التكوين الخاص به للتضمينات." -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "لن" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "سوف" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2980,11 +3011,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "تم البحث عن أمر غامض {} لهذا الخادم." -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2995,11 +3026,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "تم البحث عن أمر غامض {} لهذا الخادم." -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -3016,15 +3047,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "تم إعادة تعيين اللون." -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "تم تعيين اللون." -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -3039,33 +3070,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "تم الإلغاء." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "تم تعيين prefix." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3084,27 +3115,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3119,15 +3150,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3141,19 +3172,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3161,7 +3192,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3171,11 +3202,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3184,11 +3215,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3198,11 +3229,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3222,27 +3253,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "المساعدة لن تستخدم القوائم." -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3256,15 +3287,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "المساعدة ستقوم بتصفية الأوامر المخفية." -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3278,15 +3309,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3302,15 +3333,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3324,15 +3355,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "المساعدة سوف تظهر فقط للأوامر التي يمكن تشغيلها." -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "سوف تظهر المساعدة دون التحقق مما إذا كان يمكن تشغيل الأوامر." -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3348,15 +3379,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "المساعدة سوف تتحقق من وجود مواضيع المساعدة." -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "المساعدة سوف تتحقق فقط من وجود مواضيع المساعدة عبر مساعدة غامضة (إذا تم تفعيلها)." -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3371,15 +3402,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "يجب عليك إعطاء قيمة لا تقل عن 500 حرف." -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "تم. تم تعيين حد الحرف لكل صفحة إلى {}." -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3394,15 +3425,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "يجب أن تعطي قيمة صفر أو أكثر!" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "تم. تم تعيين الحد الأقصى للصفحة إلى {}." -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3419,19 +3450,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "لا يمكن أن يكون التأخير أطول من 14 يوماً!" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "تم. لن يتم حذف رسائل المساعدة الآن." -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "تم. تم تعيين تأخير الحذف إلى {} ثانية." -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3446,19 +3477,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3474,19 +3505,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "تم إعادة تعيين العلامة." -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "العلامة الخاصة بك طويلة جداً! الرجاء اختصارها بحيث لا يتجاوز طولها 2048 حرفاً." -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "تم إعادة تعيين العلامة." -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3497,43 +3528,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "معرف المستخدم: {}" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "عبر DM" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "من {}" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr " مُعرّف الخادم: {}" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "استخدم `{}dm {} للرد على هذا المستخدم" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "أرسلت من {} {}" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "لقد تم تكويني لعدم إرسال هذا في أي مكان." -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "تم إرسال رسالتك." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "أنا غير قادر على تسليم رسالتك. عذراً." -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3546,41 +3577,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "معرف غير صالح، المستخدم غير موجود، أو المستخدم هو بوت. يمكنك فقط إرسال رسائل إلى الأشخاص الذين أشاركهم الخادم معهم." -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "مالك هو {}" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "يمكنك الرد على هذه الرسالة باستخدام {}جهة اتصال" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "عذراً، لم أستطع تسليم رسالتك إلى {}" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "تم ارسال الرسالة إلى {}" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "يطبع مسار بيانات البوت." -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "مسار البيانات: {path}" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3595,19 +3626,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3616,7 +3647,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3628,15 +3659,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3645,21 +3676,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3672,15 +3703,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3690,11 +3721,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3702,7 +3733,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3714,19 +3745,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3735,15 +3766,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3755,15 +3786,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3772,11 +3803,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3785,7 +3816,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3798,19 +3829,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3819,19 +3850,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3845,19 +3876,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3867,11 +3898,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3879,7 +3910,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3892,27 +3923,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3921,15 +3952,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3942,15 +3973,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3960,16 +3991,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3983,15 +4014,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -4005,11 +4036,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4021,19 +4052,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4045,19 +4076,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4065,15 +4096,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4084,7 +4115,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4092,19 +4123,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "ليس هناك أي أوامر معطلة عالميا." -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "ليس هناك أي أوامر معطلة عالميا." -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "أمر واحد معطل عالمياً.\n" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4112,19 +4143,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "ليس هناك أي أوامر معطلة في {}." -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "{} الأوامر معطلة في {}.\n" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "تم تعطيل أمر واحد في {}.\n" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4138,7 +4169,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4150,19 +4181,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "الأمر لتعطيل لا يمكن أن يكون \"أمر\" أو أي من الأوامر الفرعية الخاصة به." -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "يتم تعيين هذا الأمر على أنه متاح دائمًا ولا يمكن تعطيله." -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "وهذا الأمر معطل بالفعل على الصعيد العالمي." -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4174,15 +4205,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "غير مسموح لك بتعطيل هذا الأمر." -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "هذا الأمر معطل بالفعل في هذا الخادم." -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4195,7 +4226,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4207,11 +4238,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "وقد تم بالفعل تمكين هذه القيادة على الصعيد العالمي." -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4223,15 +4254,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "غير مسموح لك بتمكين هذا الأمر." -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "هذا الأمر مفعل بالفعل في هذا السيرفر." -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4245,7 +4276,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4253,7 +4284,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4262,19 +4293,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "الأدوار المناعية من إجراءات الاعتدال الآلية:\n" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "الأعضاء المناصرين من إجراءات الاعتدال الآلية:\n" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4286,11 +4317,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "تمت الإضافة بالفعل." -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4302,11 +4333,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "ليس في القائمة." -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4318,15 +4349,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4335,7 +4366,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4344,7 +4375,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4360,15 +4391,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4378,20 +4409,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4406,15 +4437,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4423,30 +4454,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "لاشيء" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4704,3 +4735,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/bg-BG.po b/redbot/core/locales/bg-BG.po index a7ec8d841df..aaff216d396 100644 --- a/redbot/core/locales/bg-BG.po +++ b/redbot/core/locales/bg-BG.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "MIME-Version: 1.0\n" @@ -748,11 +748,11 @@ msgstr "" msgid "You need at least {cost} {currency} to use this command." msgstr "" -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1354,14 +1354,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "" @@ -1504,8 +1504,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "" @@ -2174,54 +2174,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "Завършено." + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." -msgstr "Завършено." - -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2234,28 +2264,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2266,15 +2296,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "Нямам правомощието да променя псевдонима си." -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2289,24 +2319,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2322,7 +2352,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2335,15 +2365,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2356,15 +2386,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2377,15 +2407,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2398,15 +2428,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2419,44 +2449,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "" -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2474,15 +2504,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2499,15 +2529,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2519,15 +2549,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2539,15 +2569,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2565,7 +2595,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2582,21 +2612,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2613,15 +2643,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "Локализирането е настроено." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2637,7 +2667,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2652,15 +2682,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2675,15 +2705,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2703,19 +2733,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2725,19 +2755,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2748,20 +2778,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2769,7 +2799,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2781,7 +2811,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2792,7 +2822,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2804,7 +2834,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2816,7 +2846,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2825,15 +2855,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2841,18 +2871,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2860,7 +2890,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2875,23 +2905,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2902,19 +2932,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2926,11 +2956,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2941,11 +2971,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2962,15 +2992,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "" -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "" -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -2985,33 +3015,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "" -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "Префиксът е зададен." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3030,27 +3060,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3065,15 +3095,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3087,19 +3117,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3107,7 +3137,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3117,11 +3147,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3130,11 +3160,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3144,11 +3174,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3168,27 +3198,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3202,15 +3232,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3224,15 +3254,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3248,15 +3278,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3270,15 +3300,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3294,15 +3324,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3317,15 +3347,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3340,15 +3370,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3365,19 +3395,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3392,19 +3422,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3420,19 +3450,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3443,43 +3473,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "чрез ЛС" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "от {}" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr "" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "Използвайте `{} dm {} `, за да отговорите на този потребител" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "Изпратено от {} {}" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "Вашето съобщение е изпратено." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "Аз не съм в състояние да доставя Вашето съобщение. Съжалявам." -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3492,41 +3522,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3541,19 +3571,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3562,7 +3592,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3574,15 +3604,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3591,21 +3621,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3618,15 +3648,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3636,11 +3666,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3648,7 +3678,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3660,19 +3690,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3681,15 +3711,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3701,15 +3731,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3718,11 +3748,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3731,7 +3761,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3744,19 +3774,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3765,19 +3795,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3791,19 +3821,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3813,11 +3843,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3825,7 +3855,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3838,27 +3868,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3867,15 +3897,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3888,15 +3918,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3906,16 +3936,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3929,15 +3959,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3951,11 +3981,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3967,19 +3997,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3991,19 +4021,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4011,15 +4041,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4030,7 +4060,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4038,19 +4068,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4058,19 +4088,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4084,7 +4114,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4096,19 +4126,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4120,15 +4150,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4141,7 +4171,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4153,11 +4183,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4169,15 +4199,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4191,7 +4221,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4199,7 +4229,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4208,19 +4238,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4232,11 +4262,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4248,11 +4278,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4264,15 +4294,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4281,7 +4311,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4290,7 +4320,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4306,15 +4336,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4324,20 +4354,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4352,15 +4382,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4369,30 +4399,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "Няма" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4650,3 +4680,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/cs-CZ.po b/redbot/core/locales/cs-CZ.po index 841ce45a2d1..d5b4e51872c 100644 --- a/redbot/core/locales/cs-CZ.po +++ b/redbot/core/locales/cs-CZ.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" @@ -754,11 +754,11 @@ msgstr "Nelze zaplatit za tento příkaz v DM bez globální banky." msgid "You need at least {cost} {currency} to use this command." msgstr "Potřebujete alespoň {cost} {currency} k použití tohoto příkazu." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1375,14 +1375,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "povoleno" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "zakázáno" @@ -1525,8 +1525,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "Vypršel časový limit odpovědi." @@ -2202,54 +2202,84 @@ msgstr "Popis obnoven." msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "Hotovo." + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." -msgstr "Hotovo." - -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2262,28 +2292,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2294,15 +2324,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "Nemám oprávnění ke změně své přezdívky." -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2317,24 +2347,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "Vlastní text byl vymazán." -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "Vlastní text byl nastaven." -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2350,7 +2380,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2363,15 +2393,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2384,15 +2414,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2405,15 +2435,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2426,15 +2456,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2447,44 +2477,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "Stav změněn na {}." -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2502,15 +2532,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "Tato role je již administrátorskou rolí." -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2527,15 +2557,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "Tato role je již moderátorská role." -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "Tato role je nyní považována za moderátorskou roli." -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2547,15 +2577,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "Tato role již není považována za administrátorskou roli." -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2567,15 +2597,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "Tato role již není považována za administrátorskou roli." -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2593,7 +2623,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2610,21 +2640,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2641,15 +2671,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "Jazyk byl nastaven." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2665,7 +2695,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2680,15 +2710,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2703,15 +2733,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2731,19 +2761,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "`{service} API tokeny byly nastaveny." -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2753,19 +2783,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2776,20 +2806,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2797,7 +2827,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2809,7 +2839,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2820,7 +2850,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2832,7 +2862,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2844,7 +2874,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2853,15 +2883,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "Neznámý kanál s id: {id}" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2869,18 +2899,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2888,7 +2918,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2903,23 +2933,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2930,19 +2960,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "nebude" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "bude" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2954,11 +2984,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2969,11 +2999,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2990,15 +3020,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "Barva byla resetována." -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "Barva byla nastavena." -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -3013,33 +3043,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "Zrušeno." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "Prefix příkazů nastaven." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3058,27 +3088,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3093,15 +3123,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3115,19 +3145,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3135,7 +3165,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3145,11 +3175,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3158,11 +3188,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3172,11 +3202,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3196,27 +3226,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "Help nebude používat stránkovaná menu." -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3230,15 +3260,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "Pomoc bude filtrovat skryté příkazy." -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3252,15 +3282,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3276,15 +3306,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3298,15 +3328,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3322,15 +3352,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3345,15 +3375,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "Hotovo. Limit znaků na stránku byl nastaven na {}." -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3368,15 +3398,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3393,19 +3423,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3420,19 +3450,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3448,19 +3478,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3471,43 +3501,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "ID uživatele: {}" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "prostřednictvím DM" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "od {}" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr " | ID serveru: {}" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "Použijte `{}dm {} ` pro odpověď tomuto uživateli" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "Odesláno od {} {}" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "Byl jsem nakonfigurován, abych ho nikam neodeslal." -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "Vaše zpráva byla odeslána." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "Nemohu doručit vaši zprávu. Omlouváme se." -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3520,41 +3550,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "Vlastník {}" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "Na tuto zprávu můžete odpovědět {}contact" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "Omlouvám se, ale nepodařilo se mi doručit vaši zprávu na {}" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "Zpráva byla doručena uživateli {}" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "Vypíše datovou cestu bota." -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "Cesta k datům: {path}" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3569,19 +3599,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3590,7 +3620,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3602,15 +3632,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3619,21 +3649,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3646,15 +3676,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3664,11 +3694,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3676,7 +3706,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3688,19 +3718,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3709,15 +3739,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3729,15 +3759,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3746,11 +3776,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3759,7 +3789,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3772,19 +3802,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3793,19 +3823,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3819,19 +3849,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3841,11 +3871,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3853,7 +3883,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3866,27 +3896,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3895,15 +3925,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3916,15 +3946,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3934,16 +3964,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3957,15 +3987,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3979,11 +4009,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3995,19 +4025,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4019,19 +4049,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4039,15 +4069,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4058,7 +4088,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4066,19 +4096,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4086,19 +4116,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4112,7 +4142,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4124,19 +4154,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "Tento příkaz je již globálně vypnutý." -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4148,15 +4178,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "Nemáš dovoleno tento příkaz zakázat." -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4169,7 +4199,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4181,11 +4211,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4197,15 +4227,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4219,7 +4249,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4227,7 +4257,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4236,19 +4266,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4260,11 +4290,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "Již přidáno." -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4276,11 +4306,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "Není v seznamu." -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4292,15 +4322,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4309,7 +4339,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4318,7 +4348,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4334,15 +4364,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "Kanál přidán do seznamu ignorovaných." -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "Kanál je již v seznamu ignorovaný." -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4352,20 +4382,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "Tento server byl přidán do ignorovaného seznamu." -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "Tento server je již ignorován." -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4380,15 +4410,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "Kanál byl odebrán ze seznamu ignorovaných." -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "Tento kanál není v seznamu ignorovaných." -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4397,30 +4427,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "Tento server byl odebrán z ignorovaného seznamu." -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "Tento server není v seznamu ignorovaných." -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "Žádný" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4616,7 +4646,7 @@ msgstr "" #: redbot/core/modlog.py:499 redbot/core/modlog.py:527 msgid "Reason:" -msgstr "" +msgstr "Důvod:" #: redbot/core/modlog.py:513 msgid "Moderator" @@ -4678,3 +4708,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/da-DK.po b/redbot/core/locales/da-DK.po index 1733adaebe3..b10eb4d5582 100644 --- a/redbot/core/locales/da-DK.po +++ b/redbot/core/locales/da-DK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Danish\n" "MIME-Version: 1.0\n" @@ -741,11 +741,11 @@ msgstr "Kan ikke betale for denne kommando i PB uden en global bank." msgid "You need at least {cost} {currency} to use this command." msgstr "Du skal bruge mindst {cost} {currency} for at bruge denne kommando." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1349,14 +1349,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "aktiveret" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "deaktiveret" @@ -1499,8 +1499,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "" @@ -2169,54 +2169,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "Færdig." + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." -msgstr "Færdig." - -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2229,28 +2259,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2261,15 +2291,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "" -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2284,24 +2314,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2317,7 +2347,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2330,15 +2360,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2351,15 +2381,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2372,15 +2402,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2393,15 +2423,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2414,44 +2444,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "" -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2469,15 +2499,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2494,15 +2524,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2514,15 +2544,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2534,15 +2564,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2560,7 +2590,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2577,21 +2607,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2608,15 +2638,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "" -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2632,7 +2662,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2647,15 +2677,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2670,15 +2700,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2698,19 +2728,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2720,19 +2750,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2743,20 +2773,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2764,7 +2794,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2776,7 +2806,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2787,7 +2817,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2799,7 +2829,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2811,7 +2841,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2820,15 +2850,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2836,18 +2866,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2855,7 +2885,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2870,23 +2900,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2897,19 +2927,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2921,11 +2951,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2936,11 +2966,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2957,15 +2987,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "" -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "" -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -2980,33 +3010,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "" -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "" -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3025,27 +3055,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3060,15 +3090,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3082,19 +3112,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3102,7 +3132,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3112,11 +3142,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3125,11 +3155,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3139,11 +3169,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3163,27 +3193,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3197,15 +3227,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3219,15 +3249,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3243,15 +3273,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3265,15 +3295,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3289,15 +3319,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3312,15 +3342,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3335,15 +3365,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3360,19 +3390,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3387,19 +3417,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3415,19 +3445,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3438,43 +3468,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr "" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "" -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "" -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3487,41 +3517,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3536,19 +3566,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3557,7 +3587,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3569,15 +3599,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3586,21 +3616,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3613,15 +3643,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3631,11 +3661,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3643,7 +3673,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3655,19 +3685,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3676,15 +3706,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3696,15 +3726,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3713,11 +3743,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3726,7 +3756,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3739,19 +3769,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3760,19 +3790,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3786,19 +3816,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3808,11 +3838,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3820,7 +3850,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3833,27 +3863,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3862,15 +3892,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3883,15 +3913,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3901,16 +3931,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3924,15 +3954,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3946,11 +3976,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3962,19 +3992,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3986,19 +4016,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4006,15 +4036,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4025,7 +4055,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4033,19 +4063,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4053,19 +4083,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4079,7 +4109,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4091,19 +4121,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4115,15 +4145,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4136,7 +4166,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4148,11 +4178,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4164,15 +4194,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4186,7 +4216,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4194,7 +4224,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4203,19 +4233,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4227,11 +4257,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4243,11 +4273,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4259,15 +4289,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4276,7 +4306,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4285,7 +4315,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4301,15 +4331,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4319,20 +4349,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4347,15 +4377,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4364,30 +4394,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4645,3 +4675,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/de-DE.po b/redbot/core/locales/de-DE.po index 2382fe14ec5..1f8bf903302 100644 --- a/redbot/core/locales/de-DE.po +++ b/redbot/core/locales/de-DE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -771,11 +771,11 @@ msgstr "Dieser Befehl kann ohne eine globale Bank nicht in den Direktnachrichten msgid "You need at least {cost} {currency} to use this command." msgstr "Sie benötigen mindestens {cost} {currency} um diesen Befehl zu verwenden." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "Es bleibt noch eine Nachricht übrig. Geben Sie {command_1} ein, um fortzufahren oder {command_2}, um alle Inhalte als Datei hochzuladen." -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "Es bleiben noch {count} Nachrichten. Geben Sie {command_1} ein, um fortzufahren oder {command_2}, um alle Inhalte als Datei hochzuladen." @@ -1479,14 +1479,14 @@ msgid "Embeds are now {} for this channel." msgstr "Einbettungen für diesen Discord Server sind jetzt {}." #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "aktiviert" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "deaktiviert" @@ -1629,8 +1629,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "Ich kann den Server `{server_name}` nicht verlassen: Ich bin der Besitzer von ihm." -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "Antwortzeitlimit erreicht." @@ -2402,41 +2402,45 @@ msgstr "Beschreibung zurückgesetzt." msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 -#, docstring -msgid "Sets [botname]'s avatar\n\n" -" Supports either an attachment or an image URL.\n\n" -" **Examples:**\n" -" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" -" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" -" **Arguments:**\n" -" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" -" " -msgstr "" - -#: redbot/core/core_commands.py:2877 +#: redbot/core/core_commands.py:2868 msgid "That URL is invalid." msgstr "Diese URL ist ungültig." -#: redbot/core/core_commands.py:2879 +#: redbot/core/core_commands.py:2870 msgid "Something went wrong while trying to get the image." msgstr "Beim Abrufen des Bilds ist etwas schiefgegangen." -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 msgid "Done." msgstr "Erledigt." -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2906 +#, docstring +msgid "Sets [botname]'s avatar\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" +" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2923 #, docstring msgid "\n" " Removes [botname]'s avatar.\n\n" @@ -2445,11 +2449,37 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 +#: redbot/core/core_commands.py:2931 msgid "Avatar removed." msgstr "Profilbild entfernt." -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2953 +#, docstring +msgid "\n" +" Removes [botname]'s banner.\n\n" +" **Example:**\n" +" - `[p]set bot banner remove`\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." +msgstr "" + +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2462,28 +2492,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2494,15 +2524,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "Mir fehlen die Berechtigungen zum Ändern meines eigenen Spitznamen." -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2517,24 +2547,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "Der benutzerdefinierte Text wurde gelöscht." -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "Der benutzerdefinierte Text wurde festgelegt." -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "Text muss weniger als 1024 Zeichen lang sein." -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2550,7 +2580,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2563,15 +2593,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "Spiel-Status entfernt." -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2584,15 +2614,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "``Hört``-Status gelöscht." -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2605,15 +2635,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "``Schaut``-Status entfernt." -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2626,15 +2656,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "Teilnahme gelöscht." -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2647,44 +2677,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "Status zu {} geändert." -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2702,15 +2732,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "Diese Rolle ist bereits eine Admin-Rolle." -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "Diese Rolle wird nun als Admin-Rolle angesehen." -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2727,15 +2757,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "Diese Rolle ist bereits eine mod Rolle." -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "Diese Rolle wird jetzt als eine Mod Rolle betrachtet." -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2747,15 +2777,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "Diese Rolle war keine Admin-Rolle, mit der man anfangen sollte." -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "Diese Rolle wird nicht mehr als Admin-Rolle angesehen." -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2767,15 +2797,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "Diese Rolle war keine Mod-Rolle, mit der man anfangen sollte." -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "Diese Rolle wird nicht mehr als Mod-Rolle betrachtet." -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2793,7 +2823,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2810,21 +2840,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "Ungültiger Sprachcode. Verwende das Format: `en-US`" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "Ungültiges Format - Sprachcode muss Ländercode enthalten, z.B. `en-US`" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "Globale Sprache wurde eingestellt." -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2841,15 +2871,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "Sprache wurde auf standard gestellt." -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "Sprache wurde geändert." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2865,7 +2895,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2880,15 +2910,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2903,15 +2933,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "Regionale Formatierung wird nun auf der Sprache `{language_code}` basieren." -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2931,19 +2961,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "`{service}` API-Token wurden gesetzt." -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2958,19 +2988,19 @@ msgstr "\n" " - `[p]set api list`\n" " " -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "Bisher wurden keine API-Dienste eingerichtet." -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "API-Dienste festlegen:\n" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "API-Dienst festlegen:\n" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2987,21 +3017,21 @@ msgstr "\n" " **Argumente:**\n" " - `` -Dienste, welche entfernt werden sollen." -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "Dienste erfolgreich gelöscht:\n" "{services_list}" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "Dienst erfolgreich gelöscht: {service_name}" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "Keinem der angegebenen Dienste wurden Schlüssel zugewiesen." -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -3012,7 +3042,7 @@ msgstr "\n" " Zu den Eigentümerbenachrichtigungen gehören die Verwendung von [p]contact und verfügbaren Red-Updates.\n" " " -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -3030,7 +3060,7 @@ msgstr "\n" " - `[p] set ownernotifications optin `\n" " " -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -3046,7 +3076,7 @@ msgstr "\n" " - `[p]set ownernotifications optout`\n" " " -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -3065,7 +3095,7 @@ msgstr "\n" " - `` - Der Kanal, an den die Besitzerbenachrichtigungen gesendet werden.\n" " " -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -3084,7 +3114,7 @@ msgstr "\n" " - `` - Der Kanal, an dem keine Benachrichtigungen mehr gesendet werden.\n" " " -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -3097,15 +3127,15 @@ msgstr "\n" " - `[p]set ownernotifications listdestinations`\n" " " -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "Es werden keine zusätzlichen Kanäle gesendet." -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "Unbekannter Kanal mit Id: {id}" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -3116,11 +3146,11 @@ msgstr "\n" " Akzeptiert optionalen Serverparameter um das Prefix Recovery zu ermöglichen.\n" " " -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "Nicht festgelegt." -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" @@ -3130,7 +3160,7 @@ msgstr "Admin Rollen: {admin}\n" "Gebietsschema: {guild_locale}\n" "Regionales Format: {guild_regional_format}\n" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -3142,7 +3172,7 @@ msgstr "{bot_name} Einstellungen:\n\n" "Globales Regionalformat: {regional_format}\n" "Standardfarbe: {colour}" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -3167,23 +3197,23 @@ msgstr "Setze die Verzögerung, bis der Bot die Befehlsmeldung entfernt hat.\n\n " - `[time]` - Die Sekunden, die gewartet werden, bevor die Befehlsmeldung gelöscht wird. Benutze -1 zum Deaktivieren.\n" " " -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "Löschen von Befehlen deaktiviert." -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "Löschverzögerung auf {num} Sekunden eingestellt." -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "Der Bot wird Nachrichten die einen Befehl enthalten nach {num} Sekunden löschen. Setze diesen Wert auf -1, um das Löschen von Nachrichten zu stoppen" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "Ich werde keine Nachrichten die Befehle enthalten löschen." -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -3199,19 +3229,19 @@ msgstr "\n" " - `[p]set usebotcolour`\n" " " -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "Der Bot {} verwendet seine eingestellten Farben für Einbettungen." -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "wird nicht" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "wird" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -3230,11 +3260,11 @@ msgstr "\n" " - `[p]set serverfuzzy`\n" " " -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "Ungenaue Befehlssuche wurde für diesen Server {}." -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -3251,11 +3281,11 @@ msgstr "\n" " - `[p]set fuzzy`\n" " " -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "Ungenaue Befehlssuche wurde für Direktnachrichten {}." -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -3284,15 +3314,15 @@ msgstr "\n" " - `[colour]` - Die Farbe, die für Embeds verwendet werden soll. Lassen Sie dieses Feld leer, um den Standardwert (rot) festzulegen.\n" " " -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "Die Farbe wurde zurückgesetzt." -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "Die Farbe wurde eingestellt." -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -3317,34 +3347,34 @@ msgstr "Legt die globalen Präfix(e) für [botname] fest.\n\n" " - `` - Die Präfixe, auf die der Bot global reagieren wird.\n" " " -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "Präfixe können nicht mit '/' beginnen, da sie mit Discords slash Befehlen kollidieren." -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "Abgebrochen." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "Warnung: Ein Präfix ist über der empfohlenen Länge (25 Zeichen).\n" "Möchten Sie fortfahren?" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "Der Präfix wurde festgelegt." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "Präfixe gesetzt." -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3377,27 +3407,27 @@ msgstr "\n" " - `[prefixes...]` - Die Präfixe, auf die der Bot in diesem Server reagieren wird. Lassen Sie das Feld leer, um Server-Präfixe zu löschen.\n" " " -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "Server-Präfixe wurden zurückgesetzt." -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3412,15 +3442,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3434,19 +3464,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3454,7 +3484,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3464,11 +3494,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "Warnung: Der Standard-Formatierer ist nicht in Verwendung, diese Einstellung treten möglicherweise nicht ein." -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3477,11 +3507,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3491,11 +3521,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3515,27 +3545,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "Die Hilfe verwendet keine Menüs." -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3549,15 +3579,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "Die Hilfe wird keine versteckten Befehle filtern." -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "Hilfe filtert versteckte Befehle." -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3571,15 +3601,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3595,15 +3625,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3617,15 +3647,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "Hilfe wird nur für Befehle angezeigt, die ausgeführt werden können." -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "Hilfe wird angezeigt, ohne zu überprüfen, ob die Befehle ausgeführt werden können." -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3641,15 +3671,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "Die Hilfe überprüft, ob Hilfethemen vorhanden sind." -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "Die Hilfe überprüft das Vorhandensein von Hilfethemen nur über die Fuzzy-Hilfe (falls aktiviert)." -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3664,15 +3694,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "Du musst einen Wert von mindestens 500 Zeichen eingeben." -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "Erledigt. Das Zeichenlimit pro Seite wurde auf {} gesetzt." -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3687,15 +3717,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "Du musst einen Wert von 0 oder mehr angeben!" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "Erledigt. Das Seitenlimit wurde auf {} gesetzt." -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3712,19 +3742,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "Die Verzögerung darf nicht länger als 14 Tage sein!" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "Fertig. Hilfe-Nachrichten werden jetzt nicht gelöscht." -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "Fertig. Die Löschverzögerung wurde auf {} Sekunden gesetzt." -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3739,19 +3769,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3767,19 +3797,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "Der Slogan wurde zurückgesetzt." -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "Dein Slogan ist zu lang! Bitte kürze diesen damit er nicht länger als 2048 Zeichen ist." -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "Das Schlagwort wurde gesetzt." -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3790,43 +3820,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "User ID: {}" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "über DM" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "von {}" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr " | Server ID: {}" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "Nutze `{}dm {} ` um dem Benutzer zu antworten" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "Gesendet von {} {}" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "Ich wurde konfiguriert, das nirgendwo zu senden." -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "Deine Nachricht wurde gesendet." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "Ich bin nicht in der Lage, deine Nachricht zu überbringen. Tut mir Leid." -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3839,41 +3869,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "Ungültige ID, Benutzer nicht gefunden oder Benutzer ist ein Bot. Du kannst nur Nachrichten an Personen senden, mit denen ich einen Server teile." -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "Inhaber von {}" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "Du kannst auf diese Nachricht mit {}contact antworten" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "Die Nachricht konnte leider nicht an {} gesendet werden." -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "Nachricht an {} zugestellt." -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "Druckt den Bot-Datenpfad." -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "Datenpfad: {path}" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "Zeigt nützliche Informationen zum Debuggen an." -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3888,19 +3918,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3909,7 +3939,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3921,15 +3951,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3938,21 +3968,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "Benutzer auf der Erlaubnis-Liste:" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "Benutzer auf der Erlaubnis-Liste:" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "Unbekannter oder gelöschter Benutzer" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3965,15 +3995,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "Benutzer wurden von der Erlaubnis-Liste entfernt." -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "Der Benutzer wurde von der Erlaubnis-Liste entfernt." -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3983,11 +4013,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3995,7 +4025,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -4007,19 +4037,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -4028,15 +4058,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -4048,15 +4078,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -4065,11 +4095,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -4078,7 +4108,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -4091,19 +4121,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "Ich kann dir nicht erlauben dies zu tun, da dies verhindern würde das du Befehle ausführen kannst. Bitte stelle zuerst sicher dich selbst zur Erlaubnis-Liste hinzugefügt zu haben." -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -4112,19 +4142,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -4138,19 +4168,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "Ich kann dir nicht erlauben dies zu tun, da dies verhindern würde das du Befehle ausführen kannst." -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -4160,11 +4190,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "Server Erlaubnis-Liste wurde geleert." -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -4172,7 +4202,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -4185,27 +4215,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "Du kannst dich nicht selbst zur Blockier-Liste hinzufügen!" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "Du kannst den Gildenbesitzer nicht der Blockier-Liste hinzufügen!" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "Du kannst den Bot-Besitzer nicht zur Blockier-Liste hinzufügen!" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -4214,15 +4244,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -4235,15 +4265,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -4253,16 +4283,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "Blockier-Liste des Servers wurde geleert." -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -4276,15 +4306,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "Du kannst dieses Cog standardmässig nicht deaktivieren." -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "{cogname} wurde standardmässig auf deaktiviert gestellt." -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -4298,11 +4328,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "{cogname} wurde standardmässig auf aktiviert gestellt." -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4314,19 +4344,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "Du kannst dieses Cog nicht deaktivieren, sonst würdest du dich selbst aussperren." -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "{cogname} wurde auf diesem Server deaktiviert." -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "{cogname} wurde bereits deaktiviert (nichts zu tun)." -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4338,19 +4368,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "{cogname} wurde auf diesem Server aktiviert." -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "{cogname} wurde nicht deaktiviert (nichts zu tun)." -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4358,15 +4388,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "Die folgenden Cogs sind auf diesem Server deaktiviert:\n" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "Es existieren keine deaktivierten Cogs auf diesem Server." -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4377,7 +4407,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4385,19 +4415,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "Es gibt keine global deaktivierten Befehle." -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "{} Befehle sind global deaktiviert.\n" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "1 Befehl ist global deaktiviert.\n" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4405,19 +4435,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "Es gibt in {} keine deaktivierten Befehle." -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "{} Befehle sind in {} deaktiviert.\n" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "Ein Befehl ist in {} deaktiviert.\n" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4431,7 +4461,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4443,19 +4473,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "Der zu deaktivierende Befehl kann nicht `command` oder eine seiner Unterbefehle sein." -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "Diser Befehl soll immer verfügbar sein und kann nicht deaktiviert werden." -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "Dieser Befehl ist bereits global deaktiviert." -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4467,15 +4497,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "Du darfst diesen Befehl nicht deaktivieren." -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "Dieser Befehl ist bereits auf diesem Server deaktiviert." -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4488,7 +4518,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4500,11 +4530,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "Dieser Befehl ist bereits global aktiviert." -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4516,15 +4546,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "Du darfst diesen Befehl nicht aktivieren." -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "Dieser Befehl ist bereits auf diesem Server aktiviert." -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4538,7 +4568,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4546,7 +4576,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4555,19 +4585,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "Rollen, die gegen automatische Moderationsmaßnahmen immun sind:\n" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "Mitglieder, die gegen automatische Moderationsmaßnahmen immun sind:\n" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "Keine Immunität-Einstellungen vorhanden." -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4579,11 +4609,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "Bereits vorhanden." -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4595,11 +4625,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "Nicht in der Liste." -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4611,15 +4641,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "Sie sind immun." -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "Sie sind nicht immun." -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4628,7 +4658,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4637,7 +4667,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4653,15 +4683,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "Kanal zur ignorierten Liste hinzugefügt." -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "Kanal ist bereits in der ignorierten Liste." -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4671,20 +4701,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "Der Server wurde zur ignorierten Liste hinzugefügt." -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "Der Server wird bereits ignoriert." -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4699,15 +4729,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "Kanal von der ignorierten Liste entfernt." -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "Der Kanal ist nicht auf der ignorierten Liste." -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4716,30 +4746,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "Der Server wurde von der ignorierten Liste entfernt." -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "Der Server ist nicht auf der ignorierten Liste." -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "Der Server wird aktuell ignoriert." -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "Keine" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -5000,3 +5030,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/es-ES.po b/redbot/core/locales/es-ES.po index 12bb1f41b8a..3bc1f456b4c 100644 --- a/redbot/core/locales/es-ES.po +++ b/redbot/core/locales/es-ES.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -772,11 +772,11 @@ msgstr "No se puede pagar con este comando en DM sin un banco global." msgid "You need at least {cost} {currency} to use this command." msgstr "Necesitas al menos {cost} {currency} para usar este comando." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "Todavía queda un mensaje. Escribe {command_1} para continuar o {command_2} para subir todos los contenidos como archivos." -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "Quedan {count} mensajes pendientes. Escriba {command_1} para continuar o {command_2} para subir todos los contenidos como archivos." @@ -1510,14 +1510,14 @@ msgid "Embeds are now {} for this channel." msgstr "Los textos incrustados ahora son {} para este canal." #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "activado" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "desactivado" @@ -1664,8 +1664,8 @@ msgstr "¿Estás seguro de que quieres que abandone este servidor?" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "No puedo dejar el servidor `{server_name}`: Soy el dueño de él." -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "No hay respuesta; se ha agotado el tiempo de espera" @@ -2433,41 +2433,45 @@ msgstr "Descripción reiniciada." msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "Esta descripción es demasiado larga para mostrarla correctamente. Por favor, inténtalo de nuevo con menos de 250 caracteres." -#: redbot/core/core_commands.py:2854 -#, docstring -msgid "Sets [botname]'s avatar\n\n" -" Supports either an attachment or an image URL.\n\n" -" **Examples:**\n" -" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" -" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" -" **Arguments:**\n" -" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" -" " -msgstr "" - -#: redbot/core/core_commands.py:2877 +#: redbot/core/core_commands.py:2868 msgid "That URL is invalid." msgstr "Esa URL no es válida." -#: redbot/core/core_commands.py:2879 +#: redbot/core/core_commands.py:2870 msgid "Something went wrong while trying to get the image." msgstr "Algo salió mal al intentar obtener la imagen." -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 msgid "Done." msgstr "Listo." -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2906 +#, docstring +msgid "Sets [botname]'s avatar\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" +" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2923 #, docstring msgid "\n" " Removes [botname]'s avatar.\n\n" @@ -2476,11 +2480,37 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 +#: redbot/core/core_commands.py:2931 msgid "Avatar removed." msgstr "Avatar eliminado." -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2953 +#, docstring +msgid "\n" +" Removes [botname]'s banner.\n\n" +" **Example:**\n" +" - `[p]set bot banner remove`\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." +msgstr "" + +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2493,29 +2523,29 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "El nombre de usuario de un bot verificado no se puede cambiar manualmente. Por favor, contacta con el soporte de Discord para cambiarlo." -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "No se pudo cambiar el nombre. Debe tener 32 caracteres o menos." -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "Tiempo para cambiar el nombre acabado. Recuerda que sólo puedes hacerlo hasta 2 veces por hora. Usa apodos si necesitas cambios frecuentes: {command}" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "Error al cambiar el nombre de usuario. Discord devolvió el siguiente error:\n" "{error_message}" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "Ocurrió un error inesperado al intentar cambiar el nombre de usuario." -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2526,15 +2556,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "No se pudo cambiar el apodo. Debe tener 32 caracteres o menos." -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "No tengo permisos para cambiar mi propio apodo." -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2549,24 +2579,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "El texto personalizado ha sido borrado." -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "Se ha establecido el texto personalizado." -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "El texto debe tener menos de 1024 caracteres." -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "Comandos para establecer el estado de [botname]." -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2582,7 +2612,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2595,15 +2625,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "Estado establecido a `Jugando {game.name}`." -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "Juego quitado." -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2616,15 +2646,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "Estado establecido a `Escuchando a {listening}`." -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "Estado de escucha quitado." -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2637,15 +2667,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "Estado establecido a `Viendo {watching}`." -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "Estado de visualización quitado." -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2658,15 +2688,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "Estado establecido a `Compitiendo en {competing}`." -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "Estado de competición eliminado." -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2679,44 +2709,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "Estado personalizado establecido a `{text}`." -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "Estado personalizado borrado." -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "Estado cambiado a {}." -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "Establece el estado de [botname] como en linea." -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "Establece el estado de [botname] como no molestar." -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "Establece el estado de [botname] como inactivo." -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "Establece el estado de [botname] como invisible." -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "Establece los roles de administrador y moderador del servidor para [botname]." -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2747,15 +2777,15 @@ msgstr "\n" " - `` - El rol a agregar como administrador.\n" " " -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "`{item}`ya es un rol de administrador." -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "Ese rol ahora se considera un rol de administrador." -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2772,15 +2802,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "Este rol ya es un rol de mod." -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "Ese rol se considera ahora un rol de mod." -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2792,15 +2822,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "Ese rol no era un rol de administrador para empezar." -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "Ese rol ya no se considera un rol de administrador." -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2812,15 +2842,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "Ese rol no era un rol de mod para empezar." -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "Ese rol ya no se considera un rol de mod." -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2838,7 +2868,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2855,21 +2885,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "Código de idioma no válido. Usa el formato: `en-US`" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "Formato no válido - el código de idioma debe incluir el código del país, por ejemplo, `en-US`" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "Se ha establecido un idioma global." -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2886,15 +2916,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "El idioma se ha establecido en el valor predeterminado." -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "Configuración regional establecida." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2910,7 +2940,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2925,15 +2955,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "El formato regional global ahora se basará en el idioma del bot." -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "El formato regional global ahora se basará en el idioma `{language_code}`." -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2948,15 +2978,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "El formato regional ahora se basará en la localización del bot en este servidor." -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "El formato regional ahora se basará en el idioma `{language_code}`." -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2976,19 +3006,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "Haga clic en el botón de abajo para establecer tus llaves." -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "El mensaje de configuración de claves API ha expirado." -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "`{service}` Los tokens de la API han sido establecidos." -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2998,19 +3028,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "Aún no se han establecido servicios de API." -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "Establecer servicios API:\n" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "Establecer servicio API:\n" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -3021,21 +3051,21 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "Servicios eliminados con éxito:\n" "{services_list}" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "Servicio eliminado con éxito: {service_name}" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "Ninguno de los servicios proporcionados tenía claves establecidas." -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -3046,7 +3076,7 @@ msgstr "\n" " Las notificaciones del dueño incluyen el uso de `[p]contact y actualizaciones disponibles de Red.\n" " " -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -3058,7 +3088,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -3069,7 +3099,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -3081,7 +3111,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -3093,7 +3123,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -3102,15 +3132,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "No se ha enviado a canales adicionales." -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "Canal desconocido con id: {id}" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -3121,11 +3151,11 @@ msgstr "\n" " Acepta el parámetro opcional del servidor para permitir la recuperación del prefijo.\n" " " -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "No establecido." -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" @@ -3135,7 +3165,7 @@ msgstr "Roles de Admin: {admin}\n" "Idioma: {guild_locale}\n" "Formato regional: {guild_regional_format}\n" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -3147,7 +3177,7 @@ msgstr "Configuración de {bot_name}:\n\n" "Formato regional global: {regional_format}\n" "Color de los embed predeterminado: {colour}" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -3162,23 +3192,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "Eliminación de comandos desactivada." -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "Eliminar el retraso conjunto a {num} segundos." -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "Bot eliminará mensajes de comando después {} segundos. Establezca este valor en -1 para detener la eliminación de mensajes" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "No borraré los mensajes de comando." -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -3189,19 +3219,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "El bot {} utiliza su color configurado para embeds." -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "no será" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "será" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -3213,11 +3243,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "La búsqueda de comandos Fuzzy ha sido {} para este servidor." -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -3228,11 +3258,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "La búsqueda de comandos Fuzzy ha sido {} en MDs." -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -3249,15 +3279,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "El color ha sido restablecido." -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "El color ha sido establecido." -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -3272,34 +3302,34 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "Los prefijos no pueden comenzar con '/', ya que entran en conflicto con los comandos slash de Discord." -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "Cancelado." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "Advertencia: Un prefijo está por encima de la longitud recomendada (25 caracteres).\n" "¿Desea continuar?" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "Prefijo establecido." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "Prefijos establecidos." -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3318,27 +3348,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "Se han restablecido los prefijos del servidor." -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "No puedes tener un prefijo de más de 25 caracteres." -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "Prefijo del servidor establecido." -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "Prefijos de servidor establecidos." -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3363,15 +3393,15 @@ msgstr "\n" " - `[use_buttons]` - Si se usan los botones o no. Deje en blanco para alternar.\n" " " -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "Utilizaré botones en los menús básicos." -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "No voy a usar botones en los menús básicos." -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3394,19 +3424,19 @@ msgstr "\n" " - `[msg]` - El mensaje de error personalizado. Debe tener menos de 1000 caracteres. Omitir para restablecer el valor predeterminado.\n" " " -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "El mensaje debe tener menos de 1000 caracteres." -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "Se ha actualizado correctamente el mensaje de error." -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "Se ha reestablecido el mensaje de error al predeterminado." -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3417,7 +3447,7 @@ msgstr "\n" " Todos los ajustes de ayuda se aplican globalmente.\n" " " -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3427,11 +3457,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "Advertencia: El formato por defecto no está en uso, estos ajustes pueden no aplicarse." -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3440,11 +3470,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "El formato de ayuda ha sido restablecido. Esto no impedirá que los cogs modifiquen la ayuda, puede que necesite eliminar un cog si esto ha sido un problema." -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3454,11 +3484,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "Los ajustes de ayuda se han restablecido a sus valores predeterminados. Esto puede no tener un impacto al usar formateadores de ayuda de terceros." -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3478,27 +3508,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "La ayuda solo utilizará el menú seleccionado." -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "La ayuda usará los menús de botón y añadirá un menú de selección." -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "La ayuda usará los menús de botones." -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "La ayuda usará menús de reacción." -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "La ayuda no usará menús." -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3512,15 +3542,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "La ayuda no filtrará los comandos ocultos." -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "La ayuda filtrará los comandos ocultos." -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3534,15 +3564,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "La ayuda mostrará ahora los alias de comandos." -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "La ayuda ya no mostrará los alias de comandos." -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3558,15 +3588,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "La ayuda ahora marcará el comando cuando se envíe en un DM." -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "La ayuda no marcará el comando cuando se envíe en un DM." -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3580,15 +3610,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "La ayuda sólo se mostrará para comandos que se pueden ejecutar." -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "La ayuda se mostrará sin comprobar si los comandos se pueden ejecutar." -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3604,15 +3634,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "La ayuda verificará la existencia de temas de ayuda." -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "La ayuda sólo verificará la existencia de temas de ayuda a través de ayuda difusa (si está habilitada)." -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3627,15 +3657,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "Debes dar un valor de al menos 500 caracteres." -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "Hecho. El límite de caracteres por página se ha establecido en {}." -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3650,15 +3680,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "¡Debe dar un valor de cero o mayor!" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "Hecho. El límite de página se ha establecido a {}." -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3675,19 +3705,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "¡El retraso no puede ser superior a 14 días!" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "Hecho. Los mensajes de ayuda no se eliminarán ahora." -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "Hecho. El retraso de borrado se ha establecido en {} segundos." -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3702,19 +3732,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "¡Debes dar un valor de al menos 15 segundos!" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "El tiempo de espera no puede ser superior a 5 minutos!" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "Hecho. El tiempo de espera de reacción se ha establecido en {} segundos." -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3730,19 +3760,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "La etiqueta se ha restablecido." -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "¡Tu etiqueta es demasiado larga! Por favor, acorde a no más de 2048 caracteres." -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "La etiqueta se ha establecido." -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3753,43 +3783,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "ID de usuario: {}" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "a través de MP" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "de {}" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr " | ID del servidor: {}" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "Utilice `{}dm {} ` para responder a este usuario" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "Enviado por {} {}" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "He sido configurado para no enviar esto a ninguna parte." -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "Su mensaje ha sido enviado." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "No soy capaz de entregar su mensaje. Lo siento." -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3802,41 +3832,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "ID no válida, usuario no encontrado, o el usuario es un bot. Solo puedes enviar mensajes a personas con las que comparto un servidor." -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "Dueño de {}" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "Puedes responder este mensaje con {}contact" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "Lo siento, no pude enviar su mensaje a {}" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "Mensaje enviado a {}" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "Imprime la ruta de datos del bot." -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "Ruta de datos: {path}" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "Muestra información de depuración útil para la depuración." -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3851,19 +3881,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "Es necesario indicar un canal de texto, un canal de voz, un canal de escena, o un hilo de foros al usar este comando en DMs." -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "El usuario indicado no es miembro del servidor diagnosticado." -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "¡No intentes engañarme, el miembro indicado no puede acceder al canal {channel}!" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3876,7 +3906,7 @@ msgstr "\n" " Usa `[p]allowlist clear` para desactivar la lista de usuarios autorizados\n" " " -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3888,15 +3918,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "Los usuarios han sido añadidos a la lista permitida." -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "El usuario ha sido añadido a la lista permitida." -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3905,21 +3935,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "Usuarios en la lista permitida:" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "Usuario en la lista permitida:" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "Usuario desconocido o eliminado" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3932,15 +3962,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "Los usuarios han sido eliminados de la lista permitida." -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "El usuario ha sido eliminado de la lista permitida." -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3950,11 +3980,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "La lista de permisos ha sido borrada." -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3965,7 +3995,7 @@ msgstr "\n" " Use `[p]blocklist clear` para desactivar la lista de bloqueados\n" " " -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3977,19 +4007,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "¡No puedes agregar un dueño a la lista de bloqueos!" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "Los usuarios han sido añadidos a la lista de bloqueos." -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "El usuario ha sido añadido a la lista de bloqueos." -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3998,15 +4028,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "Usuarios en la lista de bloqueos:" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "Usuario en la lista de bloqueos:" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -4018,15 +4048,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "Los usuarios han sido eliminados de la lista de bloqueos." -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "El usuario ha sido eliminado de la lista de bloqueos." -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -4035,11 +4065,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "Se ha borrado la lista de bloqueos." -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -4052,7 +4082,7 @@ msgstr "\n" " Use `[p]localallowlist clear` para desactivar la lista de usuarios autorizados\n" " " -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -4065,19 +4095,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "No puedo permitirte hacer esto, ya que eliminaría tu capacidad para ejecutar comandos, por favor asegúrate de añadirte a ti mismo a la lista permitida primero." -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "Usuarios y/o roles han sido añadidos a la lista permitida." -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "El usuario o el rol han sido añadidos a la lista permitida." -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -4086,19 +4116,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "Usuarios y/o roles permitidos:" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "Usuario o rol permitido:" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "Usuario/Rol borrado o desconocido" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -4112,19 +4142,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "No puedo permitirte que hagas esto, ya que eliminaría tu capacidad para ejecutar comandos." -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "Los usuarios y/o roles han sido eliminados de la lista permitida del servidor." -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "El usuario o el rol han sido removidos de la lista permitida del servidor." -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -4134,11 +4164,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "La lista permitida del servidor ha sido borrada." -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -4149,7 +4179,7 @@ msgstr "\n" " Use `[p]localblocklist clear` para desactivar la lista de bloqueados \n" " " -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -4162,27 +4192,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "¡No puedes añadirte a ti mismo a la lista de bloqueos!" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "¡No puedes añadir al propietario del servidor a la lista de bloqueos!" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "¡No puedes añadir un propietario de bot a la lista de bloqueos!" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "Usuarios y/o roles han sido añadidos desde la lista de bloqueos del servidor." -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "El usuario o el rol han sido añadidos de la lista de bloqueo del servidor." -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -4191,15 +4221,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "Usuarios y/o roles bloqueados:" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "Usuario o rol bloqueado:" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -4212,15 +4242,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "Los usuarios y/o roles han sido eliminados de la lista de bloqueos del servidor." -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "El usuario o el rol han sido eliminados de la lista de bloqueo del servidor." -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -4230,16 +4260,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "La lista de bloqueo del servidor ha sido borrada." -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "Comandos para activar y desactivar comandos y cogs." -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -4253,15 +4283,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "No puedes desactivar este cog por defecto." -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "{cogname} ha sido establecido como deshabilitado por defecto." -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -4275,11 +4305,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "El cog {cogname} se ha habilitado por defecto." -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4291,19 +4321,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "No puedes desactivar este cog ya que te bloquearia del servidor." -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "El cog {cogname} ha sido deshabilitado en este gremio." -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "El cog {cogname} ya estaba deshabilitado (no hay nada que hacer)." -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4315,19 +4345,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "El cog {cogname} ha sido habilitado en este gremio." -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "El Cog \"{arg}\" no ha sido encontrado." -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "{cogname} no fue deshabilitado (nada que hacer)." -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4335,15 +4365,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "Los siguientes cogs están deshabilitados en este gremio:\n" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "No hay cogs deshabilitados en este servidor." -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4354,7 +4384,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4362,19 +4392,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "No hay ningún comando desactivado globalmente." -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "Los comandos {} están deshabilitados globalmente.\n" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "1 comando está deshabilitado globalmente.\n" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4382,19 +4412,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "No hay ningún comando deshabilitado en {}." -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "{} comandos están deshabilitados en {}.\n" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "1 comando está deshabilitado en {}.\n" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4408,7 +4438,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4420,19 +4450,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "El comando para desactivar no puede ser `command` o cualquiera de sus subcomandos." -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "Este comando está siempre disponible y no se puede desactivar." -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "Ese comando ya está deshabilitado globalmente." -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4444,15 +4474,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "No tienes permisos para desactivar ese comando." -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "Ese comando ya está desactivado en este servidor." -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4465,7 +4495,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4477,11 +4507,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "Ese comando ya está habilitado globalmente." -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4493,15 +4523,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "No tienes permisos para activar ese comando." -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "Ese comando ya está habilitado en este servidor." -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4515,7 +4545,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4526,7 +4556,7 @@ msgstr "\n" " Esto incluye la eliminación de mensajes duplicados y menciones de spam de los Cog Mod y Filter.\n" " " -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4535,19 +4565,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "Rol inmune de las acciones automatizadas de moderación:\n" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "Miembros inmunes de las acciones de moderación automatizadas:\n" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "Aquí no hay ajustes de inmunidad." -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4559,11 +4589,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "Ya se ha añadido." -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4575,11 +4605,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "No esta en lista." -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4591,15 +4621,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "Son inmunes." -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "No son inmunes." -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4612,7 +4642,7 @@ msgstr "\n" " Nota: Los dueños y administradores anulan la lista de ignorados.\n" " " -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4621,7 +4651,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4637,15 +4667,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "Canal añadido a ignorados." -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "El canal ya está en ignorados." -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4655,20 +4685,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "Este servidor ha sido añadido a la lista de ignorar." -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "Este servidor ya está siendo ignorado." -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "Comandos para eliminar servidores o canales de la lista de ignorados." -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4683,15 +4713,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "Canal removido de la lista ignorada." -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "Ese canal no está en la lista ignorarda." -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4700,24 +4730,24 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "Este servidor ha sido eliminado de la lista de ignorar." -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "Este servidor no está en la lista de ignorar." -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "Este servidor está siendo ignorado actualmente." -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "Ninguno" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" @@ -4725,7 +4755,7 @@ msgstr "Categorías ignoradas actualmente: {categories}\n" "Canales: {channels}\n" "Hilos (excluyendo archivados):{threads}" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -5050,3 +5080,11 @@ msgstr "Comando no encontrado." msgid "You are not permitted to use this command." msgstr "No tienes permiso para usar este comando." +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/fi-FI.po b/redbot/core/locales/fi-FI.po index 29f4babdd71..17766531d08 100644 --- a/redbot/core/locales/fi-FI.po +++ b/redbot/core/locales/fi-FI.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Finnish\n" "MIME-Version: 1.0\n" @@ -732,11 +732,11 @@ msgstr "Et voi maksaa tästä komennosta yksityisviesteissä ilman globaalia pan msgid "You need at least {cost} {currency} to use this command." msgstr "Sinulla pitää olla vähintään {cost} {currency} käyttääksesi tätä komentoa." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1338,14 +1338,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "käytössä" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "ei käytössä" @@ -1488,8 +1488,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "" @@ -2158,41 +2158,45 @@ msgstr "Kuvaus nollattu." msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 -#, docstring -msgid "Sets [botname]'s avatar\n\n" -" Supports either an attachment or an image URL.\n\n" -" **Examples:**\n" -" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" -" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" -" **Arguments:**\n" -" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" -" " -msgstr "" - -#: redbot/core/core_commands.py:2877 +#: redbot/core/core_commands.py:2868 msgid "That URL is invalid." msgstr "URL-osoite on virheellinen." -#: redbot/core/core_commands.py:2879 +#: redbot/core/core_commands.py:2870 msgid "Something went wrong while trying to get the image." msgstr "" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 msgid "Done." msgstr "Valmista." -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2906 +#, docstring +msgid "Sets [botname]'s avatar\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" +" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2923 #, docstring msgid "\n" " Removes [botname]'s avatar.\n\n" @@ -2201,11 +2205,37 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 +#: redbot/core/core_commands.py:2931 msgid "Avatar removed." msgstr "Avatar poistettu." -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2953 +#, docstring +msgid "\n" +" Removes [botname]'s banner.\n\n" +" **Example:**\n" +" - `[p]set bot banner remove`\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." +msgstr "" + +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2218,29 +2248,29 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "Vahvistetun botin nimeä ei voida muokata manuaalisesti. Ota yhteyttä Discord-tukeen vaihtaaksesi sen." -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "Nimen vaihtaminen ei onnistunut. Sen tulee olla 32 kirjainta pitkä tai lyhyempi." -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "Käyttäjänimen vaihto ei onnistunut. Discord palautti seuraavan virheen:\n" "{error_message}" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2251,15 +2281,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "" -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2274,24 +2304,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2307,7 +2337,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2320,15 +2350,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2341,15 +2371,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2362,15 +2392,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2383,15 +2413,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2404,44 +2434,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "Tilaksi asetettiin {}." -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2459,15 +2489,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2484,15 +2514,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2504,15 +2534,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2524,15 +2554,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2550,7 +2580,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2567,21 +2597,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2598,15 +2628,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "" -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2622,7 +2652,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2637,15 +2667,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2660,15 +2690,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2688,19 +2718,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2710,19 +2740,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2733,20 +2763,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2754,7 +2784,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2766,7 +2796,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2777,7 +2807,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2789,7 +2819,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2801,7 +2831,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2810,15 +2840,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2826,18 +2856,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2845,7 +2875,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2860,23 +2890,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2887,19 +2917,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2911,11 +2941,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2926,11 +2956,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2947,15 +2977,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "Väri nollattiin." -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "Väri asetettiin." -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -2970,33 +3000,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "" -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "" -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3015,27 +3045,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3050,15 +3080,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3072,19 +3102,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3092,7 +3122,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3102,11 +3132,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3115,11 +3145,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3129,11 +3159,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3153,27 +3183,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3187,15 +3217,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3209,15 +3239,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3233,15 +3263,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3255,15 +3285,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3279,15 +3309,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3302,15 +3332,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3325,15 +3355,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3350,19 +3380,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3377,19 +3407,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3405,19 +3435,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3428,43 +3458,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "Käyttäjä-ID: {}" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr "" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "" -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "" -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3477,41 +3507,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3526,19 +3556,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3547,7 +3577,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3559,15 +3589,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3576,21 +3606,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "Tuntematon tai poistettu käyttäjä" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3603,15 +3633,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3621,11 +3651,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3633,7 +3663,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3645,19 +3675,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3666,15 +3696,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3686,15 +3716,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3703,11 +3733,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3716,7 +3746,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3729,19 +3759,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3750,19 +3780,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3776,19 +3806,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "En voi antaa sinun tehdä noin, sillä sen jälkeen et voisi enää käyttää komentoja." -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3798,11 +3828,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3810,7 +3840,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3823,27 +3853,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3852,15 +3882,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3873,15 +3903,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3891,16 +3921,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3914,15 +3944,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3936,11 +3966,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3952,19 +3982,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3976,19 +4006,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -3996,15 +4026,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4015,7 +4045,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4023,19 +4053,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4043,19 +4073,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4069,7 +4099,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4081,19 +4111,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4105,15 +4135,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4126,7 +4156,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4138,11 +4168,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4154,15 +4184,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4176,7 +4206,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4184,7 +4214,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4193,19 +4223,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4217,11 +4247,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4233,11 +4263,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4249,15 +4279,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4266,7 +4296,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4275,7 +4305,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4291,15 +4321,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4309,20 +4339,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4337,15 +4367,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4354,30 +4384,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4635,3 +4665,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/fr-FR.po b/redbot/core/locales/fr-FR.po index d76634d3dc8..3476acec64c 100644 --- a/redbot/core/locales/fr-FR.po +++ b/redbot/core/locales/fr-FR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -50,25 +50,26 @@ msgstr "Ce chemin n'existe pas ou ne pointe pas vers un répertoire valide." #: redbot/core/_cog_manager.py:364 msgid "A cog path cannot be part of bot's data path ({bot_data_path})." -msgstr "" +msgstr "Un chemin de cog ne peut pas faire partie du chemin de données du bot ({bot_data_path})." #: redbot/core/_cog_manager.py:374 msgid "A cog path cannot be part of bot's core path ({core_path})." -msgstr "" +msgstr "Un chemin de cog ne peut pas faire partie du chemin de base du bot ({core_path})." #: redbot/core/_cog_manager.py:416 msgid "The provided path appears to be a cog package, are you sure that this is the path that you want to add as a **cog path**?\n\n" "For example, in the following case, you should be adding the {path} as a **cog path**:\n" -msgstr "" +msgstr "Le chemin fourni semble être un paquet cog, êtes-vous sûr que c'est le chemin que vous voulez ajouter en tant que **chemin de cog**?\n\n" +"Par exemple, dans le cas suivant, vous devriez ajouter la {path} en tant que **chemin de cog** :\n" #: redbot/core/_cog_manager.py:423 msgid "\n" "Please consult the Cog Manager UI documentation, if you're unsure: " -msgstr "" +msgstr "Veuillez consulter la documentation de l'interface utilisateur de Cog Manager, en cas de doute :" #: redbot/core/_cog_manager.py:429 msgid "Okay, the path will not be added." -msgstr "" +msgstr "Ok, le chemin ne sera pas ajouté." #: redbot/core/_cog_manager.py:438 msgid "Path successfully added." @@ -357,7 +358,7 @@ msgstr "Vérification des permissions" #: redbot/core/_diagnoser.py:488 msgid "Cog permissions verification" -msgstr "" +msgstr "Vérification des permissions" #: redbot/core/_diagnoser.py:503 msgid "The cog of the given command is disabled in this guild." @@ -634,7 +635,8 @@ msgstr "\n\n" msgid "\n\n" "To update your bot, first shutdown your bot then open a window of {console} (Not as admin) and run the following:{command_1}\n" "Once you've started up your bot again, we recommend that you update any installed 3rd-party cogs with this command in Discord:{command_2}" -msgstr "" +msgstr "Pour mettre à jour votre bot, arrêtez d'abord votre bot puis ouvrez une fenêtre de{console} (Pas en tant qu'administrateur) et exécutez ce qui suit :{command_1}\n" +"Une fois que vous avez redémarré votre bot, nous vous recommandons de mettre à jour tous les cogs tiers installés avec cette commande dans Discord :{command_2}" #: redbot/core/_events.py:128 msgid "Command Prompt" @@ -650,51 +652,51 @@ msgstr "`{user_input}` n'est pas une valeur valide pour `{command}`" #: redbot/core/_events.py:251 redbot/core/_events.py:304 msgid "Argument `{parameter_name}` must be a positive integer." -msgstr "" +msgstr "L'argument {parameter_name} doit être un entier positif." #: redbot/core/_events.py:253 redbot/core/_events.py:306 msgid "Argument `{parameter_name}` must be an integer no more than {maximum}." -msgstr "" +msgstr "L'argument `{parameter_name}` ne doit pas être un entier supérieur à {maximum}." #: redbot/core/_events.py:257 redbot/core/_events.py:310 msgid "Argument `{parameter_name}` must be an integer no less than {minimum}." -msgstr "" +msgstr "L'argument `{parameter_name}` doit être un entier au moins de {minimum}." #: redbot/core/_events.py:261 redbot/core/_events.py:314 msgid "Argument `{parameter_name}` must be an integer between {minimum} and {maximum}." -msgstr "" +msgstr "L'argument `{parameter_name}` doit être un entier entre {minimum} et {maximum}." #: redbot/core/_events.py:266 redbot/core/_events.py:319 msgid "Argument `{parameter_name}` must be a positive number." -msgstr "" +msgstr "L'argument `{parameter_name}` doit être un nombre positif." #: redbot/core/_events.py:268 redbot/core/_events.py:321 msgid "Argument `{parameter_name}` must be a number no more than {maximum}." -msgstr "" +msgstr "L'argument `{parameter_name}` ne doit pas être un nombre supérieur à {maximum}." #: redbot/core/_events.py:272 msgid "Argument `{parameter_name}` must be a number no less than {maximum}." -msgstr "" +msgstr "L'argument `{parameter_name}` doit être un nombre au moins de {maximum}." #: redbot/core/_events.py:276 redbot/core/_events.py:329 msgid "Argument `{parameter_name}` must be a number between {minimum} and {maximum}." -msgstr "" +msgstr "L'argument `{parameter_name}` doit être un nombre compris entre {minimum} et {maximum}." #: redbot/core/_events.py:281 redbot/core/_events.py:334 msgid "Argument `{parameter_name}` must be a string with a length of no more than {maximum}." -msgstr "" +msgstr "L'argument `{parameter_name}` doit être une chaîne de caractères d'une longueur maximale de {maximum}." #: redbot/core/_events.py:285 redbot/core/_events.py:338 msgid "Argument `{parameter_name}` must be a string with a length of no less than {minimum}." -msgstr "" +msgstr "L'argument `{parameter_name}` doit être une chaîne de caractères d'une longueur maximale de {minimum}." #: redbot/core/_events.py:289 redbot/core/_events.py:342 msgid "Argument `{parameter_name}` must be a string with a length of between {minimum} and {maximum}." -msgstr "" +msgstr "L'argument `{parameter_name}` doit être une chaîne de caractères d'une longueur comprise entre {minimum} et {maximum}." #: redbot/core/_events.py:325 msgid "Argument `{parameter_name}` must be a number no less than {minimum}." -msgstr "" +msgstr "L'argument `{parameter_name}` doit être un nombre au moins de {minimum}." #: redbot/core/_events.py:355 msgid "\"{argument}\" is not an integer." @@ -734,7 +736,7 @@ msgstr "Cette commande n'est disponible que dans les channels NSFW." #: redbot/core/_events.py:434 redbot/core/tree.py:326 msgid "This command is on cooldown. Try again {relative_time}." -msgstr "" +msgstr "Cette commande est en cours de rechargement. Réessayez {relative_time}." #: redbot/core/_events.py:441 msgid "Too many people using this command. It can only be used {number} times concurrently." @@ -768,13 +770,13 @@ msgstr "Impossible de payer cette commande en message privé sans banque globale msgid "You need at least {cost} {currency} to use this command." msgstr "Vous avez besoin d’au moins {cost} {currency} pour utiliser cette commande." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." -msgstr "" +msgstr "Il reste encore un message. Tapez {command_1} pour continuer ou {command_2} pour télécharger tout le contenu en tant que fichier." -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." -msgstr "" +msgstr "Il y a encore des messages {count} restants. Tapez {command_1} pour continuer ou {command_2} pour télécharger tout le contenu en tant que fichier." #: redbot/core/core_commands.py:197 msgid "Alias {alias_name} is already an existing command or alias in one of the loaded cogs." @@ -938,7 +940,11 @@ msgid "\n" " **Example:**\n" " - `[p]mydata whatdata`\n" " " -msgstr "" +msgstr "\n" +" Découvrez quel type de données [botname] stocke et pourquoi.\n\n" +" **Exemple:**\n" +" - `[p]mydata whatdata`\n" +" " #: redbot/core/core_commands.py:586 msgid "This bot stores some data about users as necessary to function. This is mostly the ID your user is assigned by Discord, linked to a handful of things depending on what you interact with in the bot. There are a few commands which store it to keep track of who created something. (such as playlists) For full details about this as well as more in depth details of what is stored and why, see {link}.\n\n" @@ -953,7 +959,11 @@ msgid "View the End User Data statements of each 3rd-party module.\n\n" " **Example:**\n" " - `[p]mydata 3rdparty`\n" " " -msgstr "" +msgstr "Afficher les déclarations de données de l'utilisateur final de chaque module tiers.\n\n" +" Ceci enverra une pièce jointe avec les déclarations de données de l'utilisateur final de tous les modules tiers chargés.\n\n" +" **Exemple :**\n" +" - `[p]mydata 3rdparty`\n" +" " #: redbot/core/core_commands.py:616 msgid "I need to be able to attach files (try in DMs?)." @@ -997,7 +1007,14 @@ msgid "\n" " **Example:**\n" " - `[p]mydata forgetme`\n" " " -msgstr "" +msgstr "\n" +" Forcez [botname] à oublier ce qu'il sait sur vous.\n\n" +" Cela peut ne pas supprimer toutes les données vous concernant, les données nécessaires à l'opération,\n" +" comme les temps de recharge des commandes seront conservées jusqu'à ce qu'elles ne soient plus nécessaires.\n\n" +" D'autres interactions avec [botname] peuvent à nouveau lui fournir des infos à votre sujet.\n\n\n" +" **Exemple :**\n" +" - `[p]mydata forgetme`\n" +" " #: redbot/core/core_commands.py:710 msgid "This command ({command}) does not support non-interactive usage." @@ -1073,7 +1090,12 @@ msgid "\n" " **Example:**\n" " - `[p]mydata ownermanagement allowuserdeletions`\n" " " -msgstr "" +msgstr "\n" +" Configurez le bot pour permettre aux utilisateurs de demander la suppression de données.\n\n" +" Cette option est activée par défaut.\n" +" Opposé à `[p]mydata ownermanagement disallowuserdeletions`\n\n" +" **Exemple:**\n" +" - `[p]mydata ownermanagement allowuserdeletions` " #: redbot/core/core_commands.py:821 msgid "User can delete their own data. This will not include operational data such as blocked users." @@ -1087,7 +1109,13 @@ msgid "\n" " **Example:**\n" " - `[p]mydata ownermanagement disallowuserdeletions`\n" " " -msgstr "" +msgstr "\n" +" Configurez le bot pour qu'il ne permette pas aux utilisateurs de demander la suppression de données.\n\n" +" Opposé à `[p]mydata ownermanagement allowuserdeletions`\n\n" +" **Exemple:**\n" +" - `[p]mydata ownermanagement disallowuserdeletions`\n" +" \n" +" " #: redbot/core/core_commands.py:838 msgid "User can not delete their own data." @@ -1105,7 +1133,16 @@ msgid "\n" " - `0`: What users can delete is left entirely up to each cog.\n" " - `1`: Cogs should delete anything the cog doesn't need about the user.\n" " " -msgstr "" +msgstr "\n" +"Définit comment les suppressions d'utilisateurs sont traitées.\n\n" +" **Exemple:**\n" +" - `[p]mydata ownermanagement setuserdeletionlevel 1`\n\n" +" **Arguments:**\n" +" - `` - Le niveau de rigueur pour la suppression des utilisateurs. Voir le guide des niveaux ci-dessous.\n\n" +" Niveau :\n" +" - `0` : Ce que les utilisateurs peuvent supprimer est laissé entièrement à la discrétion de chaque cog.\n" +" - `1` : Les joueurs doivent supprimer tout ce dont ils n'ont pas besoin concernant l'utilisateur.\n" +" " #: redbot/core/core_commands.py:859 msgid "Cogs will be instructed to remove all non operational data upon a user request." @@ -1126,7 +1163,15 @@ msgid "\n" " **Arguments:**\n" " - `` - The id of the user whose data would be deleted.\n" " " -msgstr "" +msgstr "\n" +" Traite une demande de suppression de Discord.\n\n" +" Cela fera que le bot se débarrasse ou désassociera toutes les données de l'ID utilisateur spécifié.\n" +" Vous ne devriez pas utiliser ceci à moins que Discord ne l'ait spécifiquement demandé à l'égard d'un utilisateur supprimé.\n" +" Ceci supprimera l'utilisateur de diverses mesures anti-abus.\n" +" Si vous traitez une requête manuelle d'un utilisateur, vous pouvez vouloir `[p]mydata ownermanagement deleteforuser` à la place.\n\n" +" **Arguments:**\n" +" - `` - L'id de l'utilisateur dont les données seront supprimées.\n" +" " #: redbot/core/core_commands.py:892 msgid "This will cause the bot to get rid of or disassociate all data from the specified user ID. You should not use this unless Discord has specifically requested this with regard to a deleted user. This will remove the user from various anti-abuse measures. If you are processing a manual request from a user, you may want `{prefix}{command_name}` instead.\n\n" @@ -1171,7 +1216,13 @@ msgid "Delete data [botname] has about a user for a user.\n\n" " **Arguments:**\n" " - `` - The id of the user whose data would be deleted.\n" " " -msgstr "" +msgstr "Supprimer les données de [botname] concernant un utilisateur pour un utilisateur.\n\n" +" Cela fera que le bot se débarrasse ou désassociera beaucoup de données non opérationnelles de l'utilisateur spécifié.\n" +" Les utilisateurs ont accès à une commande différente pour cela sauf s'ils ne peuvent pas interagir avec le bot du tout.\n" +" C'est une opération généralement sûre, mais vous ne devriez pas l'utiliser à moins de traiter une requête de cet utilisateur car cela peut affecter son utilisation du bot.\n\n" +" **Arguments :**\n" +" - `` - L'id de l'utilisateur dont les données seraient supprimées.\n" +" " #: redbot/core/core_commands.py:968 msgid "This will cause the bot to get rid of or disassociate a lot of non-operational data from the specified user. Users have access to different command for this unless they can't interact with the bot at all. This is a mostly safe operation, but you should not use it unless processing a request from this user as it may impact their usage of the bot. \n\n" @@ -1215,7 +1266,12 @@ msgid "Delete data [botname] has about a user.\n\n" " **Arguments:**\n" " - `` - The id of the user whose data would be deleted.\n" " " -msgstr "" +msgstr "Supprimer les données de [botname] concernant un utilisateur.\n\n" +" Cela fera que le bot se débarrasse ou désassociera beaucoup de données à propos de l'utilisateur spécifié.\n" +" Cela peut inclure plus que de simples données de l'utilisateur final, y compris des enregistrements anti-abus.\n\n" +" **Arguments:**\n" +" - `` - L'id de l'utilisateur dont les données seraient supprimées.\n" +" " #: redbot/core/core_commands.py:1053 msgid "This will cause the bot to get rid of or disassociate a lot of data about the specified user. This may include more than just end user data, including anti abuse records.\n\n" @@ -1241,7 +1297,22 @@ msgid "\n" " 2. Global command override - `[p]embedset command global`\n" " 3. Global setting - `[p]embedset global`\n" " " -msgstr "" +msgstr "\n" +" Commandes pour activer ou éteindre les intégrations\n" +" Cette option détermine s'il faut ou non utiliser incorporations comme réponse à une commande (pour les commandes qui le supportent).\n" +" La valeur par défaut est d'utiliser des incorporations.\n\n" +" Les paramètres d'intégration sont vérifiés jusqu'au premier Vrai / Faux dans cet ordre :\n" +" - Dans le contexte de guilde :\n" +" 1. Remplacement de canal - `[p]embedset channel`\n" +" 2. Remplacement de la commande du serveur - `[p]embedset command server`\n" +" 3. Remplacement du serveur - `[p]embedset server`\n" +" 4. Remplacement de commande globale - `[p]embedset command global`\n" +" 5. Paramètre global -`[p]embedset global`\n\n" +" - Dans le contexte de DM :\n" +" 1. Remplacement de l'utilisateur - `[p]embedset user`\n" +" 2. Remplacement de commande globale - `[p]embedset command global`\n" +" 3. Paramètre global - `[p]embedset global`\n" +" " #: redbot/core/core_commands.py:1139 #, docstring @@ -1255,7 +1326,16 @@ msgid "\n" " **Arguments:**\n" " - `[command]` - Checks this command for command specific embed settings.\n" " " -msgstr "" +msgstr "\n" +" Affiche les paramètres d'intégration actuels.\n\n" +" Fournissez un nom de commande pour vérifier les paramètres d'incorporation spécifiques à la commande.\n\n" +" **Exemples:**\n" +" - `[p]embedset showsettings` - Affiche les paramètres intégrés.\n" +" - `[p]embedset showsettings info` - Affiche également les paramètres d'intégration pour la commande 'info'.\n" +" - `[p]embedset showsettings \"ignore list\"` - La vérification des sous-commandes nécessite des guillemets.\n\n" +" **Arguments:**\n" +" - `[command]` - Vérifie cette commande pour les paramètres d'incorporation spécifiques à la commande.\n" +" " #: redbot/core/core_commands.py:1155 msgid "Embed settings:\n\n" @@ -1295,7 +1375,14 @@ msgid "\n" " **Example:**\n" " - `[p]embedset global`\n" " " -msgstr "" +msgstr "\n" +" Activer/désactiver le paramètre d'intégration global.\n\n" +" Ceci est utilisé comme valeur si l'utilisateur ou le serveur n'a pas défini de préférence.\n" +" La valeur par défaut est d'utiliser des incorporations.\n" +" Pour voir l'ordre d'évaluation complet des paramètres intégrés, exécutez `[p]aide embedset`.\n\n" +" **Exemple :**\n" +" - `[p]embedset global`\n" +" " #: redbot/core/core_commands.py:1202 msgid "Embeds are now disabled by default." @@ -1319,7 +1406,18 @@ msgid "\n" " **Arguments:**\n" " - `[enabled]` - Whether to use embeds on this server. Leave blank to reset to default.\n" " " -msgstr "" +msgstr "\n" +" Définissez le paramètre d'intégration du serveur.\n" +" S'il est défini, il est utilisé à la place de la valeur par défaut globale pour déterminer s'il faut ou non utiliser des incorporations.\n" +" Ceci est utilisé pour toutes les commandes effectuées dans un serveur.\n\n" +" Si le champ est laissé vide, le paramètre sera annulé et la valeur globale par défaut sera utilisée à la place.\n\n" +" Pour voir l'ordre d'évaluation complet des paramètres intégrés, exécutez `[p]help embedset`.\n\n" +" **Exemples:**\n" +" - `[p]embedset server False` - Désactive les intégrations sur ce serveur.\n" +" - `[p]embedset server` - Réinitialise la valeur par défaut pour utiliser la valeur globale.\n\n" +" **Arguments:**\n" +" - `[enabled]` - Indique s'il faut utiliser des intégrations sur ce serveur. Laissez vide pour réinitialiser par défaut.\n" +" " #: redbot/core/core_commands.py:1230 redbot/core/core_commands.py:1308 #: redbot/core/core_commands.py:1402 redbot/core/core_commands.py:1433 @@ -1349,7 +1447,19 @@ msgid "\n" " **Arguments:**\n" " - `[enabled]` - Whether to use embeds for this command. Leave blank to reset to default.\n" " " -msgstr "" +msgstr "\n" +" Définit le paramètre d'intégration d'une commande.\n\n" +" Si vous êtes le propriétaire du bot, cela tentera de modifier le paramètre d'inclusion de la commande globalement par défaut.\n" +" Sinon, cela essaiera de modifier les paramètres d'intégration sur le serveur actuel.\n\n" +" Si cette option est laissée vide, l'option sera annulé.\n\n" +" Pour voir l'ordre d'évaluation complet des paramètres d'intégration, exécutez `[p]help embedset`.\n\n" +" **Exemples:**\n" +" - `[p]embedset command info` - Efface les paramètres spécifiques de la commande pour 'info'.\n" +" - `[p]embedset info False` - Désactive les intégrations pour 'info'.\n" +" - `[p]commande embedset \"ignore list\" True` - Des guillemets sont nécessaires pour les sous-commandes.\n\n" +" **Arguments:**\n" +" - `[enabled]` - Indique s'il faut utiliser des incorporations pour cette commande. Laissez vide pour réinitialiser par défaut.\n" +" " #: redbot/core/core_commands.py:1274 msgid "The passed command requires Embed Links permission and therefore cannot be set to not use embeds." @@ -1369,7 +1479,18 @@ msgid "\n" " **Arguments:**\n" " - `[enabled]` - Whether to use embeds for this command. Leave blank to reset to default.\n" " " -msgstr "" +msgstr "\n" +" Définit le paramètre d'intégration d'une commande globalement.\n\n" +" Si vous êtes le propriétaire du bot, cela tentera de modifier le paramètre d'inclusion de la commande globalement par défaut.\n" +" Sinon, cela tentera de modifier les paramètres des intégration sur le serveur actuel.\n\n" +" Si cette option est laissée vide, le paramètre sera annulé.\n\n" +" Pour voir l'ordre d'évaluation complet des paramètres d'intégration, exécutez `[p]help embedset`.\n\n" +" **Exemples:**\n" +" - `[p]embedset command info` - Efface les paramètres spécifiques de la commande pour 'info'.\n" +" - `[p]embedset info False` - Désactive les intégration pour 'info'.\n" +" - `[p]commande embedset \"ignore list\" True` - Des guillemets sont nécessaires pour les sous-commandes.\n\n" +" **Arguments:**\n" +" - `[enabled]` - Indiqué s'il faut utiliser des incorporations pour cette commande. Laissez vide pour réinitialiser par défaut." #: redbot/core/core_commands.py:1314 redbot/core/core_commands.py:1359 msgid "Embeds are now enabled for {command_name} command." @@ -1422,14 +1543,14 @@ msgid "Embeds are now {} for this channel." msgstr "Les embeds sont maintenant {} pour ce salon." #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "activé" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "désactivé" @@ -1576,8 +1697,8 @@ msgstr "Êtes-vous sûr de vouloir que je quitte ce serveur ?" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "Je ne peux pas quitter le serveur `{server_name}`: j'en suis le propriétaire." -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "Réponse expirée." @@ -1790,7 +1911,7 @@ msgstr "" #: redbot/core/core_commands.py:1996 redbot/core/core_commands.py:2055 msgid "Command type must be one of `slash`, `message`, or `user`." -msgstr "" +msgstr "Le type de commande doit être un des types `slash`, `message`, ou `user`." #: redbot/core/core_commands.py:2003 msgid "That application command is already enabled." @@ -1821,15 +1942,15 @@ msgstr "" #: redbot/core/core_commands.py:2061 msgid "That application command has been set as required for the cog to function by the author, and cannot be disabled. The cog must be unloaded to remove the command." -msgstr "" +msgstr "Cette commande d'application a été définie comme nécessaire pour que le cog fonctionne par l'auteur, et ne peut pas être désactivée. Le cog doit être déchargé pour supprimer la commande." #: redbot/core/core_commands.py:2073 msgid "That application command is already disabled or does not exist." -msgstr "" +msgstr "Cette commande d'application est déjà désactivée ou n'existe pas." #: redbot/core/core_commands.py:2079 msgid "Disabled {command_type} application command `{command_name}`" -msgstr "" +msgstr "Commande d'application {command_type} désactivée `{command_name}`" #: redbot/core/core_commands.py:2087 #, docstring @@ -1851,16 +1972,17 @@ msgstr "Activer toutes les commandes d'application de ce cog activerait un total #: redbot/core/core_commands.py:2141 msgid "Enabling all application commands from that cog would enable a total of {count} commands, exceeding the {cap} command limit for message commands. Disable some commands first." -msgstr "" +msgstr "Activer toutes les commandes d'application de ce cog activerait un total de commandes {count} , dépassant la limite de commande {cap} pour les commandes de message. Désactiver certaines commandes d'abord." #: redbot/core/core_commands.py:2150 msgid "Enabling all application commands from that cog would enable a total of {count} commands, exceeding the {cap} command limit for user commands. Disable some commands first." -msgstr "" +msgstr "Activer toutes les commandes d'application de ce cog activerait un total de commandes {count} , dépassant la limite de commande {cap} pour les commandes utilisateur. Désactiver certaines commandes d'abord." #: redbot/core/core_commands.py:2176 msgid "Enabled {count} commands from `{cog_name}`:\n" "{names}" -msgstr "" +msgstr "Commandes {count} activées depuis `{cog_name}`:\n" +"{names}" #: redbot/core/core_commands.py:2183 #, docstring @@ -1874,7 +1996,7 @@ msgstr "" #: redbot/core/core_commands.py:2204 msgid "Couldn't find any enabled commands from the `{cog_name}` cog. Use `{prefix}slash list` to see all cogs with application commands." -msgstr "" +msgstr "Impossible de trouver des commandes activées depuis le cog `{cog_name}`. Utilisez `{prefix}list` pour voir tous les cogs avec les commandes d'application." #: redbot/core/core_commands.py:2212 msgid "Disabled {count} commands from `{cog_name}`:\n" @@ -1910,7 +2032,7 @@ msgstr "" #: redbot/core/core_commands.py:2360 msgid "I need the `applications.commands` scope in this server to be able to do that. You can tell the bot to add that scope to invite links using `{prefix}inviteset commandscope`, and can then run `{prefix}invite` to get an invite that will give the bot the scope. You do not need to kick the bot to enable the scope, just use that invite to re-auth the bot with the scope enabled." -msgstr "" +msgstr "J'ai besoin de la portée `applications.commands` dans ce serveur pour pouvoir le faire. Vous pouvez dire au bot d'ajouter cette portée pour inviter des liens en utilisant la commande `{prefix}inviteset commandscope`, et peut alors exécuter ` l'invitation{prefix}` pour obtenir une invitation qui donnera au bot le champ d'application. Vous n'avez pas besoin d'expulser le bot pour activer la portée, il suffit d'utiliser cette invitation pour ré-authentifier le bot avec la portée activée." #: redbot/core/core_commands.py:2371 msgid "Synced {count} commands." @@ -1918,7 +2040,7 @@ msgstr "Commandes {count} synchronisées." #: redbot/core/core_commands.py:2379 msgid "You seem to be attempting to sync after recently syncing. Discord does not like it when bots sync more often than necessary, so this command has a cooldown. You should enable/disable all commands you want to change first, and run this command one time only after all changes have been made. " -msgstr "" +msgstr "Vous semblez essayer de vous synchroniser après une synchronisation récente. Discord n'aime pas que les robots se synchronisent plus souvent que nécessaire, cette commande a donc un temps de recharge. Vous devez activer / désactiver toutes les commandes que vous souhaitez modifier en premier, et exécuter cette commande une seule fois après que toutes les modifications ont été apportées." #: redbot/core/core_commands.py:2390 #, docstring @@ -2216,7 +2338,7 @@ msgstr "\n" #: redbot/core/core_commands.py:2768 msgid "Current settings:\n" -msgstr "" +msgstr "Paramètres actuels :\n" #: redbot/core/core_commands.py:2773 msgid "That action is not registered." @@ -2224,16 +2346,16 @@ msgstr "Cette action n’est pas enregistrée." #: redbot/core/core_commands.py:2778 msgid "Case creation for {action_name} actions is now {enabled}." -msgstr "" +msgstr "La création de cas pour les actions {action_name} est maintenant {enabled}." #: redbot/core/core_commands.py:2786 #, docstring msgid "Reset all modlog cases in this server." -msgstr "" +msgstr "Réinitialiser tous les arguments de modlog dans ce serveur." #: redbot/core/core_commands.py:2789 msgid "Are you sure you would like to reset all modlog cases in this server?" -msgstr "" +msgstr "Êtes-vous sûr de vouloir réinitialiser tous les cas de modlog de ce serveur ?" #: redbot/core/core_commands.py:2796 msgid "You took too long to respond." @@ -2281,41 +2403,45 @@ msgstr "Description réinitialisée." msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "Cette description est trop longue pour être affichée correctement. Veuillez réessayer avec moins de 250 caractères." -#: redbot/core/core_commands.py:2854 -#, docstring -msgid "Sets [botname]'s avatar\n\n" -" Supports either an attachment or an image URL.\n\n" -" **Examples:**\n" -" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" -" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" -" **Arguments:**\n" -" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" -" " -msgstr "" - -#: redbot/core/core_commands.py:2877 +#: redbot/core/core_commands.py:2868 msgid "That URL is invalid." msgstr "Cette URL est invalide." -#: redbot/core/core_commands.py:2879 +#: redbot/core/core_commands.py:2870 msgid "Something went wrong while trying to get the image." msgstr "Quelque chose s'est mal passé au moment de récupérer l'image." -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 msgid "Done." msgstr "Terminé." -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2906 +#, docstring +msgid "Sets [botname]'s avatar\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" +" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2923 #, docstring msgid "\n" " Removes [botname]'s avatar.\n\n" @@ -2324,11 +2450,37 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 +#: redbot/core/core_commands.py:2931 msgid "Avatar removed." msgstr "Avatar supprimé." -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2953 +#, docstring +msgid "\n" +" Removes [botname]'s banner.\n\n" +" **Example:**\n" +" - `[p]set bot banner remove`\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." +msgstr "" + +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2341,29 +2493,29 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "Le nom d'utilisateur d'un bot vérifié ne peut pas être modifié manuellement. Veuillez contacter le support Discord pour le modifier." -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "Impossible de changer le nom. Doit être de 32 caractères ou moins." -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "Le changement de nom d'utilisateur a échoué. N'oubliez pas que vous pouvez changer mon nom jusqu'à 2 fois par heure. Utilisez les pseudos si vous avez besoin de changements fréquents: {command}" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "Impossible de changer le nom d'utilisateur. Discord a renvoyé l'erreur suivante :\n" "{error_message}" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "Une erreur inattendue s'est produite au moment de changer le nom d'utilisateur." -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2374,15 +2526,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "Impossible de changer le pseudo. Doit être de 32 caractères ou moins." -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "Je n'ai pas la permission de changer mon propre surnom." -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2397,24 +2549,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "Le texte personnalisé a été effacé." -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "Le texte personnalisé a été défini." -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "Le texte doit être long de moins de 1024 caractères." -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2430,7 +2582,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2443,15 +2595,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." -msgstr "" +msgstr "Statut défini à `Joue à {game.name}`." -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "Jeu effacé." -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2464,15 +2616,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." -msgstr "" +msgstr "Statut défini à `Écoute {listening}`." -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "Écoute éffacé." -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2485,15 +2637,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "Statut défini à ``Regarde {watching}`." -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "Status de Visionnage effacé." -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2506,15 +2658,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." -msgstr "" +msgstr "Statut défini à `Participant à : {competing}`." -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "Statut de participation effacé." -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2527,44 +2679,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." -msgstr "" +msgstr "Statut personnalisé défini à `{text}`." -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "Statut personnalisé effacé." -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "Statut changé à {}." -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "Passer le statut de [botname] à connecté." -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." -msgstr "" +msgstr "Définissez le statut de [botname] sur ne pas déranger." -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "Passer le statut de [botname] à occupé." -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "Passer le statut de [botname] à invisible." -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." -msgstr "" +msgstr "Définir les rôles d'administrateur et de mod du serveur pour [botname]." -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2582,15 +2734,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "Ce rôle est déjà un rôle admin." -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "Ce rôle est désormais considéré comme un rôle administrateur." -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2607,15 +2759,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "Ce rôle est déjà un rôle modérateur." -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "Ce rôle est désormais considéré comme un rôle modérateur." -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2627,15 +2779,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "Ce rôle n’était pas un rôle administrateur." -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "Ce rôle n’est désormais plus considéré comme un rôle administrateur." -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2647,15 +2799,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "Ce rôle n’était pas un rôle modérateur." -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "Ce rôle n’est désormais plus considéré comme un rôle modérateur." -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2673,7 +2825,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2690,21 +2842,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "Code de langue invalide. Utilisez le format `en-US`" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "Format invalide - le code de langue doit inclure le code du pays, par exemple `en-US`" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "Le langage global a été définie." -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2721,15 +2873,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "Le langage a été défini sur le paramètre par défaut." -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "Le langage a été défini." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2745,7 +2897,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2760,15 +2912,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." -msgstr "" +msgstr "Le formatage régional global sera désormais basé sur les paramètres régionaux du bot." -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." -msgstr "" +msgstr "Le formatage régional global sera désormais basé sur les paramètres régionaux `{language_code}`" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2783,15 +2935,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "Le formatage régional sera maintenant basé sur la localisation du bot dans ce serveur." -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "Le formatage régional sera maintenant basé sur le langage `{language_code}`." -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2811,19 +2963,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." -msgstr "" +msgstr "Cliquez sur le bouton ci-dessous pour définir vos clés." -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." -msgstr "" +msgstr "Ce message de configuration des clés API a expiré." -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "`{service}` les tokens API ont été définis." -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2833,19 +2985,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "Aucun service d'API n'a encore été défini." -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "Services d'API définis:\n" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "Service d'API défini:\n" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2856,29 +3008,32 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "Services supprimés avec succès :\n" "{services_list}" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "Service supprimé avec succès :{service_name}" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "Aucun des services que vous avez fournis n'a de clés de défini." -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" " Owner notifications include usage of `[p]contact` and available Red updates.\n" " " -msgstr "" +msgstr "\n" +" Commandes pour configurer les notifications du propriétaire.\n\n" +" Les notifications du propriétaire incluent l'utilisation de `[p]contact` et les mises à jour disponibles du rouge.\n" +" " -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2890,7 +3045,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2901,7 +3056,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2913,7 +3068,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2925,7 +3080,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2934,15 +3089,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." -msgstr "" +msgstr "Il n'y a pas de canaux supplémentaires envoyés." -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "Salon inconnu avec l'id : {id}" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2950,11 +3105,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "Pas encore défini." -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" @@ -2964,7 +3119,7 @@ msgstr "Roles d'administrateurs: {admin}\n" "Localisation: {guild_locale}\n" "Format régional d'écriture: {guild_regional_format}\n" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2976,7 +3131,7 @@ msgstr "{bot_name} Paramètres:\n\n" "Format d'écriture régionale global : {regional_format}\n" "Couleur d'embed par défaut : {colour}" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2991,23 +3146,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "Suppression de la commande désactivée." -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "Délai de suppression défini à {num} secondes." -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "Le bot supprimera les messages de commandes après {num} secondes. Définissez cette valeur sur -1 pour arrêter la suppression des messages" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "Je ne supprimerai pas les messages de commande." -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -3018,19 +3173,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "Le bot {} utilise sa couleur configurée pour les embeds." -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "ne sera pas" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "sera" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -3042,11 +3197,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "La recherche de commande par fuzzy a été {} pour ce serveur." -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -3057,11 +3212,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "La recherche de commande par fuzzy a été {} en DMs." -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -3078,15 +3233,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "La couleur a été réinitialisée." -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "La couleur a été définie." -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -3101,33 +3256,35 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." -msgstr "" +msgstr "Les préfixes ne peuvent pas commencer par '/', car cela entre en conflit avec les commandes slash de Discord." -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" -msgstr "" +msgstr "Attention : Un préfixe est en dessous de la longueur recommandée (1 caractère).\n" +"Voulez-vous continuer ?" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "Annulé." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" -msgstr "" +msgstr "Attention : Un préfixe est au-dessus de la longueur recommandée (25 caractères).\n" +"Voulez-vous continuer ?" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "Préfixe réglé." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "Préfixes défini." -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3146,27 +3303,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "Les préfixes du serveur ont été réinitialisées." -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." -msgstr "" +msgstr "Vous ne pouvez pas avoir un préfixe inférieur à 1 caractère." -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." -msgstr "" +msgstr "Vous ne pouvez pas avoir un préfixe de plus de 25 caractères." -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "Préfixe du serveur défini." -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "Préfixes du serveur défini." -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3181,15 +3338,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." -msgstr "" +msgstr "J'utiliserai des boutons sur les menus de base." -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." -msgstr "" +msgstr "Je n'utiliserai pas de boutons sur les menus de base." -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3203,27 +3360,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." -msgstr "" +msgstr "Le message doit contenir moins de 1000 caractères." -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." -msgstr "" +msgstr "Message d'erreur mis à jour avec succès." -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." -msgstr "" +msgstr "Le message d'erreur a été réinitialisé avec succès." -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" " All help settings are applied globally.\n" " " -msgstr "" +msgstr "\n" +" Commandes pour gérer les paramètres de la commande d'aide.\n\n" +" Tous les paramètres d'aide sont appliqués globalement.\n" +" " -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3233,11 +3393,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3246,11 +3406,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." -msgstr "" +msgstr "Le formateur d'aide a été réinitialisé. Cela n'empêchera pas les cogs de modifier l'aide, vous devrez peut-être supprimer un cog si cela a été un problème." -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3260,11 +3420,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." -msgstr "" +msgstr "Les paramètres d'aide ont été réinitialisés à leurs valeurs par défaut. Cela peut ne pas avoir d'impact lorsque vous utilisez des formateurs d'aide tiers." -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3284,27 +3444,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "L'aide n'utilisera que le menu sélectionné." -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." -msgstr "" +msgstr "L'aide utilisera les menus des boutons et ajoutera un menu de sélection." -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "L'aide utilisera les menus boutons." -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "L'aide utilisera les boutons de réaction." -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "L'aide n'utilisera pas les menus." -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3318,15 +3478,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "L'aide ne filtrera pas les commandes cachées." -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "L'aide filtrera les commandes cachées." -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3340,15 +3500,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "Le menu d'aide n'affichera pas les alias de commandes." -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." -msgstr "" +msgstr "L'aide n'affichera plus les alias de commandes." -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3364,15 +3524,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "L'aide cochera maintenant la commande lorsqu'elle est envoyée en DM." -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "L'aide ne cochera pas la commande lorsqu'elle est envoyée en DM." -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3386,15 +3546,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "L'aide ne s'affichera que pour les commandes qui peuvent être exécutées." -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "L'aide s'affichera sans vérifier si les commandes peuvent être exécutées." -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3410,15 +3570,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." -msgstr "" +msgstr "L'aide vérifiera l'existence des rubriques d'aide." -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." -msgstr "" +msgstr "L'aide vérifiera uniquement l'existence des rubriques d'aide via l'aide floue (si elle est activée)." -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3433,15 +3593,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "Vous devez donner une valeur d'au moins 500 caractères." -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "Terminé. La limite de caractères par page a été définie à {}." -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3456,15 +3616,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "Vous devez donner une valeur de zéro ou plus !" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "Terminé. La limite de page a été définie à {}." -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3481,19 +3641,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "Le délai ne peut pas être supérieur à 14 jours !" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "Fait. Les messages d'aide ne seront pas supprimés maintenant." -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "Terminé. Le délai de suppression a été réglé sur {} secondes." -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3508,19 +3668,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" -msgstr "" +msgstr "Vous devez donner une valeur d'au moins 15 secondes !" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" -msgstr "" +msgstr "Le délai d'attente ne peut pas être supérieur à 5 minutes !" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." -msgstr "" +msgstr "Terminé. Le délai de réaction a été défini à {} secondes." -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3536,19 +3696,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "Le tag a été réinitialisé." -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "Votre tag est trop long ! Veuillez raccourcir ce type de tag pour ne pas dépasser 2048 caractères." -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "Le tag a été défini." -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3559,43 +3719,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "ID utilisateur : {}" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "par message privé" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "de {}" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr " | ID du serveur : {}" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "Utilisez `{}dm {} ` pour répondre à cet utilisateur" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "Envoyé par {} {}" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "J'ai été configuré pour envoyer cela nulle part." -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "Votre message a été envoyé." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "Je ne parviens pas à envoyer votre message. Désolé." -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3608,41 +3768,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "ID invalide, utilisateur non trouvé ou l'utilisateur est un bot. Vous pouvez seulement envoyer des messages avec des personnes avec qui je partage un serveur." -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "Propriétaire de {}" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "Vous pouvez répondre à ce message avec {} contact" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "Désolé, je n'ai pas pu transmettre votre message à {}" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "Message envoyé a {}" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "Envoie le chemin des données du bot." -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "Chemin des données: {path}" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "Affiche les informations de débogage utiles pour le débogage." -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3657,19 +3817,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." -msgstr "" +msgstr "Un salon textuel, un salon vocal, un canal de stage ou un fil de discussion doit être passé lorsque vous utilisez cette commande en DMs." -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." -msgstr "" +msgstr "L'utilisateur donné n'est pas membre du serveur diagnostiqué." -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" -msgstr "" +msgstr "N'essayez pas de me tromper, le membre donné ne peut pas accéder au canal {channel}!" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3678,7 +3838,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3690,15 +3850,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "Les utilisateurs ont été ajoutés à la liste des utilisateurs autorisés." -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "L'utilisateur a été ajouté à la liste des utilisateurs autorisés." -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3707,21 +3867,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "Utilisateurs sur la liste des utilisateurs autorisés :" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "Utilisateur sur la liste des utilisateurs autorisés :" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "Utilisateur inconnu ou supprimé" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3734,15 +3894,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "Les utilisateurs ont été enlevés de la liste des utilisateurs autorisés." -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "L'utilisateur a été enlevé de la liste des utilisateurs autorisés." -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3752,11 +3912,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "La liste des autorisés a été effacée." -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3764,7 +3924,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3776,19 +3936,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "Vous ne pouvez pas ajouter un des propriétaires du bot à la liste des utilisateurs bloqués !" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "Les utilisateurs ont été ajoutés à la liste des utilisateurs bloqués." -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "L'utilisateur a été ajouté à la liste des utilisateurs bloqués." -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3797,15 +3957,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "Utilisateurs sur la liste des utilisateurs bloqués :" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "Utilisateur sur la liste des utilisateurs bloqués :" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3817,15 +3977,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "Les utilisateurs ont été enlevé de la liste des utilisateurs bloqués." -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "L'utilisateur a été enlevé de la liste des utilisateurs bloqués." -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3834,11 +3994,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "La liste des bloqués a été effacée." -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3847,7 +4007,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3860,19 +4020,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "Je ne peux pas vous permettre de faire cela, car vous ne pourriez plus exécuter de commandes, ajoutez-vous à la liste des utilisateurs autorisées avant." -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "Les utilisateurs et/ou les rôles ont été ajoutés à la liste des utilisateurs/rôles autorisés du serveur." -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "L'utilisateur ou le rôle a été ajouté à la liste des utilisateurs autorisés." -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3881,19 +4041,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "Utilisateurs et/ou rôles autorisés :" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "Utilisateur ou rôle autorisé :" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "Utilisateur / Role inconnu ou supprimé" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3907,19 +4067,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "Je ne peux pas vous laisser faire cela, car cela vous empêcherais d’exécuter des commandes." -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "Les utilisateurs et/ou les rôles ont été retirés de la liste des utilisateurs/rôles autorisés du serveur." -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "L'utilisateur ou le rôle a été retiré de la liste des utilisateurs/rôles autorisés du serveur." -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3929,11 +4089,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "La liste d'autorisations du serveur a été effacée." -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3941,7 +4101,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3954,27 +4114,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "Vous ne pouvez pas vous ajouter vous-même à la liste de blocages !" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "Vous ne pouvez pas ajouter le propriétaire du serveur à la liste de blocages!" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "Vous ne pouvez pas ajouter un propriétaire de bot à la liste de blocages!" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "Les utilisateurs et/ou les rôles ont été ajoutés à la liste des utilisateurs/rôles bloqués du serveur." -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "L'utilisateur ou le rôle a été retiré de la liste des utilisateurs/rôles bloqués du serveur." -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3983,15 +4143,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "Utilisateurs et/ou rôles bloqués :" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "Utilisateur ou rôle bloqué :" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -4004,15 +4164,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "Les utilisateurs et/ou les rôles ont été retirés de la liste des bloqués du serveur." -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "L'utilisateur ou le rôle a été retiré de la liste des utilisateurs/rôles bloqués du serveur." -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -4022,16 +4182,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "La liste des utilisateurs bloqués du serveur a été effacée." -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "Des commandes pour activer et désactiver les commandes et les cogs." -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -4045,15 +4205,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "Vous ne pouvez pas désactiver ce cog par défaut." -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "{cogname} a été défini comme désactivé par défaut." -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -4067,11 +4227,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "{cogname} a été défini comme activé par défaut." -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4083,19 +4243,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." -msgstr "" +msgstr "Vous ne pouvez pas désactiver ce cog car vous vous verrouillez vous-même." -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "{cogname} a été désactivé dans ce serveur." -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "{cogname} a déjà été désactivé (rien à faire)." -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4107,19 +4267,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "{cogname} a été activé dans ce serveur." -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." -msgstr "" +msgstr "Cog \"{arg}\" introuvable." -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "{cogname} n'était pas désactivé (rien à faire)." -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4127,15 +4287,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "Les cogs suivants sont désactivés dans ce serveur :\n" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "Il n'y a pas de cogs désactivés dans ce serveur." -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4146,7 +4306,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4154,19 +4314,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "Il n'y a aucune commande désactivée globalement." -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "{} commandes sont désactivées globalement.\n" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "1 commande est désactivée globalement.\n" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4174,19 +4334,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "Il n'y a aucune commande désactivée dans {}." -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "{} commandes sont désactivées dans {}.\n" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "1 commande est désactivée dans {}.\n" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4200,7 +4360,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4212,19 +4372,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "La commande à désactiver ne peut pas être `command` ou l'une de ses sous-commandes." -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "Cette commande est désignée comme étant toujours disponible et ne peut pas être désactivée." -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "Cette commande est déjà globalement désactivée." -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4236,15 +4396,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "Vous n'êtes pas autorisé à désactiver cette commande." -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "Cette commande est déjà désactivée sur ce serveur." -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4257,7 +4417,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4269,11 +4429,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "Cette commande est déjà activée globalement." -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4285,15 +4445,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "Vous n'êtes pas autorisé à activer cette commande." -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "Cette commande est déjà activée sur ce serveur." -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4307,7 +4467,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4315,7 +4475,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4324,19 +4484,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "Rôles immunisés contre les actions de modération automatisées : \n" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "Membres immunisés contre les actions de modération automatisées :\n" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "Aucun paramètre d'immunité ici." -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4348,11 +4508,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "Déjà ajouté." -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4364,11 +4524,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "Pas dans la liste." -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4380,15 +4540,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "Ils sont immunisés." -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "Ils ne sont pas immunisés." -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4397,7 +4557,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4406,7 +4566,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4422,15 +4582,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "Salon ajouté à la liste des ignorés." -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "Salon déjà dans la liste des ignorés." -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4440,20 +4600,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "Ce serveur a été ajouté à la liste des ignorés." -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "Ce serveur est déjà ignoré." -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "Des commandes pour supprimer les serveurs ou les salons de la liste des ignorés." -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4468,15 +4628,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "Salon supprimé de la liste des ignorés." -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "Ce salon n'est pas dans la liste des ignorés." -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4485,30 +4645,32 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "Ce serveur a été supprimer de la liste ignorés." -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "Ce serveur n'est pas dans la liste des ignorés." -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "Ce serveur est actuellement ignoré." -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "Aucun" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" -msgstr "" +msgstr "Catégories actuellement ignorées : {categories}\n" +"Canaux : {channels}\n" +"Threads (exclusion archivée) :{threads}" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4613,12 +4775,12 @@ msgstr "Fermeture en cours." #: redbot/core/dev_commands.py:595 msgid "Unexpected error: " -msgstr "" +msgstr "Erreur inattendue :" #: redbot/core/dev_commands.py:599 #, docstring msgid "Pauses/resumes the REPL running in the current channel." -msgstr "" +msgstr "Interrompt/reprend l'exécution de REPL dans le canal en cours." #: redbot/core/dev_commands.py:601 msgid "There is no currently running REPL session in this channel." @@ -4655,7 +4817,8 @@ msgstr "" #, docstring msgid "Give bot owners the ability to bypass cooldowns.\n\n" " Does not persist through restarts." -msgstr "" +msgstr "Donne aux propriétaires de bot la possibilité de contourner les temps de redémarrage.\n\n" +" Ne persiste pas au redémarrage." #: redbot/core/dev_commands.py:662 msgid "Bot owners will now bypass all commands with cooldowns." @@ -4688,27 +4851,27 @@ msgstr "Utilisateur supprimé." #: redbot/core/modlog.py:476 msgid "Deleted or archived thread ({thread_id}) in {channel_name}" -msgstr "" +msgstr "Thread supprimé ou archivé ({thread_id}) dans {channel_name}" #: redbot/core/modlog.py:480 msgid "Thread {thread_id} in {channel_id} (deleted)" -msgstr "" +msgstr "Thread {thread_id} dans {channel_id} (supprimé)" #: redbot/core/modlog.py:484 msgid "{channel_id} (deleted)" -msgstr "" +msgstr "{channel_id} (supprimé)" #: redbot/core/modlog.py:489 msgid "Thread {thread_name} in {channel_name}" -msgstr "" +msgstr "Fil {thread_name} en {channel_name}" #: redbot/core/modlog.py:493 msgid "Thread {thread_name} in {channel_id} (deleted)" -msgstr "" +msgstr "Thread {thread_name} dans {channel_id} (supprimé)" #: redbot/core/modlog.py:499 redbot/core/modlog.py:527 msgid "Reason:" -msgstr "" +msgstr "Raison :" #: redbot/core/modlog.py:513 msgid "Moderator" @@ -4770,3 +4933,11 @@ msgstr "Commande introuvable." msgid "You are not permitted to use this command." msgstr "Vous n'avez pas la permission d'utiliser cette commande." +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/hi-IN.po b/redbot/core/locales/hi-IN.po index 5aeb2a5b621..87201119a85 100644 --- a/redbot/core/locales/hi-IN.po +++ b/redbot/core/locales/hi-IN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Hindi\n" "MIME-Version: 1.0\n" @@ -732,11 +732,11 @@ msgstr "" msgid "You need at least {cost} {currency} to use this command." msgstr "" -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1338,14 +1338,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "" @@ -1488,8 +1488,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "" @@ -2158,54 +2158,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "" + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." -msgstr "" - -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2218,28 +2248,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2250,15 +2280,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "" -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2273,24 +2303,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2306,7 +2336,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2319,15 +2349,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2340,15 +2370,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2361,15 +2391,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2382,15 +2412,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2403,44 +2433,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "" -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2458,15 +2488,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2483,15 +2513,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2503,15 +2533,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2523,15 +2553,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2549,7 +2579,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2566,21 +2596,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2597,15 +2627,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "" -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2621,7 +2651,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2636,15 +2666,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2659,15 +2689,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2687,19 +2717,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2709,19 +2739,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2732,20 +2762,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2753,7 +2783,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2765,7 +2795,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2776,7 +2806,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2788,7 +2818,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2800,7 +2830,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2809,15 +2839,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2825,18 +2855,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2844,7 +2874,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2859,23 +2889,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2886,19 +2916,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2910,11 +2940,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2925,11 +2955,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2946,15 +2976,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "" -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "" -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -2969,33 +2999,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "" -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "" -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3014,27 +3044,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3049,15 +3079,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3071,19 +3101,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3091,7 +3121,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3101,11 +3131,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3114,11 +3144,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3128,11 +3158,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3152,27 +3182,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3186,15 +3216,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3208,15 +3238,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3232,15 +3262,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3254,15 +3284,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3278,15 +3308,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3301,15 +3331,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3324,15 +3354,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3349,19 +3379,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3376,19 +3406,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3404,19 +3434,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3427,43 +3457,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr "" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "" -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "" -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3476,41 +3506,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3525,19 +3555,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3546,7 +3576,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3558,15 +3588,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3575,21 +3605,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3602,15 +3632,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3620,11 +3650,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3632,7 +3662,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3644,19 +3674,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3665,15 +3695,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3685,15 +3715,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3702,11 +3732,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3715,7 +3745,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3728,19 +3758,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3749,19 +3779,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3775,19 +3805,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3797,11 +3827,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3809,7 +3839,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3822,27 +3852,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3851,15 +3881,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3872,15 +3902,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3890,16 +3920,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3913,15 +3943,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3935,11 +3965,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3951,19 +3981,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3975,19 +4005,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -3995,15 +4025,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4014,7 +4044,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4022,19 +4052,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4042,19 +4072,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4068,7 +4098,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4080,19 +4110,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4104,15 +4134,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4125,7 +4155,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4137,11 +4167,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4153,15 +4183,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4175,7 +4205,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4183,7 +4213,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4192,19 +4222,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4216,11 +4246,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4232,11 +4262,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4248,15 +4278,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4265,7 +4295,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4274,7 +4304,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4290,15 +4320,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4308,20 +4338,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4336,15 +4366,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4353,30 +4383,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4634,3 +4664,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/hr-HR.po b/redbot/core/locales/hr-HR.po index 572dc962586..ef923c88b56 100644 --- a/redbot/core/locales/hr-HR.po +++ b/redbot/core/locales/hr-HR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -754,11 +754,11 @@ msgstr "Ne može se platiti za ovu naredbu u DM-u bez globalne banke." msgid "You need at least {cost} {currency} to use this command." msgstr "Za korištenje ove naredbe trebate imati najmanje {cost}{currency}." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1369,14 +1369,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "" @@ -1519,8 +1519,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "" @@ -2199,54 +2199,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "" + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." -msgstr "" - -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2259,28 +2289,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2291,15 +2321,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "" -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2314,24 +2344,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2347,7 +2377,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2360,15 +2390,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2381,15 +2411,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2402,15 +2432,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2423,15 +2453,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2444,44 +2474,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "" -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2499,15 +2529,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2524,15 +2554,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2544,15 +2574,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2564,15 +2594,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2590,7 +2620,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2607,21 +2637,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2638,15 +2668,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "" -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2662,7 +2692,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2677,15 +2707,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2700,15 +2730,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2728,19 +2758,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2750,19 +2780,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2773,20 +2803,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2794,7 +2824,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2806,7 +2836,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2817,7 +2847,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2829,7 +2859,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2841,7 +2871,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2850,15 +2880,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2866,18 +2896,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2885,7 +2915,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2900,23 +2930,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2927,19 +2957,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2951,11 +2981,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2966,11 +2996,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2987,15 +3017,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "" -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "" -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -3010,33 +3040,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "Otkazano." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "" -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3055,27 +3085,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3090,15 +3120,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3112,19 +3142,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3132,7 +3162,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3142,11 +3172,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3155,11 +3185,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3169,11 +3199,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3193,27 +3223,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3227,15 +3257,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3249,15 +3279,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3273,15 +3303,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3295,15 +3325,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3319,15 +3349,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3342,15 +3372,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3365,15 +3395,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3390,19 +3420,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3417,19 +3447,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3445,19 +3475,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3468,43 +3498,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr "" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "" -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "" -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3517,41 +3547,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3566,19 +3596,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3587,7 +3617,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3599,15 +3629,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3616,21 +3646,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3643,15 +3673,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3661,11 +3691,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3673,7 +3703,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3685,19 +3715,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3706,15 +3736,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3726,15 +3756,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3743,11 +3773,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3756,7 +3786,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3769,19 +3799,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "Ne mogu vam to dopustiti jer bi ste uklonili svoju mogućnost pokretanja naredbi. Prvo se dodajte na popis dopuštenih." -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "Korisnici i/ili uloge dodani su na popis dopuštenih." -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "Korisnik ili uloga dodani su na popis dopuštenih." -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3790,19 +3820,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "Dopušteni korisnici i/ili uloge:" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "Dopušten korisnik ili uloga:" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "Nepoznat ili izbrisan korisnik/uloga" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3816,19 +3846,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "Ne mogu ti dozvoliti da to učiniš jer bi to uklonilo tvoju sposobnost pokretanja naredbi." -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "Korisnici i/ili uloge uklonjeni su sa serverovog popisa dopuštenih." -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "Korisnik ili uloga uklonjeni su sa serverovog popisa dopuštenih." -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3838,11 +3868,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "Serverov popis dopuštenih je izbrisan." -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3853,7 +3883,7 @@ msgstr "\n" " Upotrijebite `[p]localblocklist clear` da biste onemogućili popis blokiranih\n" " " -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3866,27 +3896,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "Ne možete dodati sebe na popis blokiranih!" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "Ne možete dodati vlasnika servera na popis blokiranih!" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "Ne možete dodati vlasnika bota na popis blokiranih!" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "Korisnici i/ili uloge dodani su sa serverovog popisa blokiranih." -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "Korisnik ili uloga dodani su sa serverovog popisa blokiranih." -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3895,15 +3925,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "Blokirani korisnici i/ili uloge:" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "Blokiran korisnik ili uloga:" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3916,15 +3946,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "Korisnici i/ili uloge uklonjeni su sa serverovog popisa blokiranih." -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "Korisnik ili uloga uklonjeni su sa serverovog popisa blokiranih." -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3934,16 +3964,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "Serverov popis blokiranih je izbrisan." -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "Naredbe za omogućavanje i onemogućavanje naredbi i Cog-ova." -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3957,15 +3987,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "Ne možete onemogućiti ovaj Cog prema zadanim postavkama." -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "{cogname} je postavljen kao onemogućen prema zadanim postavkama." -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3979,11 +4009,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "{cogname} je postavljen kao omogućen prema zadanim postavkama." -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3995,19 +4025,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "Ne možete onemogućiti ovaj Cog jer bi sami sebe zaključali." -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "{cogname} je onemogućen u ovom serveru." -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "{cogname} je već onemogućen (nemam išta za napraviti)." -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4019,19 +4049,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "{cogname} je omogućen u ovom serveru." -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "Cog \"{arg}\" nije pronađen." -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "{cogname} nije onemogućen (nemam išta za napraviti)." -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4039,15 +4069,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "Sljedeći Cog-ovi su onemogućeni u ovom serveru:\n" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "U ovom serveru nema onemogućenih Cog-ova." -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4058,7 +4088,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4066,19 +4096,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "Nema globalno onemogućenih naredbi." -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "{} naredbi je globalno onemogućeno.\n" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "Jedna naredba je globalno onemogućena.\n" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4086,19 +4116,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "U {} nema onemogućenih naredbi." -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "{} naredbi je onemogućeno u {}.\n" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "Jedna naredba je onemogućena u {}.\n" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4112,7 +4142,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4124,19 +4154,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "Naredba koju onemogućujete ne može biti `command` ni bilo koja od njezinih podnaredbi." -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "Ova naredba je označena kao uvijek dostupna i ne može se onemogućiti." -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "Ta je naredba već globalno onemogućena." -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4148,15 +4178,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "Nije vam dopušteno onemogućiti tu naredbu." -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "Ta je naredba već onemogućena u ovom serveru." -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4169,7 +4199,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4181,11 +4211,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "Ta je naredba već globalno omogućena." -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4197,15 +4227,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "Nije vam dopušteno omogućiti tu naredbu." -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "Ta je naredba već omogućena u ovom serveru." -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4219,7 +4249,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4230,7 +4260,7 @@ msgstr "\n" " To uključuje brisanje duplikatnih poruka i neželjenog spominjanja iz Mod Cog-a i filtre iz Filter Cog-a.\n" " " -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4239,19 +4269,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "Uloge imune na automatizirane radnje moderiranja:\n" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "Članovi imuni na automatizirane radnje moderiranja:\n" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "Ovdje nema postavki imuniteta." -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4263,11 +4293,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "Već dodano." -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4279,11 +4309,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "Nije na popisu." -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4295,15 +4325,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "Imuni su." -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "Nisu imuni." -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4316,7 +4346,7 @@ msgstr "\n" " Napomena: Vlasnici i administratori nadjačavaju popis ignoriranja.\n" " " -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4325,7 +4355,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4341,15 +4371,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "Kanal je dodan na popis ignoriranih." -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "Kanal je već na popisu ignoriranih." -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4359,20 +4389,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "Ovaj server je dodan na popis ignoriranih." -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "Ovaj server se već ignorira." -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "Naredbe za uklanjanje servera ili kanala s popisa ignoriranih." -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4387,15 +4417,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "Kanal je uklonjen s popisa ignoriranih." -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "Ovaj kanal nije na popisu ignoriranih." -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4404,30 +4434,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "Ovaj server je uklonjen s popisa ignoriranih." -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "Ovaj server nije na popisu ignoriranih." -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "Ovaj server se trenutno ignorira." -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4695,3 +4725,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/hu-HU.po b/redbot/core/locales/hu-HU.po index 7a1589c0aeb..a2545048386 100644 --- a/redbot/core/locales/hu-HU.po +++ b/redbot/core/locales/hu-HU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -741,11 +741,11 @@ msgstr "Nem lehet fizetni ézért a parancsért DM-ben globális bank nélkül." msgid "You need at least {cost} {currency} to use this command." msgstr "Legfeljebb {cost}{currency} kell ahoz hogy használd ezt a parancsot." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1350,14 +1350,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "engedélyezve" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "nincs engedélyezve" @@ -1500,8 +1500,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "Időtúllépés." @@ -2170,54 +2170,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "Kész." + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." -msgstr "Kész." - -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2230,28 +2260,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2262,15 +2292,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "Nincs jogom hogy megváltoztassam a nevem." -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2285,24 +2315,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2318,7 +2348,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2331,15 +2361,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2352,15 +2382,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2373,15 +2403,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2394,15 +2424,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2415,44 +2445,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "" -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2470,15 +2500,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2495,15 +2525,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2515,15 +2545,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2535,15 +2565,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2561,7 +2591,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2578,21 +2608,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2609,15 +2639,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "A helyszín be lett állítva." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2633,7 +2663,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2648,15 +2678,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2671,15 +2701,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2699,19 +2729,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2721,19 +2751,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2744,20 +2774,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2765,7 +2795,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2777,7 +2807,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2788,7 +2818,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2800,7 +2830,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2812,7 +2842,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2821,15 +2851,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2837,18 +2867,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2856,7 +2886,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2871,23 +2901,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2898,19 +2928,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "A bot {} a beállított színeket használja az embedsekhez." -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "nem fogja" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "fogja" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2922,11 +2952,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2937,11 +2967,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2958,15 +2988,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "A szín resetelve." -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "A szín be lett állítva." -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -2981,33 +3011,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "Megszakítva." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "Prefix beállítva." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3026,27 +3056,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3061,15 +3091,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3083,19 +3113,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3103,7 +3133,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3113,11 +3143,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3126,11 +3156,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3140,11 +3170,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3164,27 +3194,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3198,15 +3228,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3220,15 +3250,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3244,15 +3274,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3266,15 +3296,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3290,15 +3320,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3313,15 +3343,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3336,15 +3366,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3361,19 +3391,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3388,19 +3418,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3416,19 +3446,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3439,43 +3469,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "User ID: {}" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "privát üzeneten keresztül" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "{}-től" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr " | Server ID: {}" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "Használd a `{}dm {} ` üzenetet hogy válaszolj ennek a felhasználónak" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "Küldve {} {} által" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "Az üzeneted el lett küldve." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "Nem tudom kézbesíteni az üzeneted. Bocsi." -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3488,41 +3518,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "Tulajdonosa ennek: {}" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "Válaszolhatsz erre az üzenetre {}contact -vel" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "Sajnálom, de nem tudtam elküldeni az üzeneted {} -nek" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "Üzenet elküldve {} -nek" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3537,19 +3567,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3558,7 +3588,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3570,15 +3600,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3587,21 +3617,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3614,15 +3644,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3632,11 +3662,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3644,7 +3674,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3656,19 +3686,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3677,15 +3707,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3697,15 +3727,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3714,11 +3744,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3727,7 +3757,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3740,19 +3770,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3761,19 +3791,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3787,19 +3817,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3809,11 +3839,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3821,7 +3851,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3834,27 +3864,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3863,15 +3893,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3884,15 +3914,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3902,16 +3932,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3925,15 +3955,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3947,11 +3977,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3963,19 +3993,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3987,19 +4017,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4007,15 +4037,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4026,7 +4056,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4034,19 +4064,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4054,19 +4084,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4080,7 +4110,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4092,19 +4122,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4116,15 +4146,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4137,7 +4167,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4149,11 +4179,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4165,15 +4195,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4187,7 +4217,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4195,7 +4225,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4204,19 +4234,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4228,11 +4258,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4244,11 +4274,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4260,15 +4290,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4277,7 +4307,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4286,7 +4316,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4302,15 +4332,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4320,20 +4350,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4348,15 +4378,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4365,30 +4395,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4646,3 +4676,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/id-ID.po b/redbot/core/locales/id-ID.po index 373dec9d1a1..4052f2311c7 100644 --- a/redbot/core/locales/id-ID.po +++ b/redbot/core/locales/id-ID.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "MIME-Version: 1.0\n" @@ -732,11 +732,11 @@ msgstr "" msgid "You need at least {cost} {currency} to use this command." msgstr "" -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1338,14 +1338,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "diaktifkan" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "dinonaktifkan" @@ -1488,8 +1488,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "" @@ -2166,54 +2166,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "Selesai." + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." -msgstr "Selesai." - -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2226,28 +2256,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2258,15 +2288,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "Saya kurang memiliki izin untuk mengganti nama panggilan saya sendiri." -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2281,24 +2311,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2314,7 +2344,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2327,15 +2357,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2348,15 +2378,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2369,15 +2399,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2390,15 +2420,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2411,44 +2441,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "" -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2466,15 +2496,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2491,15 +2521,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2511,15 +2541,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2531,15 +2561,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2557,7 +2587,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2574,21 +2604,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2605,15 +2635,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "Lokal telah ditetapkan." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2629,7 +2659,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2644,15 +2674,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2667,15 +2697,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2695,19 +2725,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2717,19 +2747,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2740,20 +2770,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2761,7 +2791,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2773,7 +2803,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2784,7 +2814,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2796,7 +2826,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2808,7 +2838,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2817,15 +2847,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2833,18 +2863,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2852,7 +2882,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2867,23 +2897,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "Perintah menghapus dinonaktifkan." -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "Saya tidak akan menghapus pesan perintah." -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2894,19 +2924,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2918,11 +2948,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2933,11 +2963,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2954,15 +2984,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "" -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "" -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -2977,33 +3007,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "Dibatalkan." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "Set awalan." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3022,27 +3052,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3057,15 +3087,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3079,19 +3109,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3099,7 +3129,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3109,11 +3139,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3122,11 +3152,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3136,11 +3166,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3160,27 +3190,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3194,15 +3224,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3216,15 +3246,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3240,15 +3270,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3262,15 +3292,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3286,15 +3316,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3309,15 +3339,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3332,15 +3362,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3357,19 +3387,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3384,19 +3414,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3412,19 +3442,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3435,43 +3465,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "ID Pengguna: {}" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "melalui DM" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "dari {}" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr " | Server ID: {}" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "Gunakan `{} dm {} ` untuk membalas pengguna ini" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "Dikirim oleh {} {}" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "Pesan Anda telah dikirim." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "Saya tidak dapat menyampaikan pesan Anda. Maaf." -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3484,41 +3514,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "Pemilik dari {}" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3533,19 +3563,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3554,7 +3584,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3566,15 +3596,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3583,21 +3613,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3610,15 +3640,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3628,11 +3658,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3640,7 +3670,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3652,19 +3682,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3673,15 +3703,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3693,15 +3723,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3710,11 +3740,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3723,7 +3753,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3736,19 +3766,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3757,19 +3787,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3783,19 +3813,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3805,11 +3835,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3817,7 +3847,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3830,27 +3860,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3859,15 +3889,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3880,15 +3910,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3898,16 +3928,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3921,15 +3951,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3943,11 +3973,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3959,19 +3989,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3983,19 +4013,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4003,15 +4033,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4022,7 +4052,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4030,19 +4060,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4050,19 +4080,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4076,7 +4106,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4088,19 +4118,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4112,15 +4142,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4133,7 +4163,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4145,11 +4175,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4161,15 +4191,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4183,7 +4213,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4191,7 +4221,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4200,19 +4230,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4224,11 +4254,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4240,11 +4270,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4256,15 +4286,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4273,7 +4303,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4282,7 +4312,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4298,15 +4328,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "Saluran ditambahkan ke daftar abaikan." -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "Saluran sudah ada didalam daftar abaikan." -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4316,20 +4346,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4344,15 +4374,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "Saluran di hapus dari dalam daftar abaikan." -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "Saluran sedang tidak ada di dalam daftar abaikan." -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4361,30 +4391,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "Tak satupun" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4642,3 +4672,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/it-IT.po b/redbot/core/locales/it-IT.po index 8769558fbfb..a519c9fb071 100644 --- a/redbot/core/locales/it-IT.po +++ b/redbot/core/locales/it-IT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" @@ -746,11 +746,11 @@ msgstr "Impossibile pagare per questo comando in DM senza una banca globale." msgid "You need at least {cost} {currency} to use this command." msgstr "Necessiti di almeno {cost} {currency} per usare questo comando." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1399,14 +1399,14 @@ msgid "Embeds are now {} for this channel." msgstr "Gli embed sono ora {} per questo canale." #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "abilitata" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "disabilitata" @@ -1549,8 +1549,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "Non posso lasciare il server `{server_name}`: ne sono il proprietario." -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "Risposta scaduta." @@ -2222,54 +2222,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "Fatto." + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." -msgstr "Fatto." - -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2282,28 +2312,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2314,15 +2344,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "Non ho i permessi necessari per cambiare il mio nickname." -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2337,24 +2367,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2370,7 +2400,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2383,15 +2413,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2404,15 +2434,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2425,15 +2455,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2446,15 +2476,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2467,44 +2497,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "Status cambiato a {}." -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2522,15 +2552,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2547,15 +2577,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "Questo ruolo è già un ruolo moderatore." -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "Questo ruolo è ora considerato un ruolo di mod." -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2567,15 +2597,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "Quel ruolo non era un ruolo di amministratore per cominciare." -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "Questo ruolo non è più considerato un ruolo amministratore." -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2587,15 +2617,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "Quel ruolo non era un ruolo mod per cominciare." -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "Questo ruolo non è più considerato un ruolo moderatore." -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2613,7 +2643,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2630,21 +2660,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2661,15 +2691,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "Le impostazioni della lingua sono state impostate." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2685,7 +2715,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2700,15 +2730,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2723,15 +2753,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2751,19 +2781,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2773,19 +2803,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2796,20 +2826,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2817,7 +2847,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2829,7 +2859,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2840,7 +2870,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2852,7 +2882,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2864,7 +2894,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2873,15 +2903,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2889,18 +2919,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2908,7 +2938,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2923,23 +2953,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2950,19 +2980,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "Il bot {} utilizzerà i colori configurati per gli embed." -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "non " -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr " " -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2974,11 +3004,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "La ricerca indistinta dei comandi è stata {} per questo server." -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2989,11 +3019,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "La ricerca indistinta dei comandi è stata {} in DM." -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -3010,15 +3040,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "Il colore è stato resettato." -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "Il colore è stato impostato." -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -3033,33 +3063,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "" -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "Il prefisso è stato impostato." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3078,27 +3108,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3113,15 +3143,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3135,19 +3165,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3155,7 +3185,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3165,11 +3195,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3178,11 +3208,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3192,11 +3222,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3216,27 +3246,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3250,15 +3280,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3272,15 +3302,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3296,15 +3326,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3318,15 +3348,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3342,15 +3372,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3365,15 +3395,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "Fatto. Il limite di caratteri per pagina è stato impostato a {}." -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3388,15 +3418,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "Devi inserire un valore superiore o uguale a zero!" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "Fatto. Il limite di pagine è stato impostato a {}." -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3413,19 +3443,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3440,19 +3470,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3468,19 +3498,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "La tagline è stata resettata." -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "La tua tagline è troppo lunga! Per favore abbreviala in modo che non superi i 2048 caratteri." -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3491,43 +3521,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "ID utente: {}" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "attraverso il DM" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "da {}" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr " | ID server: {}" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "Utilizzare `{}dm {} ` per rispondere a questo utente" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "Inviato da {} {}" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "Il tuo messaggio è stato inviato." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "Non sono in grado di consegnare il messaggio. Mi dispiace." -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3540,41 +3570,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "Proprietario di {}" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "Puoi risponder a questo messaggio con {}contact" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "Mi dispiace, non sono riuscito a consegnare il messaggio a {}" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "Messaggio recapitato a {}" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3589,19 +3619,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3610,7 +3640,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3622,15 +3652,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3639,21 +3669,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3666,15 +3696,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3684,11 +3714,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3696,7 +3726,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3708,19 +3738,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3729,15 +3759,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3749,15 +3779,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3766,11 +3796,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3779,7 +3809,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3792,19 +3822,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3813,19 +3843,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3839,19 +3869,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3861,11 +3891,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3873,7 +3903,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3886,27 +3916,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3915,15 +3945,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3936,15 +3966,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3954,16 +3984,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3977,15 +4007,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3999,11 +4029,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4015,19 +4045,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4039,19 +4069,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4059,15 +4089,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4078,7 +4108,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4086,19 +4116,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4106,19 +4136,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4132,7 +4162,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4144,19 +4174,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "Questo comando risulta già disabilitato globalmente." -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4168,15 +4198,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "Questo comando è già disabilitato in questo server." -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4189,7 +4219,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4201,11 +4231,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "Questo comando risulta già abilitato globalmente." -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4217,15 +4247,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "Questo comando è già abilitato in questo server." -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4239,7 +4269,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4247,7 +4277,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4256,19 +4286,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4280,11 +4310,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "Già aggiunto." -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4296,11 +4326,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "Non in elenco." -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4312,15 +4342,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4329,7 +4359,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4338,7 +4368,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4354,15 +4384,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4372,20 +4402,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4400,15 +4430,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4417,30 +4447,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "Nessuno" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4698,3 +4728,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/ja-JP.po b/redbot/core/locales/ja-JP.po index dcd9165d1ce..829b4288dd0 100644 --- a/redbot/core/locales/ja-JP.po +++ b/redbot/core/locales/ja-JP.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Japanese\n" "MIME-Version: 1.0\n" @@ -739,11 +739,11 @@ msgstr "グローバルバンクがないので、DMでこのコマンドを実 msgid "You need at least {cost} {currency} to use this command." msgstr "このコマンドを使用するには、少なくとも {cost} {currency} が必要です。" -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1345,14 +1345,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "無効" @@ -1495,8 +1495,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "" @@ -2165,54 +2165,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "" + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." -msgstr "" - -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2225,28 +2255,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2257,15 +2287,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "" -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2280,24 +2310,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2313,7 +2343,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2326,15 +2356,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2347,15 +2377,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2368,15 +2398,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2389,15 +2419,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2410,44 +2440,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "" -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2465,15 +2495,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2490,15 +2520,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2510,15 +2540,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2530,15 +2560,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2556,7 +2586,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2573,21 +2603,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2604,15 +2634,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "" -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2628,7 +2658,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2643,15 +2673,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2666,15 +2696,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2694,19 +2724,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2716,19 +2746,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2739,20 +2769,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2760,7 +2790,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2772,7 +2802,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2783,7 +2813,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2795,7 +2825,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2807,7 +2837,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2816,15 +2846,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2832,18 +2862,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2851,7 +2881,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2866,23 +2896,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2893,19 +2923,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2917,11 +2947,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2932,11 +2962,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2953,15 +2983,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "" -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "" -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -2976,33 +3006,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "" -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "" -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3021,27 +3051,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3056,15 +3086,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3078,19 +3108,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3098,7 +3128,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3108,11 +3138,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3121,11 +3151,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3135,11 +3165,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3159,27 +3189,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3193,15 +3223,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3215,15 +3245,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3239,15 +3269,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3261,15 +3291,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3285,15 +3315,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3308,15 +3338,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3331,15 +3361,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3356,19 +3386,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3383,19 +3413,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3411,19 +3441,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3434,43 +3464,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr "" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "" -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "" -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3483,41 +3513,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3532,19 +3562,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3553,7 +3583,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3565,15 +3595,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3582,21 +3612,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3609,15 +3639,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3627,11 +3657,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3639,7 +3669,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3651,19 +3681,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3672,15 +3702,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3692,15 +3722,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3709,11 +3739,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3722,7 +3752,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3735,19 +3765,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3756,19 +3786,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3782,19 +3812,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3804,11 +3834,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3816,7 +3846,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3829,27 +3859,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3858,15 +3888,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3879,15 +3909,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3897,16 +3927,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3920,15 +3950,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3942,11 +3972,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3958,19 +3988,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3982,19 +4012,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4002,15 +4032,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4021,7 +4051,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4029,19 +4059,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4049,19 +4079,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4075,7 +4105,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4087,19 +4117,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4111,15 +4141,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4132,7 +4162,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4144,11 +4174,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4160,15 +4190,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4182,7 +4212,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4190,7 +4220,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4199,19 +4229,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4223,11 +4253,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4239,11 +4269,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4255,15 +4285,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4272,7 +4302,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4281,7 +4311,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4297,15 +4327,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4315,20 +4345,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4343,15 +4373,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4360,30 +4390,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "無い" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4641,3 +4671,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/ko-KR.po b/redbot/core/locales/ko-KR.po index a6a5cc72be1..abbe07e2c38 100644 --- a/redbot/core/locales/ko-KR.po +++ b/redbot/core/locales/ko-KR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Korean\n" "MIME-Version: 1.0\n" @@ -732,11 +732,11 @@ msgstr "" msgid "You need at least {cost} {currency} to use this command." msgstr "" -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1338,14 +1338,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "" @@ -1488,8 +1488,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "" @@ -2158,54 +2158,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "다 했어요." + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." -msgstr "다 했어요." - -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2218,28 +2248,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2250,15 +2280,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "제 별명을 변경할 수 있는 권한이 없어요." -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2273,24 +2303,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2306,7 +2336,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2319,15 +2349,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2340,15 +2370,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2361,15 +2391,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2382,15 +2412,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2403,44 +2433,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "" -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2458,15 +2488,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2483,15 +2513,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2503,15 +2533,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2523,15 +2553,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2549,7 +2579,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2566,21 +2596,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2597,15 +2627,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "로컬이 설정됐어요." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2621,7 +2651,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2636,15 +2666,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2659,15 +2689,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2687,19 +2717,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2709,19 +2739,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2732,20 +2762,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2753,7 +2783,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2765,7 +2795,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2776,7 +2806,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2788,7 +2818,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2800,7 +2830,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2809,15 +2839,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2825,18 +2855,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2844,7 +2874,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2859,23 +2889,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "커맨드 삭제 사용 안 함." -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "커맨드 메세지를 삭제하지 않을게요." -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2886,19 +2916,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2910,11 +2940,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2925,11 +2955,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2946,15 +2976,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "" -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "" -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -2969,33 +2999,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "취소되었어요." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "프리픽스가 변경됐어요." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3014,27 +3044,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3049,15 +3079,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3071,19 +3101,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3091,7 +3121,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3101,11 +3131,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3114,11 +3144,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3128,11 +3158,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3152,27 +3182,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3186,15 +3216,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3208,15 +3238,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3232,15 +3262,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3254,15 +3284,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3278,15 +3308,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3301,15 +3331,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3324,15 +3354,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3349,19 +3379,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3376,19 +3406,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3404,19 +3434,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3427,43 +3457,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "다이렉트 메세지를 통해서" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "{} 에서" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr "" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "해당 사용자에게 응답하려면 `{}dm {} ` 을 사용해야 해요." -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "{} {} 의해 전송됐어요." -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "메세지가 전송됐어요." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "사용자님의 메세지를 전송할 수 없어요. 미안해요." -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3476,41 +3506,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3525,19 +3555,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3546,7 +3576,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3558,15 +3588,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3575,21 +3605,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3602,15 +3632,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3620,11 +3650,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3632,7 +3662,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3644,19 +3674,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3665,15 +3695,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3685,15 +3715,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3702,11 +3732,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3715,7 +3745,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3728,19 +3758,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3749,19 +3779,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3775,19 +3805,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3797,11 +3827,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3809,7 +3839,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3822,27 +3852,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3851,15 +3881,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3872,15 +3902,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3890,16 +3920,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3913,15 +3943,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3935,11 +3965,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3951,19 +3981,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3975,19 +4005,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -3995,15 +4025,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4014,7 +4044,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4022,19 +4052,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4042,19 +4072,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4068,7 +4098,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4080,19 +4110,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4104,15 +4134,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4125,7 +4155,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4137,11 +4167,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4153,15 +4183,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4175,7 +4205,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4183,7 +4213,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4192,19 +4222,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4216,11 +4246,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4232,11 +4262,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4248,15 +4278,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4265,7 +4295,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4274,7 +4304,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4290,15 +4320,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "채널이 무시 목록에 추가됐어요." -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "채널이 이미 무시 목록에 포함되어 있어요." -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4308,20 +4338,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4336,15 +4366,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "채널이 무시 목록에서 제거됐어요." -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "해당 채널은 무시 목록에 없어요." -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4353,30 +4383,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "없음" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4634,3 +4664,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/nb-NO.po b/redbot/core/locales/nb-NO.po index a77e02427ec..e1b165c2dca 100644 --- a/redbot/core/locales/nb-NO.po +++ b/redbot/core/locales/nb-NO.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Norwegian Bokmal\n" "MIME-Version: 1.0\n" @@ -771,11 +771,11 @@ msgstr "Kan ikke betale for denne kommandoen i DM uten en global bank." msgid "You need at least {cost} {currency} to use this command." msgstr "Du trenger minst {cost} {currency} for å bruke denne kommandoen." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1425,14 +1425,14 @@ msgid "Embeds are now {} for this channel." msgstr "Embeder er nå {} for denne kanalen." #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "skrudd på" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "skrudd av" @@ -1579,8 +1579,8 @@ msgstr "Er du sikker på at du vil jeg skal forlate denne serveren?" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "Jeg kan ikke forlate serveren `{server_name}`: Jeg er eieren av den." -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "Responsen ble tidsavbrutt." @@ -2279,41 +2279,45 @@ msgstr "Tilbakestilt beskrivelse." msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "Beskrivelsen er for lang til å vises riktig. Prøv igjen med en gang under 250 tegn." -#: redbot/core/core_commands.py:2854 -#, docstring -msgid "Sets [botname]'s avatar\n\n" -" Supports either an attachment or an image URL.\n\n" -" **Examples:**\n" -" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" -" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" -" **Arguments:**\n" -" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" -" " -msgstr "" - -#: redbot/core/core_commands.py:2877 +#: redbot/core/core_commands.py:2868 msgid "That URL is invalid." msgstr "Denne URL-adressen er ugyldig." -#: redbot/core/core_commands.py:2879 +#: redbot/core/core_commands.py:2870 msgid "Something went wrong while trying to get the image." msgstr "Noe gikk galt under forsøket på å hente bildet." -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 msgid "Done." msgstr "Ferdig." -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2906 +#, docstring +msgid "Sets [botname]'s avatar\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" +" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2923 #, docstring msgid "\n" " Removes [botname]'s avatar.\n\n" @@ -2322,11 +2326,37 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 +#: redbot/core/core_commands.py:2931 msgid "Avatar removed." msgstr "Avatar fjernet." -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2953 +#, docstring +msgid "\n" +" Removes [botname]'s banner.\n\n" +" **Example:**\n" +" - `[p]set bot banner remove`\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." +msgstr "" + +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2339,29 +2369,29 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "Brukernavnet til en verifisert bot kan ikke endres manuelt. Vennligst kontakt Discord støtte for å endre den." -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "Kan ikke endre navn. Må være 32 tegn eller færre." -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "Endre brukernavnet ble tidsavbrutt. Husk at du bare kan gjøre det opptil 2 ganger i timen. Bruk kallenavn hvis du trenger hyppige endringer: {command}" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "Kan ikke endre brukernavnet. Discord returnerte følgende feil:\n" "{error_message}" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "Det oppstod en uventet feil ved forsøk på å endre brukernavnet." -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2372,15 +2402,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "Kan ikke endre kallenavn. Må være 32 tegn eller færre." -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "Jeg mangler tillatelse til å endre mitt eget kallenavn." -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2395,24 +2425,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "Egendefinert tekst er tømt." -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "Den egendefinerte teksten er lagt inn." -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "Teksten må være mindre enn 1024 tegn lang." -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "Kommandoer for å sette [botname] sin status." -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2428,7 +2458,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2441,15 +2471,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "Statusen satt til `Playing {game.name}`." -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "Spillet er tømt." -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2462,15 +2492,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "Statusen satt til \"Listening to {listening}." -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "Hører ryddet." -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2483,15 +2513,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "Statusen satt til `Watching {watching}`." -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "Overvåkningsstatus ryddet." -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2504,15 +2534,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "Status satt til `Competing in {competing}`." -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "Konkurrerende status fjernet." -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2525,44 +2555,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "Status endret til {}." -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "Sett [botname] sin status til online." -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "Sett [botname] sin status for å ikke forstyrre." -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "Sett [botname] sin status til borte." -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "Sett [botname] sin status til usynlig." -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "Sett server admin og mod roller for [botname]." -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2580,15 +2610,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "Denne rollen er allerede en administratorrolle." -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "Denne rollen anses nå som en administratorrolle." -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2605,15 +2635,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "Denne rollen er allerede en mod rolle." -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "Denne rollen anses nå som en mod rolle." -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2625,15 +2655,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "Den rollen var ikke en administratorrolle å begynne med." -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "Denne rollen anses ikke lenger som en administratorrolle." -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2645,15 +2675,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "Den rollen var ikke en modifikasjonsrolle å begynne med." -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "Denne rollen anses ikke lenger som en mod rolle." -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2671,7 +2701,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2688,21 +2718,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "Ugyldig språkkode. Bruk format: `en-US`" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "Ugyldig format - språkkode må inkludere landskode, f.eks. 'nb-NO'" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "Globalt Lokale innstillinger er angitt." -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2719,15 +2749,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "Lokale innstillinger er satt til standard." -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "Lokale innstillinger er angitt." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2743,7 +2773,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2758,15 +2788,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "Global regional formatering vil nå basere seg på botens lokalitet." -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "Global regional formatering vil nå bli basert på '{language_code}` lokal." -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2781,15 +2811,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "Regional formatering vil nå være basert på botens locale på denne serveren." -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "Regional formatering vil nå være basert på `{language_code}` lokal." -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2809,19 +2839,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "Klikk på knappen nedenfor for å velge nøkler." -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "`{service}` API tokens har blitt satt." -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2831,19 +2861,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "Ingen API tjenester har blitt angitt ennå." -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "Angi API-tjenester:\n" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "Angi API-tjenester:\n" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2854,21 +2884,21 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "Tjenester ble slettet:\n" "{services_list}" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "Tjenesten ble slettet: {service_name}" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "Ingen av tjenestene du oppga hadde noen nøkler innsatt." -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2876,7 +2906,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2888,7 +2918,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2899,7 +2929,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2911,7 +2941,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2923,7 +2953,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2932,15 +2962,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "Det er ingen ekstra kanaler som sendes til." -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "Ukjent kanal med id: {id}" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2948,11 +2978,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "Ikke satt." -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" @@ -2962,7 +2992,7 @@ msgstr "Admin roller: {admin}\n" "Lokal: {guild_locale}\n" "Regional format: {guild_regional_format}\n" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2974,7 +3004,7 @@ msgstr "{bot_name} Innstillinger:\n\n" "Globalt regionalt format: {regional_format}\n" "Standard embed farge: {colour}" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2989,23 +3019,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "Kommando sletting deaktivert." -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "Slett forsinkelse, sett til {num} sekunder." -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "Bot vil slette kommando meldinger etter {num} sekunder. Sett denne verdien til -1 for å stoppe sletting av meldinger" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "Jeg vil ikke slette kommando meldinger." -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -3016,19 +3046,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "Botten {} bruke konfigurerte farger for embeder." -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "vil ikke" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "vil" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -3040,11 +3070,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "Fuzzy kommando søking har blitt {} for denne serveren." -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -3055,11 +3085,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "Fuzzy kommando søking har blitt {} i DMer." -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -3076,15 +3106,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "Fargen har blitt tilbakestilt." -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "Fargen har blitt lagt inn." -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -3099,33 +3129,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "Kansellert." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "Prefiks satt." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "Prefikser satt." -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3144,27 +3174,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "Prefikser for server er tilbakestilt." -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "Server prefiks satt." -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "Server prefikser satt." -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3179,15 +3209,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3201,19 +3231,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3224,7 +3254,7 @@ msgstr "\n" " Alle hjelpeinnstillinger brukes globalt.\n" " " -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3234,11 +3264,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "Advarsel: Standardformatteren er ikke i bruk, disse innstillingene gjelder ikke." -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3247,11 +3277,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "Hjelpeformateren har blitt tilbakestilt. Dette forhindrer ikke cogs fra å endre hjelp, du må kanskje fjerne en tog hvis dette har vært et problem." -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3261,11 +3291,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "Hjelpeinnstillingene har blitt tilbakestilt til standardverdiene. Dette vil kanskje ikke ha en innvirkning når du bruker formater for tredjeparts hjelp." -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3285,27 +3315,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "Hjelpen vil ikke bruke menyer." -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3319,15 +3349,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "Hjelp vil ikke filtrere skjulte kommandoer." -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "Hjelp vil filtrere skjulte kommandoer." -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3341,15 +3371,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3365,15 +3395,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "Hjelp vil nå krysse av når den sendes i en DM." -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "Hjelpen vil ikke krysse av når den sendes i en DM." -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3387,15 +3417,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "Hjelpen vil bare vise for kommandoer som kan kjøres." -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "Hjelp vil vises uten å sjekke om kommandoene kan kjøres." -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3411,15 +3441,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "Hjelp vil bekrefte at hjelpeemner eksisterer." -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "Hjelp vil bare verifisere at hjelpeemner er tilgjengelige via uklar hjelp (hvis aktivert)." -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3434,15 +3464,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "Du må gi en verdi på minst 500 tegn." -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "Ferdig. Tegngrensen per side er satt til {}." -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3457,15 +3487,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "Du må gi en verdi som er null eller høyere!" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "Ferdig. Grensen er satt til {}." -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3482,19 +3512,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "Tidsfristen kan ikke være lengre enn 14 dager!" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "Ferdig. Hjelpe meldinger slettes ikke nå." -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "Ferdig. Slettingsforsinkelsen er satt til {} sekunder." -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3509,19 +3539,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3537,19 +3567,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "Etiketten er tilbakestilt." -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "Din linje er for lang! Vennligst forkort den til å være maks 2048 tegn lang." -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "Taggen er lagt inn." -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3560,43 +3590,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "Bruker-ID: {}" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "gjennom DM" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "fra {}" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr " | Server-ID: {}" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "Bruk '{} dm {} ' for å svare denne brukeren" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "Sendt av {} {}" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "Jeg har blitt konfigurert til å ikke sende dette noe sted." -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "Din melding har blitt sendt." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "Jeg klarer ikke å levere meldingen. Unnskyld." -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3609,41 +3639,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "Ugyldig ID, bruker ikke funnet, eller brukeren er en bot. Du kan bare sende meldinger til personer jeg deler en server med." -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "Eier av {}" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "Du kan svare på denne meldingen med {}contact" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "Beklager, kunne ikke levere meldingen din til {}" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "Meldingen er levert til {}" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "Skriver ut botens datasti." -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "Datasti {path}" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "Viser feilsøkingsinformasjon nyttig for feilsøking." -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3658,19 +3688,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3679,7 +3709,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3691,15 +3721,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "Brukere har blitt lagt til i tillatt liste." -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "Brukeren har blitt lagt til i tillatelseslisten." -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3708,21 +3738,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "Brukere på tillatt liste:" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "Bruker på tillatt liste:" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "Ukjent eller slettet bruker" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3735,15 +3765,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "Brukere har blitt fjernet fra tillatt liste." -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "Brukeren har blitt fjernet fra tillatt liste." -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3753,11 +3783,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "Tillatt liste er tømt." -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3765,7 +3795,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3777,19 +3807,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "Du kan ikke legge til en eier i blokkeringslisten!" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "Brukere har blitt lagt til i blokkeringslisten." -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "Brukeren har blitt lagt til blokkeringslisten." -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3798,15 +3828,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "Brukere på blokklisten:" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "Bruker på blokkeringslisten:" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3818,15 +3848,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "Brukere har blitt fjernet fra blokkeringslisten." -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "Brukeren har blitt fjernet fra blokkeringslisten." -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3835,11 +3865,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "Svartelisten er tømt." -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3848,7 +3878,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3861,19 +3891,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "Jeg kan ikke tillate deg å gjøre dette, da det vil fjerne din evne til å kjøre kommandoer, vær sikker på at du legger deg selv til i tillatelseslisten først." -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "Brukere og/eller roller har blitt lagt til i tillatelseslisten." -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "Bruker eller rolle har blitt lagt til i tillatelseslisten." -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3882,19 +3912,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "Tillatte brukere og/eller roller:" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "Tillatt bruker eller rolle:" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "Ukjent eller slettet bruker/rolle" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3908,19 +3938,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "Jeg kan ikke tillate deg å gjøre dette, da det vil fjerne din evne til å kjøre kommandoer." -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "Brukere og/eller roller har blitt fjernet fra listen tillatt på serveren." -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "Brukeren eller rollen har blitt fjernet fra listen som server tillater." -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3930,11 +3960,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "Serverens tillatte liste har blitt fjernet." -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3942,7 +3972,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3955,27 +3985,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "Du kan ikke legge deg selv til i blokkeringslisten!" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "Du kan ikke legge til guildeieren til blokkeringslisten!" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "Du kan ikke legge til en bot eier i blokkeringslisten!" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "Brukere og/eller roller har blitt lagt til fra server-blokkelisten." -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "Brukeren eller rollen har blitt lagt til fra serverens blokkeringsliste." -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3984,15 +4014,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "Blokkerte brukere og/eller roller:" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "Blokkert bruker eller rolle:" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -4005,15 +4035,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "Brukere og/eller roller har blitt fjernet fra serverens blokkeringsliste." -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "Brukeren eller rollen har blitt fjernet fra serverens blokkeringsliste." -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -4023,16 +4053,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "Server-blokklisten har blitt slettet." -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -4046,15 +4076,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "Du kan ikke deaktivere denne cog som standard." -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "{cogname} er angitt som deaktivert som standard." -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -4068,11 +4098,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "{cogname} er satt som standard." -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4084,19 +4114,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "Du kan ikke deaktivere denne cog siden du vil låse deg selv ut." -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "{cogname} har blitt deaktivert i denne guilden." -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "{cogname} var allerede deaktivert (ingenting å gjøre)." -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4108,19 +4138,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "{cogname} har blitt aktivert i denne guilden." -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "{cogname} ble ikke deaktivert (ingenting å gjøre)." -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4128,15 +4158,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "Følgende cogs er deaktivert i denne guilden:\n" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "Det er ingen deaktiverte cogs i denne guilden." -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4147,7 +4177,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4155,19 +4185,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "Det er ikke noen globalt utkoplet kommandoer." -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "{} kommandoer er deaktivert globalt.\n" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "1 kommando er deaktivert globalt.\n" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4175,19 +4205,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "Det er ingen deaktiverte kommandoer i {}." -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "{} kommandoer er deaktivert i {}.\n" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "1 kommando er deaktivert i {}.\n" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4201,7 +4231,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4213,19 +4243,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "Kommandoen som skal deaktiveres kan ikke være `command` eller en av dens underkommandoer." -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "Denne kommandoen er angitt som alltid tilgjengelig og kan ikke deaktiveres." -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "Den kommandoen er allerede deaktivert globalt." -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4237,15 +4267,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "Du har ikke lov til å deaktivere den kommandoen." -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "Den kommandoen er allerede deaktivert i denne serveren." -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4258,7 +4288,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4270,11 +4300,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "Den kommandoen er allerede aktivert globalt." -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4286,15 +4316,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "Du har ikke rettigheter til å aktivere den kommandoen." -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "Den kommandoen er allerede aktivert på denne serveren." -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4308,7 +4338,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4316,7 +4346,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4325,19 +4355,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "Roller immunitet fra automatiserte moderasjons aksjoner:\n" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "Medlemmer immune fra automatiserte moderasjons aksjoner:\n" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "Ingen immunintetsinnstillinger her." -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4349,11 +4379,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "Allerede lagt til." -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4365,11 +4395,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "Ikke i listen." -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4381,15 +4411,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "De er immune." -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "De er ikke immuniserte." -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4398,7 +4428,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4407,7 +4437,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4423,15 +4453,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "Kanal lagt til ignorering listen." -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "Kanal allerede i ignorering listen." -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4441,20 +4471,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "Denne serveren har blitt lagt til i ignorering listen." -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "Denne serveren blir allerede ignorert." -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4469,15 +4499,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "Kanal fjernet fra ignorering listen." -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "Denne kanalen er ikke i ignorering listen." -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4486,30 +4516,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "Denne serveren har blitt fjernet fra ignorering listen." -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "Denne serveren er ikke i ignorering listen." -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "Denne serveren blir for øyeblikket ignorert." -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "Ingen" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4772,3 +4802,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/nl-NL.po b/redbot/core/locales/nl-NL.po index d7119f25202..2d3caa56974 100644 --- a/redbot/core/locales/nl-NL.po +++ b/redbot/core/locales/nl-NL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" @@ -732,11 +732,11 @@ msgstr "" msgid "You need at least {cost} {currency} to use this command." msgstr "Je moet minstens {cost} {currency} hebben om dit commando te gebruiken." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1338,14 +1338,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "activeren" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "de-activeren" @@ -1488,8 +1488,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "Reactie time-out." @@ -2166,54 +2166,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "Klaar." + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." -msgstr "Klaar." - -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2226,28 +2256,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2258,15 +2288,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "Ik heb niet de juiste bevoegdheden om mijn nickname te veranderen." -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2281,24 +2311,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2314,7 +2344,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2327,15 +2357,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2348,15 +2378,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2369,15 +2399,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2390,15 +2420,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2411,44 +2441,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "Status veranderd naar {}." -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2466,15 +2496,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2491,15 +2521,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2511,15 +2541,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2531,15 +2561,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2557,7 +2587,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2574,21 +2604,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2605,15 +2635,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "Taal is veranderd." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2629,7 +2659,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2644,15 +2674,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2667,15 +2697,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2695,19 +2725,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2717,19 +2747,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2740,20 +2770,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2761,7 +2791,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2773,7 +2803,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2784,7 +2814,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2796,7 +2826,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2808,7 +2838,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2817,15 +2847,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2833,18 +2863,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2852,7 +2882,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2867,23 +2897,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2894,19 +2924,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "zal niet" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "zal" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2918,11 +2948,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2933,11 +2963,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2954,15 +2984,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "" -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "" -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -2977,33 +3007,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "Geannuleerd." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "Prefix opgeslagen." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3022,27 +3052,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3057,15 +3087,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3079,19 +3109,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3099,7 +3129,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3109,11 +3139,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3122,11 +3152,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3136,11 +3166,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3160,27 +3190,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3194,15 +3224,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3216,15 +3246,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3240,15 +3270,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3262,15 +3292,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3286,15 +3316,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3309,15 +3339,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3332,15 +3362,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3357,19 +3387,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3384,19 +3414,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3412,19 +3442,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3435,43 +3465,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "Gebruikers-ID: {}" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "met een persoonlijk bericht" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "van {}" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr " | Server ID: {}" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "Gebruik `{}dm {} ` om te reageren op deze gebruiker" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "Verzonden door {} {}" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "Je bericht is verzonden." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "Ik kan dit bericht niet afleveren." -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3484,41 +3514,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "Eigenaar van {}" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "Je kan dit bericht beantwoorden met {}contact" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "Helaas, jouw bericht naar {} kon niet afgeleverd worden" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "Bericht aan {} afgeleverd" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3533,19 +3563,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3554,7 +3584,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3566,15 +3596,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3583,21 +3613,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3610,15 +3640,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3628,11 +3658,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3640,7 +3670,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3652,19 +3682,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3673,15 +3703,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3693,15 +3723,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3710,11 +3740,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3723,7 +3753,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3736,19 +3766,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3757,19 +3787,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3783,19 +3813,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3805,11 +3835,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3817,7 +3847,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3830,27 +3860,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3859,15 +3889,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3880,15 +3910,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3898,16 +3928,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3921,15 +3951,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3943,11 +3973,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3959,19 +3989,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3983,19 +4013,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4003,15 +4033,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4022,7 +4052,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4030,19 +4060,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4050,19 +4080,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4076,7 +4106,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4088,19 +4118,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4112,15 +4142,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4133,7 +4163,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4145,11 +4175,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4161,15 +4191,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "Die command is al geactiveerd in deze server." -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4183,7 +4213,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4191,7 +4221,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4200,19 +4230,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4224,11 +4254,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4240,11 +4270,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4256,15 +4286,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4273,7 +4303,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4282,7 +4312,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4298,15 +4328,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4316,20 +4346,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4344,15 +4374,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4361,30 +4391,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "Geen" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4642,3 +4672,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/pl-PL.po b/redbot/core/locales/pl-PL.po index e2b603088d6..5c456c3a2f9 100644 --- a/redbot/core/locales/pl-PL.po +++ b/redbot/core/locales/pl-PL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -757,11 +757,11 @@ msgstr "Nie można zapłacić za tą komendę przez PW bez banku globalnego." msgid "You need at least {cost} {currency} to use this command." msgstr "Potrzebujesz co najmniej {cost} {currency} aby użyć tej komendy." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1392,14 +1392,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "włączone" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "wyłączone" @@ -1542,8 +1542,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "Przekroczono limit czasu odpowiedzi." @@ -2220,54 +2220,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "Gotowe." + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." -msgstr "Gotowe." - -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2280,28 +2310,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2312,15 +2342,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "Nie mam uprawnień do zmiany mojego pseudonimu." -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2335,24 +2365,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "Tekst nie może być dłuższy niż 1024 znaki." -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2368,7 +2398,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2381,15 +2411,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "Gra wyczyszczona." -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2402,15 +2432,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2423,15 +2453,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2444,15 +2474,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2465,44 +2495,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "Status zmieniony na %s." -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2520,15 +2550,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2545,15 +2575,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2565,15 +2595,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2585,15 +2615,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2611,7 +2641,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2628,21 +2658,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2659,15 +2689,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "Język został ustawiony." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2683,7 +2713,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2698,15 +2728,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2721,15 +2751,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2749,19 +2779,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2771,19 +2801,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2794,20 +2824,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2815,7 +2845,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2827,7 +2857,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2838,7 +2868,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2850,7 +2880,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2862,7 +2892,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2871,15 +2901,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2887,18 +2917,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2906,7 +2936,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2921,23 +2951,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "Nie usunę wiadomości komend." -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2948,19 +2978,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "Bot {} używał swojego skonfigurowanego koloru dla embedów." -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "nie będzie" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "będzie" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2972,11 +3002,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2987,11 +3017,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -3008,15 +3038,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "Kolor został zresetowany." -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "Kolor został ustawiony." -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -3031,33 +3061,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "Anulowano." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "Prefiks ustawiony." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3076,27 +3106,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3111,15 +3141,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3133,19 +3163,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3153,7 +3183,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3163,11 +3193,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3176,11 +3206,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3190,11 +3220,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3214,27 +3244,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3248,15 +3278,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3270,15 +3300,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3294,15 +3324,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3316,15 +3346,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3340,15 +3370,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3363,15 +3393,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "Gotowe. Limit znaków na stronę został ustawiony na {}." -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3386,15 +3416,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "Musisz podać wartość zero lub większą!" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "Gotowe. Limit stron został ustawiony na {}." -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3411,19 +3441,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3438,19 +3468,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3466,19 +3496,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3489,43 +3519,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "ID użytkownika: {}" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "przez PW" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "z {}" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr " | ID serwera: {}" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "Użyj `{}dm {} `, by odpowiedzieć temu użytkownikowi" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "Wysłane przez {} {}" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "Twoja wiadomość została wysłana." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "Nie mogę wysłać twojej wiadomości. Przepraszam." -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3538,41 +3568,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "Właściciel {}" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "Możesz odpowiedzieć na tę wiadomość za pomocą {}contact" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "Sorry, nie mogę dostarczyć Twojej wiadomości do {}" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "Wiadomość dostarczona do {}" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3587,19 +3617,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3608,7 +3638,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3620,15 +3650,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3637,21 +3667,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3664,15 +3694,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3682,11 +3712,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3694,7 +3724,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3706,19 +3736,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3727,15 +3757,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3747,15 +3777,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3764,11 +3794,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3777,7 +3807,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3790,19 +3820,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3811,19 +3841,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3837,19 +3867,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3859,11 +3889,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3871,7 +3901,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3884,27 +3914,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3913,15 +3943,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3934,15 +3964,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3952,16 +3982,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3975,15 +4005,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3997,11 +4027,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4013,19 +4043,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4037,19 +4067,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4057,15 +4087,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4076,7 +4106,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4084,19 +4114,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4104,19 +4134,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4130,7 +4160,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4142,19 +4172,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "Ta komenda jest już wyłączona globalnie." -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4166,15 +4196,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "Ta komenda jest już wyłączona na tym serwerze." -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4187,7 +4217,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4199,11 +4229,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "Ta komenda jest już włączona globalnie." -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4215,15 +4245,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "Ta komenda jest już włączona na tym serwerze." -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4237,7 +4267,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4245,7 +4275,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4254,19 +4284,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4278,11 +4308,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "Już istnieje." -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4294,11 +4324,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "Brak na liście." -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4310,15 +4340,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4327,7 +4357,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4336,7 +4366,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4352,15 +4382,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4370,20 +4400,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4398,15 +4428,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4415,30 +4445,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "Brak" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4696,3 +4726,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/pt-BR.po b/redbot/core/locales/pt-BR.po index c01dc421838..2c7f4ca14a4 100644 --- a/redbot/core/locales/pt-BR.po +++ b/redbot/core/locales/pt-BR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -758,11 +758,11 @@ msgstr "Não pode pagar por este comando em uma mensagem direta sem um banco glo msgid "You need at least {cost} {currency} to use this command." msgstr "Você precisa de pelo menos {cost} {currency} para usar este comando." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1377,14 +1377,14 @@ msgid "Embeds are now {} for this channel." msgstr "As mensagens incorporadas agora estão {} para este canal." #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "ativado" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "desativado" @@ -1527,8 +1527,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "Tempo de resposta excedido." @@ -2205,54 +2205,84 @@ msgstr "Descrição redefinida." msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "Concluído." + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." -msgstr "Concluído." - -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2265,28 +2295,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2297,15 +2327,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "" -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2320,24 +2350,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2353,7 +2383,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2366,15 +2396,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2387,15 +2417,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2408,15 +2438,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2429,15 +2459,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2450,44 +2480,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "Status alterado para {}." -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2505,15 +2535,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2530,15 +2560,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2550,15 +2580,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2570,15 +2600,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2596,7 +2626,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2613,21 +2643,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2644,15 +2674,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "O locale foi definido." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2668,7 +2698,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2683,15 +2713,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2706,15 +2736,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2734,19 +2764,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2756,19 +2786,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2779,20 +2809,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2800,7 +2830,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2812,7 +2842,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2823,7 +2853,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2835,7 +2865,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2847,7 +2877,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2856,15 +2886,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2872,18 +2902,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2891,7 +2921,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2906,23 +2936,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2933,19 +2963,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "O bot {} usa a cor configurada para mensagens incorporadas." -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "não vai" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "vai" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2957,11 +2987,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2972,11 +3002,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2993,15 +3023,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "A cor foi redefinida." -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "A cor foi definida." -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -3016,33 +3046,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "Cancelado." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "Prefixo definido." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3061,27 +3091,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3096,15 +3126,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3118,19 +3148,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3138,7 +3168,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3148,11 +3178,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3161,11 +3191,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3175,11 +3205,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3199,27 +3229,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3233,15 +3263,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3255,15 +3285,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3279,15 +3309,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3301,15 +3331,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3325,15 +3355,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3348,15 +3378,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3371,15 +3401,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3396,19 +3426,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3423,19 +3453,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3451,19 +3481,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3474,43 +3504,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "ID do(a) usuário(a): {}" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "através de mensagem direta" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "de {}" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr " | ID do servidor: {}" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "Use `{}dm {} ` para responder este(a) usuário(a)" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "Enviado por {} {}" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "Sua mensagem foi enviada." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "" -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3523,41 +3553,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "Proprietário(a) de {}" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "Você pode responder a esta mensagem com {}contact" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "Desculpe, não pude entregar sua mensagem para {}" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "Mensagem entregue a {}" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "Mostra o caminho do diretório de dados do bot." -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "Caminho do diretório de dados: {path}" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3572,19 +3602,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3593,7 +3623,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3605,15 +3635,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3622,21 +3652,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3649,15 +3679,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3667,11 +3697,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3679,7 +3709,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3691,19 +3721,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3712,15 +3742,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3732,15 +3762,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3749,11 +3779,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3762,7 +3792,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3775,19 +3805,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3796,19 +3826,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3822,19 +3852,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3844,11 +3874,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3856,7 +3886,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3869,27 +3899,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3898,15 +3928,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3919,15 +3949,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3937,16 +3967,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3960,15 +3990,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3982,11 +4012,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3998,19 +4028,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4022,19 +4052,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4042,15 +4072,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4061,7 +4091,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4069,19 +4099,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "Não existem comandos desativados globalmente." -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "{} comandos estão desativados globalmente.\n" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "Um comando está desativado globalmente.\n" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4089,19 +4119,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "Não há nenhum comando desativado em {}." -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "{} comandos estão desativados em {}.\n" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "Um comando está desativado em {}.\n" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4115,7 +4145,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4127,19 +4157,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4151,15 +4181,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4172,7 +4202,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4184,11 +4214,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4200,15 +4230,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "Este comando já está habilitado neste servidor." -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4222,7 +4252,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4230,7 +4260,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4239,19 +4269,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4263,11 +4293,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "Já adicionado." -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4279,11 +4309,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "Não está na lista." -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4295,15 +4325,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4312,7 +4342,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4321,7 +4351,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4337,15 +4367,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4355,20 +4385,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4383,15 +4413,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4400,30 +4430,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4681,3 +4711,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/pt-PT.po b/redbot/core/locales/pt-PT.po index 502271e65e4..5a727bd2be7 100644 --- a/redbot/core/locales/pt-PT.po +++ b/redbot/core/locales/pt-PT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -738,11 +738,11 @@ msgstr "" msgid "You need at least {cost} {currency} to use this command." msgstr "" -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1344,14 +1344,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "" @@ -1494,8 +1494,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "" @@ -2171,54 +2171,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "Concluído." + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." -msgstr "Concluído." - -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2231,28 +2261,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2263,15 +2293,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "" -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2286,24 +2316,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2319,7 +2349,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2332,15 +2362,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2353,15 +2383,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2374,15 +2404,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2395,15 +2425,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2416,44 +2446,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "" -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2471,15 +2501,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2496,15 +2526,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2516,15 +2546,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2536,15 +2566,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2562,7 +2592,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2579,21 +2609,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2610,15 +2640,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "" -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2634,7 +2664,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2649,15 +2679,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2672,15 +2702,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2700,19 +2730,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2722,19 +2752,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2745,20 +2775,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2766,7 +2796,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2778,7 +2808,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2789,7 +2819,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2801,7 +2831,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2813,7 +2843,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2822,15 +2852,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2838,18 +2868,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2857,7 +2887,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2872,23 +2902,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2899,19 +2929,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2923,11 +2953,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2938,11 +2968,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2959,15 +2989,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "" -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "" -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -2982,33 +3012,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "Cancelado." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "" -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3027,27 +3057,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3062,15 +3092,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3084,19 +3114,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3104,7 +3134,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3114,11 +3144,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3127,11 +3157,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3141,11 +3171,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3165,27 +3195,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3199,15 +3229,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3221,15 +3251,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3245,15 +3275,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3267,15 +3297,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3291,15 +3321,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3314,15 +3344,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3337,15 +3367,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3362,19 +3392,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3389,19 +3419,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3417,19 +3447,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3440,43 +3470,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr "" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "" -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "" -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3489,41 +3519,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3538,19 +3568,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3559,7 +3589,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3571,15 +3601,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3588,21 +3618,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3615,15 +3645,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3633,11 +3663,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3645,7 +3675,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3657,19 +3687,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3678,15 +3708,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3698,15 +3728,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3715,11 +3745,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3728,7 +3758,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3741,19 +3771,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3762,19 +3792,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3788,19 +3818,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3810,11 +3840,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3822,7 +3852,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3835,27 +3865,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3864,15 +3894,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3885,15 +3915,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3903,16 +3933,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3926,15 +3956,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3948,11 +3978,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3964,19 +3994,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3988,19 +4018,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4008,15 +4038,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4027,7 +4057,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4035,19 +4065,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4055,19 +4085,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4081,7 +4111,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4093,19 +4123,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4117,15 +4147,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4138,7 +4168,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4150,11 +4180,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4166,15 +4196,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4188,7 +4218,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4196,7 +4226,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4205,19 +4235,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4229,11 +4259,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4245,11 +4275,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4261,15 +4291,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4278,7 +4308,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4287,7 +4317,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4303,15 +4333,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4321,20 +4351,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4349,15 +4379,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4366,30 +4396,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4647,3 +4677,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/ru-RU.po b/redbot/core/locales/ru-RU.po index 172c0239c97..2ee6837da87 100644 --- a/redbot/core/locales/ru-RU.po +++ b/redbot/core/locales/ru-RU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -771,11 +771,11 @@ msgstr "Не удается оплатить эту команду в ЛС бе msgid "You need at least {cost} {currency} to use this command." msgstr "Вам нужно как минимум {cost} {currency} для того чтобы использовать данную команду." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1425,14 +1425,14 @@ msgid "Embeds are now {} for this channel." msgstr "Сейчас встраиваются {} для этого канала." #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "включен" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "отключен" @@ -1579,8 +1579,8 @@ msgstr "Вы действительно хотите, чтобы я покину msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "Я не могу покинуть сервер `{server_name}`: я его владелец." -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "Время ответа истекло." @@ -2273,41 +2273,45 @@ msgstr "Описание сброшено." msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "Это описание слишком длинное для правильного отображения. Пожалуйста, попробуйте еще раз, используя менее 250 символов." -#: redbot/core/core_commands.py:2854 -#, docstring -msgid "Sets [botname]'s avatar\n\n" -" Supports either an attachment or an image URL.\n\n" -" **Examples:**\n" -" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" -" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" -" **Arguments:**\n" -" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" -" " -msgstr "" - -#: redbot/core/core_commands.py:2877 +#: redbot/core/core_commands.py:2868 msgid "That URL is invalid." msgstr "Этот URL недействителен." -#: redbot/core/core_commands.py:2879 +#: redbot/core/core_commands.py:2870 msgid "Something went wrong while trying to get the image." msgstr "Что-то пошло не так при попытке получить изображение." -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 msgid "Done." msgstr "Готово." -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2906 +#, docstring +msgid "Sets [botname]'s avatar\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" +" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2923 #, docstring msgid "\n" " Removes [botname]'s avatar.\n\n" @@ -2316,11 +2320,37 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 +#: redbot/core/core_commands.py:2931 msgid "Avatar removed." msgstr "Аватар удален." -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2953 +#, docstring +msgid "\n" +" Removes [botname]'s banner.\n\n" +" **Example:**\n" +" - `[p]set bot banner remove`\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." +msgstr "" + +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2333,29 +2363,29 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "Имя пользователя проверенного бота не может быть изменено вручную. Для его изменения обратитесь в службу поддержки Discord." -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "Не удалось изменить имя. Должно быть 32 символа или меньше." -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "Время изменения имени пользователя истекло. Помните, что вы можете сделать это только 2 раза в час. Используйте псевдонимы, если вам нужны частые изменения: {command}" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "Не удалось изменить имя пользователя. Discord выдал следующую ошибку:\n" "{error_message}" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "При попытке изменить имя пользователя произошла непредвиденная ошибка." -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2366,15 +2396,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "Не удалось изменить никнейм. Должно быть не более 32 символов." -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "Мне не хватает разрешений чтобы изменить свой ник." -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2389,24 +2419,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "Пользовательский текст был очищен." -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "Пользовательский текст установлен." -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "Длина текста не должна превышать 1024 символов." -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2422,7 +2452,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2435,15 +2465,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "Игра очищена." -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2456,15 +2486,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "Прослушивание прояснилось." -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2477,15 +2507,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "Просмотр очищен." -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2498,15 +2528,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "Конкуренция очищена." -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2519,44 +2549,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "Статус изменён на {}." -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "Устанавливает статус [botname] на невидимый." -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2574,15 +2604,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "Эта роль уже является администратором." -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "Теперь эта роль рассматривается как роль администратора." -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2599,15 +2629,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "Эта роль уже является модераторской." -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "Эта роль теперь считается ролью мода." -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2619,15 +2649,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "Эта роль не была ролью администратора, с которой она начала." -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "Эта роль больше не рассматривается как роль администратора." -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2639,15 +2669,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "Эта роль не была модераторской ролью для начала." -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "Эта роль больше не рассматривается как роль модератора." -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2665,7 +2695,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2682,21 +2712,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "Неверный код языка. Используйте формат: `en-US`" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "Недопустимый формат - код языка должен содержать код страны, например 'en-US'" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "Глобальная локаль установлена." -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2713,15 +2743,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "Локаль была установлена по умолчанию." -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "Локализация была установлена." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2737,7 +2767,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2752,15 +2782,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "Глобальное региональное форматирование теперь будет основано на локали бота." -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "Глобальное региональное форматирование теперь будет основано на `{language_code}` локали." -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2775,15 +2805,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "Региональное форматирование теперь будет основано на локали бота на этом сервере." -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "Формат региона теперь будет основываться на локализации `{language_code}`." -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2803,19 +2833,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "`{service}` API tokens были установлены." -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2825,19 +2855,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "Никаких услуг API пока не установлено." -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "Установите сервисы API:\n" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "Установите службу API:\n" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2848,21 +2878,21 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "Службы успешно удалены:\n" "{services_list}" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "Служба успешно удалена: {service_name}" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "Ни в одном из предоставляемых вами сервисов не было установлено ни одного ключа." -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2873,7 +2903,7 @@ msgstr "\n" " Уведомления владельца включают использование `[p]contact` и доступные обновления Red.\n" " " -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2885,7 +2915,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2896,7 +2926,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2908,7 +2938,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2920,7 +2950,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2929,15 +2959,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "Нет никаких дополнительных каналов, на которые отправляются сообщения." -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "Неизвестный канал с идентификатором: {id}" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2945,11 +2975,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" @@ -2959,7 +2989,7 @@ msgstr "Роли администраторов: {admin}\n" "Локал: {guild_locale}\n" "Региональный формат: {guild_regional_format}\n" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2971,7 +3001,7 @@ msgstr "{bot_name} Настройки:\n\n" "Глобальный региональный формат: {regional_format}\n" "Цвет вставки по умолчанию: {colour}" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2986,23 +3016,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "Удаление команды отключено." -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "Удалить задержку, установленную на {num} секунд." -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "Бот удалит командные сообщения через {num} секунд. Установите это значение -1, чтобы прекратить удаление сообщений" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "Я не буду удалять командные сообщения." -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -3013,19 +3043,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "Бот {} использовать свой настроенный цвет для встраивания сообщений." -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "не будет" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "будет" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -3037,11 +3067,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "Поиск неопределенной команды был {} для этого сервера." -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -3052,11 +3082,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "Поиск неопределенных команд был {} в личных сообщениях." -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -3073,15 +3103,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "Цвет был сброшен." -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "Цвет был установлен." -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -3096,33 +3126,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "Отменено." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "Префикс установлен." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "Префиксы установлены." -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3141,27 +3171,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "Префиксы серверов были сброшены." -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "Префикс сервера установлен." -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "Установлены префиксы сервера." -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3176,15 +3206,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3198,19 +3228,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3221,7 +3251,7 @@ msgstr "\n" " Все настройки справки применяются глобально.\n" " " -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3231,11 +3261,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "Предупреждение: Если форматтер по умолчанию не используется, эти настройки могут быть неприменимы." -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3244,11 +3274,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "Средство форматирования help было сброшено. Не забудь что это не остановит шестерню от модинга справки, возможно тебе придётся выкрутить шестерню если в этом была проблема." -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3258,11 +3288,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "Настройки справки были сброшены к значениям по умолчанию. Это может не оказать влияния при использовании сторонних форматирования справки." -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3282,27 +3312,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "Помощь не будет использовать меню." -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3316,15 +3346,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "Help не будет фильтровать скрытые команды." -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "Помощь будет фильтровать скрытые команды." -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3338,15 +3368,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3362,15 +3392,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "Help теперь будет отмечать команду при отправке в ЛС." -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "Help не будет отмечать команду при отправке в ЛС." -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3384,15 +3414,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "Справка будет показывать только для команд, которые могут быть запущены." -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "Справка будет показана без проверки возможности выполнения команд." -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3408,15 +3438,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "Помощь проверит наличие тем помощи." -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "Помощь будет проверять только наличие тем помощи при помощи нечеткой справки (если включено)." -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3431,15 +3461,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "Значение должно быть не менее 500 символов." -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "Готово. Максимальное количество символов на странице было установлено равным {}." -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3454,15 +3484,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "Вы должны дать значение ноль или больше!" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "Готово. Ограничение на количество страниц установлено на {}." -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3479,19 +3509,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "Задержка не может быть длиннее 14 дней!" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "Готово. Сообщения справки теперь не будут удалены." -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "Готово. Задержка удаления была установлена на {} секунд." -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3506,19 +3536,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "Вы должны указать значение не менее 15 секунд!" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "Тайм-аут не может быть больше 5 минут!" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "Выполнено. Тайм-аут реакции установлен на {} секунд." -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3534,19 +3564,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "Подзаголовок был сброшен." -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "Ваш подзаголовок слишком длинный! Пожалуйста, уменьшите его до 2048 символов." -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "Подзаголовок был сброшен." -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3557,43 +3587,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "ID пользователя: {}" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "через DM" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "от {}" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr " | ID сервера: {}" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "Используйте `{}dm {} `чтобы ответить пользователю" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "Отправил {} {}" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "Я настроен не отправлять это нигде." -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "Ваше сообщение было отправлено." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "Я не могу доставить ваше сообщение. Извините." -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3606,41 +3636,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "Недопустимый ID, пользователь не найден или пользователь бот. Вы можете отправлять сообщения только тем пользователям, с которыми у меня есть сервер." -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "Владелец {}" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "Вы можете ответить на это сообщение с {} контактом" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "Извините, я не смог доставить сообщение для %s" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "Сообщение доставлено к %s" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "Выводит путь к данным бота." -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "Путь к данным: {path}" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "Показывает отладочную информацию, полезную для отладки." -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3655,19 +3685,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "Данный пользователь не является участником диагностированного сервера." -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "Не пытайтесь меня обмануть, данный участник не может получить доступ к каналу {channel}!" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3680,7 +3710,7 @@ msgstr "\n" " Используйте команду `[p]allowlist clear`, чтобы отключить список разрешенных команд\n" " " -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3692,15 +3722,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "Пользователи были добавлены в список разрешенных." -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "Пользователь добавлен в список разрешенных." -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3709,21 +3739,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "Пользователи в списке разрешенных:" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "Пользователь в списке разрешенных:" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "Неизвестный или удаленный пользователь" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3736,15 +3766,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "Пользователи были удалены из списка разрешенных." -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "Пользователь был удален из списка разрешенных." -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3754,11 +3784,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "Разрешенный список был очищен." -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3769,7 +3799,7 @@ msgstr "\n" " Используйте `[p]blocklist clear`, чтобы отключить список блоков\n" " " -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3781,19 +3811,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "Вы не можете добавить владельца в блок-лист!" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "Пользователи были добавлены в блок-лист." -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "Пользователь добавлен в блок-лист." -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3802,15 +3832,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "Пользователи в списке блок-лист:" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "Пользователь в блок-списке:" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3822,15 +3852,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "Пользователи были удалены из блок-листа." -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "Пользователь был удален из блок-листа." -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3839,11 +3869,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "Блок-лист очищен." -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3856,7 +3886,7 @@ msgstr "\n" " Используйте команду `[p]localallowlist clear`, чтобы отключить список разрешений\n" " " -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3869,19 +3899,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "Я не могу разрешить вам сделать это, так как это лишит вас возможности выполнять команды, пожалуйста, сначала добавьте себя в список разрешенных." -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "Пользователи и/или роли были добавлены в список разрешенных." -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "Пользователь или роль были добавлены в список разрешений." -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3890,19 +3920,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "Разрешенные пользователи и/или роли:" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "Разрешенный пользователь или роль:" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "Неизвестный или удаленный пользователь/роль" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3916,19 +3946,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "Я не могу позволить вам сделать это, так как это лишит вас возможности выполнять команды." -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "Пользователи и/или роли были удалены из разрешительного списка сервера." -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "Пользователь или роль были удалены из разрешительного списка сервера." -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3938,11 +3968,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "Список разрешений сервера был очищен." -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3953,7 +3983,7 @@ msgstr "\n" " Используйте команду `[p]localblocklist clear` для отключения списка блокировки\n" " " -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3966,27 +3996,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "Вы не можете добавить себя в блок-лист!" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "Вы не можете добавить владельца гильдии в блок-лист!" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "Вы не можете добавить владельца бота в блок-лист!" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "Пользователи и/или роли были добавлены из блок-листа сервера." -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "Пользователь или роль были добавлены из блок-листа сервера." -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3995,15 +4025,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "Заблокированные пользователи и/или роли:" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "Заблокированный пользователь или роль:" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -4016,15 +4046,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "Пользователи и/или роли были удалены из блок-листа сервера." -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "Пользователь или роль были удалены из списка блокировки сервера." -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -4034,16 +4064,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "Список блокировки сервера был очищен." -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "Команды для включения и отключения команд и шестеренки." -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -4057,15 +4087,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "Вы не можете отключить эту шестеренку по умолчанию." -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "{cogname} по умолчанию отключено." -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -4079,11 +4109,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "{cogname} был установлен как включенный по умолчанию." -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4095,19 +4125,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "Вы не можете отключить эту шестеренку, так как в этом случае вы заблокируете себя." -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "{cogname} был отключен в этой гильдии." -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "{cogname} уже отключен (ничего не нужно делать)." -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4119,19 +4149,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "{cogname} был включен в этой гильдии." -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "Cog \"{arg}\" не найден." -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "{cogname} не был отключен (ничего не нужно делать)." -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4139,15 +4169,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "В этой гильдии отключены следующие шестеренки:\n" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "В этом гильдии нет неактивных шестеренок." -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4158,7 +4188,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4166,19 +4196,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "Нет глобально отключенных команд." -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "{} Команды отключены глобально.\n" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "1 команда отключена глобально.\n" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4186,19 +4216,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "Нет отключенных команд в {}." -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "{} команды отключены в {}.\n" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "1 команда отключена в {}.\n" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4212,7 +4242,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4224,19 +4254,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "Команда отключения не может быть `команда` или ни одной из под-команд." -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "Эта команда обозначена как всегда доступная и не может быть отключена." -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "Эта команда уже отключена глобально." -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4248,15 +4278,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "Вы не можете отключить эту команду." -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "Эта команда уже отключена на этом сервере." -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4269,7 +4299,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4281,11 +4311,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "Эта команда уже включена глобально." -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4297,15 +4327,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "Вы не можете включить эту команду." -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "Эта команда уже включена на этом сервере." -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4319,7 +4349,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4330,7 +4360,7 @@ msgstr "\n" " Сюда входят удаление дубликатов сообщений и упоминание спама из командной строки Моd-шестерни, а также фильтры из командной строки Filter-шестерни.\n" " " -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4339,19 +4369,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "Роли защищены от автоматических действий модерации:\n" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "Участники защищены от автоматических действий модерации:\n" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "Здесь нет настроек иммунитета." -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4363,11 +4393,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "Уже добавлено." -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4379,11 +4409,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "Нет в списке." -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4395,15 +4425,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "У них есть иммунитет." -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "У них нет иммунитета." -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4416,7 +4446,7 @@ msgstr "\n" " Примечание: Владельцы и администраторы могут переопределять список игнорирования.\n" " " -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4425,7 +4455,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4441,15 +4471,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "Канал добавлен в список игнорирования." -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "Канал уже добавлен в список игнорирования." -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4459,20 +4489,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "Этот сервер был добавлен в список игнорирования." -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "Этот сервер уже находится в списке игнорирования." -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "Команды для удаления серверов или каналов из списка игнорирования." -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4487,15 +4517,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "Канал удален из списка игнорирования." -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "Этот канал не был добавлен в список игнорирования." -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4504,30 +4534,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "Этот сервер был удален из списка игнорирования." -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "Этот сервер отсутствует в списке игнорируемых." -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "Этот сервер в настоящее время игнорируется." -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "Нет" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4790,3 +4820,11 @@ msgstr "Команда не найдена." msgid "You are not permitted to use this command." msgstr "Вам не разрешено использовать эту команду." +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/sk-SK.po b/redbot/core/locales/sk-SK.po index a2dd0cce11c..e73c79d37c6 100644 --- a/redbot/core/locales/sk-SK.po +++ b/redbot/core/locales/sk-SK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Slovak\n" "MIME-Version: 1.0\n" @@ -732,11 +732,11 @@ msgstr "" msgid "You need at least {cost} {currency} to use this command." msgstr "" -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1338,14 +1338,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "" @@ -1488,8 +1488,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "" @@ -2158,54 +2158,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "" + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." -msgstr "" - -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2218,28 +2248,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2250,15 +2280,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "" -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2273,24 +2303,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2306,7 +2336,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2319,15 +2349,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2340,15 +2370,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2361,15 +2391,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2382,15 +2412,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2403,44 +2433,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "" -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2458,15 +2488,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2483,15 +2513,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2503,15 +2533,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2523,15 +2553,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2549,7 +2579,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2566,21 +2596,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2597,15 +2627,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "" -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2621,7 +2651,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2636,15 +2666,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2659,15 +2689,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2687,19 +2717,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2709,19 +2739,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2732,20 +2762,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2753,7 +2783,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2765,7 +2795,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2776,7 +2806,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2788,7 +2818,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2800,7 +2830,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2809,15 +2839,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2825,18 +2855,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2844,7 +2874,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2859,23 +2889,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2886,19 +2916,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2910,11 +2940,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2925,11 +2955,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2946,15 +2976,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "" -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "" -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -2969,33 +2999,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "" -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "" -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3014,27 +3044,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3049,15 +3079,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3071,19 +3101,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3091,7 +3121,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3101,11 +3131,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3114,11 +3144,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3128,11 +3158,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3152,27 +3182,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3186,15 +3216,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3208,15 +3238,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3232,15 +3262,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3254,15 +3284,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3278,15 +3308,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3301,15 +3331,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3324,15 +3354,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3349,19 +3379,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3376,19 +3406,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3404,19 +3434,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3427,43 +3457,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr "" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "" -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "" -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3476,41 +3506,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3525,19 +3555,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3546,7 +3576,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3558,15 +3588,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3575,21 +3605,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3602,15 +3632,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3620,11 +3650,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3632,7 +3662,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3644,19 +3674,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3665,15 +3695,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3685,15 +3715,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3702,11 +3732,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3715,7 +3745,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3728,19 +3758,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3749,19 +3779,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3775,19 +3805,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3797,11 +3827,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3809,7 +3839,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3822,27 +3852,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3851,15 +3881,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3872,15 +3902,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3890,16 +3920,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3913,15 +3943,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3935,11 +3965,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3951,19 +3981,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3975,19 +4005,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -3995,15 +4025,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4014,7 +4044,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4022,19 +4052,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4042,19 +4072,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4068,7 +4098,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4080,19 +4110,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4104,15 +4134,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4125,7 +4155,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4137,11 +4167,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4153,15 +4183,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4175,7 +4205,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4183,7 +4213,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4192,19 +4222,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4216,11 +4246,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4232,11 +4262,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4248,15 +4278,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4265,7 +4295,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4274,7 +4304,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4290,15 +4320,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4308,20 +4338,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4336,15 +4366,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4353,30 +4383,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4634,3 +4664,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/sl-SI.po b/redbot/core/locales/sl-SI.po index 33189d80514..ddf1c48e28f 100644 --- a/redbot/core/locales/sl-SI.po +++ b/redbot/core/locales/sl-SI.po @@ -1,14 +1,14 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+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.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" +"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" "X-Crowdin-Language: sl\n" @@ -737,11 +737,11 @@ msgstr "Plačevanje v zasebnih sporočilih ni mogoče brez globalne banke." msgid "You need at least {cost} {currency} to use this command." msgstr "Potrebno je vsaj {cost}{currency} da uporabiš to komando." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1366,14 +1366,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "" @@ -1516,8 +1516,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "" @@ -2194,54 +2194,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "" + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." -msgstr "" - -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2254,28 +2284,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2286,15 +2316,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "" -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2309,24 +2339,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2342,7 +2372,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2355,15 +2385,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2376,15 +2406,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2397,15 +2427,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2418,15 +2448,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2439,44 +2469,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "" -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2494,15 +2524,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2519,15 +2549,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2539,15 +2569,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2559,15 +2589,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2585,7 +2615,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2602,21 +2632,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2633,15 +2663,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "" -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2657,7 +2687,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2672,15 +2702,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2695,15 +2725,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2723,19 +2753,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2745,19 +2775,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2768,20 +2798,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2789,7 +2819,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2801,7 +2831,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2812,7 +2842,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2824,7 +2854,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2836,7 +2866,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2845,15 +2875,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2861,18 +2891,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2880,7 +2910,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2895,23 +2925,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2922,19 +2952,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2946,11 +2976,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2961,11 +2991,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2982,15 +3012,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "" -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "" -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -3005,33 +3035,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "" -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "" -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3050,27 +3080,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3085,15 +3115,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3107,19 +3137,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3127,7 +3157,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3137,11 +3167,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3150,11 +3180,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3164,11 +3194,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3188,27 +3218,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3222,15 +3252,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3244,15 +3274,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3268,15 +3298,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3290,15 +3320,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3314,15 +3344,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3337,15 +3367,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3360,15 +3390,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3385,19 +3415,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3412,19 +3442,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3440,19 +3470,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3463,43 +3493,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr "" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "" -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "" -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3512,41 +3542,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3561,19 +3591,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3582,7 +3612,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3594,15 +3624,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3611,21 +3641,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3638,15 +3668,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3656,11 +3686,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3668,7 +3698,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3680,19 +3710,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3701,15 +3731,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3721,15 +3751,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3738,11 +3768,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3751,7 +3781,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3764,19 +3794,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3785,19 +3815,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3811,19 +3841,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3833,11 +3863,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3845,7 +3875,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3858,27 +3888,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3887,15 +3917,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3908,15 +3938,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3926,16 +3956,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3949,15 +3979,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3971,11 +4001,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3987,19 +4017,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4011,19 +4041,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4031,15 +4061,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4050,7 +4080,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4058,19 +4088,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4078,19 +4108,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4104,7 +4134,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4116,19 +4146,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4140,15 +4170,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4161,7 +4191,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4173,11 +4203,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4189,15 +4219,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4211,7 +4241,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4219,7 +4249,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4228,19 +4258,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4252,11 +4282,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4268,11 +4298,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4284,15 +4314,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4301,7 +4331,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4310,7 +4340,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4326,15 +4356,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4344,20 +4374,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4372,15 +4402,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4389,30 +4419,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4670,3 +4700,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/sv-SE.po b/redbot/core/locales/sv-SE.po index 84c00f18d25..c424d05c386 100644 --- a/redbot/core/locales/sv-SE.po +++ b/redbot/core/locales/sv-SE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -742,11 +742,11 @@ msgstr "Kan inte betala för detta kommando i DM utan en global bank." msgid "You need at least {cost} {currency} to use this command." msgstr "Du behöver minst {cost} {currency} för att använda detta kommando." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1362,14 +1362,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "" @@ -1512,8 +1512,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "" @@ -2182,54 +2182,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "Klart." + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." -msgstr "Klart." - -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2242,28 +2272,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2274,15 +2304,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "Jag saknar behörighet för att ändra mitt egna smeknamn." -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2297,24 +2327,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2330,7 +2360,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2343,15 +2373,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2364,15 +2394,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2385,15 +2415,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2406,15 +2436,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2427,44 +2457,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "" -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2482,15 +2512,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2507,15 +2537,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2527,15 +2557,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2547,15 +2577,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2573,7 +2603,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2590,21 +2620,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2621,15 +2651,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "Språket har ändrats." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2645,7 +2675,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2660,15 +2690,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2683,15 +2713,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2711,19 +2741,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2733,19 +2763,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2756,20 +2786,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2777,7 +2807,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2789,7 +2819,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2800,7 +2830,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2812,7 +2842,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2824,7 +2854,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2833,15 +2863,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2849,18 +2879,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2868,7 +2898,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2883,23 +2913,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2910,19 +2940,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2934,11 +2964,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2949,11 +2979,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2970,15 +3000,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "" -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "" -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -2993,33 +3023,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "Avbruten." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "Prefix ändrat." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3038,27 +3068,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3073,15 +3103,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3095,19 +3125,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3115,7 +3145,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3125,11 +3155,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3138,11 +3168,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3152,11 +3182,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3176,27 +3206,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3210,15 +3240,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3232,15 +3262,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3256,15 +3286,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3278,15 +3308,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3302,15 +3332,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3325,15 +3355,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3348,15 +3378,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3373,19 +3403,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3400,19 +3430,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3428,19 +3458,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3451,43 +3481,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "genom DM" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "från {}" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr "" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "Använd `{}dm {} `för att svara användaren" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "Skickat av {} {}" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "Ditt meddelande har sänts." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "Jag kan inte leverera ditt meddelande. Förlåt." -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3500,41 +3530,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3549,19 +3579,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3570,7 +3600,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3582,15 +3612,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3599,21 +3629,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3626,15 +3656,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3644,11 +3674,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3656,7 +3686,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3668,19 +3698,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3689,15 +3719,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3709,15 +3739,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3726,11 +3756,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3739,7 +3769,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3752,19 +3782,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3773,19 +3803,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3799,19 +3829,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3821,11 +3851,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3833,7 +3863,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3846,27 +3876,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3875,15 +3905,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3896,15 +3926,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3914,16 +3944,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3937,15 +3967,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3959,11 +3989,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3975,19 +4005,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3999,19 +4029,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4019,15 +4049,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4038,7 +4068,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4046,19 +4076,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4066,19 +4096,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4092,7 +4122,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4104,19 +4134,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4128,15 +4158,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4149,7 +4179,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4161,11 +4191,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4177,15 +4207,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4199,7 +4229,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4207,7 +4237,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4216,19 +4246,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4240,11 +4270,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4256,11 +4286,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4272,15 +4302,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4289,7 +4319,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4298,7 +4328,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4314,15 +4344,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4332,20 +4362,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4360,15 +4390,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4377,30 +4407,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "Inget" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4658,3 +4688,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/tr-TR.po b/redbot/core/locales/tr-TR.po index 25c48272b10..f1d107881e7 100644 --- a/redbot/core/locales/tr-TR.po +++ b/redbot/core/locales/tr-TR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -767,11 +767,11 @@ msgstr "Bu komut için özel mesajda küresel banka olmaksızın ödeme yapılam msgid "You need at least {cost} {currency} to use this command." msgstr "Bu komutu kullanabilmen için {cost} {currency} ihtiyacın var." -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1421,14 +1421,14 @@ msgid "Embeds are now {} for this channel." msgstr "Bu kanal için yerleşik mesaj ayarı artık {}." #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "açıldı" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "deaktif" @@ -1575,8 +1575,8 @@ msgstr "Bu sunuculardan çıkmamı istediğinize emin misiniz?" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "`{server_name}` sunucusundan çıkamam: O sunucunun sahibi benim." -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "Yanıt yok, zaman aşımı oluştu." @@ -2275,41 +2275,45 @@ msgstr "Açıklama sıfıtrlandı." msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "Bu açıklama düzgün gösterilemeyecek kadar uzun. Lütfen 250 den az karakterle tekrar deneyin." -#: redbot/core/core_commands.py:2854 -#, docstring -msgid "Sets [botname]'s avatar\n\n" -" Supports either an attachment or an image URL.\n\n" -" **Examples:**\n" -" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" -" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" -" **Arguments:**\n" -" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" -" " -msgstr "" - -#: redbot/core/core_commands.py:2877 +#: redbot/core/core_commands.py:2868 msgid "That URL is invalid." msgstr "URL geçerli değil." -#: redbot/core/core_commands.py:2879 +#: redbot/core/core_commands.py:2870 msgid "Something went wrong while trying to get the image." msgstr "Resime ulaşmaya çalışırken bir şey ters gitti." -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 msgid "Done." msgstr "Tamamdır." -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2906 +#, docstring +msgid "Sets [botname]'s avatar\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" +" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2923 #, docstring msgid "\n" " Removes [botname]'s avatar.\n\n" @@ -2318,11 +2322,37 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 +#: redbot/core/core_commands.py:2931 msgid "Avatar removed." msgstr "Avatar kaldırıldı." -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2953 +#, docstring +msgid "\n" +" Removes [botname]'s banner.\n\n" +" **Example:**\n" +" - `[p]set bot banner remove`\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." +msgstr "" + +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2335,29 +2365,29 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "Doğrulanmış bir botun kullanıcı adı elle değiştirilemez. Lütfen değiştirmek için Discord destek ile görüşün." -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "İsim değiştirme başarısız. 32 karakter veya daha kısa olmalı." -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "İsim değiştirmede zaman aşımı. Botun ismini saatte sadece 2 kere değiştirebileceğinizi unutmayın. Botun ismini sık değiştirmeniz gerekiyorsa takma adlar kullanın: {command}" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "İsim değiştirilemedi. Discord şu hatayı verdi:\n" "{error_message}" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "İsim değiştirilmeye çalışılırken beklenmedik hata oluştu." -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2368,15 +2398,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "İsim değiştirme başarısız. 32 karakter veya daha kısa olmalı." -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "Kendi takma ismimi değiştirmek için izinlerim yok." -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2391,24 +2421,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "Özel yazı temizlendi." -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "Özel yazı ayarlandı." -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "Yazı 1024 karakterden kısa olmak zorundadır." -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "[botname] ayarlarını değiştirme komutları." -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2424,7 +2454,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2437,15 +2467,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "Durum `{game.name} Oynuyor` a ayarlandı." -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "Oyun temizlendi." -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2458,15 +2488,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "Durum `{listening} Dinliyor` a ayarlandı." -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "Dinleme temizlendi." -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2479,15 +2509,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "Durum `{watching} İzliyor` a ayarlandı." -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "İzleme temizlendi." -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2500,15 +2530,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "Durum `{competing} içinde kapışıyor` olarak ayarlandı." -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "Kapışma temizlendi." -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2521,44 +2551,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "Durum {} olarak değiştirildi." -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "[botname] durumunu çevrimiçi olarak ayarlayın." -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "[botname] durumunu rahatsız etme olarak ayarlayın." -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "[botname] durumunu boşta olarak ayarlayın." -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "[botname] durumunu görünmez olarak ayarlayın." -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "[botname] için sunucu admin ve mod rollerini ayarlayın." -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2576,15 +2606,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "Bu rol zaten Admin rolü." -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "Bu rol, Admin rolü olarak ayarlandı." -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2601,15 +2631,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "Bu rol zaten Mod rolü." -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "Bu rol, mod rolü olarak ayarlandı." -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2621,15 +2651,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "O rol zaten admin rolü değildi." -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "Bu rol artık Admin olarak kabul edilmiyor." -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2641,15 +2671,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "O rol zaten moderatör rolü değildi." -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "Bu rol artık Mod olarak kabul edilmiyor." -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2667,7 +2697,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2684,21 +2714,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "Geçersiz dil kodu. Örnek biçim: `en-US`" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "Geçersiz biçem - dil koduyla birlikte ülke kodu da verilmelidir, örn. `en-US`" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "Küresel bölge ayarlandı." -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2715,15 +2745,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "Bölge varsayılana ayarlandı." -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "Yerel ayar değiştirildi." -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2739,7 +2769,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2754,15 +2784,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "Küresel kapsamda artık bölgesel biçimlendirme için bot'un bölgesi kullanılacak." -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "Küresel kapsamda artık bölgesel biçimlendirme için `{language_code}` bölgesi kullanılacak." -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2777,15 +2807,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "Bu sunucuda bot bölgesel biçimlendirme için bölge ayarına dayanacak." -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "Bot artık bölgesel biçimlendirme için `{language_code}` bölgesine dayanacak." -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2805,19 +2835,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "`{service}` API tokenleri ayarlandı." -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2827,19 +2857,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "Henüz hiç API hizmeti ayarlanmamış." -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "API hizmetleri ayarla:\n" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "API hizmeti ayarla:\n" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2850,21 +2880,21 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "Aşağıdaki hizmetler başarıyla kaldırıldı:\n" "{services_list}" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "Hizmet başarıyla kaldırıldı: {service_name}" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "Seçtiğiniz hiç bir hizmetin ayarlanmış herhangi bir anahtarı bulunmamaktaydı." -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2875,7 +2905,7 @@ msgstr "\n" " Bu bildirimlere `[p]contact` komutunun kullanımı ve kullanılabilir Red güncellemeleri dahildir.\n" " " -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2887,7 +2917,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2898,7 +2928,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2910,7 +2940,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2922,7 +2952,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2931,15 +2961,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "Bildirim gönderilen ek kanal bulunmamakta." -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "{id} id'li kanal bilinmiyor" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2947,11 +2977,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" @@ -2961,7 +2991,7 @@ msgstr "Admin rolleri: {admin}\n" "Dil: {guild_locale}\n" "Yöresel biçem: {guild_regional_format}\n" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2973,7 +3003,7 @@ msgstr "{bot_name} Ayarları:\n\n" "Küresel yöresel biçem: {regional_format}\n" "Varsayılan yerleşik mesaj rengi: {colour}" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2988,23 +3018,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "Komut silme kapatıldı." -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "Silmeden önce beklenecek süre {num} saniyeye ayarlandı." -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "Bot komut içeren mesajları {num} saniyeden sonra silecek. Bunu kapamak için değeri -1 yapın" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "Komut içeren mesajları silmeyeceğim." -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -3015,19 +3045,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "Bot {} kullanmak için yapılandırılmış rengini katıştırır." -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "olmayacak" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "olacak" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -3039,11 +3069,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "Bulanık komut arama {} bu sunucu için olmuştur." -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -3054,11 +3084,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "Bulanık komut arama {} DMs içinde olmuştur." -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -3075,15 +3105,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "Renk sıfırlandı." -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "Renk ayarlandı." -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -3098,33 +3128,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "İptal." -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "Prefix öneki değiştirildi." -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "Önekler ayarlandı." -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3143,27 +3173,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "Sunucu önekleri sıfırlandı." -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "Sunucu öneki ayarlandı." -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "Sunucu önekleri ayarlandı." -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3178,15 +3208,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3200,19 +3230,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3223,7 +3253,7 @@ msgstr "\n" " Tüm yardım ayarları global olarak uygulanır.\n" " " -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3233,11 +3263,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "Dikkat: Varsayılan biçimlendirici kullanılmamakta, bu ayarlar etkili olmayabilir." -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3246,11 +3276,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "Yardım biçimlendiricisi sıfırlandı. Bu cogların yardım üzerinde değişiklik yapmasını önlemeyecektir, eğer sorun buysa bir cogı silmeniz gerekebilir." -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3260,11 +3290,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "Yardım ayarları varsayılana sıfırlandı. Eğer yardım biçimlendiricisi 3. parti kaynaklıysa bir etkisi olmayabilir." -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3284,27 +3314,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "Yardım menüler kullanmayacak." -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3318,15 +3348,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "Yardım gizli komutları filtrelemeyecek." -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "Yardım gizli komutları filtreleyecek." -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3340,15 +3370,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3364,15 +3394,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "Yardım artık özel mesaj olarak gönderilirse komuta tik atacaktır." -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "Yardım özel mesaj olarak gönderilirse komuta tik atmayacak." -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3386,15 +3416,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "Yardım sadece çalıştırılabilir komutlar için kullanılabilecek." -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "Yardım komutun çalıştırılabilir oluşuna dikkat etmeyecek." -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3410,15 +3440,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "Yardım bir konunun varlığını doğrulayacak." -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "Yardım konuların varlığını yalnızca belirsiz yardım ile doğrulayacak (etkinse)." -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3433,15 +3463,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "En az 500 olan bir değer sunmalısınız." -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "Bitmiş. Sayfa başına karakter sınırı {} için ayarlandı." -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3456,15 +3486,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "Sıfır veya daha büyük bir değer vermek gerekir!" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "Bitmiş. Sayfa sınırı {} için ayarlandı." -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3481,19 +3511,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "Süre 14 günden uzun olamaz." -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "Tamamdır. Yardım mesajları artık silinmeyecek." -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "Tamamdır. Silmeden önce {} saniye beklenecek." -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3508,19 +3538,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3536,19 +3566,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "Tagline sıfırlandı." -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "Senin slogan çok uzundur! Lütfen en fazla 2048 karakter uzunluğunda olmasını kısaltın." -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "Etiket ayarlandı." -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3559,43 +3589,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "Kullanıcı Kimliği" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "vasitasiyla" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "()" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr " | sunucu kimliği: {}" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "Bu Kullanıcı için yanıt için ' {} dm {} ' kullanın" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "{} {} Tarafından gönderilen" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "Bunu hiçbir yere göndermemek üzere ayarlandım." -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "Mesajınız gönderildi." -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "Mesajınızı teslim edemiyorum. Afedersiniz." -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3608,41 +3638,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "Geçersiz ID. Kullanıcı bulunamadı veya kullanıcı bir bot. Yalnızca ortak bir sunucuda bulunduğum kişilere mesaj atabilirsiniz." -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "Sahibi {}" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "{} Kişi bu iletiyle yanıtlayabilirsiniz" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "Üzgünüz, ben mesajınızı teslim edemedin için {}" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "Mesaj iletildi" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "Bot'un veri yolunu yazdırır." -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "Data dizini: {path}" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "Hata ayıklama için işe yarar bilgi gösterir." -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3657,19 +3687,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3678,7 +3708,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3690,15 +3720,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "Kullanıcılar beyaz listeye eklendi." -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "Kullanıcı beyaz listeye eklendi." -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3707,21 +3737,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "Beyaz listedeki kullanıcılar:" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "Beyaz listedeki kullanıcı:" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "Bilinmeyen ya da Silinmiş Üye" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3734,15 +3764,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "Kullanıcılar beyaz listeden çıkarıldı." -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "Kullanıcı beyaz listeden çıkarıldı." -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3752,11 +3782,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "Beyaz liste temizlendi." -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3767,7 +3797,7 @@ msgstr "\n" " Kara listeyi kapamak için `[p]blocklist clear` komutunu kullanın\n" " " -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3779,19 +3809,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "Bir bot sahibini kara listeye ekleyemezsiniz." -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "Kullanıcılar kara listeye eklendi." -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "Kullanıcı kara listeye eklendi." -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3800,15 +3830,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "Kara listedeki kullanıcılar:" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "Kara listedeki kullanıcı:" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3820,15 +3850,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "Kullanıcılar kara listeden çıkarıldı." -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "Kullanıcı kara listeden çıkarıldı." -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3837,11 +3867,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "Kara liste temizlendi." -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3854,7 +3884,7 @@ msgstr "\n" " Beyaz listeyi kapamak için `[p]localallowlist clear` kullanın\n" " " -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3867,19 +3897,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "Komutları kullanmanı engelleyeceği için bunu yapmana izin veremem, önce kendini bir beyaz listeye eklediğinden emin ol." -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "Kullanıcılar ve/veya roller beyaz listeye eklendi." -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "Kullanıcı veya rol beyaz listeye eklendi." -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3888,19 +3918,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "İzin verilen kullanıcılar ve/veya roller:" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "İzin verilen kullanıcı veya rol:" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "Bilinmeyen veya Silinmiş Kullanıcı/Rol" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3914,19 +3944,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "Komutları kullanmanı engelleyeceğinden bunu yapmana izin veremem." -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "Kullanıcılar ve/veya roller sunucu beyaz listesinden kaldırıldı." -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "Kullanıcı veya rol sunucu beyaz listesinden kaldırıldı." -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3936,11 +3966,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "Sunucu beyaz listesi temizlendi." -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3951,7 +3981,7 @@ msgstr "\n" " Kara listeyi devre dışı bırakmak için `[p]localblocklist clear` kullanın\n" " " -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3964,27 +3994,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "Kendini kara listeye ekleyemezsin." -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "Sunucu sahibini kara listeye ekleyemenzsin." -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "Bir bot sahibini kara listeye ekleyemezsiniz." -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "Kullanıcılar ve/veya roller sunucu kara listesine eklendi." -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "Kullanıcı veya rol sunucu kara listesine eklendi." -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3993,15 +4023,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "Engellenen kullanıcılar ve/veya roller:" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "Engellenen kullanıcı veya rol:" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -4014,15 +4044,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "Kullanıcılar ve/veya roller sunucu kara listesinden kaldırıldı." -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "Kullanıcı veya rol sunucu kara listesinden kaldırıldı." -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -4032,16 +4062,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "Sunucu kara listesi temizlendi." -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "Komutları ve cogları açıp kapamak için komutlar." -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -4055,15 +4085,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "Bu cog'ı varsayılan olarak kapatamazsınız." -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "{cogname} varsayılan olarak kapalıya ayarlandı." -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -4077,11 +4107,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "{cogname} varsayılan olarak etkine ayarlandı." -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4093,19 +4123,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "Bindiğiniz dalı kesmiş olacağınızdan bu cog'ı kapatamazsınız." -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "{cogname} bu sunucu için kapatıldı." -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "{cogname} zaten kapalıydı (yapılması gereken bir şey yok)" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4117,19 +4147,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "{cogname} bu sunucu için etkinleştirildi." -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "{cogname} zaten kapalı değildi (yapılması gereken bir şey yok)" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4137,15 +4167,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "Bu sunucuda aşağıdaki coglar kapalı:\n" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "Bu sunucuda kapatılmış cog bulunmamakta." -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4156,7 +4186,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4164,19 +4194,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "Küresel olarak kapatılmış herhangi bir komut bulunmamakta." -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "{} komut küresel olarak devre dışı.\n" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "1 komut küresel olarak devre dışı.\n" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4184,19 +4214,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "{} içinde her hangi bir devre dışı bırakılmış komut bulunmamakta." -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "{} komut {} içinde devre dışı bırakılmış.\n" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "{} içinde bir 1 komut devre dışı bırakılmış.\n" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4210,7 +4240,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4222,19 +4252,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "Devre dışı bırakılacak komut `command` veya alt komutlarından biri olamaz." -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "Bu komut daima kullanılabilir olarak işaretlenmiştir ve devre dışı bırakılamaz." -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "Bu komut zaten genel olarak devre dışı bırakıldı." -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4246,15 +4276,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "O komutu devre dışı bırakma iznin bulunmamakta." -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "Bu komut zaten bu Server'da devre dışı bırakıldı." -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4267,7 +4297,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4279,11 +4309,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "Bu komut genel olarak zaten etkinleştirilmiştir." -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4295,15 +4325,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "O komutu etkinleştirmeye iznin bulunmamakta." -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "Bu komut bu sunucu zaten etkinleştirilmiştir." -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4317,7 +4347,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4328,7 +4358,7 @@ msgstr "\n" " Bu Mod cogındaki kopya mesaj silme, etiket spamlama, ve Filter cogındaki filtreleri içerir.\n" " " -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4337,19 +4367,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "Otomatik moderasyon dokunulmazlığı olan roller:\n" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "Otomatik moderasyon dokunulmazlığı olan üyeler:\n" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "Burada hiç dokunulmazlık ayarı bulunmamakta." -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4361,11 +4391,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "Zaten eklendi." -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4377,11 +4407,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "Listede değil." -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4393,15 +4423,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "Onlar dokunulmaz." -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "Onlar dokunulmaz değil." -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4414,7 +4444,7 @@ msgstr "\n" " Not: Sahipler ve Adminleri bu liste etkilemez.\n" " " -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4423,7 +4453,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4439,15 +4469,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "Kanal yok sayılan olarak eklendi." -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "Kanal zaten görmezden gelinenler listesinde." -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4457,20 +4487,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "Bu sunucu yok sayılan olarak listeye eklendi." -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "Bu sunucu zaten yok sayılan modu açılmış." -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "Görmezden gelinenler listesinden sunucular veya kanallar çıkarmak için komutlar." -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4485,15 +4515,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "Kanal yok sayılan listesinden kaldırıldı." -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "O kanal görmezden gelinenler listesinde değil." -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4502,30 +4532,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "Bu sunucu yok sayılan listesinden kaldırıldı." -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "Bu sunucu görmezden gelinenler listesinde değil." -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "Bu sunucu şu anda görmezden gelinmekte." -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "None" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4788,3 +4818,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/uk-UA.po b/redbot/core/locales/uk-UA.po index e1d0de87a4c..e3e1bab6db6 100644 --- a/redbot/core/locales/uk-UA.po +++ b/redbot/core/locales/uk-UA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "MIME-Version: 1.0\n" @@ -732,11 +732,11 @@ msgstr "" msgid "You need at least {cost} {currency} to use this command." msgstr "" -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1338,14 +1338,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "" @@ -1488,8 +1488,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "" @@ -2158,54 +2158,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "" + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." -msgstr "" - -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2218,28 +2248,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2250,15 +2280,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "" -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2273,24 +2303,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2306,7 +2336,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2319,15 +2349,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2340,15 +2370,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2361,15 +2391,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2382,15 +2412,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2403,44 +2433,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "" -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2458,15 +2488,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2483,15 +2513,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2503,15 +2533,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2523,15 +2553,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2549,7 +2579,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2566,21 +2596,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2597,15 +2627,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "" -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2621,7 +2651,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2636,15 +2666,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2659,15 +2689,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2687,19 +2717,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2709,19 +2739,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2732,20 +2762,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2753,7 +2783,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2765,7 +2795,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2776,7 +2806,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2788,7 +2818,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2800,7 +2830,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2809,15 +2839,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2825,18 +2855,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2844,7 +2874,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2859,23 +2889,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2886,19 +2916,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2910,11 +2940,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2925,11 +2955,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2946,15 +2976,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "" -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "" -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -2969,33 +2999,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "" -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "" -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3014,27 +3044,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3049,15 +3079,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3071,19 +3101,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3091,7 +3121,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3101,11 +3131,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3114,11 +3144,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3128,11 +3158,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3152,27 +3182,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3186,15 +3216,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3208,15 +3238,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3232,15 +3262,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3254,15 +3284,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3278,15 +3308,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3301,15 +3331,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3324,15 +3354,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3349,19 +3379,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3376,19 +3406,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3404,19 +3434,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3427,43 +3457,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr "" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "" -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "" -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3476,41 +3506,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3525,19 +3555,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3546,7 +3576,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3558,15 +3588,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3575,21 +3605,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3602,15 +3632,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3620,11 +3650,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3632,7 +3662,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3644,19 +3674,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3665,15 +3695,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3685,15 +3715,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3702,11 +3732,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3715,7 +3745,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3728,19 +3758,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3749,19 +3779,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3775,19 +3805,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3797,11 +3827,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3809,7 +3839,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3822,27 +3852,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3851,15 +3881,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3872,15 +3902,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3890,16 +3920,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3913,15 +3943,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3935,11 +3965,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3951,19 +3981,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3975,19 +4005,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -3995,15 +4025,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4014,7 +4044,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4022,19 +4052,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4042,19 +4072,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4068,7 +4098,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4080,19 +4110,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4104,15 +4134,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4125,7 +4155,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4137,11 +4167,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4153,15 +4183,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4175,7 +4205,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4183,7 +4213,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4192,19 +4222,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4216,11 +4246,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4232,11 +4262,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4248,15 +4278,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4265,7 +4295,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4274,7 +4304,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4290,15 +4320,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4308,20 +4338,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4336,15 +4366,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4353,30 +4383,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4634,3 +4664,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/vi-VN.po b/redbot/core/locales/vi-VN.po index 471065056ac..fdc72dc036e 100644 --- a/redbot/core/locales/vi-VN.po +++ b/redbot/core/locales/vi-VN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "MIME-Version: 1.0\n" @@ -732,11 +732,11 @@ msgstr "" msgid "You need at least {cost} {currency} to use this command." msgstr "" -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1338,14 +1338,14 @@ msgid "Embeds are now {} for this channel." msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "" @@ -1488,8 +1488,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "" @@ -2158,54 +2158,84 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 +#: redbot/core/core_commands.py:2868 +msgid "That URL is invalid." +msgstr "" + +#: redbot/core/core_commands.py:2870 +msgid "Something went wrong while trying to get the image." +msgstr "" + +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." +msgstr "" + +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 +msgid "Done." +msgstr "Xong!" + +#: redbot/core/core_commands.py:2906 #, docstring msgid "Sets [botname]'s avatar\n\n" " Supports either an attachment or an image URL.\n\n" " **Examples:**\n" " - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" " - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" " **Arguments:**\n" " - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" " " msgstr "" -#: redbot/core/core_commands.py:2877 -msgid "That URL is invalid." -msgstr "" - -#: redbot/core/core_commands.py:2879 -msgid "Something went wrong while trying to get the image." +#: redbot/core/core_commands.py:2923 +#, docstring +msgid "\n" +" Removes [botname]'s avatar.\n\n" +" **Example:**\n" +" - `[p]set bot avatar remove`\n" +" " msgstr "" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2931 +msgid "Avatar removed." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 -msgid "Done." -msgstr "Xong!" - -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2953 #, docstring msgid "\n" -" Removes [botname]'s avatar.\n\n" +" Removes [botname]'s banner.\n\n" " **Example:**\n" -" - `[p]set bot avatar remove`\n" +" - `[p]set bot banner remove`\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 -msgid "Avatar removed." +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." msgstr "" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2218,28 +2248,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2250,15 +2280,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "" -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2273,24 +2303,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2306,7 +2336,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2319,15 +2349,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2340,15 +2370,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2361,15 +2391,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2382,15 +2412,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2403,44 +2433,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "" -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2458,15 +2488,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2483,15 +2513,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2503,15 +2533,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2523,15 +2553,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2549,7 +2579,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2566,21 +2596,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2597,15 +2627,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "" -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2621,7 +2651,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2636,15 +2666,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2659,15 +2689,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2687,19 +2717,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2709,19 +2739,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2732,20 +2762,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2753,7 +2783,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2765,7 +2795,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2776,7 +2806,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2788,7 +2818,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2800,7 +2830,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2809,15 +2839,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2825,18 +2855,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2844,7 +2874,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2859,23 +2889,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2886,19 +2916,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2910,11 +2940,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -2925,11 +2955,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -2946,15 +2976,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "" -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "" -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -2969,33 +2999,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "" -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "" -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3014,27 +3044,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3049,15 +3079,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3071,19 +3101,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3091,7 +3121,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3101,11 +3131,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3114,11 +3144,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3128,11 +3158,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3152,27 +3182,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3186,15 +3216,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3208,15 +3238,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3232,15 +3262,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3254,15 +3284,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3278,15 +3308,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3301,15 +3331,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3324,15 +3354,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3349,19 +3379,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3376,19 +3406,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3404,19 +3434,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3427,43 +3457,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr "" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "" -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "" -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3476,41 +3506,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3525,19 +3555,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3546,7 +3576,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3558,15 +3588,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3575,21 +3605,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3602,15 +3632,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3620,11 +3650,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3632,7 +3662,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3644,19 +3674,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3665,15 +3695,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3685,15 +3715,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3702,11 +3732,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3715,7 +3745,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3728,19 +3758,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3749,19 +3779,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3775,19 +3805,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3797,11 +3827,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3809,7 +3839,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3822,27 +3852,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3851,15 +3881,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3872,15 +3902,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3890,16 +3920,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3913,15 +3943,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -3935,11 +3965,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3951,19 +3981,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -3975,19 +4005,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -3995,15 +4025,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4014,7 +4044,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4022,19 +4052,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4042,19 +4072,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4068,7 +4098,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4080,19 +4110,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4104,15 +4134,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4125,7 +4155,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4137,11 +4167,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4153,15 +4183,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4175,7 +4205,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4183,7 +4213,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4192,19 +4222,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4216,11 +4246,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4232,11 +4262,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4248,15 +4278,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4265,7 +4295,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4274,7 +4304,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4290,15 +4320,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4308,20 +4338,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4336,15 +4366,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4353,30 +4383,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4634,3 +4664,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/zh-CN.po b/redbot/core/locales/zh-CN.po index 888dab9676c..b01aad2327a 100644 --- a/redbot/core/locales/zh-CN.po +++ b/redbot/core/locales/zh-CN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -750,11 +750,11 @@ msgstr "如果没有全球银行,无法在DM中支付此命令" msgid "You need at least {cost} {currency} to use this command." msgstr "你至少需要 {cost} {currency} 才能使用此命令" -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1389,14 +1389,14 @@ msgid "Embeds are now {} for this channel." msgstr "此频道的嵌入现在是 {}" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "启用" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "禁用" @@ -1543,8 +1543,8 @@ msgstr "" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "我不能离开服务器 '{server_name}`: 我是它的所有者" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "响应超时" @@ -2232,41 +2232,45 @@ msgstr "" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "" -#: redbot/core/core_commands.py:2854 -#, docstring -msgid "Sets [botname]'s avatar\n\n" -" Supports either an attachment or an image URL.\n\n" -" **Examples:**\n" -" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" -" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" -" **Arguments:**\n" -" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" -" " -msgstr "" - -#: redbot/core/core_commands.py:2877 +#: redbot/core/core_commands.py:2868 msgid "That URL is invalid." msgstr "这个URL无效" -#: redbot/core/core_commands.py:2879 +#: redbot/core/core_commands.py:2870 msgid "Something went wrong while trying to get the image." msgstr "尝试获取图片时出了错" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 msgid "Done." msgstr "完成。" -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2906 +#, docstring +msgid "Sets [botname]'s avatar\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" +" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2923 #, docstring msgid "\n" " Removes [botname]'s avatar.\n\n" @@ -2275,11 +2279,37 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 +#: redbot/core/core_commands.py:2931 msgid "Avatar removed." msgstr "头像已删除" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2953 +#, docstring +msgid "\n" +" Removes [botname]'s banner.\n\n" +" **Example:**\n" +" - `[p]set bot banner remove`\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." +msgstr "" + +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2292,29 +2322,29 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "验证的机器人的用户名不能手动更改。请联系Discord支持以更改它" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "更改名称失败。必须是32个或更少的字" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "更改用户名超时。请记住,你只能每小时进行2次。 如果你需要经常更改,请使用昵称: {command}" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "更改用户名失败。Discord返回以下错误:\n" "{error_message}" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "更改用户名时发生意外错误" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2325,15 +2355,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "更改昵称失败。必须是32个或更少的字" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "我没有更改我自己昵称的权限。" -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2348,24 +2378,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2381,7 +2411,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2394,15 +2424,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "游戏已清除" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2415,15 +2445,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "听状态已清除" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2436,15 +2466,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "观看已清除" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2457,15 +2487,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "竞争已被清除" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2478,44 +2508,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "状态已更改为 {}" -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2533,15 +2563,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "该角色现在被视为管理员角色" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2558,15 +2588,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "这个角色已经是一个模组角色" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "该角色现在被视为模组角色" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2578,15 +2608,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "该角色一开始并不是管理员角色" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "该角色不再被视为管理员角色" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2598,15 +2628,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "这个角色一开始并不是一个模组角色" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "该角色不再被视为模组角色" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2624,7 +2654,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2641,21 +2671,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "无效的语言代码。使用格式:`en-US`" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "无效格式 - 语言代码必须包含国家代码,例如 `en-US`" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "已设置全球区域设置" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2672,15 +2702,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "区域已经被设置。" -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2696,7 +2726,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2711,15 +2741,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2734,15 +2764,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2762,19 +2792,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2784,19 +2814,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2807,20 +2837,20 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2828,7 +2858,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2840,7 +2870,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2851,7 +2881,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2863,7 +2893,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2875,7 +2905,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2884,15 +2914,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2900,18 +2930,18 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" "Regional format: {guild_regional_format}\n" msgstr "" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2919,7 +2949,7 @@ msgid "{bot_name} Settings:\n\n" "Default embed colour: {colour}" msgstr "" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2934,23 +2964,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -2961,19 +2991,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "将不会" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "将" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -2985,11 +3015,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -3000,11 +3030,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -3021,15 +3051,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "" -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "颜色已设置" -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -3044,33 +3074,33 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "取消" -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "前缀集。" -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "前缀已设置" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3089,27 +3119,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "服务器前缀已重置" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "服务器前缀已设置" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "服务器前缀集" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3124,15 +3154,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3146,19 +3176,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3166,7 +3196,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3176,11 +3206,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3189,11 +3219,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3203,11 +3233,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3227,27 +3257,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3261,15 +3291,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3283,15 +3313,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3307,15 +3337,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3329,15 +3359,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3353,15 +3383,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3376,15 +3406,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3399,15 +3429,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "你必须给出零或更大的值" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "完成。页面限制已设置为 {}" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3424,19 +3454,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "延迟不能超过 14天" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "完成。帮助消息现在不会被删除" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "完成。删除延迟已设置为 {} 秒" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3451,19 +3481,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3479,19 +3509,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "标语已重置" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "你的标语太长了!!! 请缩短,长度不超过2048个字" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "已设置标语" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3502,43 +3532,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "用户 ID:{}" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "通过DM" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "从 {}" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr " | 服务器 ID: {}" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "使用 \"{} dm {} \" 来答复此用户" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "发送人 {} {}" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "我已被配置为没有发送到任何地方" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "你的消息已发送" -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "抱歉,我无法发送你的消息" -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3551,41 +3581,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "无效的ID,用户未找到或用户是机器人。你只能向我共享服务器的人发送消息" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "{} 的所有者" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "你可以通过{}联系人回复此消息" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "对不起,我无法将你的消息传递到 {}" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "消息已发送到 {}" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "打印机器人的数据路径" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "数据路径: {path}" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "显示对调试有用的调试信息" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3600,19 +3630,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3625,7 +3655,7 @@ msgstr "\n" " 使用 \"[p]allowlist clear\" 禁用许可名单\n" " " -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3637,15 +3667,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "用户已添加到许可名单中" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "用户已添加到许可名单中" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3654,21 +3684,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "许可名单上的用户:" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "许可名单上的用户:" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "未知或已删除的用户" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3681,15 +3711,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "用户已从许可名单中删除" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "用户已从许可名单中删除" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3699,11 +3729,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "许可名单已清除" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3714,7 +3744,7 @@ msgstr "\n" " 使用[p]blocklist clear` 来禁用黑名单列表\n" " " -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3726,19 +3756,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "你不能将所有者添加到黑名单" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "用户已被添加到黑名单中" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "用户已被添加到黑名单中" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3747,15 +3777,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "黑名单上的用户:" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "黑名单上的用户:" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3767,15 +3797,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "用户已从黑名单列表中删除" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "用户已从黑名单列表中删除" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3784,11 +3814,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "黑名单已被清除" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3801,7 +3831,7 @@ msgstr "\n" " 使用[p]localallowlist clear` 禁用许可名单\n" " " -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3814,19 +3844,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3835,19 +3865,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3861,19 +3891,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3883,11 +3913,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3895,7 +3925,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3908,27 +3938,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -3937,15 +3967,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -3958,15 +3988,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -3976,16 +4006,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -3999,15 +4029,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -4021,11 +4051,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4037,19 +4067,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4061,19 +4091,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4081,15 +4111,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4100,7 +4130,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4108,19 +4138,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "1 个命令已在全球禁用\n" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4128,19 +4158,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "{} 中没有任何禁用命令" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "{} 命令在 {} 中被禁用\n" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "1 个命令在{} 中被禁用\n" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4154,7 +4184,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4166,19 +4196,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "要禁用的命令不能是 `command` 或其任何子命令" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "此命令被指定为始终可用且无法禁用" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "该命令已在全球禁用" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4190,15 +4220,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "你无权禁用该命令" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "此命令已被此服务器禁用" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4211,7 +4241,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4223,11 +4253,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4239,15 +4269,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4261,7 +4291,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4269,7 +4299,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4278,19 +4308,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4302,11 +4332,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4318,11 +4348,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4334,15 +4364,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4351,7 +4381,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4360,7 +4390,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4376,15 +4406,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4394,20 +4424,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4422,15 +4452,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4439,30 +4469,30 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "无" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" msgstr "" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4720,3 +4750,11 @@ msgstr "" msgid "You are not permitted to use this command." msgstr "" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/locales/zh-TW.po b/redbot/core/locales/zh-TW.po index 7764b55d300..67e5265ea7d 100644 --- a/redbot/core/locales/zh-TW.po +++ b/redbot/core/locales/zh-TW.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-27 04:58+0000\n" +"POT-Creation-Date: 2024-07-10 18:37+0000\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "MIME-Version: 1.0\n" @@ -764,11 +764,11 @@ msgstr "如果沒有全球銀行,就無法在 DM 中支付此命令。 " msgid "You need at least {cost} {currency} to use this command." msgstr "您至少需要 {cost} {currency} 才能使用此命令。" -#: redbot/core/bot.py:2378 +#: redbot/core/bot.py:2382 msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" -#: redbot/core/bot.py:2383 +#: redbot/core/bot.py:2387 msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file." msgstr "" @@ -1416,14 +1416,14 @@ msgid "Embeds are now {} for this channel." msgstr "嵌入現在是此頻道的 {}。" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "enabled" msgstr "已啟用" #: redbot/core/core_commands.py:1408 redbot/core/core_commands.py:2765 -#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:3976 -#: redbot/core/core_commands.py:3997 +#: redbot/core/core_commands.py:2779 redbot/core/core_commands.py:4026 +#: redbot/core/core_commands.py:4047 msgid "disabled" msgstr "已停用" @@ -1569,8 +1569,8 @@ msgstr "您確定要退出此群組嗎?" msgid "I cannot leave the server `{server_name}`: I am the owner of it." msgstr "我不能離開服務器`{server_name}`:我是它的所有者。" -#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4068 -#: redbot/core/core_commands.py:4086 +#: redbot/core/core_commands.py:1652 redbot/core/core_commands.py:4118 +#: redbot/core/core_commands.py:4136 msgid "Response timed out." msgstr "沒有回應,已逾時" @@ -2270,41 +2270,45 @@ msgstr "說明重置。" msgid "This description is too long to properly display. Please try again with below 250 characters." msgstr "此描述太長,無法正確顯示。請在 250 個字符以下重試。" -#: redbot/core/core_commands.py:2854 -#, docstring -msgid "Sets [botname]'s avatar\n\n" -" Supports either an attachment or an image URL.\n\n" -" **Examples:**\n" -" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" -" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" -" - `[p]set bot avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n" -" **Arguments:**\n" -" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" -" " -msgstr "" - -#: redbot/core/core_commands.py:2877 +#: redbot/core/core_commands.py:2868 msgid "That URL is invalid." msgstr "網址是無效的" -#: redbot/core/core_commands.py:2879 +#: redbot/core/core_commands.py:2870 msgid "Something went wrong while trying to get the image." msgstr "嘗試取得圖片時發生錯誤" -#: redbot/core/core_commands.py:2889 -msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, or GIF format." +#: redbot/core/core_commands.py:2884 +msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2896 -msgid "JPG / PNG / GIF format only." +#: redbot/core/core_commands.py:2892 +msgid "Failed. Remember that you can edit my banner up to two times a hour. The URL or attachment must be a valid image in either JPG, PNG, GIF, or WEBP format." msgstr "" -#: redbot/core/core_commands.py:2898 redbot/core/core_commands.py:2967 -#: redbot/core/core_commands.py:2991 redbot/core/core_commands.py:3073 +#: redbot/core/core_commands.py:2899 +msgid "JPG / PNG / GIF / WEBP format only." +msgstr "" + +#: redbot/core/core_commands.py:2901 redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3041 redbot/core/core_commands.py:3123 msgid "Done." msgstr "完成。" -#: redbot/core/core_commands.py:2903 +#: redbot/core/core_commands.py:2906 +#, docstring +msgid "Sets [botname]'s avatar\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot avatar` - With an image attachment, this will set the avatar.\n" +" - `[p]set bot avatar` - Without an attachment, this will show the command help.\n" +" - `[p]set bot avatar https://avatars.githubusercontent.com/u/23690422` - Sets the avatar to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2923 #, docstring msgid "\n" " Removes [botname]'s avatar.\n\n" @@ -2313,11 +2317,37 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:2911 +#: redbot/core/core_commands.py:2931 msgid "Avatar removed." msgstr "頭像已移除。" -#: redbot/core/core_commands.py:2916 +#: redbot/core/core_commands.py:2936 +#, docstring +msgid "Sets [botname]'s banner\n\n" +" Supports either an attachment or an image URL.\n\n" +" **Examples:**\n" +" - `[p]set bot banner` - With an image attachment, this will set the banner.\n" +" - `[p]set bot banner` - Without an attachment, this will show the command help.\n" +" - `[p]set bot banner https://opengraph.githubassets.com` - Sets the banner to the provided url.\n\n" +" **Arguments:**\n" +" - `[url]` - An image url to be used as an banner. Leave blank when uploading an attachment.\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2953 +#, docstring +msgid "\n" +" Removes [botname]'s banner.\n\n" +" **Example:**\n" +" - `[p]set bot banner remove`\n" +" " +msgstr "" + +#: redbot/core/core_commands.py:2961 +msgid "Banner removed." +msgstr "" + +#: redbot/core/core_commands.py:2966 #, docstring msgid "Sets [botname]'s username.\n\n" " Maximum length for a username is 32 characters.\n\n" @@ -2330,28 +2360,28 @@ msgid "Sets [botname]'s username.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2932 +#: redbot/core/core_commands.py:2982 msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it." msgstr "無法手動更改已驗證機器人的用戶名。請聯繫 Discord 支持進行更改。" -#: redbot/core/core_commands.py:2939 +#: redbot/core/core_commands.py:2989 msgid "Failed to change name. Must be 32 characters or fewer." msgstr "更改名稱失敗。不得超過 32 個字符。" -#: redbot/core/core_commands.py:2945 +#: redbot/core/core_commands.py:2995 msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}" msgstr "更改用戶名超時。請記住,您每小時最多只能執行 2 次。如果您需要頻繁更改,請使用暱稱:{command}" -#: redbot/core/core_commands.py:2955 +#: redbot/core/core_commands.py:3005 msgid "Failed to change the username. Discord returned the following error:\n" "{error_message}" msgstr "更改用戶名失敗。 Discord 返回以下錯誤:{error_message}" -#: redbot/core/core_commands.py:2965 +#: redbot/core/core_commands.py:3015 msgid "Unexpected error occurred when trying to change the username." msgstr "嘗試更改用戶名時發生意外錯誤。" -#: redbot/core/core_commands.py:2973 +#: redbot/core/core_commands.py:3023 #, docstring msgid "Sets [botname]'s nickname for the current server.\n\n" " Maximum length for a nickname is 32 characters.\n\n" @@ -2362,15 +2392,15 @@ msgid "Sets [botname]'s nickname for the current server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:2985 +#: redbot/core/core_commands.py:3035 msgid "Failed to change nickname. Must be 32 characters or fewer." msgstr "更改暱稱失敗。不得超過 32 個字符。" -#: redbot/core/core_commands.py:2989 +#: redbot/core/core_commands.py:3039 msgid "I lack the permissions to change my own nickname." msgstr "我沒有更改自己暱稱的權限。" -#: redbot/core/core_commands.py:2996 +#: redbot/core/core_commands.py:3046 #, docstring msgid "Customizes a section of `[p]info`.\n\n" " The maximum amount of allowed characters is 1024.\n" @@ -2385,24 +2415,24 @@ msgid "Customizes a section of `[p]info`.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3013 +#: redbot/core/core_commands.py:3063 msgid "The custom text has been cleared." msgstr "自定義文本已被清除。" -#: redbot/core/core_commands.py:3017 +#: redbot/core/core_commands.py:3067 msgid "The custom text has been set." msgstr "自訂欄位已經設置" -#: redbot/core/core_commands.py:3020 +#: redbot/core/core_commands.py:3070 msgid "Text must be fewer than 1024 characters long." msgstr "文本長度必須少於 1024 個字符。" -#: redbot/core/core_commands.py:3029 +#: redbot/core/core_commands.py:3079 #, docstring msgid "Commands for setting [botname]'s status." msgstr "用於設置 [botname] 狀態的命令。" -#: redbot/core/core_commands.py:3043 +#: redbot/core/core_commands.py:3093 #, docstring msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n" @@ -2418,7 +2448,7 @@ msgid "Sets [botname]'s streaming status to a twitch stream.\n\n" " - `` - The text to follow `Streaming` in the status." msgstr "" -#: redbot/core/core_commands.py:3081 +#: redbot/core/core_commands.py:3131 #, docstring msgid "Sets [botname]'s playing status.\n\n" " This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n" @@ -2431,15 +2461,15 @@ msgid "Sets [botname]'s playing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3102 +#: redbot/core/core_commands.py:3152 msgid "Status set to `Playing {game.name}`." msgstr "狀態設置為“正在玩 {game.name}”。" -#: redbot/core/core_commands.py:3104 +#: redbot/core/core_commands.py:3154 msgid "Game cleared." msgstr "遊戲狀態已清除。" -#: redbot/core/core_commands.py:3112 +#: redbot/core/core_commands.py:3162 #, docstring msgid "Sets [botname]'s listening status.\n\n" " This will appear as `Listening to `.\n\n" @@ -2452,15 +2482,15 @@ msgid "Sets [botname]'s listening status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3134 +#: redbot/core/core_commands.py:3184 msgid "Status set to `Listening to {listening}`." msgstr "狀態設置為“正在收聽 {listening}”。" -#: redbot/core/core_commands.py:3137 +#: redbot/core/core_commands.py:3187 msgid "Listening cleared." msgstr "已清除正在聽狀態。" -#: redbot/core/core_commands.py:3145 +#: redbot/core/core_commands.py:3195 #, docstring msgid "Sets [botname]'s watching status.\n\n" " This will appear as `Watching `.\n\n" @@ -2473,15 +2503,15 @@ msgid "Sets [botname]'s watching status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3166 +#: redbot/core/core_commands.py:3216 msgid "Status set to `Watching {watching}`." msgstr "狀態設置為“正在看{watching}”。" -#: redbot/core/core_commands.py:3168 +#: redbot/core/core_commands.py:3218 msgid "Watching cleared." msgstr "已清除正在看狀態。" -#: redbot/core/core_commands.py:3176 +#: redbot/core/core_commands.py:3226 #, docstring msgid "Sets [botname]'s competing status.\n\n" " This will appear as `Competing in `.\n\n" @@ -2494,15 +2524,15 @@ msgid "Sets [botname]'s competing status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3198 +#: redbot/core/core_commands.py:3248 msgid "Status set to `Competing in {competing}`." msgstr "狀態設置為“在{competing} 中競爭”。" -#: redbot/core/core_commands.py:3201 +#: redbot/core/core_commands.py:3251 msgid "Competing cleared." msgstr "已清除競爭狀態。" -#: redbot/core/core_commands.py:3209 +#: redbot/core/core_commands.py:3259 #, docstring msgid "Sets [botname]'s custom status.\n\n" " This will appear as ``.\n\n" @@ -2515,44 +2545,44 @@ msgid "Sets [botname]'s custom status.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3230 +#: redbot/core/core_commands.py:3280 msgid "Custom status set to `{text}`." msgstr "" -#: redbot/core/core_commands.py:3232 +#: redbot/core/core_commands.py:3282 msgid "Custom status cleared." msgstr "" -#: redbot/core/core_commands.py:3237 +#: redbot/core/core_commands.py:3287 msgid "Status changed to {}." msgstr "狀態已更改為 {}。" -#: redbot/core/core_commands.py:3243 +#: redbot/core/core_commands.py:3293 #, docstring msgid "Set [botname]'s status to online." msgstr "將 [botname] 的狀態設置為在線。" -#: redbot/core/core_commands.py:3250 +#: redbot/core/core_commands.py:3300 #, docstring msgid "Set [botname]'s status to do not disturb." msgstr "將 [botname] 的狀態設置為請勿打擾。" -#: redbot/core/core_commands.py:3257 +#: redbot/core/core_commands.py:3307 #, docstring msgid "Set [botname]'s status to idle." msgstr "將 [botname] 的狀態設置為空閒。" -#: redbot/core/core_commands.py:3264 +#: redbot/core/core_commands.py:3314 #, docstring msgid "Set [botname]'s status to invisible." msgstr "將 [botname] 的狀態設置為隱藏。" -#: redbot/core/core_commands.py:3274 +#: redbot/core/core_commands.py:3324 #, docstring msgid "Set server's admin and mod roles for [botname]." msgstr "為 [botname] 設置伺務器的管理員和管理員身分組。" -#: redbot/core/core_commands.py:3280 +#: redbot/core/core_commands.py:3330 #, docstring msgid "\n" " Adds an admin role for this server.\n\n" @@ -2570,15 +2600,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3300 +#: redbot/core/core_commands.py:3350 msgid "This role is already an admin role." msgstr "此身分組已經是管理員身分組。" -#: redbot/core/core_commands.py:3302 +#: redbot/core/core_commands.py:3352 msgid "That role is now considered an admin role." msgstr "該身分組現在被視為管理員身分組。" -#: redbot/core/core_commands.py:3308 +#: redbot/core/core_commands.py:3358 #, docstring msgid "\n" " Adds a moderator role for this server.\n\n" @@ -2595,15 +2625,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3327 +#: redbot/core/core_commands.py:3377 msgid "This role is already a mod role." msgstr "此身分組已經是版主身分組。" -#: redbot/core/core_commands.py:3329 +#: redbot/core/core_commands.py:3379 msgid "That role is now considered a mod role." msgstr "該身分組現在被視為版主身分組。" -#: redbot/core/core_commands.py:3337 +#: redbot/core/core_commands.py:3387 #, docstring msgid "\n" " Removes an admin role for this server.\n\n" @@ -2615,15 +2645,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3349 +#: redbot/core/core_commands.py:3399 msgid "That role was not an admin role to begin with." msgstr "該身分組原本就不是管理員身分組。" -#: redbot/core/core_commands.py:3351 +#: redbot/core/core_commands.py:3401 msgid "That role is no longer considered an admin role." msgstr "該身分組不再被視為管理員身分組。" -#: redbot/core/core_commands.py:3359 +#: redbot/core/core_commands.py:3409 #, docstring msgid "\n" " Removes a mod role for this server.\n\n" @@ -2635,15 +2665,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3371 +#: redbot/core/core_commands.py:3421 msgid "That role was not a mod role to begin with." msgstr "該身分組原本就不是mod身分組。" -#: redbot/core/core_commands.py:3373 +#: redbot/core/core_commands.py:3423 msgid "That role is no longer considered a mod role." msgstr "該身分組不再被視為 mod 身分組。" -#: redbot/core/core_commands.py:3381 +#: redbot/core/core_commands.py:3431 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2661,7 +2691,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3408 +#: redbot/core/core_commands.py:3458 #, docstring msgid "\n" " Changes [botname]'s default locale.\n\n" @@ -2678,21 +2708,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3429 redbot/core/core_commands.py:3472 -#: redbot/core/core_commands.py:3534 redbot/core/core_commands.py:3579 +#: redbot/core/core_commands.py:3479 redbot/core/core_commands.py:3522 +#: redbot/core/core_commands.py:3584 redbot/core/core_commands.py:3629 msgid "Invalid language code. Use format: `en-US`" msgstr "語言代碼無效。 使用格式如:`en-US`" -#: redbot/core/core_commands.py:3433 redbot/core/core_commands.py:3476 -#: redbot/core/core_commands.py:3538 redbot/core/core_commands.py:3583 +#: redbot/core/core_commands.py:3483 redbot/core/core_commands.py:3526 +#: redbot/core/core_commands.py:3588 redbot/core/core_commands.py:3633 msgid "Invalid format - language code has to include country code, e.g. `en-US`" msgstr "格式無效 - 語言代碼必須包含國家代碼,例如 `en-US`" -#: redbot/core/core_commands.py:3440 +#: redbot/core/core_commands.py:3490 msgid "Global locale has been set." msgstr "已設置全域語言環境。" -#: redbot/core/core_commands.py:3446 +#: redbot/core/core_commands.py:3496 #, docstring msgid "\n" " Changes [botname]'s locale in this server.\n\n" @@ -2709,15 +2739,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3467 +#: redbot/core/core_commands.py:3517 msgid "Locale has been set to the default." msgstr "語言環境已設置為默認值。" -#: redbot/core/core_commands.py:3482 +#: redbot/core/core_commands.py:3532 msgid "Locale has been set." msgstr "已設置語言環境。" -#: redbot/core/core_commands.py:3487 +#: redbot/core/core_commands.py:3537 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2733,7 +2763,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3511 +#: redbot/core/core_commands.py:3561 #, docstring msgid "\n" " Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n" @@ -2748,15 +2778,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3528 +#: redbot/core/core_commands.py:3578 msgid "Global regional formatting will now be based on bot's locale." msgstr "全球區域格式現在將基於機器人的語言環境。" -#: redbot/core/core_commands.py:3545 +#: redbot/core/core_commands.py:3595 msgid "Global regional formatting will now be based on `{language_code}` locale." msgstr "全球區域格式現在將基於“{language_code}”區域設置。" -#: redbot/core/core_commands.py:3554 +#: redbot/core/core_commands.py:3604 #, docstring msgid "\n" " Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n" @@ -2771,15 +2801,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3572 +#: redbot/core/core_commands.py:3622 msgid "Regional formatting will now be based on bot's locale in this server." msgstr "區域格式現在將基於此服務器中機器人的語言環境。" -#: redbot/core/core_commands.py:3590 +#: redbot/core/core_commands.py:3640 msgid "Regional formatting will now be based on `{language_code}` locale." msgstr "區域格式現在將基於 `{language_code}` 區域設置。" -#: redbot/core/core_commands.py:3607 +#: redbot/core/core_commands.py:3657 #, docstring msgid "\n" " Commands to set, list or remove various external API tokens.\n\n" @@ -2799,19 +2829,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3631 +#: redbot/core/core_commands.py:3681 msgid "Click the button below to set your keys." msgstr "單擊下面的按鈕設置您的密鑰。" -#: redbot/core/core_commands.py:3633 +#: redbot/core/core_commands.py:3683 msgid "This API keys setup message has expired." msgstr "" -#: redbot/core/core_commands.py:3638 +#: redbot/core/core_commands.py:3688 msgid "`{service}` API tokens have been set." msgstr "`{service}` API 令牌已設置。" -#: redbot/core/core_commands.py:3642 +#: redbot/core/core_commands.py:3692 #, docstring msgid "\n" " Show all external API services along with their keys that have been set.\n\n" @@ -2821,19 +2851,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3653 +#: redbot/core/core_commands.py:3703 msgid "No API services have been set yet." msgstr "尚未設置任何 API 服務。" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API services:\n" msgstr "設置 API 服務:\n" -#: redbot/core/core_commands.py:3658 +#: redbot/core/core_commands.py:3708 msgid "Set API service:\n" msgstr "設置 API 服務:\n" -#: redbot/core/core_commands.py:3668 +#: redbot/core/core_commands.py:3718 #, docstring msgid "\n" " Remove the given services with all their keys and tokens.\n\n" @@ -2844,21 +2874,21 @@ msgid "\n" " - `` - The services to remove." msgstr "" -#: redbot/core/core_commands.py:3683 +#: redbot/core/core_commands.py:3733 msgid "Services deleted successfully:\n" "{services_list}" msgstr "服務刪除成功:\n" "{services_list}" -#: redbot/core/core_commands.py:3687 +#: redbot/core/core_commands.py:3737 msgid "Service deleted successfully: {service_name}" msgstr "服務刪除成功:{service_name}" -#: redbot/core/core_commands.py:3692 +#: redbot/core/core_commands.py:3742 msgid "None of the services you provided had any keys set." msgstr "您提供的所有服務都沒有設置任何密鑰。" -#: redbot/core/core_commands.py:3700 +#: redbot/core/core_commands.py:3750 #, docstring msgid "\n" " Commands for configuring owner notifications.\n\n" @@ -2868,7 +2898,7 @@ msgstr "\n" "用於配置所有者通知的命令。\n\n" " 所有者通知包括 `[p]contact` 的使用和可用的 Red 更新。 " -#: redbot/core/core_commands.py:3709 +#: redbot/core/core_commands.py:3759 #, docstring msgid "\n" " Opt-in on receiving owner notifications.\n\n" @@ -2880,7 +2910,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3728 +#: redbot/core/core_commands.py:3778 #, docstring msgid "\n" " Opt-out of receiving owner notifications.\n\n" @@ -2891,7 +2921,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3750 +#: redbot/core/core_commands.py:3800 #, docstring msgid "\n" " Adds a destination text channel to receive owner notifications.\n\n" @@ -2903,7 +2933,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3775 +#: redbot/core/core_commands.py:3825 #, docstring msgid "\n" " Removes a destination text channel from receiving owner notifications.\n\n" @@ -2915,7 +2945,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3799 +#: redbot/core/core_commands.py:3849 #, docstring msgid "\n" " Lists the configured extra destinations for owner notifications.\n\n" @@ -2924,15 +2954,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3809 +#: redbot/core/core_commands.py:3859 msgid "There are no extra channels being sent to." msgstr "沒有額外的頻道被發送到。" -#: redbot/core/core_commands.py:3820 +#: redbot/core/core_commands.py:3870 msgid "Unknown channel with id: {id}" msgstr "未知頻道:{id}" -#: redbot/core/core_commands.py:3830 +#: redbot/core/core_commands.py:3880 #, docstring msgid "\n" " Show the current settings for [botname].\n\n" @@ -2940,11 +2970,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3844 redbot/core/core_commands.py:3848 +#: redbot/core/core_commands.py:3894 redbot/core/core_commands.py:3898 msgid "Not Set." msgstr "未設定" -#: redbot/core/core_commands.py:3855 +#: redbot/core/core_commands.py:3905 msgid "Admin roles: {admin}\n" "Mod roles: {mod}\n" "Locale: {guild_locale}\n" @@ -2954,7 +2984,7 @@ msgstr "管理員角色:{admin}\n" "語言環境:{guild_locale}\n" "區域格式:{guild_regional_format}\n" -#: redbot/core/core_commands.py:3876 +#: redbot/core/core_commands.py:3926 msgid "{bot_name} Settings:\n\n" "Prefixes: {prefixes}\n" "{guild_settings}Global locale: {locale}\n" @@ -2966,7 +2996,7 @@ msgstr "{bot_name} 設置:\n\n" "全球區域格式:{regional_format}\n" "默認嵌入顏色:{colour}" -#: redbot/core/core_commands.py:3898 +#: redbot/core/core_commands.py:3948 #, docstring msgid "Set the delay until the bot removes the command message.\n\n" " Must be between -1 and 60.\n\n" @@ -2981,23 +3011,23 @@ msgid "Set the delay until the bot removes the command message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:3919 +#: redbot/core/core_commands.py:3969 msgid "Command deleting disabled." msgstr "命令刪除已禁用。" -#: redbot/core/core_commands.py:3921 +#: redbot/core/core_commands.py:3971 msgid "Delete delay set to {num} seconds." msgstr "刪除延遲設置為 {num} 秒。" -#: redbot/core/core_commands.py:3926 +#: redbot/core/core_commands.py:3976 msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages" msgstr "Bot 將在 {num} 秒後刪除命令消息。 將此值設置為 -1 以停止刪除消息" -#: redbot/core/core_commands.py:3933 +#: redbot/core/core_commands.py:3983 msgid "I will not delete command messages." msgstr "我不會刪除命令消息。" -#: redbot/core/core_commands.py:3939 +#: redbot/core/core_commands.py:3989 #, docstring msgid "\n" " Toggle whether to use the bot owner-configured colour for embeds.\n\n" @@ -3008,19 +3038,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3951 +#: redbot/core/core_commands.py:4001 msgid "The bot {} use its configured color for embeds." msgstr "{} 使用其配置的顏色進行嵌入。" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will not" msgstr "將不會" -#: redbot/core/core_commands.py:3952 +#: redbot/core/core_commands.py:4002 msgid "will" msgstr "將會" -#: redbot/core/core_commands.py:3960 +#: redbot/core/core_commands.py:4010 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search for the server.\n\n" @@ -3032,11 +3062,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3975 +#: redbot/core/core_commands.py:4025 msgid "Fuzzy command search has been {} for this server." msgstr "此服務器的模糊命令搜索已{}。" -#: redbot/core/core_commands.py:3983 +#: redbot/core/core_commands.py:4033 #, docstring msgid "\n" " Toggle whether to enable fuzzy command search in DMs.\n\n" @@ -3047,11 +3077,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:3996 +#: redbot/core/core_commands.py:4046 msgid "Fuzzy command search has been {} in DMs." msgstr "DM 中的模糊命令搜索已{}。" -#: redbot/core/core_commands.py:4004 +#: redbot/core/core_commands.py:4054 #, docstring msgid "\n" " Sets a default colour to be used for the bot's embeds.\n\n" @@ -3068,15 +3098,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4024 +#: redbot/core/core_commands.py:4074 msgid "The color has been reset." msgstr "顏色已重置。" -#: redbot/core/core_commands.py:4027 +#: redbot/core/core_commands.py:4077 msgid "The color has been set." msgstr "顏色已設置。" -#: redbot/core/core_commands.py:4036 +#: redbot/core/core_commands.py:4086 #, docstring msgid "Sets [botname]'s global prefix(es).\n\n" " Warning: This is not additive. It will replace all current prefixes.\n\n" @@ -3091,34 +3121,34 @@ msgid "Sets [botname]'s global prefix(es).\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4053 redbot/core/core_commands.py:4130 +#: redbot/core/core_commands.py:4103 redbot/core/core_commands.py:4180 msgid "Prefixes cannot start with '/', as it conflicts with Discord's slash commands." msgstr "前綴不能以“/”開頭,因為它與 Discord 內的斜線指令衝突。" -#: redbot/core/core_commands.py:4058 +#: redbot/core/core_commands.py:4108 msgid "Warning: A prefix is below the recommended length (1 character).\n" "Do you want to continue?" msgstr "" -#: redbot/core/core_commands.py:4072 redbot/core/core_commands.py:4090 +#: redbot/core/core_commands.py:4122 redbot/core/core_commands.py:4140 msgid "Cancelled." msgstr "已取消。" -#: redbot/core/core_commands.py:4076 +#: redbot/core/core_commands.py:4126 msgid "Warning: A prefix is above the recommended length (25 characters).\n" "Do you want to continue?" msgstr "警告:前綴超過建議的長度(25 個字符)。\n" "你要繼續嗎?" -#: redbot/core/core_commands.py:4094 +#: redbot/core/core_commands.py:4144 msgid "Prefix set." msgstr "前綴設置。" -#: redbot/core/core_commands.py:4096 +#: redbot/core/core_commands.py:4146 msgid "Prefixes set." msgstr "前綴設置。" -#: redbot/core/core_commands.py:4103 +#: redbot/core/core_commands.py:4153 #, docstring msgid "\n" " Sets [botname]'s server prefix(es).\n\n" @@ -3137,27 +3167,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4126 +#: redbot/core/core_commands.py:4176 msgid "Server prefixes have been reset." msgstr "服務器前綴已重置。" -#: redbot/core/core_commands.py:4134 +#: redbot/core/core_commands.py:4184 msgid "You cannot have a prefix shorter than 1 character." msgstr "" -#: redbot/core/core_commands.py:4137 +#: redbot/core/core_commands.py:4187 msgid "You cannot have a prefix longer than 25 characters." msgstr "前綴不能超過 25 個字符。" -#: redbot/core/core_commands.py:4142 +#: redbot/core/core_commands.py:4192 msgid "Server prefix set." msgstr "服務器前綴設置。" -#: redbot/core/core_commands.py:4144 +#: redbot/core/core_commands.py:4194 msgid "Server prefixes set." msgstr "服務器前綴設置。" -#: redbot/core/core_commands.py:4149 +#: redbot/core/core_commands.py:4199 #, docstring msgid "\n" " Set a global bot variable for using buttons in menus.\n\n" @@ -3182,15 +3212,15 @@ msgstr "\n" " - `[use_buttons]` - 是否使用按鈕。 留空以切換。\n" " " -#: redbot/core/core_commands.py:4168 +#: redbot/core/core_commands.py:4218 msgid "I will use buttons on basic menus." msgstr "我將在基本菜單上使用按鈕功能。" -#: redbot/core/core_commands.py:4170 +#: redbot/core/core_commands.py:4220 msgid "I will not use buttons on basic menus." msgstr "我不會在基本菜單上使用按鈕功能。" -#: redbot/core/core_commands.py:4175 +#: redbot/core/core_commands.py:4225 #, docstring msgid "\n" " Set the message that will be sent on uncaught bot errors.\n\n" @@ -3213,19 +3243,19 @@ msgstr "\n" " - `[msg]` - 自定義錯誤消息。 必須少於 1000 個字符。 省略重置為默認值。\n" " " -#: redbot/core/core_commands.py:4190 +#: redbot/core/core_commands.py:4240 msgid "The message must be less than 1000 characters." msgstr "消息必須少於 1000 個字符。" -#: redbot/core/core_commands.py:4194 +#: redbot/core/core_commands.py:4244 msgid "Successfully updated the error message." msgstr "成功更新錯誤信息。" -#: redbot/core/core_commands.py:4197 +#: redbot/core/core_commands.py:4247 msgid "Successfully reset the error message back to the default one." msgstr "成功將錯誤消息重置為默認消息。" -#: redbot/core/core_commands.py:4204 +#: redbot/core/core_commands.py:4254 #, docstring msgid "\n" " Commands to manage settings for the help command.\n\n" @@ -3235,7 +3265,7 @@ msgstr "\n" "管理幫助命令設定的命令。\n\n" "所有幫助設定都全域性應用。 " -#: redbot/core/core_commands.py:4213 +#: redbot/core/core_commands.py:4263 #, docstring msgid "\n" " Show the current help settings.\n\n" @@ -3245,11 +3275,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4227 +#: redbot/core/core_commands.py:4277 msgid "Warning: The default formatter is not in use, these settings may not apply." msgstr "警告:預設格式化程式未使用,這些設定可能不適用。" -#: redbot/core/core_commands.py:4237 +#: redbot/core/core_commands.py:4287 #, docstring msgid "\n" " This resets [botname]'s help formatter to the default formatter.\n\n" @@ -3258,11 +3288,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4246 +#: redbot/core/core_commands.py:4296 msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue." msgstr "幫助格式化程序已被重置。 這不會阻止 cogs 修改幫助,如果這是一個問題,您可能需要刪除 cog。" -#: redbot/core/core_commands.py:4255 +#: redbot/core/core_commands.py:4305 #, docstring msgid "\n" " This resets [botname]'s help settings to their defaults.\n\n" @@ -3272,11 +3302,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4265 +#: redbot/core/core_commands.py:4315 msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters." msgstr "幫助設置已重置為默認值。 使用 3rd 方幫助格式化程序時,這可能不會產生影響。" -#: redbot/core/core_commands.py:4277 +#: redbot/core/core_commands.py:4327 #, docstring msgid "\n" " Allows the help command to be sent as a paginated menu instead of separate\n" @@ -3296,27 +3326,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4297 +#: redbot/core/core_commands.py:4347 msgid "Help will use the select menu only." msgstr "幫助清單將僅使用選擇菜單模式。" -#: redbot/core/core_commands.py:4300 +#: redbot/core/core_commands.py:4350 msgid "Help will use button menus and add a select menu." msgstr "幫助清單將使用按鈕功能並添加一個菜單選擇欄。" -#: redbot/core/core_commands.py:4303 +#: redbot/core/core_commands.py:4353 msgid "Help will use button menus." msgstr "幫助清單將使用按鈕功能。" -#: redbot/core/core_commands.py:4306 +#: redbot/core/core_commands.py:4356 msgid "Help will use reaction menus." msgstr "幫助清單將使用反應功能。" -#: redbot/core/core_commands.py:4309 +#: redbot/core/core_commands.py:4359 msgid "Help will not use menus." msgstr "幫助不使用菜單。" -#: redbot/core/core_commands.py:4316 +#: redbot/core/core_commands.py:4366 #, docstring msgid "\n" " This allows the help command to show hidden commands.\n\n" @@ -3330,15 +3360,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4333 +#: redbot/core/core_commands.py:4383 msgid "Help will not filter hidden commands." msgstr "幫助不會過濾隱藏的命令。" -#: redbot/core/core_commands.py:4335 +#: redbot/core/core_commands.py:4385 msgid "Help will filter hidden commands." msgstr "幫助將過濾隱藏的命令。" -#: redbot/core/core_commands.py:4339 +#: redbot/core/core_commands.py:4389 #, docstring msgid "\n" " This allows the help command to show existing commands aliases if there is any.\n\n" @@ -3352,15 +3382,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4356 +#: redbot/core/core_commands.py:4406 msgid "Help will now show command aliases." msgstr "幫助現在將顯示命令別名。" -#: redbot/core/core_commands.py:4358 +#: redbot/core/core_commands.py:4408 msgid "Help will no longer show command aliases." msgstr "幫助將不再顯示命令別名。" -#: redbot/core/core_commands.py:4362 +#: redbot/core/core_commands.py:4412 #, docstring msgid "\n" " This allows the help command message to be ticked if help is sent to a DM.\n\n" @@ -3376,15 +3406,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4383 +#: redbot/core/core_commands.py:4433 msgid "Help will now tick the command when sent in a DM." msgstr "在 DM 中發送時,幫助現在將勾選命令。" -#: redbot/core/core_commands.py:4385 +#: redbot/core/core_commands.py:4435 msgid "Help will not tick the command when sent in a DM." msgstr "幫助在 DM 中發送時不會勾選命令。" -#: redbot/core/core_commands.py:4389 +#: redbot/core/core_commands.py:4439 #, docstring msgid "\n" " Sets if commands which can't be run in the current context should be filtered from help.\n\n" @@ -3398,15 +3428,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4406 +#: redbot/core/core_commands.py:4456 msgid "Help will only show for commands which can be run." msgstr "幫助只會顯示可以運行的命令。" -#: redbot/core/core_commands.py:4408 +#: redbot/core/core_commands.py:4458 msgid "Help will show up without checking if the commands can be run." msgstr "幫助將顯示而不檢查命令是否可以運行。" -#: redbot/core/core_commands.py:4412 +#: redbot/core/core_commands.py:4462 #, docstring msgid "\n" " Sets whether the bot should respond to help commands for nonexistent topics.\n\n" @@ -3422,15 +3452,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4433 +#: redbot/core/core_commands.py:4483 msgid "Help will verify the existence of help topics." msgstr "幫助將驗證幫助主題的存在。" -#: redbot/core/core_commands.py:4436 +#: redbot/core/core_commands.py:4486 msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)." msgstr "幫助將僅通過模糊幫助(如果啟用) 驗證幫助主題的存在。" -#: redbot/core/core_commands.py:4444 +#: redbot/core/core_commands.py:4494 #, docstring msgid "Set the character limit for each page in the help message.\n\n" " Note: This setting only applies to embedded help.\n\n" @@ -3445,15 +3475,15 @@ msgid "Set the character limit for each page in the help message.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4461 +#: redbot/core/core_commands.py:4511 msgid "You must give a value of at least 500 characters." msgstr "您必須提供至少 500 個字符的值。" -#: redbot/core/core_commands.py:4465 +#: redbot/core/core_commands.py:4515 msgid "Done. The character limit per page has been set to {}." msgstr "完畢。 每頁的字符數限制已設置為 {}。" -#: redbot/core/core_commands.py:4469 +#: redbot/core/core_commands.py:4519 #, docstring msgid "Set the maximum number of help pages sent in a server channel.\n\n" " If a help message contains more pages than this value, the help message will\n" @@ -3468,15 +3498,15 @@ msgid "Set the maximum number of help pages sent in a server channel.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4485 redbot/core/core_commands.py:4512 +#: redbot/core/core_commands.py:4535 redbot/core/core_commands.py:4562 msgid "You must give a value of zero or greater!" msgstr "您必須給出零或更大的值!" -#: redbot/core/core_commands.py:4489 +#: redbot/core/core_commands.py:4539 msgid "Done. The page limit has been set to {}." msgstr "完畢。 每頁的頁數限制已設置為 {}。" -#: redbot/core/core_commands.py:4494 +#: redbot/core/core_commands.py:4544 #, docstring msgid "Set the delay after which help pages will be deleted.\n\n" " The setting is disabled by default, and only applies to non-menu help,\n" @@ -3493,19 +3523,19 @@ msgid "Set the delay after which help pages will be deleted.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4515 +#: redbot/core/core_commands.py:4565 msgid "The delay cannot be longer than 14 days!" msgstr "延遲不能超過14天!" -#: redbot/core/core_commands.py:4520 +#: redbot/core/core_commands.py:4570 msgid "Done. Help messages will not be deleted now." msgstr "完畢。 現在不會刪除幫助消息。" -#: redbot/core/core_commands.py:4522 +#: redbot/core/core_commands.py:4572 msgid "Done. The delete delay has been set to {} seconds." msgstr "完畢。 刪除延遲已設置為 {} 秒。" -#: redbot/core/core_commands.py:4526 +#: redbot/core/core_commands.py:4576 #, docstring msgid "Set the timeout for reactions, if menus are enabled.\n\n" " The default is 30 seconds.\n" @@ -3520,19 +3550,19 @@ msgid "Set the timeout for reactions, if menus are enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4541 +#: redbot/core/core_commands.py:4591 msgid "You must give a value of at least 15 seconds!" msgstr "您必須提供至少 15 秒的值。" -#: redbot/core/core_commands.py:4544 +#: redbot/core/core_commands.py:4594 msgid "The timeout cannot be greater than 5 minutes!" msgstr "用戶超時不能少於 5 分鐘。" -#: redbot/core/core_commands.py:4548 +#: redbot/core/core_commands.py:4598 msgid "Done. The reaction timeout has been set to {} seconds." msgstr "完畢。 反應已設置為 {} 秒。" -#: redbot/core/core_commands.py:4552 +#: redbot/core/core_commands.py:4602 #, docstring msgid "\n" " Set the tagline to be used.\n\n" @@ -3548,19 +3578,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4570 +#: redbot/core/core_commands.py:4620 msgid "The tagline has been reset." msgstr "標語已被重置。" -#: redbot/core/core_commands.py:4574 +#: redbot/core/core_commands.py:4624 msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long." msgstr "你的標語太長了! 請將其縮短為不超過 2048 個字符。" -#: redbot/core/core_commands.py:4582 +#: redbot/core/core_commands.py:4632 msgid "The tagline has been set." msgstr "標語已被設置。" -#: redbot/core/core_commands.py:4587 +#: redbot/core/core_commands.py:4637 #, docstring msgid "Sends a message to the owner.\n\n" " This is limited to one message every 60 seconds per person.\n\n" @@ -3571,43 +3601,43 @@ msgid "Sends a message to the owner.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4599 +#: redbot/core/core_commands.py:4649 msgid "User ID: {}" msgstr "用戶 ID: {}" -#: redbot/core/core_commands.py:4602 +#: redbot/core/core_commands.py:4652 msgid "through DM" msgstr "通過 DM" -#: redbot/core/core_commands.py:4604 +#: redbot/core/core_commands.py:4654 msgid "from {}" msgstr "從 {}" -#: redbot/core/core_commands.py:4605 +#: redbot/core/core_commands.py:4655 msgid " | Server ID: {}" msgstr " | 伺服器ID: {}" -#: redbot/core/core_commands.py:4610 +#: redbot/core/core_commands.py:4660 msgid "Use `{}dm {} ` to reply to this user" msgstr "使用 `{}dm {} ` 回复此用戶" -#: redbot/core/core_commands.py:4612 +#: redbot/core/core_commands.py:4662 msgid "Sent by {} {}" msgstr "由 {} {} 送出" -#: redbot/core/core_commands.py:4617 +#: redbot/core/core_commands.py:4667 msgid "I've been configured not to send this anywhere." msgstr "我已被配置為不將其發送到任何地方。" -#: redbot/core/core_commands.py:4663 +#: redbot/core/core_commands.py:4713 msgid "Your message has been sent." msgstr "您的訊息已發送。" -#: redbot/core/core_commands.py:4665 +#: redbot/core/core_commands.py:4715 msgid "I'm unable to deliver your message. Sorry." msgstr "我無法傳遞你的信息。 對不起。" -#: redbot/core/core_commands.py:4670 +#: redbot/core/core_commands.py:4720 #, docstring msgid "Sends a DM to a user.\n\n" " This command needs a user ID to work.\n\n" @@ -3620,41 +3650,41 @@ msgid "Sends a DM to a user.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:4686 +#: redbot/core/core_commands.py:4736 msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with." msgstr "ID 無效、未找到用戶或用戶是機器人。 您只能向與我共享服務器的人發送消息。" -#: redbot/core/core_commands.py:4696 +#: redbot/core/core_commands.py:4746 msgid "Owner of {}" msgstr "擁有者 {}" -#: redbot/core/core_commands.py:4697 +#: redbot/core/core_commands.py:4747 msgid "You can reply to this message with {}contact" msgstr "您可以通過 {}contact 回覆此消息" -#: redbot/core/core_commands.py:4708 redbot/core/core_commands.py:4718 +#: redbot/core/core_commands.py:4758 redbot/core/core_commands.py:4768 msgid "Sorry, I couldn't deliver your message to {}" msgstr "抱歉,我無法將您的消息傳遞給 {}" -#: redbot/core/core_commands.py:4711 redbot/core/core_commands.py:4721 +#: redbot/core/core_commands.py:4761 redbot/core/core_commands.py:4771 msgid "Message delivered to {}" msgstr "傳遞給 {} 的消息" -#: redbot/core/core_commands.py:4726 +#: redbot/core/core_commands.py:4776 #, docstring msgid "Prints the bot's data path." msgstr "打印機器人的數據路徑。" -#: redbot/core/core_commands.py:4730 +#: redbot/core/core_commands.py:4780 msgid "Data path: {path}" msgstr "儲存到:{path}" -#: redbot/core/core_commands.py:4736 +#: redbot/core/core_commands.py:4786 #, docstring msgid "Shows debug information useful for debugging." msgstr "顯示對除錯有用的除錯信息。" -#: redbot/core/core_commands.py:4759 +#: redbot/core/core_commands.py:4809 #, docstring msgid "\n" " Diagnose issues with the command checks with ease!\n\n" @@ -3669,19 +3699,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4775 +#: redbot/core/core_commands.py:4825 msgid "A text channel, voice channel, stage channel, or thread needs to be passed when using this command in DMs." msgstr "" -#: redbot/core/core_commands.py:4792 +#: redbot/core/core_commands.py:4842 msgid "The given user is not a member of the diagnosed server." msgstr "給定用戶不是診斷服務器的成員。" -#: redbot/core/core_commands.py:4799 +#: redbot/core/core_commands.py:4849 msgid "Don't try to fool me, the given member can't access the {channel} channel!" msgstr "不要試圖欺騙我,給予的成員無法訪問 {channel} 頻道!" -#: redbot/core/core_commands.py:4810 +#: redbot/core/core_commands.py:4860 #, docstring msgid "\n" " Commands to manage the allowlist.\n\n" @@ -3693,7 +3723,7 @@ msgstr "\n" " 警告:當使用許可名單時,機器人將忽略不在名單上的每個人的命令。\n\n" " 使用 `[p]allowlist clear` 禁用允許列表 " -#: redbot/core/core_commands.py:4821 +#: redbot/core/core_commands.py:4871 #, docstring msgid "\n" " Adds users to the allowlist.\n\n" @@ -3705,15 +3735,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4833 +#: redbot/core/core_commands.py:4883 msgid "Users have been added to the allowlist." msgstr "用戶已被添加到白名單中。" -#: redbot/core/core_commands.py:4835 +#: redbot/core/core_commands.py:4885 msgid "User has been added to the allowlist." msgstr "用戶已添加到白名單" -#: redbot/core/core_commands.py:4839 +#: redbot/core/core_commands.py:4889 #, docstring msgid "\n" " Lists users on the allowlist.\n\n" @@ -3722,21 +3752,21 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4851 +#: redbot/core/core_commands.py:4901 msgid "Users on the allowlist:" msgstr "白名單上的用戶:" -#: redbot/core/core_commands.py:4853 +#: redbot/core/core_commands.py:4903 msgid "User on the allowlist:" msgstr "白名單中的用戶:" -#: redbot/core/core_commands.py:4857 redbot/core/core_commands.py:4953 +#: redbot/core/core_commands.py:4907 redbot/core/core_commands.py:5003 #: redbot/core/modlog.py:404 redbot/core/modlog.py:426 #: redbot/core/modlog.py:442 msgid "Unknown or Deleted User" msgstr "未知或已刪除用戶" -#: redbot/core/core_commands.py:4865 +#: redbot/core/core_commands.py:4915 #, docstring msgid "\n" " Removes users from the allowlist.\n\n" @@ -3749,15 +3779,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4879 +#: redbot/core/core_commands.py:4929 msgid "Users have been removed from the allowlist." msgstr "用戶已從白名單中刪除。" -#: redbot/core/core_commands.py:4881 +#: redbot/core/core_commands.py:4931 msgid "User has been removed from the allowlist." msgstr "用戶已從白名單中刪除。" -#: redbot/core/core_commands.py:4885 +#: redbot/core/core_commands.py:4935 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3767,11 +3797,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4894 +#: redbot/core/core_commands.py:4944 msgid "Allowlist has been cleared." msgstr "白名單已被清除。" -#: redbot/core/core_commands.py:4899 +#: redbot/core/core_commands.py:4949 #, docstring msgid "\n" " Commands to manage the blocklist.\n\n" @@ -3781,7 +3811,7 @@ msgstr "\n" " 管理黑名單的命令。\n\n" " 使用 `[p]blocklist clear` 禁用黑名單 " -#: redbot/core/core_commands.py:4908 +#: redbot/core/core_commands.py:4958 #, docstring msgid "\n" " Adds users to the blocklist.\n\n" @@ -3793,19 +3823,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4924 +#: redbot/core/core_commands.py:4974 msgid "You cannot add an owner to the blocklist!" msgstr "您不能將所有者添加到黑名單!" -#: redbot/core/core_commands.py:4929 +#: redbot/core/core_commands.py:4979 msgid "Users have been added to the blocklist." msgstr "用戶已被添加到黑名單中。" -#: redbot/core/core_commands.py:4931 +#: redbot/core/core_commands.py:4981 msgid "User has been added to the blocklist." msgstr "用戶已被添加到黑名單" -#: redbot/core/core_commands.py:4935 +#: redbot/core/core_commands.py:4985 #, docstring msgid "\n" " Lists users on the blocklist.\n\n" @@ -3814,15 +3844,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4947 +#: redbot/core/core_commands.py:4997 msgid "Users on the blocklist:" msgstr "黑名單上的用戶:" -#: redbot/core/core_commands.py:4949 +#: redbot/core/core_commands.py:4999 msgid "User on the blocklist:" msgstr "黑名單上的用戶:" -#: redbot/core/core_commands.py:4961 +#: redbot/core/core_commands.py:5011 #, docstring msgid "\n" " Removes users from the blocklist.\n\n" @@ -3834,15 +3864,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4973 +#: redbot/core/core_commands.py:5023 msgid "Users have been removed from the blocklist." msgstr "用戶已從黑名單中刪除。" -#: redbot/core/core_commands.py:4975 +#: redbot/core/core_commands.py:5025 msgid "User has been removed from the blocklist." msgstr "用戶已從黑名單中刪除。" -#: redbot/core/core_commands.py:4979 +#: redbot/core/core_commands.py:5029 #, docstring msgid "\n" " Clears the blocklist.\n\n" @@ -3851,11 +3881,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:4986 +#: redbot/core/core_commands.py:5036 msgid "Blocklist has been cleared." msgstr "黑名單已被清空。" -#: redbot/core/core_commands.py:4992 +#: redbot/core/core_commands.py:5042 #, docstring msgid "\n" " Commands to manage the server specific allowlist.\n\n" @@ -3867,7 +3897,7 @@ msgstr "\n" " 警告:當使用白名單時,機器人將忽略服務器中不在列表中的每個人的命令。\n\n" " 使用 `[p]localallowlist clear` 禁用白名單 " -#: redbot/core/core_commands.py:5005 +#: redbot/core/core_commands.py:5055 #, docstring msgid "\n" " Adds a user or role to the server allowlist.\n\n" @@ -3880,19 +3910,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5024 +#: redbot/core/core_commands.py:5074 msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first." msgstr "我不能允許你這樣做,因為它會刪除你運行命令的能力,請確保先將自己添加到白名單中。" -#: redbot/core/core_commands.py:5033 +#: redbot/core/core_commands.py:5083 msgid "Users and/or roles have been added to the allowlist." msgstr "用戶/角色已添加到白名單中。" -#: redbot/core/core_commands.py:5035 +#: redbot/core/core_commands.py:5085 msgid "User or role has been added to the allowlist." msgstr "用戶或角色已添加到白名單。" -#: redbot/core/core_commands.py:5039 +#: redbot/core/core_commands.py:5089 #, docstring msgid "\n" " Lists users and roles on the server allowlist.\n\n" @@ -3901,19 +3931,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5051 +#: redbot/core/core_commands.py:5101 msgid "Allowed users and/or roles:" msgstr "允許的用戶/角色:" -#: redbot/core/core_commands.py:5053 +#: redbot/core/core_commands.py:5103 msgid "Allowed user or role:" msgstr "允許的用戶或角色:" -#: redbot/core/core_commands.py:5057 redbot/core/core_commands.py:5177 +#: redbot/core/core_commands.py:5107 redbot/core/core_commands.py:5227 msgid "Unknown or Deleted User/Role" msgstr "未知或已刪除的用戶/身分組" -#: redbot/core/core_commands.py:5067 +#: redbot/core/core_commands.py:5117 #, docstring msgid "\n" " Removes user or role from the allowlist.\n\n" @@ -3927,19 +3957,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5088 +#: redbot/core/core_commands.py:5138 msgid "I cannot allow you to do this, as it would remove your ability to run commands." msgstr "我不能允許你這樣做,因為它會刪除你運行命令的能力。" -#: redbot/core/core_commands.py:5096 +#: redbot/core/core_commands.py:5146 msgid "Users and/or roles have been removed from the server allowlist." msgstr "用戶和/或身分組已從服務器白名單中刪除。" -#: redbot/core/core_commands.py:5098 +#: redbot/core/core_commands.py:5148 msgid "User or role has been removed from the server allowlist." msgstr "用戶或身分組已從服務器白名單中刪除。" -#: redbot/core/core_commands.py:5102 +#: redbot/core/core_commands.py:5152 #, docstring msgid "\n" " Clears the allowlist.\n\n" @@ -3949,11 +3979,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5111 +#: redbot/core/core_commands.py:5161 msgid "Server allowlist has been cleared." msgstr "伺務器白名單已被清除。" -#: redbot/core/core_commands.py:5117 +#: redbot/core/core_commands.py:5167 #, docstring msgid "\n" " Commands to manage the server specific blocklist.\n\n" @@ -3964,7 +3994,7 @@ msgstr "\n" " 使用 `[p]localblocklist clear` 禁用黑名單\n" " " -#: redbot/core/core_commands.py:5128 +#: redbot/core/core_commands.py:5178 #, docstring msgid "\n" " Adds a user or role to the local blocklist.\n\n" @@ -3977,27 +4007,27 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5142 +#: redbot/core/core_commands.py:5192 msgid "You cannot add yourself to the blocklist!" msgstr "您不能將自己添加到黑名單!" -#: redbot/core/core_commands.py:5145 +#: redbot/core/core_commands.py:5195 msgid "You cannot add the guild owner to the blocklist!" msgstr "您不能將伺服器所有者添加到黑名單!" -#: redbot/core/core_commands.py:5148 +#: redbot/core/core_commands.py:5198 msgid "You cannot add a bot owner to the blocklist!" msgstr "您不能將機器人所有者添加到黑名單!" -#: redbot/core/core_commands.py:5153 +#: redbot/core/core_commands.py:5203 msgid "Users and/or roles have been added from the server blocklist." msgstr "已從伺務器黑名單中添加用戶和/或身分組。" -#: redbot/core/core_commands.py:5155 +#: redbot/core/core_commands.py:5205 msgid "User or role has been added from the server blocklist." msgstr "已從伺務器黑名單中添加用戶或身分組。" -#: redbot/core/core_commands.py:5159 +#: redbot/core/core_commands.py:5209 #, docstring msgid "\n" " Lists users and roles on the server blocklist.\n\n" @@ -4006,15 +4036,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5171 +#: redbot/core/core_commands.py:5221 msgid "Blocked users and/or roles:" msgstr "被封鎖的用戶和/或身分組:" -#: redbot/core/core_commands.py:5173 +#: redbot/core/core_commands.py:5223 msgid "Blocked user or role:" msgstr "被封鎖的用戶或身分組:" -#: redbot/core/core_commands.py:5187 +#: redbot/core/core_commands.py:5237 #, docstring msgid "\n" " Removes user or role from local blocklist.\n\n" @@ -4027,15 +4057,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5201 +#: redbot/core/core_commands.py:5251 msgid "Users and/or roles have been removed from the server blocklist." msgstr "用戶和/或身分組已從伺服器黑名單中刪除。" -#: redbot/core/core_commands.py:5203 +#: redbot/core/core_commands.py:5253 msgid "User or role has been removed from the server blocklist." msgstr "用戶或身分組已從服務器黑名單中刪除。" -#: redbot/core/core_commands.py:5207 +#: redbot/core/core_commands.py:5257 #, docstring msgid "\n" " Clears the server blocklist.\n\n" @@ -4045,16 +4075,16 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5216 +#: redbot/core/core_commands.py:5266 msgid "Server blocklist has been cleared." msgstr "伺服器黑名單已清除。" -#: redbot/core/core_commands.py:5221 +#: redbot/core/core_commands.py:5271 #, docstring msgid "Commands to enable and disable commands and cogs." msgstr "啟用和禁用指令和cog的指令。" -#: redbot/core/core_commands.py:5227 +#: redbot/core/core_commands.py:5277 #, docstring msgid "Set the default state for a cog as disabled.\n\n" " This will disable the cog for all servers by default.\n" @@ -4068,15 +4098,15 @@ msgid "Set the default state for a cog as disabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5243 +#: redbot/core/core_commands.py:5293 msgid "You can't disable this cog by default." msgstr "默認情況下,您無法禁用此cog。" -#: redbot/core/core_commands.py:5245 +#: redbot/core/core_commands.py:5295 msgid "{cogname} has been set as disabled by default." msgstr "{cogname} 默認設置為禁用。" -#: redbot/core/core_commands.py:5250 +#: redbot/core/core_commands.py:5300 #, docstring msgid "Set the default state for a cog as enabled.\n\n" " This will re-enable the cog for all servers by default.\n" @@ -4090,11 +4120,11 @@ msgid "Set the default state for a cog as enabled.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5266 +#: redbot/core/core_commands.py:5316 msgid "{cogname} has been set as enabled by default." msgstr "{cogname} 已默認設置為啟用。" -#: redbot/core/core_commands.py:5271 +#: redbot/core/core_commands.py:5321 #, docstring msgid "Disable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4106,19 +4136,19 @@ msgid "Disable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5284 +#: redbot/core/core_commands.py:5334 msgid "You can't disable this cog as you would lock yourself out." msgstr "你不能禁用這個cog,因為你會把自己鎖在外面。" -#: redbot/core/core_commands.py:5286 +#: redbot/core/core_commands.py:5336 msgid "{cogname} has been disabled in this guild." msgstr "{cogname} 已在該伺服器中被禁用。" -#: redbot/core/core_commands.py:5289 +#: redbot/core/core_commands.py:5339 msgid "{cogname} was already disabled (nothing to do)." msgstr "{cogname} 已被禁用(沒有做出任何改)。" -#: redbot/core/core_commands.py:5295 +#: redbot/core/core_commands.py:5345 #, docstring msgid "Enable a cog in this server.\n\n" " Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n" @@ -4130,19 +4160,19 @@ msgid "Enable a cog in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5307 +#: redbot/core/core_commands.py:5357 msgid "{cogname} has been enabled in this guild." msgstr "{cogname} 已在此伺服器中啟用。" -#: redbot/core/core_commands.py:5312 +#: redbot/core/core_commands.py:5362 msgid "Cog \"{arg}\" not found." msgstr "未找到該cog“{arg}”。" -#: redbot/core/core_commands.py:5315 +#: redbot/core/core_commands.py:5365 msgid "{cogname} was not disabled (nothing to do)." msgstr "{cogname} 尚未被禁用(沒有做出任何改)。" -#: redbot/core/core_commands.py:5321 +#: redbot/core/core_commands.py:5371 #, docstring msgid "List the cogs which are disabled in this server.\n\n" " **Example:**\n" @@ -4150,15 +4180,15 @@ msgid "List the cogs which are disabled in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5334 +#: redbot/core/core_commands.py:5384 msgid "The following cogs are disabled in this guild:\n" msgstr "該伺服器已禁用以下齒輪:\n" -#: redbot/core/core_commands.py:5340 +#: redbot/core/core_commands.py:5390 msgid "There are no disabled cogs in this guild." msgstr "這個伺服器中沒有已停用的cog。" -#: redbot/core/core_commands.py:5344 +#: redbot/core/core_commands.py:5394 #, docstring msgid "\n" " List disabled commands.\n\n" @@ -4169,7 +4199,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5361 +#: redbot/core/core_commands.py:5411 #, docstring msgid "List disabled commands globally.\n\n" " **Example:**\n" @@ -4177,19 +4207,19 @@ msgid "List disabled commands globally.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5368 +#: redbot/core/core_commands.py:5418 msgid "There aren't any globally disabled commands." msgstr "沒有任何全域已禁用的指令。" -#: redbot/core/core_commands.py:5371 +#: redbot/core/core_commands.py:5421 msgid "{} commands are disabled globally.\n" msgstr "{} 指令在全域範圍中已被禁用。\n" -#: redbot/core/core_commands.py:5375 +#: redbot/core/core_commands.py:5425 msgid "1 command is disabled globally.\n" msgstr "1 個指令已被全域禁用。\n" -#: redbot/core/core_commands.py:5383 +#: redbot/core/core_commands.py:5433 #, docstring msgid "List disabled commands in this server.\n\n" " **Example:**\n" @@ -4197,19 +4227,19 @@ msgid "List disabled commands in this server.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5390 +#: redbot/core/core_commands.py:5440 msgid "There aren't any disabled commands in {}." msgstr "{} 中沒有任何已禁用的指令。" -#: redbot/core/core_commands.py:5393 +#: redbot/core/core_commands.py:5443 msgid "{} commands are disabled in {}.\n" msgstr "{} 指令在 {} 中被已禁用。\n" -#: redbot/core/core_commands.py:5397 +#: redbot/core/core_commands.py:5447 msgid "1 command is disabled in {}.\n" msgstr "{} 中禁用了 1 個指令。\n" -#: redbot/core/core_commands.py:5404 +#: redbot/core/core_commands.py:5454 #, docstring msgid "\n" " Disable a command.\n\n" @@ -4223,7 +4253,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5426 +#: redbot/core/core_commands.py:5476 #, docstring msgid "\n" " Disable a command globally.\n\n" @@ -4235,19 +4265,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5438 redbot/core/core_commands.py:5474 +#: redbot/core/core_commands.py:5488 redbot/core/core_commands.py:5524 msgid "The command to disable cannot be `command` or any of its subcommands." msgstr "要禁用的指令不能是 `command` 或其任何子指令。" -#: redbot/core/core_commands.py:5444 redbot/core/core_commands.py:5480 +#: redbot/core/core_commands.py:5494 redbot/core/core_commands.py:5530 msgid "This command is designated as being always available and cannot be disabled." msgstr "此指令被指定為始終可用且無法禁用。" -#: redbot/core/core_commands.py:5453 +#: redbot/core/core_commands.py:5503 msgid "That command is already disabled globally." msgstr "該指令已在全域範圍內禁用。" -#: redbot/core/core_commands.py:5462 +#: redbot/core/core_commands.py:5512 #, docstring msgid "\n" " Disable a command in this server only.\n\n" @@ -4259,15 +4289,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5486 +#: redbot/core/core_commands.py:5536 msgid "You are not allowed to disable that command." msgstr "您不能禁用該指令。" -#: redbot/core/core_commands.py:5496 +#: redbot/core/core_commands.py:5546 msgid "That command is already disabled in this server." msgstr "該指令已在此服務器中禁用。" -#: redbot/core/core_commands.py:5502 +#: redbot/core/core_commands.py:5552 #, docstring msgid "Enable a command.\n\n" " If you're the bot owner, this will try to enable a globally disabled command by default.\n" @@ -4280,7 +4310,7 @@ msgid "Enable a command.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5522 +#: redbot/core/core_commands.py:5572 #, docstring msgid "\n" " Enable a command globally.\n\n" @@ -4292,11 +4322,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5537 +#: redbot/core/core_commands.py:5587 msgid "That command is already enabled globally." msgstr "該指令已在全域範圍內啟用。" -#: redbot/core/core_commands.py:5546 +#: redbot/core/core_commands.py:5596 #, docstring msgid "\n" " Enable a command in this server.\n\n" @@ -4308,15 +4338,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5558 +#: redbot/core/core_commands.py:5608 msgid "You are not allowed to enable that command." msgstr "您無權啟用該指令。" -#: redbot/core/core_commands.py:5568 +#: redbot/core/core_commands.py:5618 msgid "That command is already enabled in this server." msgstr "該指令已在此伺服器中啟用。" -#: redbot/core/core_commands.py:5575 +#: redbot/core/core_commands.py:5625 #, docstring msgid "Set the bot's response to disabled commands.\n\n" " Leave blank to send nothing.\n\n" @@ -4330,7 +4360,7 @@ msgid "Set the bot's response to disabled commands.\n\n" " " msgstr "" -#: redbot/core/core_commands.py:5596 +#: redbot/core/core_commands.py:5646 #, docstring msgid "\n" " Commands to manage server settings for immunity from automated actions.\n\n" @@ -4341,7 +4371,7 @@ msgstr "\n" " 這包括來自 Mod cog 的重複消息刪除和提及垃圾郵件,以及來自 Filter cog 的過濾器。\n" " " -#: redbot/core/core_commands.py:5605 +#: redbot/core/core_commands.py:5655 #, docstring msgid "\n" " Gets the current members and roles configured for automatic moderation action immunity.\n\n" @@ -4350,19 +4380,19 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5618 +#: redbot/core/core_commands.py:5668 msgid "Roles immune from automated moderation actions:\n" msgstr "不受自動審核操作影響的身分組:\n" -#: redbot/core/core_commands.py:5623 +#: redbot/core/core_commands.py:5673 msgid "Members immune from automated moderation actions:\n" msgstr "不受自動審核操作影響的成員:\n" -#: redbot/core/core_commands.py:5627 +#: redbot/core/core_commands.py:5677 msgid "No immunity settings here." msgstr "這裡沒有免疫設置。" -#: redbot/core/core_commands.py:5636 +#: redbot/core/core_commands.py:5686 #, docstring msgid "\n" " Makes a user or role immune from automated moderation actions.\n\n" @@ -4374,11 +4404,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5648 +#: redbot/core/core_commands.py:5698 msgid "Already added." msgstr "已新增。" -#: redbot/core/core_commands.py:5656 +#: redbot/core/core_commands.py:5706 #, docstring msgid "\n" " Remove a user or role from being immune to automated moderation actions.\n\n" @@ -4390,11 +4420,11 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5668 +#: redbot/core/core_commands.py:5718 msgid "Not in list." msgstr "不在列表中。" -#: redbot/core/core_commands.py:5676 +#: redbot/core/core_commands.py:5726 #, docstring msgid "\n" " Checks if a user or role would be considered immune from automated actions.\n\n" @@ -4406,15 +4436,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5688 +#: redbot/core/core_commands.py:5738 msgid "They are immune." msgstr "他們是免疫的。" -#: redbot/core/core_commands.py:5690 +#: redbot/core/core_commands.py:5740 msgid "They are not immune." msgstr "他們不是免疫的。" -#: redbot/core/core_commands.py:5717 +#: redbot/core/core_commands.py:5767 #, docstring msgid "\n" " Commands to add servers or channels to the ignore list.\n\n" @@ -4427,7 +4457,7 @@ msgstr "\n" " 注意:所有者和管理員覆蓋忽略列表。\n" " " -#: redbot/core/core_commands.py:5727 +#: redbot/core/core_commands.py:5777 #, docstring msgid "\n" " List the currently ignored servers and channels.\n\n" @@ -4436,7 +4466,7 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5749 +#: redbot/core/core_commands.py:5799 #, docstring msgid "\n" " Ignore commands in the channel, thread, or category.\n\n" @@ -4452,15 +4482,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5767 +#: redbot/core/core_commands.py:5817 msgid "Channel added to ignore list." msgstr "頻道已添加到忽略列表。" -#: redbot/core/core_commands.py:5769 +#: redbot/core/core_commands.py:5819 msgid "Channel already in ignore list." msgstr "頻道已在忽略列表中。" -#: redbot/core/core_commands.py:5774 +#: redbot/core/core_commands.py:5824 #, docstring msgid "\n" " Ignore commands in this server.\n\n" @@ -4470,20 +4500,20 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5785 +#: redbot/core/core_commands.py:5835 msgid "This server has been added to the ignore list." msgstr "此服務器已添加到忽略列表。" -#: redbot/core/core_commands.py:5787 +#: redbot/core/core_commands.py:5837 msgid "This server is already being ignored." msgstr "此伺務器已被忽略。" -#: redbot/core/core_commands.py:5793 +#: redbot/core/core_commands.py:5843 #, docstring msgid "Commands to remove servers or channels from the ignore list." msgstr "從忽略列表中刪除伺務器或頻道的指令。" -#: redbot/core/core_commands.py:5808 +#: redbot/core/core_commands.py:5858 #, docstring msgid "\n" " Remove a channel, thread, or category from the ignore list.\n\n" @@ -4498,15 +4528,15 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5824 +#: redbot/core/core_commands.py:5874 msgid "Channel removed from ignore list." msgstr "頻道已從忽略列表中刪除。" -#: redbot/core/core_commands.py:5826 +#: redbot/core/core_commands.py:5876 msgid "That channel is not in the ignore list." msgstr "該頻道不在忽略列表中。" -#: redbot/core/core_commands.py:5831 +#: redbot/core/core_commands.py:5881 #, docstring msgid "\n" " Remove this server from the ignore list.\n\n" @@ -4515,24 +4545,24 @@ msgid "\n" " " msgstr "" -#: redbot/core/core_commands.py:5840 +#: redbot/core/core_commands.py:5890 msgid "This server has been removed from the ignore list." msgstr "此伺務器已從忽略列表中刪除。" -#: redbot/core/core_commands.py:5842 +#: redbot/core/core_commands.py:5892 msgid "This server is not in the ignore list." msgstr "此伺務器已從忽略列表中刪除。" -#: redbot/core/core_commands.py:5856 +#: redbot/core/core_commands.py:5906 msgid "This server is currently being ignored." msgstr "當前正在忽略此伺務器。" -#: redbot/core/core_commands.py:5873 redbot/core/core_commands.py:5875 -#: redbot/core/core_commands.py:5876 +#: redbot/core/core_commands.py:5923 redbot/core/core_commands.py:5925 +#: redbot/core/core_commands.py:5926 msgid "None" msgstr "無" -#: redbot/core/core_commands.py:5877 +#: redbot/core/core_commands.py:5927 msgid "Currently ignored categories: {categories}\n" "Channels: {channels}\n" "Threads (excluding archived):{threads}" @@ -4540,7 +4570,7 @@ msgstr "當前忽略的類別:{categories}\n" "頻道:{channels}\n" "主題(不包括已存檔的):{threads}" -#: redbot/core/core_commands.py:5894 +#: redbot/core/core_commands.py:5944 #, docstring msgid "\n" " Get info about Red's licenses.\n" @@ -4866,3 +4896,11 @@ msgstr "無該指令。" msgid "You are not permitted to use this command." msgstr "您沒有權限使用此指令。" +#: redbot/core/tree.py:359 +msgid "This channel or server is ignored." +msgstr "" + +#: redbot/core/tree.py:366 +msgid "You are not permitted to use commands because of an allowlist or blocklist." +msgstr "" + diff --git a/redbot/core/tree.py b/redbot/core/tree.py index 59bf0ac5f87..4b32dcf8f73 100644 --- a/redbot/core/tree.py +++ b/redbot/core/tree.py @@ -17,6 +17,7 @@ Group, NoPrivateMessage, TransformerError, + UserFeedbackCheckFailure, ) from .i18n import Translator from .utils.chat_formatting import humanize_list, inline @@ -327,6 +328,9 @@ async def on_error( relative_time=relative_time ) await self._send_from_interaction(interaction, msg, delete_after=error.retry_after) + elif isinstance(error, UserFeedbackCheckFailure): + if error.message: + await self._send_from_interaction(interaction, error.message) elif isinstance(error, CheckFailure): await self._send_from_interaction( interaction, _("You are not permitted to use this command.") @@ -334,6 +338,20 @@ async def on_error( else: log.exception(type(error).__name__, exc_info=error) + async def _send_interaction_check_failure( + self, interaction: discord.Interaction, message: str + ): + """Handles responding to interaction check failures. + Mainly used for when an interaction is an autocomplete and + providing the message in the autocomplete response. + """ + if interaction.type is discord.InteractionType.autocomplete: + await interaction.response.autocomplete( + [discord.app_commands.Choice(name=message[:80], value="None")] + ) + return + await interaction.response.send_message(message, ephemeral=True) + async def interaction_check(self, interaction: discord.Interaction): """Global checks for app commands.""" if interaction.user.bot: @@ -341,15 +359,15 @@ async def interaction_check(self, interaction: discord.Interaction): if interaction.guild: if not (await self.client.ignored_channel_or_guild(interaction)): - await interaction.response.send_message( - "This channel or server is ignored.", ephemeral=True + await self._send_interaction_check_failure( + interaction, _("This channel or server is ignored.") ) return False if not (await self.client.allowed_by_whitelist_blacklist(interaction.user)): - await interaction.response.send_message( - "You are not permitted to use commands because of an allowlist or blocklist.", - ephemeral=True, + await self._send_interaction_check_failure( + interaction, + _("You are not permitted to use commands because of an allowlist or blocklist."), ) return False diff --git a/redbot/core/utils/chat_formatting.py b/redbot/core/utils/chat_formatting.py index afcfc2d126d..b13d869dc02 100644 --- a/redbot/core/utils/chat_formatting.py +++ b/redbot/core/utils/chat_formatting.py @@ -519,15 +519,21 @@ def format_perms_list(perms: discord.Permissions) -> str: def humanize_timedelta( - *, timedelta: Optional[datetime.timedelta] = None, seconds: Optional[SupportsInt] = None + *, + timedelta: Optional[datetime.timedelta] = None, + seconds: Optional[SupportsInt] = None, + negative_format: Optional[str] = None, + maximum_units: Optional[int] = None, ) -> str: """ Get a locale aware human timedelta representation. This works with either a timedelta object or a number of seconds. - Fractional values will be omitted, and values less than 1 second - an empty string. + Fractional values will be omitted. + + Values that are less than 1 second but greater than -1 second + will be an empty string. Parameters ---------- @@ -535,6 +541,11 @@ def humanize_timedelta( A timedelta object seconds: Optional[SupportsInt] A number of seconds + negative_format: Optional[str] + How to format negative timedeltas, using %-formatting rules. + Defaults to "negative %s" + maximum_units: Optional[int] + The maximum number of different units to output in the final string. Returns ------- @@ -544,15 +555,33 @@ def humanize_timedelta( Raises ------ ValueError - The function was called with neither a number of seconds nor a timedelta object + The function was called with neither a number of seconds nor a timedelta object, + or with a maximum_units less than 1. + + Examples + -------- + .. testsetup:: + + from datetime import timedelta + from redbot.core.utils.chat_formatting import humanize_timedelta + + .. doctest:: + + >>> humanize_timedelta(seconds=314) + '5 minutes, 14 seconds' + >>> humanize_timedelta(timedelta=timedelta(minutes=3.14), maximum_units=1) + '3 minutes' + >>> humanize_timedelta(timedelta=timedelta(days=-3.14), negative_format="%s ago", maximum_units=3) + '3 days, 3 hours, 21 minutes ago' """ try: obj = seconds if seconds is not None else timedelta.total_seconds() except AttributeError: raise ValueError("You must provide either a timedelta or a number of seconds") + if maximum_units is not None and maximum_units < 1: + raise ValueError("maximum_units must be >= 1") - seconds = int(obj) periods = [ (_("year"), _("years"), 60 * 60 * 24 * 365), (_("month"), _("months"), 60 * 60 * 24 * 30), @@ -561,8 +590,17 @@ def humanize_timedelta( (_("minute"), _("minutes"), 60), (_("second"), _("seconds"), 1), ] - + seconds = int(obj) + if seconds < 0: + seconds = -seconds + if negative_format and "%s" not in negative_format: + negative_format = negative_format + " %s" + else: + negative_format = negative_format or (_("negative") + " %s") + else: + negative_format = "%s" strings = [] + maximum_units = maximum_units or len(periods) for period_name, plural_period_name, period_seconds in periods: if seconds >= period_seconds: period_value, seconds = divmod(seconds, period_seconds) @@ -570,8 +608,10 @@ def humanize_timedelta( continue unit = plural_period_name if period_value > 1 else period_name strings.append(f"{period_value} {unit}") + if len(strings) == maximum_units: + break - return ", ".join(strings) + return negative_format % humanize_list(strings, style="unit") def humanize_number(val: Union[int, float], override_locale=None) -> str: diff --git a/redbot/core/utils/locales/ar-SA.po b/redbot/core/utils/locales/ar-SA.po index 36e0046b37f..900a4f715ff 100644 --- a/redbot/core/utils/locales/ar-SA.po +++ b/redbot/core/utils/locales/ar-SA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: ar_SA\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/bg-BG.po b/redbot/core/utils/locales/bg-BG.po index 75b55bc7c73..de14fdc6939 100644 --- a/redbot/core/utils/locales/bg-BG.po +++ b/redbot/core/utils/locales/bg-BG.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: bg_BG\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "година" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "години" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "месец" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "месеци" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "ден" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "дни" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "час" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "часове" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "минута" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "минути" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "секунда" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "секунди" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/cs-CZ.po b/redbot/core/utils/locales/cs-CZ.po index 9b240d58737..07affeff9fc 100644 --- a/redbot/core/utils/locales/cs-CZ.po +++ b/redbot/core/utils/locales/cs-CZ.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: cs_CZ\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "rok" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "let" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "měsíc" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "měsíců" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "den" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "dnů" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "hodina" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "hodin" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "minut" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "minut" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "sekunda" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "sekund" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/da-DK.po b/redbot/core/utils/locales/da-DK.po index 5cb8c18a94e..77683ac6425 100644 --- a/redbot/core/utils/locales/da-DK.po +++ b/redbot/core/utils/locales/da-DK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Danish\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: da_DK\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/de-DE.po b/redbot/core/utils/locales/de-DE.po index 072a60f7e53..0d6bb14f546 100644 --- a/redbot/core/utils/locales/de-DE.po +++ b/redbot/core/utils/locales/de-DE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: de_DE\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "Jahr" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "Jahre" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "Monat" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "Monate" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "Tag" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "Tage" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "Stunde" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "Stunden" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "Minute" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "Minuten" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "Sekunde" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "Sekunden" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "Seite auswählen" diff --git a/redbot/core/utils/locales/es-ES.po b/redbot/core/utils/locales/es-ES.po index 7cc911826a9..b523a4ee798 100644 --- a/redbot/core/utils/locales/es-ES.po +++ b/redbot/core/utils/locales/es-ES.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: es_ES\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "año" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "años" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "mes" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "meses" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "día" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "días" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "hora" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "horas" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "minuto" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "minutos" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "segundo" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "segundos" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "Seleccione una página" diff --git a/redbot/core/utils/locales/fi-FI.po b/redbot/core/utils/locales/fi-FI.po index 3943df4f5d2..6805bbc54eb 100644 --- a/redbot/core/utils/locales/fi-FI.po +++ b/redbot/core/utils/locales/fi-FI.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Finnish\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: fi_FI\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "vuosi" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "vuotta" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "kuukausi" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "kuukautta" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "päivä" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "päivää" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "tunti" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "tuntia" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "minuutti" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "minuuttia" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "sekunti" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "sekuntia" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/fr-FR.po b/redbot/core/utils/locales/fr-FR.po index 669ee4e7f9a..cff93fbd2fa 100644 --- a/redbot/core/utils/locales/fr-FR.po +++ b/redbot/core/utils/locales/fr-FR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: fr_FR\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "an" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "ans" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "mois" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "mois" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "jour" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "jours" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "heure" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "heures" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "minute" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "minutes" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "seconde" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "secondes" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/hi-IN.po b/redbot/core/utils/locales/hi-IN.po index c13b1b8a649..235200ecb99 100644 --- a/redbot/core/utils/locales/hi-IN.po +++ b/redbot/core/utils/locales/hi-IN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Hindi\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: hi_IN\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "साल" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "साल" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "महीना" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "महीने" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "दिन" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "दिन" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "घंटा" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "घंटे" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "मिनट" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "मिनट" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "सेकंड" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "सेकंड" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/hr-HR.po b/redbot/core/utils/locales/hr-HR.po index 20c03cd0ff2..a2a55fd4a73 100644 --- a/redbot/core/utils/locales/hr-HR.po +++ b/redbot/core/utils/locales/hr-HR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: hr_HR\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "godina" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "godine" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "mjesec" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "mjeseci" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "dan" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "dana" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "sat" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "sati" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "minuta" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "minuta" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "sekunda" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "sekundi" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/hu-HU.po b/redbot/core/utils/locales/hu-HU.po index 1a7dbdfe395..d8c76138b0a 100644 --- a/redbot/core/utils/locales/hu-HU.po +++ b/redbot/core/utils/locales/hu-HU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: hu_HU\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "év" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "év" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "hónap" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "hónap" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "nap" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "nap" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "óra" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "óra" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "perc" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "perc" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "másodperc" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "másodperc" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/id-ID.po b/redbot/core/utils/locales/id-ID.po index 4c6f4caf2df..c620b835c83 100644 --- a/redbot/core/utils/locales/id-ID.po +++ b/redbot/core/utils/locales/id-ID.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: id_ID\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "tahun" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "tahun" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "bulan" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "bulan" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "hari" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "hari" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "jam" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "jam" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "menit" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "menit" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "detik" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "detik" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/it-IT.po b/redbot/core/utils/locales/it-IT.po index 607942132f3..7a2c53cdef8 100644 --- a/redbot/core/utils/locales/it-IT.po +++ b/redbot/core/utils/locales/it-IT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: it_IT\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "anno" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "anni" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "mese" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "mesi" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "giorno" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "giorni" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "ora" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "ore" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "minuti" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "minuti" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "secondo" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "secondi" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/ja-JP.po b/redbot/core/utils/locales/ja-JP.po index 0d7a10ac9cc..a3ae0b7ddca 100644 --- a/redbot/core/utils/locales/ja-JP.po +++ b/redbot/core/utils/locales/ja-JP.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Japanese\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: ja_JP\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "年" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "年" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "ヶ月" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "ヶ月" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "日" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "日間" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "時間" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "時間" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "分" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "分間" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "秒" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "秒間" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "ページを選択" diff --git a/redbot/core/utils/locales/ko-KR.po b/redbot/core/utils/locales/ko-KR.po index 2385fc591c9..785dbee27c7 100644 --- a/redbot/core/utils/locales/ko-KR.po +++ b/redbot/core/utils/locales/ko-KR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Korean\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: ko_KR\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "년" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "년" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "월" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "월" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "일" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "날" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "시" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "시간" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "분" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "분" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "초" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "초" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/nb-NO.po b/redbot/core/utils/locales/nb-NO.po index da10ed6eb01..3ef23879364 100644 --- a/redbot/core/utils/locales/nb-NO.po +++ b/redbot/core/utils/locales/nb-NO.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Norwegian Bokmal\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: nb_NO\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "år" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "år" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "måned" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "måneder" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "dag" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "dager" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "time" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "timer" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "minutter" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "minutter" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "sekunder" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "sekunder" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "Velg en side" diff --git a/redbot/core/utils/locales/nl-NL.po b/redbot/core/utils/locales/nl-NL.po index b352e60f8e5..7c720cb3f88 100644 --- a/redbot/core/utils/locales/nl-NL.po +++ b/redbot/core/utils/locales/nl-NL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: nl_NL\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "jaar" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "jaren" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "maand" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "maanden" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "dag" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "dagen" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "uur" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "uren" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "minuut" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "minuten" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "seconde" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "seconden" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/pl-PL.po b/redbot/core/utils/locales/pl-PL.po index 961bca8de22..abdebeb8e53 100644 --- a/redbot/core/utils/locales/pl-PL.po +++ b/redbot/core/utils/locales/pl-PL.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: pl_PL\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "rok" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "lat" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "miesiąc" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "miesięcy" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "dzień" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "dni" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "godzina" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "godzin" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "minuta" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "minut" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "sekunda" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "sekund" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/pt-BR.po b/redbot/core/utils/locales/pt-BR.po index c65923604b5..624a37fd2b5 100644 --- a/redbot/core/utils/locales/pt-BR.po +++ b/redbot/core/utils/locales/pt-BR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: pt_BR\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "ano" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "anos" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "mês" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "meses" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "dia" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "dias" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "hora" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "horas" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "minuto" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "minutos" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "segundo" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "segundos" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/pt-PT.po b/redbot/core/utils/locales/pt-PT.po index a10c9cd5c13..e494d8c392b 100644 --- a/redbot/core/utils/locales/pt-PT.po +++ b/redbot/core/utils/locales/pt-PT.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: pt_PT\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "ano" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "anos" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "mês" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "meses" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "dia" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "dias" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "hora" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "horas" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "minuto" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "minutos" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "segundo" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "segundos" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "Selecione uma Página" diff --git a/redbot/core/utils/locales/ru-RU.po b/redbot/core/utils/locales/ru-RU.po index 94cec4f1084..539c9921ec8 100644 --- a/redbot/core/utils/locales/ru-RU.po +++ b/redbot/core/utils/locales/ru-RU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: ru_RU\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "год" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "лет" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "месяц" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "месяцев" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "день" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "дней" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "час" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "часов" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "минута" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "минут" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "секунда" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "секунд" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/sk-SK.po b/redbot/core/utils/locales/sk-SK.po index 623d5a96437..0918270fc60 100644 --- a/redbot/core/utils/locales/sk-SK.po +++ b/redbot/core/utils/locales/sk-SK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Slovak\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: sk_SK\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "rok" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "rokov" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "mesiac" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "mesiacov" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "deň" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "dní" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "hodina" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "hodín" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "minúta" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "minút" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "sekunda" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "sekúnd" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/sl-SI.po b/redbot/core/utils/locales/sl-SI.po index d55420425eb..3588b63381b 100644 --- a/redbot/core/utils/locales/sl-SI.po +++ b/redbot/core/utils/locales/sl-SI.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: sl_SI\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "leto" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "let" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "mesec" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "mesecev" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "dan" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "dnevi" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "ura" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "ure" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "minuta" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "minute" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "sekunda" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "sekund" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/sv-SE.po b/redbot/core/utils/locales/sv-SE.po index c5fc67a137e..110816c949c 100644 --- a/redbot/core/utils/locales/sv-SE.po +++ b/redbot/core/utils/locales/sv-SE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: sv_SE\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "år" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "år" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "månad" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "månader" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "dag" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "dagar" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "timme" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "timmar" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "minut" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "minuter" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "sekund" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "sekunder" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/tr-TR.po b/redbot/core/utils/locales/tr-TR.po index 48a20957c05..6dfc4e88cd8 100644 --- a/redbot/core/utils/locales/tr-TR.po +++ b/redbot/core/utils/locales/tr-TR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: tr_TR\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "yıl" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "yıl" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "ay" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "ay" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "gün" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "gün" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "saat" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "saat" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "dakika" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "dakika" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "saniye" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "saniye" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "Bir sayfa seç" diff --git a/redbot/core/utils/locales/uk-UA.po b/redbot/core/utils/locales/uk-UA.po index 30a86299db6..5a29542aecd 100644 --- a/redbot/core/utils/locales/uk-UA.po +++ b/redbot/core/utils/locales/uk-UA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: uk_UA\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/vi-VN.po b/redbot/core/utils/locales/vi-VN.po index d72a2d5bbf8..4c0c217bb19 100644 --- a/redbot/core/utils/locales/vi-VN.po +++ b/redbot/core/utils/locales/vi-VN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: vi_VN\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "năm" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/zh-CN.po b/redbot/core/utils/locales/zh-CN.po index bc32d65e6c2..e403ec0e286 100644 --- a/redbot/core/utils/locales/zh-CN.po +++ b/redbot/core/utils/locales/zh-CN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: zh_CN\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "年" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "年" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "月" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "月" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "天" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "天" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "小时" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "小时" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "分钟" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "分钟" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "秒" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "秒" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "" diff --git a/redbot/core/utils/locales/zh-TW.po b/redbot/core/utils/locales/zh-TW.po index b9868a56f1c..c8f0f499f7c 100644 --- a/redbot/core/utils/locales/zh-TW.po +++ b/redbot/core/utils/locales/zh-TW.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: red-discordbot\n" -"POT-Creation-Date: 2024-03-21 22:16+0000\n" +"POT-Creation-Date: 2024-04-21 01:55+0000\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "MIME-Version: 1.0\n" @@ -15,54 +15,58 @@ msgstr "" "X-Crowdin-File-ID: 197\n" "Language: zh_TW\n" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "year" msgstr "年" -#: redbot/core/utils/chat_formatting.py:557 +#: redbot/core/utils/chat_formatting.py:586 msgid "years" msgstr "年" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "month" msgstr "月" -#: redbot/core/utils/chat_formatting.py:558 +#: redbot/core/utils/chat_formatting.py:587 msgid "months" msgstr "月" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "day" msgstr "日" -#: redbot/core/utils/chat_formatting.py:559 +#: redbot/core/utils/chat_formatting.py:588 msgid "days" msgstr "日" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hour" msgstr "時" -#: redbot/core/utils/chat_formatting.py:560 +#: redbot/core/utils/chat_formatting.py:589 msgid "hours" msgstr "小時" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minute" msgstr "分" -#: redbot/core/utils/chat_formatting.py:561 +#: redbot/core/utils/chat_formatting.py:590 msgid "minutes" msgstr "分鐘" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "second" msgstr "秒" -#: redbot/core/utils/chat_formatting.py:562 +#: redbot/core/utils/chat_formatting.py:591 msgid "seconds" msgstr "秒" +#: redbot/core/utils/chat_formatting.py:599 +msgid "negative" +msgstr "" + #: redbot/core/utils/views.py:34 msgid "Select a Page" msgstr "選擇一個頁面" diff --git a/redbot/core/utils/views.py b/redbot/core/utils/views.py index cd588cae96b..aff3f11e1ef 100644 --- a/redbot/core/utils/views.py +++ b/redbot/core/utils/views.py @@ -66,9 +66,10 @@ def __init__(self, style: discord.ButtonStyle, emoji: Union[str, discord.Partial async def callback(self, interaction: discord.Interaction): self.view.stop() if interaction.message.flags.ephemeral: - await interaction.response.edit_message(view=None) - return - await interaction.message.delete() + await interaction.response.defer(thinking=False) + await interaction.delete_original_response() + else: + await interaction.message.delete() class SimpleMenu(discord.ui.View): @@ -208,7 +209,7 @@ def author(self, value: Optional[discord.abc.User]) -> None: async def on_timeout(self): try: - if self.delete_after_timeout and not self.message.flags.ephemeral: + if self.delete_after_timeout: await self.message.delete() elif self.disable_after_timeout: for child in self.children: diff --git a/requirements/base.txt b/requirements/base.txt index 8edee2c8918..a8d5332a518 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,4 +1,4 @@ -aiohttp==3.9.3 +aiohttp==3.9.5 # via # -r base.in # aiohttp-json-rpc @@ -8,19 +8,17 @@ aiohttp-json-rpc==0.13.3 # via -r base.in aiosignal==1.3.1 # via aiohttp -apsw==3.45.2.0 +apsw==3.46.0.1 # via -r base.in attrs==23.2.0 # via aiohttp -babel==2.14.0 +babel==2.15.0 # via -r base.in brotli==1.1.0 # via -r base.in click==8.1.7 # via -r base.in -contextlib2==21.6.0 - # via schema -discord-py==2.3.2 +discord-py==2.4.0 # via # -r base.in # red-lavalink @@ -28,7 +26,7 @@ frozenlist==1.4.1 # via # aiohttp # aiosignal -idna==3.6 +idna==3.7 # via yarl markdown==3.6 # via -r base.in @@ -40,21 +38,21 @@ multidict==6.0.5 # via # aiohttp # yarl -orjson==3.10.0 +orjson==3.10.6 # via -r base.in -packaging==24.0 +packaging==24.1 # via -r base.in -platformdirs==4.2.0 +platformdirs==4.2.2 # via -r base.in -psutil==5.9.8 +psutil==6.0.0 # via -r base.in -pygments==2.17.2 +pygments==2.18.0 # via rich python-dateutil==2.9.0.post0 # via -r base.in pyyaml==6.0.1 # via -r base.in -rapidfuzz==3.7.0 +rapidfuzz==3.9.4 # via -r base.in red-commons==1.0.0 # via @@ -64,11 +62,11 @@ red-lavalink==0.11.0 # via -r base.in rich==13.7.1 # via -r base.in -schema==0.7.5 +schema==0.7.7 # via -r base.in six==1.16.0 # via python-dateutil -typing-extensions==4.10.0 +typing-extensions==4.12.2 # via # -r base.in # rich @@ -82,11 +80,11 @@ colorama==0.4.6; sys_platform == "win32" # via click distro==1.9.0; sys_platform == "linux" and sys_platform == "linux" # via -r base.in -importlib-metadata==7.1.0; python_version != "3.10" and python_version != "3.11" +importlib-metadata==8.0.0; python_version != "3.10" and python_version != "3.11" # via markdown pytz==2024.1; python_version == "3.8" # via babel uvloop==0.19.0; (sys_platform != "win32" and platform_python_implementation == "CPython") and sys_platform != "win32" # via -r base.in -zipp==3.18.1; python_version != "3.10" and python_version != "3.11" +zipp==3.19.2; python_version != "3.10" and python_version != "3.11" # via importlib-metadata diff --git a/requirements/extra-doc.txt b/requirements/extra-doc.txt index 2a1def34633..10569b43149 100644 --- a/requirements/extra-doc.txt +++ b/requirements/extra-doc.txt @@ -1,6 +1,6 @@ alabaster==0.7.13 # via sphinx -certifi==2024.2.2 +certifi==2024.7.4 # via requests charset-normalizer==3.3.2 # via requests @@ -11,11 +11,11 @@ docutils==0.20.1 # sphinx-rtd-theme imagesize==1.4.1 # via sphinx -importlib-metadata==7.1.0 +importlib-metadata==8.0.0 # via # -c base.txt # sphinx -jinja2==3.1.3 +jinja2==3.1.4 # via sphinx markupsafe==2.1.5 # via jinja2 @@ -23,7 +23,7 @@ pytz==2024.1 # via # -c base.txt # babel -requests==2.31.0 +requests==2.32.3 # via sphinx snowballstemmer==2.2.0 # via sphinx @@ -54,9 +54,9 @@ sphinxcontrib-serializinghtml==1.1.5 # via sphinx sphinxcontrib-trio==1.1.2 # via -r extra-doc.in -urllib3==2.2.1 +urllib3==2.2.2 # via requests -zipp==3.18.1 +zipp==3.19.2 # via # -c base.txt # importlib-metadata diff --git a/requirements/extra-test.txt b/requirements/extra-test.txt index 95acc7908a3..d0c3dc046e4 100644 --- a/requirements/extra-test.txt +++ b/requirements/extra-test.txt @@ -1,4 +1,4 @@ -astroid==3.1.0 +astroid==3.2.2 # via pylint dill==0.3.8 # via pylint @@ -8,22 +8,22 @@ isort==5.13.2 # via pylint mccabe==0.7.0 # via pylint -pluggy==1.4.0 +pluggy==1.5.0 # via pytest -pylint==3.1.0 +pylint==3.2.5 # via -r extra-test.in pytest==7.4.4 # via # -r extra-test.in # pytest-asyncio # pytest-mock -pytest-asyncio==0.21.1 +pytest-asyncio==0.21.2 # via -r extra-test.in pytest-mock==3.14.0 # via -r extra-test.in -tomlkit==0.12.4 +tomlkit==0.13.0 # via pylint -exceptiongroup==1.2.0; python_version != "3.11" +exceptiongroup==1.2.1; python_version != "3.11" # via pytest tomli==2.0.1; python_version != "3.11" # via diff --git a/tests/core/test_version.py b/tests/core/test_version.py index 954ce894740..fc38967005e 100644 --- a/tests/core/test_version.py +++ b/tests/core/test_version.py @@ -64,7 +64,7 @@ def test_python_version_has_lower_bound(): Due to constant issues in support with Red being installed on a Python version that was not supported by any Red version, it is important that we have both an upper and lower bound set. """ - requires_python = importlib.metadata.metadata("Red-DiscordBot")["Requires-Python"] + requires_python = importlib.metadata.metadata("Red-DiscordBot").get("Requires-Python") assert requires_python is not None # Requirement needs a regular requirement string, so "x" serves as requirement's name here @@ -81,7 +81,7 @@ def test_python_version_has_upper_bound(): Due to constant issues in support with Red being installed on a Python version that was not supported by any Red version, it is important that we have both an upper and lower bound set. """ - requires_python = importlib.metadata.metadata("Red-DiscordBot")["Requires-Python"] + requires_python = importlib.metadata.metadata("Red-DiscordBot").get("Requires-Python") assert requires_python is not None # Requirement needs a regular requirement string, so "x" serves as requirement's name here