mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-12-05 08:52:31 -05:00
Compare commits
46 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ce6489325e | ||
|
|
d64cbdf83e | ||
|
|
66d1c87b5a | ||
|
|
3888f09cfa | ||
|
|
8ad9c55d50 | ||
|
|
3aac07a4d7 | ||
|
|
bd26e7d5af | ||
|
|
9392077434 | ||
|
|
1f48919005 | ||
|
|
fdaa869130 | ||
|
|
18614b1604 | ||
|
|
016684bcce | ||
|
|
5cfb8edab8 | ||
|
|
150692538f | ||
|
|
f4ffc6bc80 | ||
|
|
9419f2642a | ||
|
|
f0a29e9815 | ||
|
|
d29ae723c1 | ||
|
|
9920628948 | ||
|
|
48b2fe77c0 | ||
|
|
33e0eac741 | ||
|
|
2871992772 | ||
|
|
30058c0f73 | ||
|
|
4134881fae | ||
|
|
4396323205 | ||
|
|
4e27059209 | ||
|
|
d3887b595f | ||
|
|
005b8af10a | ||
|
|
d304da7a16 | ||
|
|
f3c89ad8bd | ||
|
|
05cf9b7f39 | ||
|
|
907a3f7561 | ||
|
|
2595c9de10 | ||
|
|
8be7b0850c | ||
|
|
61ec913789 | ||
|
|
88b11f2b9c | ||
|
|
9ca0ced2d8 | ||
|
|
a5a178bfaf | ||
|
|
eeb90aaa45 | ||
|
|
b7a59b5e4c | ||
|
|
2769ea025f | ||
|
|
818420a641 | ||
|
|
3c49a77e34 | ||
|
|
90691ba2b9 | ||
|
|
68f2806204 | ||
|
|
903992f48a |
41
.github/workflows/publish_release.yml
vendored
41
.github/workflows/publish_release.yml
vendored
@@ -80,14 +80,43 @@ jobs:
|
||||
name: build-output
|
||||
path: ./dist
|
||||
|
||||
generate_default_ll_server_config:
|
||||
name: Generate default application.yml
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.8'
|
||||
|
||||
- name: Install script's dependencies
|
||||
run: python -m pip install PyYAML
|
||||
|
||||
- name: Generate default application.yml
|
||||
env:
|
||||
APP_YML_FILE: "Red-DiscordBot-${{ github.ref_name }}-default-lavalink-application.yml"
|
||||
run: |
|
||||
mkdir -p release_assets
|
||||
python .github/workflows/scripts/get_default_ll_server_config.py "release_assets/$APP_YML_FILE"
|
||||
|
||||
- name: Upload default application.yml
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ll-default-server-config
|
||||
path: ./release_assets
|
||||
|
||||
release_to_pypi:
|
||||
needs:
|
||||
- release_information
|
||||
- build
|
||||
- generate_default_ll_server_config
|
||||
environment: Release
|
||||
name: Release to PyPI
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
id-token: write
|
||||
steps:
|
||||
- name: Download packaged distributions
|
||||
@@ -96,6 +125,18 @@ jobs:
|
||||
name: build-output
|
||||
path: dist/
|
||||
|
||||
- name: Download default application.yml
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: ll-default-server-config
|
||||
path: release_assets/
|
||||
|
||||
- name: Upload dists to GitHub Release
|
||||
env:
|
||||
GITHUB_TOKEN: "${{ github.token }}"
|
||||
run: |
|
||||
gh release upload "$GITHUB_REF_NAME" dist/* release_assets/* --repo "$GITHUB_REPOSITORY"
|
||||
|
||||
- name: Publish package distributions to PyPI
|
||||
uses: pypa/gh-action-pypi-publish@release/v1
|
||||
with:
|
||||
|
||||
@@ -17,6 +17,12 @@ def pip_compile(version: str, name: str) -> None:
|
||||
if EXCLUDE_STEM_RE.fullmatch(stem):
|
||||
return
|
||||
|
||||
constraint_flags = [
|
||||
arg
|
||||
for file in REQUIREMENTS_FOLDER.glob(f"{sys.platform}-3.8-*.txt")
|
||||
for arg in ("-c", file.name)
|
||||
]
|
||||
|
||||
executable = ("py", f"-{version}") if sys.platform == "win32" else (f"python{version}",)
|
||||
subprocess.check_call(
|
||||
(
|
||||
@@ -30,6 +36,7 @@ def pip_compile(version: str, name: str) -> None:
|
||||
f"{name}.in",
|
||||
"--output-file",
|
||||
f"{stem}.txt",
|
||||
*constraint_flags,
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
31
.github/workflows/scripts/get_default_ll_server_config.py
vendored
Normal file
31
.github/workflows/scripts/get_default_ll_server_config.py
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
import yaml
|
||||
|
||||
ROOT_FOLDER = Path(__file__).parents[3].absolute()
|
||||
AUDIO_FOLDER = ROOT_FOLDER / "redbot/cogs/audio"
|
||||
|
||||
# We want to import `redbot.cogs.audio.managed_node` package as if it were top-level package
|
||||
# so we have to the `redbot/cogs/audio` directory to Python's path.
|
||||
sys.path.insert(0, str(AUDIO_FOLDER))
|
||||
|
||||
|
||||
def main() -> int:
|
||||
try:
|
||||
output_file = sys.argv[1]
|
||||
except IndexError:
|
||||
print("Usage:", sys.argv[0], "<output_file>", file=sys.stderr)
|
||||
return 2
|
||||
|
||||
import managed_node
|
||||
|
||||
server_config = managed_node.get_default_server_config()
|
||||
with open(output_file, "w", encoding="utf-8") as fp:
|
||||
yaml.safe_dump(server_config, fp)
|
||||
|
||||
return 0
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
raise SystemExit(main())
|
||||
@@ -49,6 +49,8 @@ def get_requirements(fp: TextIO) -> List[RequirementData]:
|
||||
via_prefix = "via "
|
||||
if source.startswith(via_prefix):
|
||||
source = source[len(via_prefix) :]
|
||||
if source.startswith("-c ") and source != "-c base.txt":
|
||||
continue
|
||||
current.comments.add(source)
|
||||
elif line and not line.startswith(("#", " ")):
|
||||
current = RequirementData(line)
|
||||
|
||||
@@ -26,14 +26,6 @@ unsafe-load-any-extension=no
|
||||
# run arbitrary code
|
||||
extension-pkg-whitelist=
|
||||
|
||||
# Allow optimization of some AST trees. This will activate a peephole AST
|
||||
# optimizer, which will apply various small optimizations. For instance, it can
|
||||
# be used to obtain the result of joining multiple strings with the addition
|
||||
# operator. Joining a lot of strings can lead to a maximum recursion error in
|
||||
# Pylint and this flag can prevent that. It has one side effect, the resulting
|
||||
# AST will be different than the one from reality.
|
||||
optimize-ast=no
|
||||
|
||||
|
||||
[MESSAGES CONTROL]
|
||||
|
||||
@@ -66,7 +58,6 @@ disable=C, # black is enforcing this for us already, incompatibly
|
||||
[REPORTS]
|
||||
|
||||
output-format=parseable
|
||||
files-output=no
|
||||
reports=no
|
||||
|
||||
|
||||
|
||||
114
CHANGES.rst
114
CHANGES.rst
@@ -1,5 +1,119 @@
|
||||
.. Red changelogs
|
||||
|
||||
Redbot 3.5.14 (2024-12-25)
|
||||
==========================
|
||||
|
||||
| Thanks to all these amazing people that contributed to this release:
|
||||
| :ghuser:`aikaterna`, :ghuser:`Ascensionn`, :ghuser:`cswimr`, :ghuser:`Chovin`, :ghuser:`cdaman3141`, :ghuser:`DJTOMATO`, :ghuser:`Flame442`, :ghuser:`japandotorg`, :ghuser:`Jackenmen`, :ghuser:`karlsbjorn`, :ghuser:`Kowlin`, :ghuser:`kpopdev`, :ghuser:`kevin1015wang`, :ghuser:`Kreusada`, :ghuser:`mellow-org`, :ghuser:`palmtree5`, :ghuser:`sravan1946`, :ghuser:`TrustyJAID`
|
||||
|
||||
Read before updating
|
||||
--------------------
|
||||
|
||||
#. Following operating systems are no longer supported as they have already reached their end of life:
|
||||
|
||||
- Debian 11 (excluding Raspberry Pi OS 11)
|
||||
- Fedora 39
|
||||
- macOS 12 (Monterey)
|
||||
|
||||
#. 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 bumped the version of YT source plugin.
|
||||
`Download Red 3.5.14's default application.yml file <https://github.com/Cog-Creators/Red-DiscordBot/releases/download/3.5.14/Red-DiscordBot-3.5.14-default-lavalink-application.yml>`__
|
||||
|
||||
End-user changelog
|
||||
------------------
|
||||
|
||||
Additions
|
||||
*********
|
||||
|
||||
- |cool| **Cogs - Mod** - Added new setting (``[p]modset requirereason``) for enforcing reason to be filled in cog's commands (:issue:`6477`)
|
||||
|
||||
Changes
|
||||
*******
|
||||
|
||||
- |cool| **Core** - Updated the output from help command to enable use of the new copy to clipboard feature on Discord code blocks to copy the command input (:issue:`6244`)
|
||||
- **Core** - Updated ID parser used by some (core and 3rd-party) commands to reject IDs that are larger than a Discord ID (snowflake) can be (:issue:`6431`, :issue:`6486`)
|
||||
- |cool| **Core - Bot Commands** - The ``[p]slash disablecog`` and ``[p]slash enablecog`` commands can now be passed multiple cog names to disable/enable app commands from many cogs at the same time (:issue:`6001`)
|
||||
- **Core - Dependencies** - Red's dependencies have been bumped (:issue:`6492`)
|
||||
- **Core - OS Support** - Debian 11, Fedora 39, and macOS 12 (Monterey) are no longer supported as they have already reached end of life (:issue:`6492`)
|
||||
- **Core - OS Support** - Ubuntu non-LTS version is currently considered unsupported due to lack of support for Python 3.12 from Red (:issue:`6492`)
|
||||
- **Cogs - Audio** - The ``[p]play`` command will now mention how the URL restrictions can be disabled, if they're currently enabled (:issue:`6348`)
|
||||
- **Cogs - Audio** - The Lavalink download process now has a separate, larger, timeout than the timeout for startup of the Lavalink process (:issue:`6460`, :issue:`6461`)
|
||||
- **Cogs - Downloader** - Changed the format of the ``[p]repo list`` command's output to include repo links (:issue:`6284`)
|
||||
- |cool| **Cogs - Warnings** - The ``[p]warn`` command will now prompt whether to ban the user, if that user has already left the server by the time the command was called (:issue:`6445`, :issue:`6481`)
|
||||
- **Cogs - Trivia - Lists** - Added variants of the answers without punctuation to the ``harrypotter`` trivia list (:issue:`5889`)
|
||||
|
||||
Fixes
|
||||
*****
|
||||
|
||||
- **Core** - Fixed issues with permission handling for user-installable app commands (:issue:`6457`)
|
||||
- **Core - Bot Commands** - Fixed uncaught error when running ``[p]load locales`` command (:issue:`4623`)
|
||||
- |cool| **Cogs - Audio** - Fixed various issues with YT playback resulting in "Something broke when playing the track" error (:issue:`6488`, :issue:`6490`)
|
||||
- **Cogs - Trivia - Lists** - Fixed typos in Golden Glove questions in the ``worldcup`` trivia list (:issue:`6441`)
|
||||
|
||||
Developer changelog
|
||||
-------------------
|
||||
|
||||
Additions
|
||||
*********
|
||||
|
||||
- |cool| **Core - Bot Class** - Added `Red.get_app_command_id()` and `Red.get_app_command_mention()` methods for getting app command IDs/mentions from Red's cache (:issue:`5976`, :issue:`6278`)
|
||||
- **Core - Utils Package** - Added `hyperlink()`, `header()`, and `subtext()` chat formatting functions (:issue:`6102`, :issue:`6444`)
|
||||
- |cool| **Core - Utils Package** - Added `redbot.core.utils.chat_formatting.rich_markup()` function for generating Discord-compatible code blocks with ANSI formatting using a limited set of `Rich markup <https://rich.readthedocs.io/en/stable/markup.html>`__ (:issue:`5538`)
|
||||
- **Cogs - Downloader** - Downloader will now replace ``[botname]`` in the install messages with the bot's name, same as is done for command help messages (:issue:`6443`)
|
||||
|
||||
Changes
|
||||
*******
|
||||
|
||||
- **Core - Utils Package** - Added support for `SimpleMenu` to customize the select options before sending (:issue:`6455`, :issue:`6480`)
|
||||
|
||||
Deprecations
|
||||
************
|
||||
|
||||
- **Core - Utils Package** - Deprecated `SimpleMenu.select_menu` attribute (:issue:`6480`)
|
||||
|
||||
Fixes
|
||||
*****
|
||||
|
||||
- **Core** - Fixed the cooldown bypass (enabled by ``[p]bypasscooldowns`` command) not being respected by the ``[p]slash sync`` command (:issue:`6465`)
|
||||
- **Core - Commands Package** - Updated `RawUserIdConverter` to reject IDs that are larger than a Discord ID (snowflake) can be (:issue:`6431`, :issue:`6486`)
|
||||
|
||||
----
|
||||
|
||||
Redbot 3.5.13 (2024-08-27)
|
||||
==========================
|
||||
|
||||
| Thanks to all these amazing people that contributed to this release:
|
||||
| :ghuser:`aikaterna`, :ghuser:`Guyonsteroids`, :ghuser:`Jackenmen`, :ghuser:`Kowlin`
|
||||
|
||||
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):
|
||||
|
||||
We've updated our default application.yml file and you should update your instance's ``application.yml`` accordingly.
|
||||
More specifically, we bumped the version of YT source plugin.
|
||||
`Download Red 3.5.13's default application.yml file <https://github.com/Cog-Creators/Red-DiscordBot/releases/download/3.5.13/Red-DiscordBot-3.5.13-default-lavalink-application.yml>`__
|
||||
|
||||
End-user changelog
|
||||
------------------
|
||||
|
||||
Changes
|
||||
*******
|
||||
|
||||
- **Core - Dependencies** - Red's dependencies have been bumped (:issue:`6436`)
|
||||
|
||||
Fixes
|
||||
*****
|
||||
|
||||
- **Cogs - Audio** - Updated Audio to support planned changes to Discord API scheduled for November (:issue:`6435`)
|
||||
- **Cogs - Audio** - Fixed YT live stream detection (:issue:`6435`)
|
||||
- **Cogs - Audio** - Fixed Red erroneously trying to send a message to a notification channel when one is not set (:issue:`6429`)
|
||||
- **Cogs - Trivia - Lists** - Fixed spelling of Steven Spielberg's first name in the ``entertainment`` trivia list (:issue:`6434`)
|
||||
|
||||
----
|
||||
|
||||
Redbot 3.5.12 (2024-08-08)
|
||||
==========================
|
||||
|
||||
|
||||
2
docs/_templates/layout.html
vendored
2
docs/_templates/layout.html
vendored
@@ -5,7 +5,7 @@
|
||||
<p class="first admonition-title">Warning</p>
|
||||
<p class="last">
|
||||
This document is for Red's development version, which can be significantly different from previous releases.
|
||||
If you're a regular user, you should read the <a href="{{ dict(versions)['stable'] }}">Red documentation for the current stable release</a>.
|
||||
If you're a regular user, you should read the <a href="/{{ rtd_language }}/stable/">Red documentation for the current stable release</a>.
|
||||
</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
@@ -4185,7 +4185,7 @@ slash disablecog
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]slash disablecog <cog_name>
|
||||
[p]slash disablecog <cog_names...>
|
||||
|
||||
**Description**
|
||||
|
||||
@@ -4195,7 +4195,7 @@ This command does NOT sync the enabled commands with Discord, that must be done
|
||||
with ``[p]slash sync`` for commands to appear in users' clients.
|
||||
|
||||
**Arguments:**
|
||||
- ``<cog_name>`` - The cog to disable commands from. This argument is case sensitive.
|
||||
- ``<cog_names>`` - The cogs to disable commands from. This argument is case sensitive.
|
||||
|
||||
.. _core-command-slash-enable:
|
||||
|
||||
@@ -4230,7 +4230,7 @@ slash enablecog
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]slash enablecog <cog_name>
|
||||
[p]slash enablecog <cog_names...>
|
||||
|
||||
**Description**
|
||||
|
||||
@@ -4240,7 +4240,7 @@ This command does NOT sync the enabled commands with Discord, that must be done
|
||||
with ``[p]slash sync`` for commands to appear in users' clients.
|
||||
|
||||
**Arguments:**
|
||||
- ``<cog_name>`` - The cog to enable commands from. This argument is case sensitive.
|
||||
- ``<cog_names>`` - The cogs to enable commands from. This argument is case sensitive.
|
||||
|
||||
.. _core-command-slash-list:
|
||||
|
||||
|
||||
@@ -266,6 +266,28 @@ and reason as to why they were kicked/banned.
|
||||
|
||||
* ``[enabled]``: Whether a message should be sent to a user when they are kicked/banned. |bool-input|
|
||||
|
||||
.. _mod-command-modset-requirereason:
|
||||
|
||||
""""""""""""""""""""
|
||||
modset requirereason
|
||||
""""""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]modset requirereason [enabled]
|
||||
|
||||
**Description**
|
||||
|
||||
Toggle whether a reason is required for mod actions.
|
||||
|
||||
If this is enabled, the bot will require a reason to be provided for all mod actions.
|
||||
|
||||
**Arguments**
|
||||
|
||||
* ``[enabled]``: Whether a reason should be required when performing mod actions. |bool-input|
|
||||
|
||||
.. _mod-command-modset-hierarchy:
|
||||
|
||||
""""""""""""""""
|
||||
|
||||
@@ -139,6 +139,9 @@ html_context = {
|
||||
"github_user": "Cog-Creators",
|
||||
"github_repo": "Red-DiscordBot",
|
||||
"github_version": "V3/develop",
|
||||
"version_slug": os.environ.get("READTHEDOCS_VERSION", ""),
|
||||
"rtd_language": os.environ.get("READTHEDOCS_LANGUAGE", ""),
|
||||
"READTHEDOCS": os.environ.get("READTHEDOCS", "") == "True",
|
||||
}
|
||||
|
||||
# Add any paths that contain custom static files (such as style sheets) here,
|
||||
|
||||
@@ -16,6 +16,17 @@ For Developers
|
||||
Removals
|
||||
~~~~~~~~
|
||||
|
||||
``SimpleMenu.select_menu`` attribute
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
.. deprecated-removed:: 3.5.14 60
|
||||
|
||||
The `SimpleMenu.select_menu` attribute has been deprecated.
|
||||
|
||||
Any behaviour enabled by the usage of this attribute should no longer be depended on.
|
||||
If you need this for something and cannot replace it with the other functionality,
|
||||
create an issue on Red's issue tracker.
|
||||
|
||||
Downloader's shared libraries
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
|
||||
@@ -1,27 +0,0 @@
|
||||
.. _install-debian-11:
|
||||
|
||||
====================================
|
||||
Installing Red on Debian 11 Bullseye
|
||||
====================================
|
||||
|
||||
.. include:: _includes/supported-arch-x64+aarch64+armv7l.rst
|
||||
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
Debian 11 "Bullseye" has all required packages available in official repositories. Install them
|
||||
with apt:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt update
|
||||
sudo apt -y install python3 python3-dev python3-venv git openjdk-17-jre-headless build-essential nano
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/create-env-with-venv3.9.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
@@ -12,7 +12,7 @@ Installing Red on Fedora Linux
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
Fedora Linux 39 and above has all required packages available in official repositories. Install
|
||||
Fedora Linux 40 and above has all required packages available in official repositories. Install
|
||||
them with dnf:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
@@ -18,7 +18,6 @@ we recommend **Ubuntu 24.04 LTS**.
|
||||
amazon-linux-2023
|
||||
arch
|
||||
centos-stream-9
|
||||
debian-11
|
||||
debian-12
|
||||
fedora
|
||||
opensuse-leap-15
|
||||
|
||||
@@ -4,23 +4,10 @@
|
||||
Installing Red on Ubuntu non-LTS versions
|
||||
=========================================
|
||||
|
||||
.. include:: _includes/supported-arch-x64+aarch64.rst
|
||||
Latest Ubuntu non-LTS version (24.10 at the time of writing) is not supported at current time
|
||||
due to lack of availability of Python 3.11 or older in its repositories.
|
||||
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
The support should come back once we get back on track with supporting current Python versions.
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
Now install the pre-requirements with apt:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt update
|
||||
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
|
||||
We recommend usage of latest Ubuntu **LTS** versions instead, you can find
|
||||
`an install guide for Ubuntu 24.04 <ubuntu-2404>` in our docs.
|
||||
|
||||
@@ -52,19 +52,19 @@ Operating system version Supported architectures Ideally supported u
|
||||
================================ ======================= ============================================================
|
||||
Windows 10 x86-64 2025-10-14 (`End/Retirement Date <https://docs.microsoft.com/en-us/lifecycle/products/windows-10-home-and-pro>`__)
|
||||
Windows 11 x86-64 `Retirement Date <https://docs.microsoft.com/en-us/lifecycle/products/windows-11-home-and-pro-version-21h2>`__
|
||||
macOS 12 (Monterey) x86-64, aarch64 ~2024-10
|
||||
macOS 13 (Ventura) x86-64, aarch64 ~2025-10
|
||||
macOS 14 (Sonoma) x86-64, aarch64 ~2026-10
|
||||
macOS 15 (Sequoia) x86-64, aarch64 ~2027-10
|
||||
Alma Linux 8 x86-64, aarch64 2029-05-31 (`How long will CloudLinux support AlmaLinux? <https://wiki.almalinux.org/FAQ.html#how-long-will-almalinux-be-supported>`__)
|
||||
Alma Linux 9 x86-64, aarch64 2032-05-31
|
||||
Amazon Linux 2023 x86-64, aarch64 2028-03-15 (`end-of-life <https://docs.aws.amazon.com/linux/al2023/release-notes/support-info-by-support-statement.html#support-info-by-support-statement-eol>`__)
|
||||
Arch Linux x86-64 forever (support is only provided for an up-to-date system)
|
||||
CentOS Stream 9 x86-64, aarch64 2027-05-31 (`expected EOL <https://centos.org/stream9/#timeline>`__)
|
||||
Debian 11 Bullseye x86-64, aarch64, armv7l ~2024-07 (`End of life <https://wiki.debian.org/DebianReleases#Production_Releases>`__)
|
||||
Debian 12 Bookworm x86-64, aarch64, armv7l ~2026-09 (`End of life <https://wiki.debian.org/DebianReleases#Production_Releases>`__)
|
||||
Fedora Linux 39 x86-64, aarch64 2024-11-12 (`End of Life <https://docs.fedoraproject.org/en-US/releases/lifecycle/#_maintenance_schedule>`__)
|
||||
Fedora Linux 40 x86-64, aarch64 2025-05-13 (`End of Life <https://docs.fedoraproject.org/en-US/releases/lifecycle/#_maintenance_schedule>`__)
|
||||
Fedora Linux 40 x86-64, aarch64 2025-05-28 (`End of Life <https://docs.fedoraproject.org/en-US/releases/lifecycle/#_maintenance_schedule>`__)
|
||||
Fedora Linux 41 x86-64, aarch64 2025-11-19 (`End of Life <https://docs.fedoraproject.org/en-US/releases/lifecycle/#_maintenance_schedule>`__)
|
||||
openSUSE Leap 15.5 x86-64, aarch64 2024-12-31 (`end of maintenance life cycle <https://en.opensuse.org/Lifetime#openSUSE_Leap>`__)
|
||||
openSUSE Leap 15.6 x86-64, aarch64 2025-12-31 (`end of maintenance life cycle <https://en.opensuse.org/Lifetime#openSUSE_Leap>`__)
|
||||
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 <https://www.oracle.com/us/support/library/elsp-lifetime-069338.pdf>`__)
|
||||
Oracle Linux 9 x86-64, aarch64 2032-06-31 (`End of Premier Support <https://www.oracle.com/us/support/library/elsp-lifetime-069338.pdf>`__)
|
||||
@@ -80,7 +80,6 @@ Rocky Linux 8 x86-64, aarch64 2029-05-31 (`end-of
|
||||
Rocky Linux 9 x86-64, aarch64 2032-05-31 (`end-of-life <https://rockylinux.org/download/>`__)
|
||||
Ubuntu 20.04 LTS x86-64, aarch64 2025-06-30 (`End of Standard Support <https://wiki.ubuntu.com/Releases#Current>`__)
|
||||
Ubuntu 22.04 LTS x86-64, aarch64 2027-06-30 (`End of Standard Support <https://wiki.ubuntu.com/Releases#Current>`__)
|
||||
Ubuntu 23.10 x86-64, aarch64 2024-07-31 (`End of Standard Support <https://wiki.ubuntu.com/Releases#Current>`__)
|
||||
Ubuntu 24.04 LTS x86-64, aarch64 2029-06-30 (`End of Standard Support <https://wiki.ubuntu.com/Releases#Current>`__)
|
||||
================================ ======================= ============================================================
|
||||
|
||||
|
||||
@@ -339,7 +339,7 @@ def _early_init():
|
||||
|
||||
|
||||
# This is bumped automatically by release workflow (`.github/workflows/scripts/bump_version.py`)
|
||||
_VERSION = "3.5.12"
|
||||
_VERSION = "3.5.14"
|
||||
|
||||
__version__, version_info = VersionInfo._get_version()
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/ar-SA.po
generated
282
redbot/cogs/audio/core/commands/locales/ar-SA.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -683,8 +683,8 @@ msgstr "`{localtracks}` غير موجود. سيتم حفظ هذا المسار،
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "بيئة غير صالحة"
|
||||
|
||||
@@ -1285,43 +1285,43 @@ msgstr "أنت بحاجة إلى رتبة DJ أو أن تكون طالب الم
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
@@ -1497,11 +1497,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr ""
|
||||
@@ -1515,17 +1515,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1631,7 +1631,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr ""
|
||||
|
||||
@@ -2336,189 +2336,193 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr "تعذر الحصول على مسار صالح."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2526,50 +2530,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/bg-BG.po
generated
282
redbot/cogs/audio/core/commands/locales/bg-BG.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -677,8 +677,8 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr ""
|
||||
|
||||
@@ -1274,43 +1274,43 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
@@ -1486,11 +1486,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr ""
|
||||
@@ -1504,17 +1504,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1620,7 +1620,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr ""
|
||||
|
||||
@@ -2320,189 +2320,193 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2510,50 +2514,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/cs-CZ.po
generated
282
redbot/cogs/audio/core/commands/locales/cs-CZ.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -679,8 +679,8 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr ""
|
||||
|
||||
@@ -1276,43 +1276,43 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
@@ -1488,11 +1488,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr ""
|
||||
@@ -1506,17 +1506,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr "Nejprve se připojte k hlasovému kanálu."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1622,7 +1622,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr ""
|
||||
|
||||
@@ -2322,189 +2322,193 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Tato adresa URL není povolena."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr "Prosím zkontrolujte svou konzoli nebo logy pro podrobnosti."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Tato adresa URL není povolena."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr "Žádné skladby."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2512,50 +2516,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr "Nic nenalezeno."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr " {bad_tracks} skladby nemůžou být zařazeny do fronty."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/da-DK.po
generated
282
redbot/cogs/audio/core/commands/locales/da-DK.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -677,8 +677,8 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr ""
|
||||
|
||||
@@ -1274,43 +1274,43 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
@@ -1486,11 +1486,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr ""
|
||||
@@ -1504,17 +1504,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1620,7 +1620,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr ""
|
||||
|
||||
@@ -2320,189 +2320,193 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2510,50 +2514,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/de-DE.po
generated
282
redbot/cogs/audio/core/commands/locales/de-DE.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -706,8 +706,8 @@ msgstr "`{localtracks}` existiert nicht. Der Pfad wird noch gespeichert, aber bi
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "Ungültige Umgebung"
|
||||
|
||||
@@ -1336,43 +1336,43 @@ msgstr "Du benötigst die DJ-Rolle oder der Track-Requder, um die vorherigen Son
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Titel können nicht wiedergegeben werden"
|
||||
@@ -1550,11 +1550,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr "Sie benötigen die DJ-Rolle, um den Bot zu beschwören."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr "Ich habe keine Berechtigung den Kanal zu betreten und dort zu sprechen."
|
||||
@@ -1568,17 +1568,17 @@ msgid "I am already in your channel."
|
||||
msgstr "Ich bin bereits in deinem Kanal."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr "Verbinde dich zuerst mit einem Sprachkanal."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr "Verbindung zu Lavalink wurde noch nicht hergestellt."
|
||||
|
||||
@@ -1684,7 +1684,7 @@ msgstr "Befördert einen Track mit einer bestimmten Nummer an die Spitze der War
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr "Titel konnte nicht an die Spitze gesetzt werden"
|
||||
|
||||
@@ -2401,192 +2401,196 @@ msgstr "Spielt den angegebenen Titel ab oder sucht nach einem ähnlichen Titel.\
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Dieser Link ist nicht erlaubt."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr "Dieser Track ist nicht erlaubt."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr "Du benötigst die DJ Rolle um Titel einzureihen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr "Verbindung zum Lavalink Knoten ist fehlgeschlagen"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr "Bitte überprüfen Sie Ihre Konsole oder Protokolle für Details."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr "Du musst dich in dem Sprachkanal befinden, um den play Befehl zu verwenden."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr "Keine Tracks für `{query} ` gefunden."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Maximale Warteschlangengröße erreicht."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr "Erzwinge die Wiedergabe einer URL oder Suche nach einem Track."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr "Nur einzelne Tracks funktionieren mit Bump Play."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Dieser Link ist nicht erlaubt."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr "Verbindung zum Lavalink Knoten wurde noch nicht hergestellt."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr "Lokale Titel funktionieren nicht, wenn der Lavalink Knoten die Titel nicht sehen kann.\n"
|
||||
"Dies kann auf fehlende Berechtigungen zurückzuführen sein oder du verwendest einen externen Lavalink Knoten auf einem anderen System als der Bot und die lokalen Titel."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr "Track ist nicht abspielbar."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr "**{suffix}** ist kein vollständig unterstütztes Format und einige Titel werden möglicherweise nicht abgespielt."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr "Dieser Track ist auf diesem Server nicht erlaubt."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr "Der Track überschreitet die maximale Länge."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr "{time} bis zur Wiedergabe des Titels: #1 in der Warteschlange"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr "Titel eingereiht"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr "Wählen Sie eine Spotify-Playlist aus einer Liste von Kategorien aus, um mit dem Abspielen zu beginnen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr "Der Besitzer muss die Spotify client ID und Spotify client secret festlegen, bevor Spotify URLs oder Codes verwendet werden können. \n"
|
||||
"Siehe `{prefix}audioset spotifyapi` für eine Anleitung."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr "Der Besitzer muss der YouTube API schlüssel festlegen, bevor Spotify URLs oder Codes verwendet werden können. \n"
|
||||
"Siehe `{prefix}audioset youtubeapi` für eine Anleitung."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr "Du musst dich in einem Sprachkanal befinden, um den Genre-Befehl verwenden zu können."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr "Keine Kategorien gefunden"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr "Keine Kategorien gefunden, versuche es später erneut."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr "Kategorien"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr "Keine Kategorien ausgewählt. Versuche es später erneut."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr "Playlist für {friendly_name}"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr "Keine Titel zum Abspielen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr "Konnte keine Titel für die ausgewählte Playlist finden."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr "Startet Automatische-Wiedergabe."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr "Du musst dich in einem Sprachkanal befinden, um den Automatischen wiedergabe Befehl verwenden zu können."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr "Kein gültiger Track gefunden."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr "Tracks können nicht abgerufen werden"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr "Ich bin momentan nicht in der Lage, einen Track von Lavalink zu bekommen. Versuchen Sie es in ein paar Minuten erneut."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr "Füge einen Track zur Warteschlange hinzu."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2594,51 +2598,51 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr "Verbindung zu Lavalink ist fehlgeschlagen"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr "Suche nach Titel nicht möglich"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr "Du musst dich in einem Sprachkanal befinden um Lieder einzureihen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr "Nichts gefunden."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr "Lokale Tracks funktionieren nicht, wenn die `Lavalink.jar` den Track nicht sehen kann.\n"
|
||||
" Dies kann aufgrund von Berechtigungen oder weil Lavalink.jar auf einem anderen Rechner ausgeführt wird passieren."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr " {bad_tracks} Tracks können nicht zur Warteschlange hinzugefügt werden."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr "Wartete {num} Spur(n).{maxlength_msg}"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr "Ordner"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr "suche"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr "{time} bis zum Start der {type} Wiedergabe: startet an #{position} in der Warteschlange"
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/es-ES.po
generated
282
redbot/cogs/audio/core/commands/locales/es-ES.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -728,8 +728,8 @@ msgstr "`{localtracks}` no existe. La ruta aún se guardará, pero por favor rev
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "Entorno no válido"
|
||||
|
||||
@@ -1368,43 +1368,43 @@ msgstr "Necesitas el rol de DJ o ser el solicitante de la pista para encolar las
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "No se puede reproducir pistas"
|
||||
@@ -1585,11 +1585,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr "Necesitas el rol del DJ para invocar al bot."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr "No tengo permisos para conectarme o hablar en tu canal."
|
||||
@@ -1603,17 +1603,17 @@ msgid "I am already in your channel."
|
||||
msgstr "Ya estoy en tu canal de voz"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr "Conéctate a un canal de voz primero."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr "Aún no se ha establecido la conexión con el nodo Lavalink."
|
||||
|
||||
@@ -1719,7 +1719,7 @@ msgstr "Volcar un número de pista a la parte superior de la cola."
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr "No se puede volcar la pista"
|
||||
|
||||
@@ -2514,192 +2514,196 @@ msgstr "Reproducir la pista especificada o buscar un resultado similar.\n\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Esta URL no está permitida."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr "Esta canción no está permitida."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr "Necesitas el rol de DJ para hacer colas."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr "La conexión al nodo Lavalink ha fallado"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr "Por favor, comprueba tu consola o registros para más detalles."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr "Debes estar en el canal de voz para usar el comando de reproducción."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr "No se han encontrado pistas para `{query}`."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Límite de cola alcanzado."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr "Forzar la reproducción de una URL o buscar una pista."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr "Sólo las pistas simples funcionan con modo volcado."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Esta URL no está permitida."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr "Aún no se ha establecido la conexión con el nodo Lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr "Las pistas locales no funcionarán si el nodo Lavalink administrado no puede ver la pista.\n"
|
||||
"Esto puede deberse a permisos o estás usando un nodo Lavalink externo en una máquina diferente que el bot y las pistas locales."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr "La pista no es reproducible."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr "**{suffix}** no es un formato totalmente soportado y algunas pistas pueden no reproducirse."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr "Esta pista no está permitida en este servidor."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr "La pista excede la longitud máxima."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr "{time} hasta la reproducción de la pista: #1 en cola"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr "Pista en cola"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr "Elige una lista de reproducción de Spotify de una lista de categorías para empezar a jugar."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr "El propietario necesita establecer el ID del cliente de Spotify y el secreto del cliente de Spotify, antes de que se puedan usar las URLs o códigos de Spotify. \n"
|
||||
"Ver `{prefix}audioset spotifyapi` para instrucciones."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr "El propietario necesita establecer el ID del cliente de Spotify y el secreto del cliente de Spotify, antes de que se puedan usar las URLs o códigos de Spotify. \n"
|
||||
"Ver `{prefix}audioset spotifyapi` para instrucciones."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr "Debes estar en el canal de voz para usar el comando de género."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr "No se encontraron categorías"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr "No se encontraron categorías, inténtalo de nuevo más tarde."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr "Categorías"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr "No hay categorías seleccionadas, inténtalo de nuevo más tarde."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr "Listas de reproducción para {friendly_name}"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr "No hay pistas para jugar."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr "No se pudo encontrar pistas para la lista de reproducción seleccionada."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr "Comienza la reproducción automática."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr "Debes estar en el canal de voz para usar el comando de reproducción automática."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr "No se pudo obtener una pista válida."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr "No se puede obtener la pista"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr "No puedo obtener una pista de Lavalink en este momento, inténtalo de nuevo en unos minutos."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr "Añadiendo un track a la cola."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2710,51 +2714,51 @@ msgstr "Elige una pista con una búsqueda.\n\n"
|
||||
" <search term>` para buscar en SoundCloud en lugar de YouTube.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr "La conexión a Lavalink ha fallado"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr "No se puede buscar pistas"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr "Debes estar en el canal de voz para encolar pistas."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr "Nada encontrado."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr "Las pistas locales no funcionarán si el `Lavalink.jar` no puede ver la pista.\n"
|
||||
"Esto puede deberse a permisos o porque Lavalink.jar se está ejecutando en una máquina diferente a las pistas locales."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr " {bad_tracks} pistas no pueden ser puestas en cola."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr "{num} pista(s) en cola.{maxlength_msg}"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr "carpeta"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr "buscar"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr "{time} hasta el inicio de la reproducción de {type}: comienza en #{position} en cola"
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/fi-FI.po
generated
282
redbot/cogs/audio/core/commands/locales/fi-FI.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -694,8 +694,8 @@ msgstr "`{localtracks}` ei ole olemassa. Polku tallennetaan joka tapauksessa, mu
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "Virheellinen ympäristö"
|
||||
|
||||
@@ -1316,43 +1316,43 @@ msgstr "Sinulla pitää olla DJ-rooli tai sinun tulee olla kappaleen lisääjä,
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Kappaleiden toisto ei onnistu"
|
||||
@@ -1531,11 +1531,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr "Tarvitset DJ-roolin kutsuaksesi botin."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr "Minulla ei ole oikeutta yhdistää kanavallesi."
|
||||
@@ -1549,17 +1549,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr "Yhdistä ensin puhekanavalle."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1665,7 +1665,7 @@ msgstr "Nosta kappalenumero jonon ensimmäiseksi."
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr "Kappaletta ei voitu nostaa"
|
||||
|
||||
@@ -2370,191 +2370,195 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Tuo URL-osoite ei ole sallittu."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr "Tuon kappaleen toisto ei ole sallittua."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr "Tarvitset DJ-roolin lisätäksesi kappaleita jonoon."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr "Tarkista lisätiedot konsolista tai logeista."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr "Sinun täytyy olla puhekanavalla käyttääksesi play-komentoa."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr "Kappaleita ei löydetty haulla `{query}`."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Jonon enimmäispituus on saavutettu."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr "Pakota URL-osoitteen toisto tai etsi kappaletta."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr "Vain yksittäiset kappaleet toimivat samanaikaisen noston ja toiston kanssa."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Tuo URL-osoite ei ole sallittu."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr "Kappale ei ole toistettavissa."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr "**{suffix}** ei ole täysin tuettu muoto ja sen vuoksi kaikkia kappaleita ei välttämättä voida toistaa."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr "Tämä kappale ei ole sallittu tällä palvelimella."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr "Kappale ylittää maksimipituuden."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr "{time} aikaa toistoon: #1 jonossa"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr "Kappale lisätty jonoon"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr "Valitse Spotify-soittolista kategorioista aloittaaksesi toistamisen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr "Omistajan tulee asettaa Spotify client ID ja Spotify client secret, ennen kuin Spotify-osoitteita voidaan käyttää. \n"
|
||||
"Katso `{prefix}audioset spotifyapi` saadaksesi ohjeita."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr "Omistajan täytyy asettee YouTube API -avain ennen kuin Spotify-osoitteita voidaan käyttää.\n"
|
||||
"Katso`{prefix}audioset youtubeapi` saadakseksi ohjeita."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr "Sinun täytyy olla puhekanavalla käyttääksesi genre-komentoa."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr "Kategorioita ei löydetty"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr "Kategorioita ei löydetty, yritä myöhemmin uudelleen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr "Kategoriat"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr "Kategorioita ei valittu, yritä myöhemmin uudelleen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr "{friendly_name}-soittolistat"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr "Ei toistettavia kappaleita."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr "Kappaleita valitulta soittolistalta ei löytynyt."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr "Käynnistää automaattisen toiston."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr "Sinun tulee olla puhekanavalla käyttääksesi automaattisen toiston komentoa."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr "Kelvollista kappaletta ei saatu."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr "Kappaletta ei voitu hakea"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr "En pysty saamaan kappaletta Lavalinkiltä tällä hetkellä, yritä uudelleen muutaman minuutin kuluttua."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr "Lisätään kappale jonoon."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2562,51 +2566,51 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr "Lavalink-yhteys epäonnistui"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr "Kappaleita ei voida etsiä"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr "Sinun täytyy olla puhekanavalla lisätäksesi kappaleita jonoon."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr "Mitään ei löytynyt."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr "Paikalliset kappaleet eivät toimi jos `Lavalink.jar` ei voi nähdä niitä.\n"
|
||||
"Tämä voi johtua tiedosto-oikeuksista tai siitä että Lavalink.jar ajetaan toisella tietokoneella kuin missä kappaleet ovat."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr " {bad_tracks} kappaletta ei voida lisätä jonoon."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr "Lisättiin {num} kappale(tta).{maxlength_msg}"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr "kansion"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr "haun"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr "{time} aikaa {type} toistoon: sijalla #{position} jonossa"
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/fr-FR.po
generated
282
redbot/cogs/audio/core/commands/locales/fr-FR.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -727,8 +727,8 @@ msgstr "`{localtracks}` n'existe pas. Le chemin de sauvegarde sera malgré tout
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "Environnement invalide"
|
||||
|
||||
@@ -1364,43 +1364,43 @@ msgstr "Vous devez avoir le rôle de DJ ou être le demandeur de piste pour mett
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Impossible de jouer des pistes"
|
||||
@@ -1581,11 +1581,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr "Vous avez besoin du rôle DJ pour invoquer le bot."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr "Je n'ai pas la permission de me connecter et de parler dans votre salon vocal."
|
||||
@@ -1599,17 +1599,17 @@ msgid "I am already in your channel."
|
||||
msgstr "Je suis déjà dans votre chaîne."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr "Rejoignez un salon vocal d'abord."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr "La connexion au nœud Lavalink n'a pas encore été établie."
|
||||
|
||||
@@ -1715,7 +1715,7 @@ msgstr "Remonte un numéro de piste vers le haut de la liste."
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr "Impossible de remonter la piste"
|
||||
|
||||
@@ -2439,192 +2439,196 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Cette URL n'est pas autorisée."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr "Cette piste n'est pas autorisée."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr "Vous devez avoir le rôle DJ pour ajouter des pistes à la liste."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr "La connexion à Lavalink a échoué"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr "Veuillez vérifier votre console ou les logs pour plus de détails."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr "Vous devez être dans un salon vocal pour utiliser la commande play."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr "Aucune piste trouvée pour `{query}`."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Limite de la file de lecture atteinte."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr "Forcer la lecture d'une URL ou chercher une piste."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Cette URL n'est pas autorisée."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
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/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr "Les pistes locales ne fonctionneront pas si Lavalink ne peut pas voir la piste.\n"
|
||||
"Cela peut être dû à des permissions ou parce que le noeud Lavalink est exécuté sur une machine différente de celle des pistes locales."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr "La piste n'est pas jouable."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr "**{suffix}** n'est pas un format supporté et certaines pistes peuvent ne pas être jouées."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr "Ce titre n'est pas autorisé sur le serveur."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr "Cette piste dépasse la limite maximale."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr "{time} avant la lecture de la piste: #1 dans la file d'attente"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr "Piste ajoutée"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr "Choisissez une playlist Spotify dans une liste de catégories pour commencer la lecture."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr "Le propriétaire doit rentrer le \"Client ID\" Spotify et le \"Client Secret\" Spotify avant de pouvoir utiliser les URL ou les codes Spotify. \n"
|
||||
"Voir `{prefix}audioset spotifyapi` pour les instructions."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr "Le propriétaire doit définir la clé d'API YouTube avant de pouvoir utiliser les URLs ou les codes Spotify.\n"
|
||||
"Voir `{prefix}audioset youtubeapi` pour les instructions."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr "Vous devez être dans un salon vocal pour utiliser la commande genre."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr "Aucune catégorie trouvée"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr "Aucune catégorie trouvée, réessayer plus tard."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr "Catégories"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr "Aucune catégories sélectionnée, réessayer plus tard."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr "Playlists pour {friendly_name}"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr "Aucune piste à jouer."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr "Impossible de trouver les pistes pour la playlist sélectionnée."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr "Démarrer la lecture automatique."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr "Vous devez être dans un salon vocal pour utiliser la commande autoplay."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr "Impossible d'obtenir une piste valide."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr "Impossible d'obtenir la piste"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr "Je ne parviens actuellement pas à me connecter à Lavalink pour l'instant. Réessayez dans quelques minutes."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr "Ajout d'une piste à la file d'attente."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2632,51 +2636,51 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr "La connexion à Lavalink a échoué"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr "Impossible de rechercher des pistes"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr "Vous devez être dans un salon vocal pour ajouter des pistes."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr "Aucun résultat."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr "Les pistes locales ne fonctionneront pas si `Lavalink.jar` ne peut pas voir la piste.\n"
|
||||
"Cela peut être dû à des permissions ou parce que Lavalink.jar est exécuté sur une machine différente de celle des pistes locales."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr " {bad_tracks} pistes ne peuvent pas être mises en attente."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr "{num} piste(s) ajoutée(s).{maxlength_msg}"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr "dossier"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr "recherche"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/hi-IN.po
generated
282
redbot/cogs/audio/core/commands/locales/hi-IN.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hindi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -677,8 +677,8 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr ""
|
||||
|
||||
@@ -1274,43 +1274,43 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
@@ -1486,11 +1486,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr ""
|
||||
@@ -1504,17 +1504,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1620,7 +1620,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr ""
|
||||
|
||||
@@ -2320,189 +2320,193 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2510,50 +2514,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/hr-HR.po
generated
282
redbot/cogs/audio/core/commands/locales/hr-HR.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Croatian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -680,8 +680,8 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "Neispravno Okruženje"
|
||||
|
||||
@@ -1278,43 +1278,43 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Nije moguće reproducirati pjesme"
|
||||
@@ -1490,11 +1490,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr "Nemam dozvolu za povezivanje i govor u vašem kanalu."
|
||||
@@ -1508,17 +1508,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr "Prvo se pridruži govornome kanalu."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1624,7 +1624,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr "Nije moguće pomaknuti pjesmu na vrh reda"
|
||||
|
||||
@@ -2324,189 +2324,193 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Dostignuto ograničenje za red čekanja."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr "Pjesma se ne može reproducirati."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr "**{suffix}** nije podržan format i neke se pjesme možda neće moći reproducirati."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr "Ova pjesma nije dopuštena na ovom serveru."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr "Pjesma prelazi maksimalnu duljinu."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr "Pjesma dodana u red čekanja"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr "Moraš biti u glasovnom kanalu da bi koristio autoplay naredbu."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr "Nije moguće dobiti valjanu pjesmu."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr "Nije moguće dobiti pjesmu"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr "Trenutno ne mogu dobiti pjesmu od Lavalinka, pokušajte ponovno za nekoliko minuta."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2514,50 +2518,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr "Veza s Lavalinkom nije uspjela"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr "Nije moguće tražiti pjesme"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/hu-HU.po
generated
282
redbot/cogs/audio/core/commands/locales/hu-HU.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -677,8 +677,8 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr ""
|
||||
|
||||
@@ -1274,43 +1274,43 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
@@ -1486,11 +1486,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr ""
|
||||
@@ -1504,17 +1504,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1620,7 +1620,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr ""
|
||||
|
||||
@@ -2320,189 +2320,193 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2510,50 +2514,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/id-ID.po
generated
282
redbot/cogs/audio/core/commands/locales/id-ID.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Indonesian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -681,8 +681,8 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr ""
|
||||
|
||||
@@ -1278,43 +1278,43 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
@@ -1490,11 +1490,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr ""
|
||||
@@ -1508,17 +1508,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1624,7 +1624,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr ""
|
||||
|
||||
@@ -2324,189 +2324,193 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2514,50 +2518,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr " {bad_tracks} lagu tidak dapat diantrekan."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/it-IT.po
generated
282
redbot/cogs/audio/core/commands/locales/it-IT.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -704,8 +704,8 @@ msgstr "`{localtracks}` non esiste. Il percorso sarà ancora salvato, ma control
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "Ambiente non valido"
|
||||
|
||||
@@ -1304,43 +1304,43 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
@@ -1516,11 +1516,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr ""
|
||||
@@ -1534,17 +1534,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1650,7 +1650,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr ""
|
||||
|
||||
@@ -2350,189 +2350,193 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2540,50 +2544,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/ja-JP.po
generated
282
redbot/cogs/audio/core/commands/locales/ja-JP.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -677,8 +677,8 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr ""
|
||||
|
||||
@@ -1274,43 +1274,43 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
@@ -1486,11 +1486,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr ""
|
||||
@@ -1504,17 +1504,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1620,7 +1620,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr ""
|
||||
|
||||
@@ -2320,189 +2320,193 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2510,50 +2514,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/ko-KR.po
generated
282
redbot/cogs/audio/core/commands/locales/ko-KR.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -685,8 +685,8 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "잘못된 환경입니다."
|
||||
|
||||
@@ -1291,43 +1291,43 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "트랙을 재생할수 없습니다"
|
||||
@@ -1503,11 +1503,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr ""
|
||||
@@ -1521,17 +1521,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr "먼저 음성체널에 연결하세요."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1637,7 +1637,7 @@ msgstr "특정 트랙을 큐의 맨 위로 올립니다."
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr "트랙을 올릴수 없습니다."
|
||||
|
||||
@@ -2337,191 +2337,195 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "그 URL은 허용되지 않습니다."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr "그 음악은 허용되지 않습니다."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr "관리자에게 문의해주세요"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr "음성체널에 있어야 재생 명령어를 사용할수 있습니다."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr "`{query}`에 대한 검색결과가 없습니다."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "큐 최대 제한에 도달했습니다."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "그 URL은 허용되지 않습니다."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr "재생할 수 없는 트랙입니다."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr "** {suffix} **는 완전히 지원되는 형식이 아니며 일부 트랙이 재생되지 않을 수 있습니다."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr "이 서버에서는이 트랙을 사용할 수 없습니다."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr "트랙이 최대 길이를 초과했습니다."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr "트랙 추가됨"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr "봇 관리자가 Spotify URL 또는 코드를 사용하기 전에 Spotify 클라이언트 ID 및 암호를 설정해 주어야 합니다. \n"
|
||||
" `{prefix}audioset spotifyapi`을 참조하세요."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr "봇 관리자가 Youtube URL 또는 코드를 사용하기 전에 Youtube API Key를 설정해 주어야 합니다. \n"
|
||||
" `{prefix}audioset youtubeapi`을 참조하세요."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr "카테고리를 찾을 수 없습니다"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr "카테고리들"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr "유효한 트랙을 얻을 수 없습니다."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr "트랙을 찾을수 없습니다"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr "지금은 라바링크를 통해 음악을 가져올 수 없습니다. 몇분 뒤에 다시 시도해주세요."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2529,50 +2533,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr "라바링크와 연결에 실패했습니다."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr "아무것도 찾지 못했습니다."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr " {bad_tracks} 을 대기열에 추가할 수 없습니다."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr "검색"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/nb-NO.po
generated
282
redbot/cogs/audio/core/commands/locales/nb-NO.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Norwegian Bokmal\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -728,8 +728,8 @@ msgstr "`{localtracks}` eksisterer ikke. Stien vil fremdeles lagres, men sjekk b
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "Ugyldig miljø"
|
||||
|
||||
@@ -1368,43 +1368,43 @@ msgstr "Du trenger DJ-rollen eller være sporforespørsel for å fortelle de for
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Kan ikke spille spor"
|
||||
@@ -1585,11 +1585,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr "Du trenger DJ-rollen for å tilkalle boten."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr "Jeg har ikke tillatelse til å koble til og snakke i kanalen din."
|
||||
@@ -1603,17 +1603,17 @@ msgid "I am already in your channel."
|
||||
msgstr "Jeg er allerede i kanalen din."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr "Koble til en talekanal først."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr "Tilkobling til Lavalink-noden er ennå ikke etablert."
|
||||
|
||||
@@ -1719,7 +1719,7 @@ msgstr "Hopp et spornummer til toppen av køen."
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr "Kan ikke støte på sporet"
|
||||
|
||||
@@ -2455,191 +2455,195 @@ msgstr "Spill av det angitte sporet eller søk etter en nærkamp.\n\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Den nettadressen er ikke tillatt."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr "Det sporet er ikke tillatt."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr "Du trenger DJ-rollen for å stå i kø."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr "Vennligst sjekk konsollen eller loggene dine for detaljer."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr "Du må være i talekanalen for å bruke spillkommandoen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr "Ingen spor funnet for `{query}`."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Grensen for kø er nådd."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr "Tving avspilling av URL eller søk etter et spor."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr "Kun enkelt spor fungerer med klumpe spilling."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Den nettadressen er ikke tillatt."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr "Sporet kan ikke spilles."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr "**{suffix}** er ikke et fullstendig støttet format og noen spor kan kanskje ikke spille."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr "Dette sporet er ikke tillatt på denne serveren."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr "Spor overskrider maksimal lengde."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr "{time} til avspilling: #1 i kø"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr "Spor i kø"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr "Velg en Spotify-spilleliste fra en liste over kategorier for å starte å spille."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr "Eieren må angi Spotify-klient-ID og Spotify klient-sekretet, før Spotify-URLer og koder kan brukes. \n"
|
||||
"Se `{prefix}audioset spotifyapi for instruksjoner."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr "Eieren må angi YouTube API-nøkkelen før Spotify URL-er eller koder kan brukes.\n"
|
||||
"Se {prefix}audioset youtubeapi` for instruksjoner."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr "Du må være i talekanal for å bruke sjanger-kommandoen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr "Ingen kategorier funnet"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr "Ingen kategorier funnet, prøv på nytt senere."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr "Kategorier"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr "Ingen kategorier er valgt, prøv igjen senere."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr "Spillelister for {friendly_name}"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr "Ingen spor å spille."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr "Kunne ikke finne spor for den valgte spillelisten."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr "Starter med automatisk spilling."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr "Du må være i talekanal for å bruke autospillkommandoen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr "Kunne ikke få et gyldig spor."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr "Kunne ikke motta spor"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr "Jeg klarer ikke å finne et spor fra Lavalink i øyeblikket, prøv igjen om noen minutter."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr "Legger til et spor i køen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2650,51 +2654,51 @@ msgstr "Velg et spor med et søk.\n\n"
|
||||
" <search term>` for å søke på SoundCloud i stedet for YouTube.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr "Tilkoblingen til Lavalink mislyktes"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr "Kan ikke søke etter sporing"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr "Du må være i talekanalen for å kø spor."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr "Ingenting funnet."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr "Lokale spor vil ikke fungere hvis `Lavalink.jar` ikke kan se sporet.\n"
|
||||
"Dette kan skyldes tillatelser eller at Lavalink.jar kjøres i en annen maskin enn de lokale sporene."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr " {bad_tracks} spor kan ikke legges i kø."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr "Køet {num} spor(er).{maxlength_msg}"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr "mappe"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr "søk"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr "{time} til start av {type} avspilling: starter på #{position} i kø"
|
||||
|
||||
|
||||
280
redbot/cogs/audio/core/commands/locales/nl-NL.po
generated
280
redbot/cogs/audio/core/commands/locales/nl-NL.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Dutch\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -705,8 +705,8 @@ msgstr "'{localtracks}' bestaat niet. Het pad wordt nog steeds opgeslagen, maar
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "Ongeldige Omgeving"
|
||||
|
||||
@@ -1338,43 +1338,43 @@ msgstr "Je hebt de DJ rol nodig of bent de track aanvrager om het vorige nummer
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Kan tracks niet afspelen"
|
||||
@@ -1550,11 +1550,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr ""
|
||||
@@ -1568,17 +1568,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr "Verbind eerst met een spraakkanaal."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1684,7 +1684,7 @@ msgstr "Zet een nummer bovenaan de wachtrij."
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr "Kan tracks niet overslaan"
|
||||
|
||||
@@ -2404,189 +2404,193 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr "Je heeft de DJ rol nodig om nummers in de wachtrij te zetten."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr "Je moet in het spraakkanaal zijn om de `play` commando te gebruiken."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr "Nummer toegevoegd"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr "Geen nummers om af te spelen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2594,50 +2598,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr "Geen resultaten."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr " {bad_tracks} nummers kunnen niet in de wachtrij worden geplaatst."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/pl-PL.po
generated
282
redbot/cogs/audio/core/commands/locales/pl-PL.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -728,8 +728,8 @@ msgstr "`{localtracks}` nie istnieje. Ścieżka będzie nadal zapisana, ale spra
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "Nieprawidłowe środowisko"
|
||||
|
||||
@@ -1368,43 +1368,43 @@ msgstr "Potrzebujesz roli DJ lub być żądającym utworu, aby dodać do kolejki
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Nie można odtworzyć utworów"
|
||||
@@ -1585,11 +1585,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr "Potrzebujesz roli DJ, aby przywołać bota."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr "Nie mam uprawnień do łączenia się i mówienia na twoim kanale."
|
||||
@@ -1603,17 +1603,17 @@ msgid "I am already in your channel."
|
||||
msgstr "Jestem już na twoim kanale."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr "Najpierw połącz się z kanałem głosowym."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr "Połączenie z Lavalink nie zostało jeszcze nawiązane."
|
||||
|
||||
@@ -1719,7 +1719,7 @@ msgstr "Wrzuć numer utworu na górę kolejki."
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr "Nie można podrzucić utworu"
|
||||
|
||||
@@ -2501,192 +2501,196 @@ msgstr "Odtwarzaj określoną ścieżkę lub szukaj bliskiego dopasowania.\n\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Ten adres URL jest niedozwolony."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr "Ten utwór jest niedozwolony."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr "Potrzebujesz roli DJ do zakolejkowania utworów."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr "Połączenie z węzłem Lavalink nie powiodło się"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr "Sprawdź swoją konsolę lub logi w celu uzyskania szczegółów."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr "Musisz być na kanale głosowym, aby użyć komendy odtwarzania."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr "Nie znaleziono utworów dla `{query}`."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Osiągnięto limit rozmiaru kolejki."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr "Wymuś odtwarzanie adresu URL lub wyszukiwanie utworu."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr "Tylko pojedyncze utwory działają z funkcją bump play."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Ten adres URL jest niedozwolony."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
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/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr "Ścieżki lokalne nie będą działać, jeśli zarządzany węzeł Lavalink nie będzie mógł zobaczyć ścieżki.\n"
|
||||
"Może to być spowodowane uprawnieniami lub używasz zewnętrznego węzła Lavalink w innej maszynie niż bota i lokalne utwory."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr "Utwór nie jest odtwarzalny."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr "** {suffix} ** nie jest w pełni obsługiwanym formatem, przez co niektóre utwory mogą nie być odtwarzane."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr "Ten utwór nie jest dozwolony na tym serwerze."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr "Utwór przekracza maksymalną długość."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr "{time} do odtwarzania utworu: #1 w kolejce"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr "Utwór zakolejkowany"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr "Wybierz listę odtwarzania Spotify z listy kategorii, aby rozpocząć odtwarzanie."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr "Właściciel musi ustawić identyfikator ID klienta Spotify i sekretny klucz klienta Spotify, zanim będzie można użyć adresów URL lub kodów Spotify. \n"
|
||||
"Zobacz instrukcje `{prefix}audioset spotifyapi`."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr "Właściciel musi ustawić klucz API YouTube zanim będzie można użyć adresów URL lub kodów Spotify.\n"
|
||||
"Zobacz `{prefix}audioset youtubeapi` dla dalszych instrukcji."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr "Musisz być na kanale głosowym, aby użyć komendy gatunku."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr "Nie znaleziono kategorii"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr "Nie znaleziono kategorii, spróbuj ponownie później."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr "Kategorie"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr "Nie wybrano kategorii, spróbuj ponownie później."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr "Listy odtwarzania dla {friendly_name}"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr "Brak utworów do odtworzenia."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr "Nie można znaleźć utworów dla wybranej listy odtwarzania."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr "Rozpoczyna automatyczne odtwarzanie."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr "Musisz być na kanale głosowym, aby użyć komendy autoplay."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr "Nie można uzyskać prawidłowego utworu."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr "Nie można dostać utworu"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr "W tej chwili nie mogę pobrać utworu z Lavalinka, spróbuj ponownie za kilka minut."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr "Dodawanie utworu do kolejki."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2697,51 +2701,51 @@ msgstr "Wybierz utwór z wyszukiwaniem.\n\n"
|
||||
" Użycie `[p]search sc <search term>` przeszuka SoundCloud zamiast YouTube.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr "Połączenie z Lavalink nie powiodło się"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr "Nie można wyszukać utworów"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr "Musisz być na kanale głosowym, aby kolejkować utwory."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr "Nic nie znaleziono."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr "Lokalne utwory nie będą działać, jeśli `Lavalink.jar` nie może zobaczyć ścieżki.\n"
|
||||
"Może to być spowodowane uprawnieniami lub Lavalink.jar jest uruchamiany w innej maszynie niż lokalne utwory."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr " {bad_tracks} utworów nie może zostać zakolejkowane."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr "Zakolejkowano {num} utwory(ów).{maxlength_msg}"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr "katalog"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr "szukaj"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr "{time} do rozpoczęcia {type} odtwarzania: zaczyna się o #{position} w kolejce"
|
||||
|
||||
|
||||
305
redbot/cogs/audio/core/commands/locales/pt-BR.po
generated
305
redbot/cogs/audio/core/commands/locales/pt-BR.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -393,7 +393,30 @@ msgid "Set a playlist to auto-play songs from.\n\n"
|
||||
" `[p]audioset autoplay playlist MyGlobalPlaylist --scope Global`\n"
|
||||
" `[p]audioset autoplay playlist PersonalPlaylist --scope User --author Draper`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "Define uma lista de reprodução para a reprodução automática.\n\n"
|
||||
" **Uso**:\n"
|
||||
" `[p]audioset autoplay nome_lista_reproducao_OU_id [argumentos]`\n\n"
|
||||
" **Argumentos**:\n"
|
||||
" Os seguintes são todos opcionais:\n"
|
||||
" --scope <escopo>\n"
|
||||
" --author [usuário]\n"
|
||||
" --guild [servidor] **Somente o(a) dono(a) do bot pode usar esse**\n\n"
|
||||
" **Scope** (escopo) pode ser um dos seguintes:\n"
|
||||
" Global\n"
|
||||
" Guild (servidor)\n"
|
||||
" User (usuário(a))\n\n"
|
||||
" **Author** (autor) pode ser um dos seguintes:\n"
|
||||
" ID de usuário\n"
|
||||
" Menção a usuário\n"
|
||||
" NomeDeUsuario#123\n\n"
|
||||
" **Guild** (servidor) pode ser um dos seguintes:\n"
|
||||
" ID de servidor\n"
|
||||
" Nome exato do servidor\n\n"
|
||||
" Exemplos de uso:\n"
|
||||
" `[p]audioset autoplay ListaDeReproducaoDaGuilda`\n"
|
||||
" `[p]audioset autoplay ListaDeReproducaoGlobal --scope Global`\n"
|
||||
" `[p]audioset autoplay ListaDeReproducaoPessoal --scope User --author Draper`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:497
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:105
|
||||
@@ -705,8 +728,8 @@ msgstr "`{localtracks}` não existe. O caminho ainda será salvo, mas por favor,
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "Ambiente inválido"
|
||||
|
||||
@@ -1338,43 +1361,43 @@ msgstr "Você precisa do cargo de DJ ou ter solicitado a faixa para recolocar as
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Não foi possível tocar a música"
|
||||
@@ -1550,11 +1573,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr "Você precisa do cargo de DJ para parar a música."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr "Não tenho permissão para conectar e falar em seu canal."
|
||||
@@ -1568,17 +1591,17 @@ msgid "I am already in your channel."
|
||||
msgstr "Eu já estou no seu canal."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr "Primeiro você deve se juntar a um canal de voz."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1684,7 +1707,7 @@ msgstr "Incremente um número de faixa na parte superior da fila."
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr "Não foi possível obter a faixa"
|
||||
|
||||
@@ -2407,189 +2430,193 @@ msgstr "Reproduza a faixa especificada ou procure por uma partida de fechamento.
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr "Forçar a reprodução de uma URL ou busca por uma faixa."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr "Faixa Enfileirada"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr "Categorias"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr "Não foi possível obter uma faixa válida."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr "Não foi possível obter a faixa"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr "Não consigo fazer uma trilha de Lavalink no momento, tente novamente em alguns minutos."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2597,50 +2624,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr "Nada encontrado."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/pt-PT.po
generated
282
redbot/cogs/audio/core/commands/locales/pt-PT.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -719,8 +719,8 @@ msgstr "`{localtracks}` não existe. O caminho ainda será salvo, mas por favor,
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "Ambiente inválido"
|
||||
|
||||
@@ -1338,43 +1338,43 @@ msgstr "Precisa da permissão de DJ ou ser o solicitador da faixa para enfileira
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Não foi possível reproduzir as faixas"
|
||||
@@ -1553,11 +1553,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr "Precisa do cargo DJ para chamar o bot."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr "Eu não tenho permissões para conectar ou falar no {channel}."
|
||||
@@ -1571,17 +1571,17 @@ msgid "I am already in your channel."
|
||||
msgstr "Eu já estou no seu canal."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr "Primeiro, conecte-se a um canal de voz."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr "A conexão com o nó Lavalink ainda não foi estabelecida."
|
||||
|
||||
@@ -1687,7 +1687,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr ""
|
||||
|
||||
@@ -2422,191 +2422,195 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Essa URL não é permitida."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr "Essa faixa não é permitida."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr "Precisa do cargo DJ para a fila de músicas."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr "Falha na conexão com o nó Lavalink"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr "Por favor, verifique o seu console ou os logs para obter detalhes."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr "Deve estar no canal de voz para usar o comando play."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr "Nenhuma faixa encontrada para `{query}`."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Limite de tamanho da fila atingido."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr "Forçar a reprodução de uma URL ou busca por uma faixa."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr "Apenas faixas únicas funcionam com bump play."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Essa URL não é permitida."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
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/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr "Faixas locais não funcionarão se o nó Lavalink gerenciado não conseguir ver a faixa.\n"
|
||||
"Isto pode ser devido a permissões ou está usando um nó de avalink externo em uma máquina diferente do que o bot e as faixas locais."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr "Faixa não é possível ser tocada."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr "**{suffix}** não é um formato totalmente suportado e algumas faixas podem não reproduzir."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr "Esta faixa não é permitido neste servidor."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr "A faixa excede o tamanho máximo."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr "{time} até a reprodução da faixa: #1 na fila"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr "Faixa na fila"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr "Escolha uma playlist do Spotify a partir de uma lista de categorias para começar a tocar."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr "O proprietário precisa definir o ID do cliente do Spotify e o segredo do cliente do Spotify, antes que possam ser usadas URLs ou códigos do Spotify. \n"
|
||||
"Veja `{prefix}audioset spotifyapi` para instruções."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr "Inicia reprodução automática."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr "Não foi possível obter uma faixa válida."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr "Não foi possível obter a faixa"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2614,50 +2618,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr "Nada encontrado."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr "pasta"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr "pesquisar"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
549
redbot/cogs/audio/core/commands/locales/ru-RU.po
generated
549
redbot/cogs/audio/core/commands/locales/ru-RU.po
generated
File diff suppressed because it is too large
Load Diff
282
redbot/cogs/audio/core/commands/locales/sk-SK.po
generated
282
redbot/cogs/audio/core/commands/locales/sk-SK.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Slovak\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -677,8 +677,8 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr ""
|
||||
|
||||
@@ -1274,43 +1274,43 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
@@ -1486,11 +1486,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr ""
|
||||
@@ -1504,17 +1504,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1620,7 +1620,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr ""
|
||||
|
||||
@@ -2320,189 +2320,193 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr "Nepodarilo sa získať stopu"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr "Nedokážem získať stopu z Lavalinku v tomto momente, skúste to o pár minút."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2510,50 +2514,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/sl-SI.po
generated
282
redbot/cogs/audio/core/commands/locales/sl-SI.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Slovenian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -677,8 +677,8 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "Neveljavno okolje"
|
||||
|
||||
@@ -1274,43 +1274,43 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
@@ -1486,11 +1486,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr ""
|
||||
@@ -1504,17 +1504,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1620,7 +1620,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr ""
|
||||
|
||||
@@ -2320,189 +2320,193 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr "Ni bilo mogoče dobiti veljavne skladbe."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr "Skladbe ni mogoče dobiti"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr "Trenutno ne morem dobiti skladb od Lavalinka, poskusite znova čez nekaj minut."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2510,50 +2514,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/sv-SE.po
generated
282
redbot/cogs/audio/core/commands/locales/sv-SE.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Swedish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -677,8 +677,8 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr ""
|
||||
|
||||
@@ -1274,43 +1274,43 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
@@ -1486,11 +1486,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr ""
|
||||
@@ -1504,17 +1504,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1620,7 +1620,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr ""
|
||||
|
||||
@@ -2320,189 +2320,193 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2510,50 +2514,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/tr-TR.po
generated
282
redbot/cogs/audio/core/commands/locales/tr-TR.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Turkish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -705,8 +705,8 @@ msgstr "{localtracks} mevcut değil. Dizin yolu yine de kaydedilecektir, ancak l
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "Geçersiz Ortam"
|
||||
|
||||
@@ -1338,43 +1338,43 @@ msgstr "Önceki şarkıları sıralayabilmeniz için şarkı isteyen kişi olman
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Parçalar Çalınamıyor"
|
||||
@@ -1555,11 +1555,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr "Botu çağırabilmek için DJ rolüne ihtiyacın var"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr "Bulunduğunuz kanala bağlanma ve konuşma iznim yok."
|
||||
@@ -1573,17 +1573,17 @@ msgid "I am already in your channel."
|
||||
msgstr "Zaten sizinle aynı kanaldayım."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr "Önce bir sesli bir kanala katılın."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr "Lavalink ile bağlantı henüz sağlanmadı."
|
||||
|
||||
@@ -1689,7 +1689,7 @@ msgstr "Şarkıyı başa almak için sıra numarası girin"
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr "Parça öne alınamıyor."
|
||||
|
||||
@@ -2417,191 +2417,195 @@ msgstr "Belirtilen parçayı oynat veya en yakın eşleşmeyi ara.\n\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Bu URL'e izin verilmiyor."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr "Bu parçaya izin verilmiyor."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr "Sıraya şarkı ekleyebilmek için DJ rolüne ihtiyacınız var."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr "Console veya loglarınızı kontrol edin."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr "Şarkıyı başlatabilmek için bir kanal da olmanız gerekli."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr "`{query}` ile uyuşan herhangi bir parça bulunamadı."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Sıraya alma limitine ulaşıldı."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr "Bir URL'yi çalmaya zorlayın veya bir parça arayın."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr "Öne alarak çalma sadece tek bir parça için yapılabilir."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Bu URL'e izin verilmiyor."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr "Parça çalınamaz."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr "**{suffix}** tamamen desteklenen bir format değil ve bazı parçalar çalınamayabilir."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr "Bu şarkının sunucuda çalınmasına izin verilmiyor."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr "Şarkı izin verilen uzunluğu aşıyor."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr "Şarkının başlamasına {time} kadar süre var: sıralamada 1. sırada"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr "Şarkı sıraya eklendi"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr "Çalmak için listeden bir Spotify şarkı listesi seçiniz."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr "Spotify URLleri veya kodları kullanılmadan önce bot sahibinin Spotify istemci IDsi ve istemci sırrını ayarlaması gerekir. \n"
|
||||
"Yönergeler için `{prefix}audioset spotifyapi` komutunu kullanın."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr "Spotify URLleri veya kodları kullanılmadan önce bot sahibinin YouTube API anahtarı ayarlaması gerekir.\n"
|
||||
"Yönergeler için `{prefix}audioset youtubeapi` komutunu kullanın."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr "Tür komutunu kullanabilmeniz için bir sesli kanala girmelisiniz."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr "Kategori bulunamadı"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr "Kategori bulunamadı, daha sonra tekrar deneyin."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr "Kategoriler"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr "Seçilen kategori yok, daha sonra deneyiniz."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr "{friendly_name} için çalma listeleri"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr "Başlatılabilecek şarkı bulunamadı."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr "Seçilen çalma listesi için şarkılar bulunamıyor."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr "Otomatik çalmayı başlatır."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr "Otomatik çalma komutunu kullanabilmeniz için bir sesli kanala girmelisiniz."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr "Geçerli bir parça alınamadı."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr "Parça alınamıyor"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink 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/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr "Parça sıraya ekleniyor."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2612,51 +2616,51 @@ msgstr "Arama ile bir parça seçin.\n\n"
|
||||
" yerine SoundCloud'da aramak için `[p]search sc <search term>` kullanın.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr "Lavalink bağlantısı başarısız"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr "Şarkılar İçin Arama Yapılamıyor"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr "Sıraya şarkı ekleyebilmek için kanal da olmanız gerekmektedir."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr "Hiçbir şey bulunamadı."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr "`Lavalink.jar` parçayı bulamazsa yerel parçalar çalışmaz.\n"
|
||||
"Bu izinler veya Lavalink.jar'ın parçaları bulundurandan farklı bir makinede çalıştırılmasından kaynaklanabilir."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr " {bad_tracks} şarkıları sıraya alınamaz."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr "{num} sayı da şarkı eklendi.{maxlength_msg}"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr "klasör"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr "ara"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr "{type} çalınması için kalan süre {time}: #{position}. sırada"
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/uk-UA.po
generated
282
redbot/cogs/audio/core/commands/locales/uk-UA.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -677,8 +677,8 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr ""
|
||||
|
||||
@@ -1274,43 +1274,43 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
@@ -1486,11 +1486,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr ""
|
||||
@@ -1504,17 +1504,17 @@ msgid "I am already in your channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1620,7 +1620,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr ""
|
||||
|
||||
@@ -2320,189 +2320,193 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2510,50 +2514,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/vi-VN.po
generated
282
redbot/cogs/audio/core/commands/locales/vi-VN.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -680,8 +680,8 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr ""
|
||||
|
||||
@@ -1281,43 +1281,43 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Không thể phát bài nhạc"
|
||||
@@ -1493,11 +1493,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr "Phải có Role DJ đã."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr ""
|
||||
@@ -1511,17 +1511,17 @@ msgid "I am already in your channel."
|
||||
msgstr "Tôi đang ở đây rồi."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr "Kết nối với một kênh thoại trước."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1627,7 +1627,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr ""
|
||||
|
||||
@@ -2330,189 +2330,193 @@ msgstr "Phát một bài hát hoặc tìm kiếm một bài hát.\n\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Tôi không chấp nhận link đó."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr "Tôi không chấp nhận bài hát đó."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr "Phải có Rele DJ đã."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr "Không tìm thấy bài hát nào cho `{query}`."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Số lượng hàng đợi đã đạt đến giới hạn."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr "Phát nhạc từ link hoặc tìm một bài hát."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "Tôi không chấp nhận link đó."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr "Bài hát không thể phát được."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr "Độ dài bài hát vượt quá giá trị tối đa."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr "Đã thêm vào hàng đợi"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr "Không tìm thấy danh mục"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr "Hạng mục"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr "Danh sách phát cho {friendly_name}"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr "Không có bài hát nào để phát."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr "Không tìm thấy bài hát trong danh sách phát đã chọn."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr "Bắt đầu tự động phát."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr "Cần phải ở trong một kênh thoại để có thể dùng câu lệnh tự động phát nhạc."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr "Tôi không tìm thấy bài nhạc hợp lệ nào."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
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/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr "Bây giờ tôi chưa thể tìm nhạc được, đợi một lát nữa rùi thử lại."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr "Đang thêm bài hát vào hàng đợi."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2520,50 +2524,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr "Không thể tìm bài hát"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr "Cần phải ở trong một kênh thoại."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr "Không tìm thấy gì cả."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr " {bad_tracks} sorry Tôi không thể nhét mấy bài này vào hàng đợi."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr "Hàng đợi đang có {num} bài hát.{maxlength_msg}"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr "thư mục"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
282
redbot/cogs/audio/core/commands/locales/zh-CN.po
generated
282
redbot/cogs/audio/core/commands/locales/zh-CN.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -705,8 +705,8 @@ msgstr "{localtracks} 不存在。 路径仍将被保存, 但在尝试播放
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "无效的环境"
|
||||
|
||||
@@ -1317,43 +1317,43 @@ msgstr "您需要 DJ 角色或作为点歌员来点歌。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "无法播放曲目"
|
||||
@@ -1532,11 +1532,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr "你需要 DJ 角色来召唤机器人。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr "我没有在您的频道上连接和说话的权限。"
|
||||
@@ -1550,17 +1550,17 @@ msgid "I am already in your channel."
|
||||
msgstr "我已经在您的频道中。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr "您必须先加入一个语音频道。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
@@ -1666,7 +1666,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr ""
|
||||
|
||||
@@ -2366,189 +2366,193 @@ msgid "Play the specified track or search for a close match.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2556,50 +2560,50 @@ msgid "Pick a track with a search.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr ""
|
||||
|
||||
|
||||
284
redbot/cogs/audio/core/commands/locales/zh-TW.po
generated
284
redbot/cogs/audio/core/commands/locales/zh-TW.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -728,8 +728,8 @@ msgstr "`{localtracks}` 不存在。該路徑仍然會被儲存,但請確認
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:854
|
||||
#: redbot/cogs/audio/core/commands/llset.py:74
|
||||
#: redbot/cogs/audio/core/commands/player.py:414
|
||||
#: redbot/cogs/audio/core/commands/player.py:424
|
||||
#: redbot/cogs/audio/core/commands/player.py:416
|
||||
#: redbot/cogs/audio/core/commands/player.py:426
|
||||
msgid "Invalid Environment"
|
||||
msgstr "無效的環境。"
|
||||
|
||||
@@ -1368,43 +1368,43 @@ msgstr "您需要DJ身分組或是播放此歌曲的成員才能跳過歌曲。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:278
|
||||
#: redbot/cogs/audio/core/commands/player.py:52
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:63
|
||||
#: redbot/cogs/audio/core/commands/player.py:81
|
||||
#: redbot/cogs/audio/core/commands/player.py:93
|
||||
#: redbot/cogs/audio/core/commands/player.py:99
|
||||
#: redbot/cogs/audio/core/commands/player.py:109
|
||||
#: redbot/cogs/audio/core/commands/player.py:115
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:133
|
||||
#: redbot/cogs/audio/core/commands/player.py:160
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:171
|
||||
#: redbot/cogs/audio/core/commands/player.py:189
|
||||
#: redbot/cogs/audio/core/commands/player.py:201
|
||||
#: redbot/cogs/audio/core/commands/player.py:207
|
||||
#: redbot/cogs/audio/core/commands/player.py:217
|
||||
#: redbot/cogs/audio/core/commands/player.py:223
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:242
|
||||
#: redbot/cogs/audio/core/commands/player.py:251
|
||||
#: redbot/cogs/audio/core/commands/player.py:293
|
||||
#: redbot/cogs/audio/core/commands/player.py:315
|
||||
#: redbot/cogs/audio/core/commands/player.py:434
|
||||
#: redbot/cogs/audio/core/commands/player.py:452
|
||||
#: redbot/cogs/audio/core/commands/player.py:464
|
||||
#: redbot/cogs/audio/core/commands/player.py:470
|
||||
#: redbot/cogs/audio/core/commands/player.py:482
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:550
|
||||
#: redbot/cogs/audio/core/commands/player.py:568
|
||||
#: redbot/cogs/audio/core/commands/player.py:580
|
||||
#: redbot/cogs/audio/core/commands/player.py:586
|
||||
#: redbot/cogs/audio/core/commands/player.py:598
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:737
|
||||
#: redbot/cogs/audio/core/commands/player.py:743
|
||||
#: redbot/cogs/audio/core/commands/player.py:805
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:65
|
||||
#: redbot/cogs/audio/core/commands/player.py:83
|
||||
#: redbot/cogs/audio/core/commands/player.py:95
|
||||
#: redbot/cogs/audio/core/commands/player.py:101
|
||||
#: redbot/cogs/audio/core/commands/player.py:111
|
||||
#: redbot/cogs/audio/core/commands/player.py:117
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:135
|
||||
#: redbot/cogs/audio/core/commands/player.py:162
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:173
|
||||
#: redbot/cogs/audio/core/commands/player.py:191
|
||||
#: redbot/cogs/audio/core/commands/player.py:203
|
||||
#: redbot/cogs/audio/core/commands/player.py:209
|
||||
#: redbot/cogs/audio/core/commands/player.py:219
|
||||
#: redbot/cogs/audio/core/commands/player.py:225
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:244
|
||||
#: redbot/cogs/audio/core/commands/player.py:253
|
||||
#: redbot/cogs/audio/core/commands/player.py:295
|
||||
#: redbot/cogs/audio/core/commands/player.py:317
|
||||
#: redbot/cogs/audio/core/commands/player.py:436
|
||||
#: redbot/cogs/audio/core/commands/player.py:454
|
||||
#: redbot/cogs/audio/core/commands/player.py:466
|
||||
#: redbot/cogs/audio/core/commands/player.py:472
|
||||
#: redbot/cogs/audio/core/commands/player.py:484
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:552
|
||||
#: redbot/cogs/audio/core/commands/player.py:570
|
||||
#: redbot/cogs/audio/core/commands/player.py:582
|
||||
#: redbot/cogs/audio/core/commands/player.py:588
|
||||
#: redbot/cogs/audio/core/commands/player.py:600
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
#: redbot/cogs/audio/core/commands/player.py:739
|
||||
#: redbot/cogs/audio/core/commands/player.py:745
|
||||
#: redbot/cogs/audio/core/commands/player.py:807
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1458
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "無法播放歌曲"
|
||||
@@ -1585,11 +1585,11 @@ msgid "You need the DJ role to summon the bot."
|
||||
msgstr "您需要DJ身分組才能使Bot加入語音頻道。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:655
|
||||
#: redbot/cogs/audio/core/commands/player.py:82
|
||||
#: redbot/cogs/audio/core/commands/player.py:190
|
||||
#: redbot/cogs/audio/core/commands/player.py:453
|
||||
#: redbot/cogs/audio/core/commands/player.py:569
|
||||
#: redbot/cogs/audio/core/commands/player.py:694
|
||||
#: redbot/cogs/audio/core/commands/player.py:84
|
||||
#: redbot/cogs/audio/core/commands/player.py:192
|
||||
#: redbot/cogs/audio/core/commands/player.py:455
|
||||
#: redbot/cogs/audio/core/commands/player.py:571
|
||||
#: redbot/cogs/audio/core/commands/player.py:696
|
||||
#: redbot/cogs/audio/core/commands/queue.py:343
|
||||
msgid "I don't have permission to connect and speak in your channel."
|
||||
msgstr "權限不足,無法加入及在您的語音頻道中説話。"
|
||||
@@ -1603,17 +1603,17 @@ msgid "I am already in your channel."
|
||||
msgstr "我已經在您的頻道裡了。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:686
|
||||
#: redbot/cogs/audio/core/commands/player.py:94
|
||||
#: redbot/cogs/audio/core/commands/player.py:202
|
||||
#: redbot/cogs/audio/core/commands/player.py:465
|
||||
#: redbot/cogs/audio/core/commands/player.py:581
|
||||
#: redbot/cogs/audio/core/commands/player.py:706
|
||||
#: redbot/cogs/audio/core/commands/player.py:96
|
||||
#: redbot/cogs/audio/core/commands/player.py:204
|
||||
#: redbot/cogs/audio/core/commands/player.py:467
|
||||
#: redbot/cogs/audio/core/commands/player.py:583
|
||||
#: redbot/cogs/audio/core/commands/player.py:708
|
||||
#: redbot/cogs/audio/core/commands/queue.py:355
|
||||
msgid "Connect to a voice channel first."
|
||||
msgstr "請先加入一個語音頻道。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:100
|
||||
#: redbot/cogs/audio/core/commands/player.py:102
|
||||
msgid "Connection to the Lavalink node has not yet been established."
|
||||
msgstr "尚未建立與 Lavalink 節點的連接。"
|
||||
|
||||
@@ -1719,7 +1719,7 @@ msgstr "將編號歌曲移動到到播放清單頂部。"
|
||||
#: redbot/cogs/audio/core/commands/controller.py:879
|
||||
#: redbot/cogs/audio/core/commands/controller.py:885
|
||||
#: redbot/cogs/audio/core/commands/controller.py:891
|
||||
#: redbot/cogs/audio/core/commands/player.py:150
|
||||
#: redbot/cogs/audio/core/commands/player.py:152
|
||||
msgid "Unable To Bump Track"
|
||||
msgstr "無法將歌曲移動至佇列頂部。"
|
||||
|
||||
@@ -2040,7 +2040,7 @@ msgstr "設置未更變"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
msgstr "端口必須介於 0 和 65535 之間。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
||||
@@ -2514,192 +2514,196 @@ msgstr "播放指定的曲目或搜索接近的匹配項。\n\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:53
|
||||
#: redbot/cogs/audio/core/commands/player.py:161
|
||||
#: redbot/cogs/audio/core/commands/player.py:738
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "此URL不允許使用。"
|
||||
msgid "That URL is not allowed.\n\n"
|
||||
"The bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:57
|
||||
#: redbot/cogs/audio/core/commands/player.py:165
|
||||
#: redbot/cogs/audio/core/commands/player.py:744
|
||||
#: redbot/cogs/audio/core/commands/player.py:59
|
||||
#: redbot/cogs/audio/core/commands/player.py:167
|
||||
#: redbot/cogs/audio/core/commands/player.py:746
|
||||
msgid "That track is not allowed."
|
||||
msgstr "此條軌道不允許使用。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:64
|
||||
#: redbot/cogs/audio/core/commands/player.py:172
|
||||
#: redbot/cogs/audio/core/commands/player.py:435
|
||||
#: redbot/cogs/audio/core/commands/player.py:551
|
||||
#: redbot/cogs/audio/core/commands/player.py:806
|
||||
#: redbot/cogs/audio/core/commands/player.py:66
|
||||
#: redbot/cogs/audio/core/commands/player.py:174
|
||||
#: redbot/cogs/audio/core/commands/player.py:437
|
||||
#: redbot/cogs/audio/core/commands/player.py:553
|
||||
#: redbot/cogs/audio/core/commands/player.py:808
|
||||
msgid "You need the DJ role to queue tracks."
|
||||
msgstr "您需要 DJ 身分組才能對曲目進行編排。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:68
|
||||
#: redbot/cogs/audio/core/commands/player.py:176
|
||||
#: redbot/cogs/audio/core/commands/player.py:439
|
||||
#: redbot/cogs/audio/core/commands/player.py:555
|
||||
#: redbot/cogs/audio/core/commands/player.py:70
|
||||
#: redbot/cogs/audio/core/commands/player.py:178
|
||||
#: redbot/cogs/audio/core/commands/player.py:441
|
||||
#: redbot/cogs/audio/core/commands/player.py:557
|
||||
msgid "Connection to Lavalink node has failed"
|
||||
msgstr "連接 Lavalink 節點失敗"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:71
|
||||
#: redbot/cogs/audio/core/commands/player.py:179
|
||||
#: redbot/cogs/audio/core/commands/player.py:442
|
||||
#: redbot/cogs/audio/core/commands/player.py:558
|
||||
#: redbot/cogs/audio/core/commands/player.py:683
|
||||
#: redbot/cogs/audio/core/commands/player.py:73
|
||||
#: redbot/cogs/audio/core/commands/player.py:181
|
||||
#: redbot/cogs/audio/core/commands/player.py:444
|
||||
#: redbot/cogs/audio/core/commands/player.py:560
|
||||
#: redbot/cogs/audio/core/commands/player.py:685
|
||||
msgid "Please check your console or logs for details."
|
||||
msgstr "請查看您的控制台或日誌以了解詳細信息。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:110
|
||||
#: redbot/cogs/audio/core/commands/player.py:218
|
||||
#: redbot/cogs/audio/core/commands/player.py:112
|
||||
#: redbot/cogs/audio/core/commands/player.py:220
|
||||
msgid "You must be in the voice channel to use the play command."
|
||||
msgstr "您必須在語音頻道中才能使用播放指令。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:116
|
||||
#: redbot/cogs/audio/core/commands/player.py:224
|
||||
#: redbot/cogs/audio/core/commands/player.py:252
|
||||
#: redbot/cogs/audio/core/commands/player.py:118
|
||||
#: redbot/cogs/audio/core/commands/player.py:226
|
||||
#: redbot/cogs/audio/core/commands/player.py:254
|
||||
msgid "No tracks found for `{query}`."
|
||||
msgstr "找不到名為“{query}”的曲目。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:122
|
||||
#: redbot/cogs/audio/core/commands/player.py:230
|
||||
#: redbot/cogs/audio/core/commands/player.py:530
|
||||
#: redbot/cogs/audio/core/commands/player.py:603
|
||||
#: redbot/cogs/audio/core/commands/player.py:124
|
||||
#: redbot/cogs/audio/core/commands/player.py:232
|
||||
#: redbot/cogs/audio/core/commands/player.py:532
|
||||
#: redbot/cogs/audio/core/commands/player.py:605
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "已達到隊列數量限制。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:145
|
||||
#: redbot/cogs/audio/core/commands/player.py:147
|
||||
#, docstring
|
||||
msgid "Force play a URL or search for a track."
|
||||
msgstr "在播放清單頂部播放URL或搜索歌曲。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:151
|
||||
#: redbot/cogs/audio/core/commands/player.py:153
|
||||
msgid "Only single tracks work with bump play."
|
||||
msgstr "只有單個曲目適用於bump播放。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:208
|
||||
#: redbot/cogs/audio/core/commands/player.py:471
|
||||
#: redbot/cogs/audio/core/commands/player.py:587
|
||||
#: redbot/cogs/audio/core/commands/player.py:712
|
||||
#: redbot/cogs/audio/core/commands/player.py:163
|
||||
#: redbot/cogs/audio/core/commands/player.py:740
|
||||
msgid "That URL is not allowed."
|
||||
msgstr "此URL不允許使用。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:210
|
||||
#: redbot/cogs/audio/core/commands/player.py:473
|
||||
#: redbot/cogs/audio/core/commands/player.py:589
|
||||
#: redbot/cogs/audio/core/commands/player.py:714
|
||||
#: redbot/cogs/audio/core/commands/queue.py:362
|
||||
msgid "Connection to Lavalink node has not yet been established."
|
||||
msgstr "尚未建立與 Lavalink 節點的連接。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:255
|
||||
#: redbot/cogs/audio/core/commands/player.py:257
|
||||
msgid "Local tracks will not work if the managed Lavalink node cannot see the track.\n"
|
||||
"This may be due to permissions or you are using an external Lavalink node in a different machine than the bot and the local tracks."
|
||||
msgstr "如果託管的 Lavalink 節點看不到本地資料夾,則本地資料夾將無法使用。\n"
|
||||
"這可能是由於權限問題,或者您在與機器人和本地資料夾不同的機器上使用外部 Lavalink 節點。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:262
|
||||
#: redbot/cogs/audio/core/commands/player.py:794
|
||||
#: redbot/cogs/audio/core/commands/player.py:913
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:796
|
||||
#: redbot/cogs/audio/core/commands/player.py:915
|
||||
msgid "Track is not playable."
|
||||
msgstr "此歌曲無法撥放。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:264
|
||||
#: redbot/cogs/audio/core/commands/player.py:795
|
||||
#: redbot/cogs/audio/core/commands/player.py:914
|
||||
#: redbot/cogs/audio/core/commands/player.py:266
|
||||
#: redbot/cogs/audio/core/commands/player.py:797
|
||||
#: redbot/cogs/audio/core/commands/player.py:916
|
||||
msgid "**{suffix}** is not a fully supported format and some tracks may not play."
|
||||
msgstr "**{suffix}** 不是完全支援的格式,某些曲目可能無法播放。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:294
|
||||
#: redbot/cogs/audio/core/commands/player.py:296
|
||||
msgid "This track is not allowed in this server."
|
||||
msgstr "此伺務器不允許使用此曲目。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:316
|
||||
#: redbot/cogs/audio/core/commands/player.py:318
|
||||
msgid "Track exceeds maximum length."
|
||||
msgstr "軌道超過最大可播放長度。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:337
|
||||
#: redbot/cogs/audio/core/commands/player.py:339
|
||||
msgid "{time} until track playback: #1 in queue"
|
||||
msgstr "{time}後開始播放: 在播放清單的第#1首歌"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:341
|
||||
#: redbot/cogs/audio/core/commands/player.py:343
|
||||
msgid "Track Enqueued"
|
||||
msgstr "已加入播放清單"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:355
|
||||
#: redbot/cogs/audio/core/commands/player.py:357
|
||||
#, docstring
|
||||
msgid "Pick a Spotify playlist from a list of categories to start playing."
|
||||
msgstr "從類別列表中選擇一個Spotify播放列表以開始播放。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:415
|
||||
#: redbot/cogs/audio/core/commands/player.py:417
|
||||
msgid "The owner needs to set the Spotify client ID and Spotify client secret, before Spotify URLs or codes can be used. \n"
|
||||
"See `{prefix}audioset spotifyapi` for instructions."
|
||||
msgstr "在使用 Spotify URL 或代碼之前,所有者需要設置 Spotify client ID 和 Spotify client secret。\n"
|
||||
"有關詳細說明,請參閱`{prefix}audioset spotifyapi`。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:425
|
||||
#: redbot/cogs/audio/core/commands/player.py:427
|
||||
msgid "The owner needs to set the YouTube API key before Spotify URLs or codes can be used.\n"
|
||||
"See `{prefix}audioset youtubeapi` for instructions."
|
||||
msgstr "所有者需要先設置 YouTube API key,然後才能使用 Spotify URL 或代碼。\n"
|
||||
"有關詳細說明,請參閱`{prefix}audioset youtubeapi`。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:483
|
||||
#: redbot/cogs/audio/core/commands/player.py:485
|
||||
msgid "You must be in the voice channel to use the genre command."
|
||||
msgstr "您必須在語音頻道中才能使用 genre 指令。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:490
|
||||
#: redbot/cogs/audio/core/commands/player.py:492
|
||||
msgid "No categories found"
|
||||
msgstr "未找到類別"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:494
|
||||
#: redbot/cogs/audio/core/commands/player.py:512
|
||||
#: redbot/cogs/audio/core/commands/player.py:496
|
||||
#: redbot/cogs/audio/core/commands/player.py:514
|
||||
msgid "No categories found, try again later."
|
||||
msgstr "未找到類別,請稍後重試。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:499
|
||||
#: redbot/cogs/audio/core/commands/player.py:501
|
||||
msgid "Categories"
|
||||
msgstr "類別"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:505
|
||||
#: redbot/cogs/audio/core/commands/player.py:507
|
||||
msgid "No categories selected, try again later."
|
||||
msgstr "未選擇類別,請稍後重試。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:520
|
||||
#: redbot/cogs/audio/core/commands/player.py:522
|
||||
msgid "Playlists for {friendly_name}"
|
||||
msgstr "{friendly_name} 的播放列表"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:527
|
||||
#: redbot/cogs/audio/core/commands/player.py:529
|
||||
msgid "No tracks to play."
|
||||
msgstr "沒有可播放的曲目。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:537
|
||||
#: redbot/cogs/audio/core/commands/player.py:539
|
||||
msgid "Couldn't find tracks for the selected playlist."
|
||||
msgstr "找不到所選播放列表的曲目。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:545
|
||||
#: redbot/cogs/audio/core/commands/player.py:547
|
||||
#, docstring
|
||||
msgid "Starts auto play."
|
||||
msgstr "開始自動播放。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:599
|
||||
#: redbot/cogs/audio/core/commands/player.py:601
|
||||
msgid "You must be in the voice channel to use the autoplay command."
|
||||
msgstr "您必須在語音頻道中才能使用自動播放的指令。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:613
|
||||
#: redbot/cogs/audio/core/commands/player.py:615
|
||||
msgid "Couldn't get a valid track."
|
||||
msgstr "無法取得有效的歌曲。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:619
|
||||
#: redbot/cogs/audio/core/commands/player.py:756
|
||||
#: redbot/cogs/audio/core/commands/player.py:775
|
||||
#: redbot/cogs/audio/core/commands/player.py:893
|
||||
#: redbot/cogs/audio/core/commands/player.py:621
|
||||
#: redbot/cogs/audio/core/commands/player.py:758
|
||||
#: redbot/cogs/audio/core/commands/player.py:777
|
||||
#: redbot/cogs/audio/core/commands/player.py:895
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1898
|
||||
msgid "Unable to Get Track"
|
||||
msgstr "無法獲取歌曲。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:620
|
||||
#: redbot/cogs/audio/core/commands/player.py:757
|
||||
#: redbot/cogs/audio/core/commands/player.py:776
|
||||
#: redbot/cogs/audio/core/commands/player.py:894
|
||||
#: redbot/cogs/audio/core/commands/player.py:622
|
||||
#: redbot/cogs/audio/core/commands/player.py:759
|
||||
#: redbot/cogs/audio/core/commands/player.py:778
|
||||
#: redbot/cogs/audio/core/commands/player.py:896
|
||||
msgid "I'm unable to get a track from Lavalink at the moment, try again in a few minutes."
|
||||
msgstr "我目前無法從 Lavalink 獲取曲目,請過幾分鐘再試。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:634
|
||||
#: redbot/cogs/audio/core/commands/player.py:636
|
||||
msgid "Adding a track to queue."
|
||||
msgstr "正在新增歌曲至播放佇列。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:641
|
||||
#: redbot/cogs/audio/core/commands/player.py:643
|
||||
#, docstring
|
||||
msgid "Pick a track with a search.\n\n"
|
||||
" Use `[p]search list <search term>` to queue all tracks found on YouTube. Use `[p]search sc\n"
|
||||
@@ -2710,51 +2714,51 @@ msgstr "通過搜尋選擇曲目。\n\n"
|
||||
" <search term>` 在 SoundCloud 而不是 YouTube 上搜索。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:680
|
||||
#: redbot/cogs/audio/core/commands/player.py:682
|
||||
msgid "Connection to Lavalink has failed"
|
||||
msgstr "Lavalink連接失敗"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:693
|
||||
#: redbot/cogs/audio/core/commands/player.py:705
|
||||
#: redbot/cogs/audio/core/commands/player.py:711
|
||||
#: redbot/cogs/audio/core/commands/player.py:721
|
||||
#: redbot/cogs/audio/core/commands/player.py:695
|
||||
#: redbot/cogs/audio/core/commands/player.py:707
|
||||
#: redbot/cogs/audio/core/commands/player.py:713
|
||||
#: redbot/cogs/audio/core/commands/player.py:723
|
||||
msgid "Unable To Search For Tracks"
|
||||
msgstr "無法搜尋曲目。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:722
|
||||
#: redbot/cogs/audio/core/commands/player.py:724
|
||||
msgid "You must be in the voice channel to enqueue tracks."
|
||||
msgstr "您必須在語音頻道中才能編排曲目列表。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:785
|
||||
#: redbot/cogs/audio/core/commands/player.py:904
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
msgid "Nothing found."
|
||||
msgstr "未找到任何東西。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:787
|
||||
#: redbot/cogs/audio/core/commands/player.py:906
|
||||
#: redbot/cogs/audio/core/commands/player.py:789
|
||||
#: redbot/cogs/audio/core/commands/player.py:908
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
"This may be due to permissions or because Lavalink.jar is being run in a different machine than the local tracks."
|
||||
msgstr "如果 `Lavalink.jar` 看不到音樂檔案,本地音樂將無法工作。\n"
|
||||
"這可能是由於權限或因為 Lavalink.jar 在與本地軌道不同的機器上運行。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:853
|
||||
#: redbot/cogs/audio/core/commands/player.py:855
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1527
|
||||
msgid " {bad_tracks} tracks cannot be queued."
|
||||
msgstr " {bad_tracks} 首歌曲無法排入佇列。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:859
|
||||
#: redbot/cogs/audio/core/commands/player.py:861
|
||||
msgid "Queued {num} track(s).{maxlength_msg}"
|
||||
msgstr "已加入 {num} 首曲目至待播清單。{maxlength_msg}"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:865
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
msgid "folder"
|
||||
msgstr "資料夾"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:867
|
||||
#: redbot/cogs/audio/core/commands/player.py:869
|
||||
msgid "search"
|
||||
msgstr "搜尋"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/player.py:870
|
||||
#: redbot/cogs/audio/core/commands/player.py:872
|
||||
msgid "{time} until start of {type} playback: starts at #{position} in queue"
|
||||
msgstr "直到 {time} 開始播放 {type}:從隊列中的第 #{position} 順位開始"
|
||||
|
||||
|
||||
@@ -50,7 +50,9 @@ class PlayerCommands(MixinMeta, metaclass=CompositeMetaClass):
|
||||
return await self.send_embed_msg(
|
||||
ctx,
|
||||
title=_("Unable To Play Tracks"),
|
||||
description=_("That URL is not allowed."),
|
||||
description=_(
|
||||
"That URL is not allowed.\n\nThe bot owner can remove this restriction by using ``{prefix}audioset restrict``."
|
||||
).format(prefix=ctx.clean_prefix),
|
||||
)
|
||||
elif not await self.is_query_allowed(self.config, ctx, f"{query}", query_obj=query):
|
||||
return await self.send_embed_msg(
|
||||
|
||||
@@ -198,6 +198,8 @@ class AudioEvents(MixinMeta, metaclass=CompositeMetaClass):
|
||||
if not guild:
|
||||
return
|
||||
notify_channel = guild.get_channel_or_thread(player.fetch("notify_channel"))
|
||||
if not notify_channel:
|
||||
return
|
||||
has_perms = self._has_notify_perms(notify_channel)
|
||||
tries = 0
|
||||
while not player._is_playing:
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/ar-SA.po
generated
4
redbot/cogs/audio/core/events/locales/ar-SA.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: ar_SA\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/bg-BG.po
generated
4
redbot/cogs/audio/core/events/locales/bg-BG.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: bg_BG\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/cs-CZ.po
generated
4
redbot/cogs/audio/core/events/locales/cs-CZ.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: cs_CZ\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/da-DK.po
generated
4
redbot/cogs/audio/core/events/locales/da-DK.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: da_DK\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/de-DE.po
generated
4
redbot/cogs/audio/core/events/locales/de-DE.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: de_DE\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "Automatische Wiedergabe gestartet."
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/es-ES.po
generated
4
redbot/cogs/audio/core/events/locales/es-ES.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: es_ES\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "Auto reproducción iniciada."
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/fi-FI.po
generated
4
redbot/cogs/audio/core/events/locales/fi-FI.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: fi_FI\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "Automaattinen toisto aloitettu."
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/fr-FR.po
generated
4
redbot/cogs/audio/core/events/locales/fr-FR.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: fr_FR\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "Lecture automatique démarrée."
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/hi-IN.po
generated
4
redbot/cogs/audio/core/events/locales/hi-IN.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hindi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: hi_IN\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/hr-HR.po
generated
4
redbot/cogs/audio/core/events/locales/hr-HR.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Croatian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: hr_HR\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "Počela je automatska reprodukcija."
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/hu-HU.po
generated
4
redbot/cogs/audio/core/events/locales/hu-HU.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: hu_HU\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/id-ID.po
generated
4
redbot/cogs/audio/core/events/locales/id-ID.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Indonesian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: id_ID\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/it-IT.po
generated
4
redbot/cogs/audio/core/events/locales/it-IT.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: it_IT\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/ja-JP.po
generated
4
redbot/cogs/audio/core/events/locales/ja-JP.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: ja_JP\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "自動再生を開始しました"
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/ko-KR.po
generated
4
redbot/cogs/audio/core/events/locales/ko-KR.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: ko_KR\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "자동재생이 시작되었어요"
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/nb-NO.po
generated
4
redbot/cogs/audio/core/events/locales/nb-NO.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Norwegian Bokmal\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: nb_NO\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "Automatisk avspilling startet."
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/nl-NL.po
generated
4
redbot/cogs/audio/core/events/locales/nl-NL.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Dutch\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: nl_NL\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/pl-PL.po
generated
4
redbot/cogs/audio/core/events/locales/pl-PL.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: pl_PL\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "Automatyczne odtwarzanie rozpoczęte."
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/pt-BR.po
generated
4
redbot/cogs/audio/core/events/locales/pt-BR.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: pt_BR\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "Reprodução automática iniciada."
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/pt-PT.po
generated
4
redbot/cogs/audio/core/events/locales/pt-PT.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: pt_PT\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "Reprodução automática iniciada."
|
||||
|
||||
|
||||
149
redbot/cogs/audio/core/events/locales/ru-RU.po
generated
149
redbot/cogs/audio/core/events/locales/ru-RU.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,17 +15,17 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: ru_RU\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "Автоматическое воспроизведение запущено."
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:34
|
||||
msgid "Create Instant Invite"
|
||||
msgstr ""
|
||||
msgstr "Создание приглашений"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:35
|
||||
msgid "Kick Members"
|
||||
msgstr ""
|
||||
msgstr "Выгнать участников"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:36
|
||||
msgid "Ban Members"
|
||||
@@ -37,91 +37,91 @@ msgstr "Администратор"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:38
|
||||
msgid "Manage Channels"
|
||||
msgstr ""
|
||||
msgstr "Управлять каналами"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:39
|
||||
msgid "Manage Server"
|
||||
msgstr ""
|
||||
msgstr "Управлять сервером"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:40
|
||||
msgid "Add Reactions"
|
||||
msgstr ""
|
||||
msgstr "Добавлять реакции"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:41
|
||||
msgid "View Audit Log"
|
||||
msgstr ""
|
||||
msgstr "Просматривать журнал аудита"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:42
|
||||
msgid "Priority Speaker"
|
||||
msgstr ""
|
||||
msgstr "Приоритетный режим"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:43
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
msgstr "Видео"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:44
|
||||
msgid "Read Text Channels & See Voice Channels"
|
||||
msgstr ""
|
||||
msgstr "Просматривать каналы"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:45
|
||||
msgid "Send Messages"
|
||||
msgstr ""
|
||||
msgstr "Отправлять сообщения"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:46
|
||||
msgid "Send Text-to-speech Messages"
|
||||
msgstr ""
|
||||
msgstr "Отправка сообщений text-to-speech"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:47
|
||||
msgid "Manage Messages"
|
||||
msgstr ""
|
||||
msgstr "Управлять сообщениями"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:48
|
||||
msgid "Embed Links"
|
||||
msgstr ""
|
||||
msgstr "Встраивать ссылки"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:49
|
||||
msgid "Attach Files"
|
||||
msgstr ""
|
||||
msgstr "Прикреплять файлы"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:50
|
||||
msgid "Read Message History"
|
||||
msgstr ""
|
||||
msgstr "Читать историю сообщений"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:51
|
||||
msgid "Mention @everyone, @here, and All Roles"
|
||||
msgstr ""
|
||||
msgstr "Упоминание @everyone, @here и всех ролей"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:52
|
||||
msgid "Use External Emojis"
|
||||
msgstr ""
|
||||
msgstr "Использовать внешние эмодзи"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:53
|
||||
msgid "View Server Insights"
|
||||
msgstr ""
|
||||
msgstr "Просмотр аналитики сервера"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:54
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
msgstr "Подключаться"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:55
|
||||
msgid "Speak"
|
||||
msgstr ""
|
||||
msgstr "Говорить"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:56
|
||||
msgid "Mute Members"
|
||||
msgstr ""
|
||||
msgstr "Отключать участникам микрофон"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:57
|
||||
msgid "Deafen Members"
|
||||
msgstr ""
|
||||
msgstr "Отключать участникам звук"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:58
|
||||
msgid "Move Members"
|
||||
msgstr ""
|
||||
msgstr "Перемещать участников"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:59
|
||||
msgid "Use Voice Activity"
|
||||
msgstr ""
|
||||
msgstr "Использовать режим активации по голосу"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:60
|
||||
msgid "Change Nickname"
|
||||
@@ -129,175 +129,175 @@ msgstr "Изменить никнейм"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:61
|
||||
msgid "Manage Nicknames"
|
||||
msgstr ""
|
||||
msgstr "Управление никнеймами"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:62
|
||||
msgid "Manage Roles"
|
||||
msgstr ""
|
||||
msgstr "Управлять ролями"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:63
|
||||
msgid "Manage Webhooks"
|
||||
msgstr ""
|
||||
msgstr "Управлять вебхуками (webhooks)"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:64
|
||||
msgid "Manage Expressions"
|
||||
msgstr ""
|
||||
msgstr "Управление выражениями"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:65
|
||||
msgid "Use Application Commands"
|
||||
msgstr ""
|
||||
msgstr "Использовать команды приложения"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:66
|
||||
msgid "Request to Speak"
|
||||
msgstr ""
|
||||
msgstr "Попросить выступить"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:67
|
||||
msgid "Manage Events"
|
||||
msgstr ""
|
||||
msgstr "Управление событиями"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:68
|
||||
msgid "Manage Threads"
|
||||
msgstr ""
|
||||
msgstr "Управление ветками"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:69
|
||||
msgid "Create Public Threads"
|
||||
msgstr ""
|
||||
msgstr "Создать публичные ветки"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:70
|
||||
msgid "Create Private Threads"
|
||||
msgstr ""
|
||||
msgstr "Создание приватных веток"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:71
|
||||
msgid "Use External Stickers"
|
||||
msgstr ""
|
||||
msgstr "Использовать внешние стикеры"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:72
|
||||
msgid "Send Messages in Threads"
|
||||
msgstr ""
|
||||
msgstr "Отправлять сообщения в ветках"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:73
|
||||
msgid "Use Activities"
|
||||
msgstr ""
|
||||
msgstr "Использовать активности"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:74
|
||||
msgid "Time out members"
|
||||
msgstr ""
|
||||
msgstr "Отправлять участников думать о своём поведении"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:75
|
||||
msgid "View Creator Monetization Analytics"
|
||||
msgstr ""
|
||||
msgstr "Просмотр аналитики подписок на сервер"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:76
|
||||
msgid "Use Soundboard"
|
||||
msgstr ""
|
||||
msgstr "Использовать звуковую панель"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:77
|
||||
msgid "Create Expressions"
|
||||
msgstr ""
|
||||
msgstr "Создавать средства выражения эмоций"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:78
|
||||
msgid "Create Events"
|
||||
msgstr ""
|
||||
msgstr "Создавать события"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:79
|
||||
msgid "Use External Sounds"
|
||||
msgstr ""
|
||||
msgstr "Использовать внешние звуки"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:80
|
||||
msgid "Send Voice Messages"
|
||||
msgstr ""
|
||||
msgstr "Отправлять голосовые сообщения"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:81
|
||||
msgid "Create Polls"
|
||||
msgstr ""
|
||||
msgstr "Создавать опросы"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:82
|
||||
msgid "Use External Apps"
|
||||
msgstr ""
|
||||
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 ""
|
||||
msgstr "Эта команда изменит путь к исполняемому файлу Java. Это полезно, если у вас несколько установок Java, и стандартная вызывает проблемы. Пожалуйста, не изменяйте этот параметр, если вы не уверены, что указанная вами версия Java поддерживается Red. В настоящее время по умолчанию поддерживаются версии Java 17 и 11."
|
||||
|
||||
#: 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 ""
|
||||
msgstr "Эта команда изменит максимальное распределение оперативной памяти для управляемого узла Lavalink, обычно вам никогда не придется изменять это значение, но прежде чем изменять его, пожалуйста, проконсультируйтесь с нашей службой поддержки."
|
||||
|
||||
#: 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 ""
|
||||
msgstr "Эта команда отключит управляемый узел Lavalink, если вы включите эту команду, вы должны указать внешний узел Lavalink для подключения, если вы этого не сделаете, Audio перестанет работать."
|
||||
|
||||
#: 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 ""
|
||||
msgstr "Эта команда используется для указания IP-адреса, который будет использовать Red для подключения к внешнему узлу Lavalink. "
|
||||
|
||||
#: 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 ""
|
||||
msgstr "Эта команда используется для указания пароля аутентификации, используемого Red для подключения к внешнему узлу Lavalink."
|
||||
|
||||
#: 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 ""
|
||||
msgstr "Эта команда используется для переключения между безопасными и небезопасными соединениями с внешним Lavalink узлом."
|
||||
|
||||
#: 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 ""
|
||||
msgstr "Эта команда используется для указания порта соединения, используемого Red для подключения к внешнему узлу Lavalink."
|
||||
|
||||
#: 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 ""
|
||||
msgstr "Эта команда определяет, к какому сетевому интерфейсу и IP будет привязываться управляемый узел Lavalink по умолчанию это 'localhost', только если вы хотите, чтобы управляемый узел Lavalink связался с определенным IP/интерфейсом."
|
||||
|
||||
#: 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 ""
|
||||
msgstr "Эта команда меняет пароль аутентификации, необходимый для подключения к управляемому узлу. Значение по умолчанию 'youshallnotpass'."
|
||||
|
||||
#: 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 ""
|
||||
msgstr "Эта команда изменяет порт соединения, используемый для подключения к управляемому узлу. Изменять только если порт по умолчанию ('2333') вызывает конфликты с существующими приложениями."
|
||||
|
||||
#: 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 <http://ice1.somafm.com/gsclassic-128-mp3>; disabling this will make the bot unable to play any direct url steam content."
|
||||
msgstr ""
|
||||
msgstr "Эта команда переключает поддержку URL стримов таких, как Icecast или Shoutcast. Примером является <http://ice1.somafm.com/gsclassic-128-mp3>; при отключении бот не сможет воспроизвести содержание URL стрима."
|
||||
|
||||
#: 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 ""
|
||||
msgstr "Эта команда переключает поддержку воспроизведения локального трека. Примером может служить `/mnt/data/my_super_funky_track.mp3`; при отключении бот не сможет воспроизводить локальные трека."
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:143
|
||||
msgid "This command toggles the support of SoundCloud playback. An example is <https://soundcloud.com/user-103858850/tilla>; disabling this will make the bot unable to play any SoundCloud content."
|
||||
msgstr ""
|
||||
msgstr "Эта команда переключает поддержку воспроизведения с SoundCloud. Пример <https://soundcloud.com/user-103858850/tilla>; при отключении бот не сможет воспроизводить содержимое с SoundCloud."
|
||||
|
||||
#: 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 ""
|
||||
msgstr "Эта команда переключает поддержку воспроизведения YouTube и Spotify. При отключении бот не сможет воспроизводить контента с YouTube и Spotify."
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:153
|
||||
msgid "This command toggles the support of Twitch playback. An example of this is <https://twitch.tv/monstercat>; disabling this will make the bot unable to play any Twitch content."
|
||||
msgstr ""
|
||||
msgstr "Эта команда переключает поддержку воспроизведения с Twitch. Пример <https://twitch.tv/monstercat>; при отключении бот не сможет воспроизводить содержимое c Twitch."
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:158
|
||||
msgid "This command toggles the support of Vimeo playback. An example of this is <https://vimeo.com/157743578>; disabling this will make the bot unable to play any Vimeo content."
|
||||
msgstr ""
|
||||
msgstr "Эта команда переключает поддержку воспроизведения с Vimeo. Пример <https://vimeo.com/157743578>; при отключении бот не сможет воспроизводить содержимое с Vimeo."
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:163
|
||||
msgid "This setting controls the managed node's framebuffer, do not change this unless instructed."
|
||||
msgstr ""
|
||||
msgstr "Этот параметр управляет буфером кадров управляемого узла, не меняйте его без указаний."
|
||||
|
||||
#: 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 ""
|
||||
msgstr "Этот параметр управляет JDA-NAS буфером управляемого узла, не меняйте его без указаний."
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:171
|
||||
msgid "This command will reset every setting changed by `[p]llset`."
|
||||
msgstr ""
|
||||
msgstr "Эта команда сбросит все параметры, измененные с помощью `[p]llset`."
|
||||
|
||||
#: 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 ""
|
||||
msgstr "Вы попытались запустить управляемый узел Lavalink на неподдерживаемой архитектуре. Будут доступны только команды, связанные с настройками."
|
||||
|
||||
#: 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 ""
|
||||
msgstr "У меня отсутствуют разрешения на отправку сообщений на этом сервере. Пожалуйста, устраните это как можно скорее."
|
||||
|
||||
#: 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"
|
||||
@@ -315,14 +315,17 @@ msgstr "Отключено"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:274
|
||||
msgid "You should not be running this command."
|
||||
msgstr ""
|
||||
msgstr "Вам не следует запускать эту команду."
|
||||
|
||||
#: 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 ""
|
||||
msgstr "\n"
|
||||
"{template}\n"
|
||||
"Если вы хотите продолжить, введите чувствительный к регистру код без пробелов в качестве следующего сообщения.\n\n"
|
||||
"{confirm_token}"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:321
|
||||
msgid "No DJ role found. Disabling DJ mode."
|
||||
@@ -351,7 +354,7 @@ msgstr "Неверное окружение"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:371
|
||||
msgid "Connection to Lavalink node has been lost."
|
||||
msgstr ""
|
||||
msgstr "Соединение с Lavalink узлом было потеряно."
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:379
|
||||
msgid "No Player Available"
|
||||
@@ -369,7 +372,7 @@ msgstr "Не удается получить трек"
|
||||
#: 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 ""
|
||||
msgstr "Я не могу получить трек от Lavalink, повторите попытку через несколько минут."
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:400
|
||||
msgid "There was an issue communicating with Discord."
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/sk-SK.po
generated
4
redbot/cogs/audio/core/events/locales/sk-SK.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Slovak\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: sk_SK\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "Automatické prehrávanie sa spustilo."
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/sl-SI.po
generated
4
redbot/cogs/audio/core/events/locales/sl-SI.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Slovenian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: sl_SI\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "Samodejno predvajanje se je začelo."
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/sv-SE.po
generated
4
redbot/cogs/audio/core/events/locales/sv-SE.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Swedish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: sv_SE\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/tr-TR.po
generated
4
redbot/cogs/audio/core/events/locales/tr-TR.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Turkish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: tr_TR\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "Otomatik çalma başladı."
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/uk-UA.po
generated
4
redbot/cogs/audio/core/events/locales/uk-UA.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: uk_UA\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/vi-VN.po
generated
4
redbot/cogs/audio/core/events/locales/vi-VN.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: vi_VN\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "Tự động phát đã bắt đầu."
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/zh-CN.po
generated
4
redbot/cogs/audio/core/events/locales/zh-CN.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: zh_CN\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
redbot/cogs/audio/core/events/locales/zh-TW.po
generated
4
redbot/cogs/audio/core/events/locales/zh-TW.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-08-26 17:53+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 670\n"
|
||||
"Language: zh_TW\n"
|
||||
|
||||
#: redbot/cogs/audio/core/events/cog.py:216
|
||||
#: redbot/cogs/audio/core/events/cog.py:218
|
||||
msgid "Auto Play started."
|
||||
msgstr "已開始自動播放。"
|
||||
|
||||
|
||||
@@ -56,7 +56,9 @@ class LavalinkTasks(MixinMeta, metaclass=CompositeMetaClass):
|
||||
password = configs["yaml"]["lavalink"]["server"]["password"]
|
||||
secured = False
|
||||
# Make this timeout customizable for lower powered machines?
|
||||
self.managed_node_controller = ServerManager(self.config, timeout=60, cog=self)
|
||||
self.managed_node_controller = ServerManager(
|
||||
self.config, timeout=60, download_timeout=60 * 3, cog=self
|
||||
)
|
||||
try:
|
||||
await self.managed_node_controller.start(java_exec)
|
||||
# timeout is the same as ServerManager.timeout -
|
||||
|
||||
2
redbot/cogs/audio/core/tasks/locales/ru-RU.po
generated
2
redbot/cogs/audio/core/tasks/locales/ru-RU.po
generated
@@ -25,5 +25,5 @@ msgstr "Не удается получить трек"
|
||||
|
||||
#: redbot/cogs/audio/core/tasks/startup.py:282
|
||||
msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
msgstr "Я не могу получить трек от Lavalink, повторите попытку через несколько минут."
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hindi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Croatian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Indonesian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Norwegian Bokmal\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Dutch\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
10
redbot/cogs/audio/core/utilities/locales/ru-RU.po
generated
10
redbot/cogs/audio/core/utilities/locales/ru-RU.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -27,7 +27,7 @@ msgstr "Страница {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 "Не удалось подключиться к узлу Lavalink"
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:98
|
||||
#: redbot/cogs/audio/core/utilities/player.py:591
|
||||
@@ -43,7 +43,7 @@ msgstr "Сначала подключитесь к голосовому кана
|
||||
#: 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 ""
|
||||
msgstr "Соединение с узлом Lavalink еще не установлено."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:442
|
||||
@@ -231,7 +231,7 @@ msgstr "Не удается получить трек"
|
||||
#: redbot/cogs/audio/core/utilities/player.py:301
|
||||
#: redbot/cogs/audio/core/utilities/playlists.py:426
|
||||
msgid "I'm unable to get a track from the Lavalink node at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
msgstr "Я не могу получить трек от Lavalink, повторите попытку через несколько минут."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/player.py:327
|
||||
msgid "The Spotify API key or client secret has not been set properly. \n"
|
||||
@@ -255,7 +255,7 @@ msgstr "{query} не является допустимым запросом."
|
||||
#: redbot/cogs/audio/core/utilities/playlists.py:627
|
||||
#: redbot/cogs/audio/core/utilities/playlists.py:656
|
||||
msgid "I'm unable to get a track from Lavalink node at the moment, try again in a few minutes."
|
||||
msgstr ""
|
||||
msgstr "Я не могу получить трек от Lavalink, повторите попытку через несколько минут."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/player.py:416
|
||||
msgid "Local tracks will not work if the `Lavalink.jar` cannot see the track.\n"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user