mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-12-06 01:12:33 -05:00
Compare commits
65 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 | ||
|
|
e4b75f5333 | ||
|
|
254d5a91d6 | ||
|
|
b979a7c4d1 | ||
|
|
54a29174ea | ||
|
|
5bbced5b0d | ||
|
|
5b21c89505 | ||
|
|
04d856cfb0 | ||
|
|
701339f8a1 | ||
|
|
3d04d696c1 | ||
|
|
0b8bcef86c | ||
|
|
2d47d75919 | ||
|
|
7eb26da647 | ||
|
|
699471f27a | ||
|
|
2c2080df12 | ||
|
|
fa7236af63 | ||
|
|
601816abc0 | ||
|
|
bf8c0d03b5 | ||
|
|
2e40ec4a1a | ||
|
|
9b9fdf555b |
2
.github/labeler.yml
vendored
2
.github/labeler.yml
vendored
@@ -141,6 +141,8 @@
|
||||
"Category: Core - API - App Commands Package":
|
||||
# Source
|
||||
- redbot/core/app_commands/*
|
||||
# Docs
|
||||
- docs/framework_app_commands.rst
|
||||
# Tests
|
||||
- tests/core/test_app_commands.py
|
||||
"Category: Core - API - Commands Package":
|
||||
|
||||
6
.github/workflows/lint_python.yaml
vendored
6
.github/workflows/lint_python.yaml
vendored
@@ -20,7 +20,11 @@ jobs:
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.8"
|
||||
- run: "python -m pip install git+https://github.com/pycqa/pyflakes@1911c20#egg=pyflakes git+https://github.com/pycqa/pycodestyle@d219c68#egg=pycodestyle git+https://github.com/pycqa/flake8@3.7.9#egg=flake8"
|
||||
- run: >
|
||||
python -m pip install
|
||||
'pyflakes @ https://github.com/pycqa/pyflakes/tarball/1911c20'
|
||||
'pycodestyle @ https://github.com/pycqa/pycodestyle/tarball/d219c68'
|
||||
'flake8 @ https://github.com/pycqa/flake8/tarball/3.7.9'
|
||||
name: Install Flake8
|
||||
- run: "python -m flake8 . --count --select=E9,F7,F82 --show-source"
|
||||
name: Flake8 Linting
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
195
CHANGES.rst
195
CHANGES.rst
@@ -1,5 +1,196 @@
|
||||
.. 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)
|
||||
==========================
|
||||
|
||||
| Thanks to all these amazing people that contributed to this release:
|
||||
| :ghuser:`aikaterna`, :ghuser:`Jackenmen`
|
||||
|
||||
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.12's default application.yml file <https://github.com/Cog-Creators/Red-DiscordBot/releases/download/3.5.12/Red-DiscordBot-3.5.12-default-lavalink-application.yml>`__
|
||||
|
||||
End-user changelog
|
||||
------------------
|
||||
|
||||
Fixes
|
||||
*****
|
||||
|
||||
- **Cogs - Audio** - Fixed the ``[p]llset secured`` command failing to send the response message (:issue:`6423`)
|
||||
- **Cogs - Audio** - Fixed some age-restricted YT tracks not playing (:issue:`6424`)
|
||||
|
||||
----
|
||||
|
||||
Redbot 3.5.11 (2024-08-04)
|
||||
==========================
|
||||
|
||||
| Thanks to all these amazing people that contributed to this release:
|
||||
| :ghuser:`aikaterna`, :ghuser:`anopem`, :ghuser:`Flame442`, :ghuser:`japandotorg`, :ghuser:`Jackenmen`, :ghuser:`Kowlin`, :ghuser:`palmtree5`, :ghuser:`yamikaitou`
|
||||
|
||||
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 and added new plugin configuration.
|
||||
`Download Red 3.5.11's default application.yml file <https://github.com/Cog-Creators/Red-DiscordBot/releases/download/3.5.11/Red-DiscordBot-3.5.11-default-lavalink-application.yml>`__
|
||||
|
||||
End-user changelog
|
||||
------------------
|
||||
|
||||
Changes
|
||||
*******
|
||||
|
||||
- **Core** - Menus sent in ephemeral messages will now be deleted the same way menus in normal messages do (:issue:`6304`)
|
||||
- **Core - Dependencies** - Red's dependencies have been bumped (:issue:`6417`)
|
||||
|
||||
Fixes
|
||||
*****
|
||||
|
||||
- **Core - RPC** - RPC is now forcefully shut down after 2 minutes, if it cannot shutdown gracefully (:issue:`6391`, :issue:`6412`)
|
||||
- |cool| **Cogs - Audio** - Fixed some of the recent YT playback issues (:issue:`6414`, :issue:`6415`)
|
||||
- **Cogs - Mutes** - Fixed the cog failing to unmute a user, if they were muted by someone who no longer has permissions to mute that user (:issue:`6376`, :issue:`6411`)
|
||||
- **Cogs - Streams** - Fixed the viewer count for Twitch streams (:issue:`6413`)
|
||||
|
||||
Developer changelog
|
||||
-------------------
|
||||
|
||||
Additions
|
||||
*********
|
||||
|
||||
- **Core - App Commands Package** - Added `app_commands.UserFeedbackCheckFailure` exception allowing the cog creators to return non-default error message when the check fails (:issue:`6397`)
|
||||
|
||||
Documentation changes
|
||||
---------------------
|
||||
|
||||
Changes
|
||||
*******
|
||||
|
||||
- Updated instructions for installing the development version of Red in `guide_cog_creation` (:issue:`6408`)
|
||||
- Updated the contents of the ``red.plist`` file in the `autostart_mac` document to use no resource limitations, same as regular applications (:issue:`6416`)
|
||||
|
||||
----
|
||||
|
||||
Redbot 3.5.10 (2024-07-10)
|
||||
==========================
|
||||
|
||||
@@ -53,8 +244,8 @@ Fixes
|
||||
- **Core** - Fixed command autocompletion not showing any proper result (error message) when bot's global checks (channel/server ignores, allowlist/blocklist) do not pass (:issue:`6374`, :issue:`6375`)
|
||||
- **Cogs - Audio** - Fixed one of the recent YT playback issues (:issue:`6373`)
|
||||
|
||||
Developer changes
|
||||
-----------------
|
||||
Developer changelog
|
||||
-------------------
|
||||
|
||||
Changes
|
||||
*******
|
||||
|
||||
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 %}
|
||||
|
||||
@@ -57,6 +57,8 @@ Paste the following and replace the following:
|
||||
<string>username</string>
|
||||
<key>InitGroups</key>
|
||||
<true/>
|
||||
<key>ProcessType</key>
|
||||
<string>Interactive</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
||||
|
||||
@@ -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,
|
||||
|
||||
13
docs/framework_app_commands.rst
Normal file
13
docs/framework_app_commands.rst
Normal file
@@ -0,0 +1,13 @@
|
||||
.. red app_commands module documentation
|
||||
|
||||
====================
|
||||
App Commands Package
|
||||
====================
|
||||
|
||||
This package acts almost identically to :doc:`discord.ext.app_commands <dpy:interactions/api>`; i.e.
|
||||
all of the attributes from discord.py's are also in ours.
|
||||
Some of these attributes, however, have been slightly modified, while others have been added to
|
||||
extend functionalities used throughout the bot, as outlined below.
|
||||
|
||||
.. autoclass:: redbot.core.app_commands.UserFeedbackCheckFailure
|
||||
:members:
|
||||
@@ -47,6 +47,9 @@ extend functionalities used throughout the bot, as outlined below.
|
||||
|
||||
.. autoclass:: redbot.core.commands.DMContext
|
||||
|
||||
.. autoclass:: redbot.core.commands.UserFeedbackCheckFailure
|
||||
:members:
|
||||
|
||||
.. automodule:: redbot.core.commands.requires
|
||||
:members: PrivilegeLevel, PermState, Requires
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ Open a terminal or command prompt and type one of the following
|
||||
.. note::
|
||||
|
||||
To install the development version, replace ``Red-DiscordBot`` in the above commands with the
|
||||
link below. **The development version of the bot contains experimental changes. It is not
|
||||
value below. **The development version of the bot contains experimental changes. It is not
|
||||
intended for normal users.** We will not support anyone using the development version in any
|
||||
support channels. Using the development version may break third party cogs and not all core
|
||||
commands may work. Downgrading to stable after installing the development version may cause
|
||||
@@ -40,7 +40,7 @@ Open a terminal or command prompt and type one of the following
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
git+https://github.com/Cog-Creators/Red-DiscordBot@V3/develop#egg=Red-DiscordBot
|
||||
Red-DiscordBot @ https://github.com/Cog-Creators/Red-DiscordBot/tarball/V3/develop
|
||||
|
||||
|
||||
(Windows users may need to use :code:`py -3.8` or :code:`python` instead of :code:`python3.8`)
|
||||
|
||||
@@ -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
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
|
||||
@@ -71,6 +71,7 @@ Welcome to Red - Discord Bot's documentation!
|
||||
framework_bot
|
||||
framework_checks
|
||||
framework_commands
|
||||
framework_app_commands
|
||||
framework_config
|
||||
framework_datamanager
|
||||
framework_events
|
||||
|
||||
@@ -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.10"
|
||||
_VERSION = "3.5.14"
|
||||
|
||||
__version__, version_info = VersionInfo._get_version()
|
||||
|
||||
|
||||
6
redbot/cogs/admin/locales/id-ID.po
generated
6
redbot/cogs/admin/locales/id-ID.po
generated
@@ -127,7 +127,7 @@ msgstr "\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:275
|
||||
msgid "{author} ({author.id}) changed the colour of role '{role.name}'"
|
||||
msgstr ""
|
||||
msgstr "{author} ({author.id}) telah mengubah warna role '{role.name}'"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:294 redbot/cogs/admin/admin.py:327
|
||||
msgid "Done."
|
||||
@@ -150,7 +150,7 @@ msgstr "\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:308
|
||||
msgid "{author} ({author.id}) changed the name of role '{old_name}' to '{name}'"
|
||||
msgstr ""
|
||||
msgstr "{author} ({author.id}) telah mengubah nama role '{old_name}' menjadi '{name}'"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:332
|
||||
#, docstring
|
||||
@@ -362,5 +362,5 @@ msgstr "Role \"{role_name}\" bukan selfrole yang tepat."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:36
|
||||
msgid "This selfrole has more than one case insensitive match. Please ask a moderator to resolve the ambiguity, or use the role ID to reference the role."
|
||||
msgstr ""
|
||||
msgstr "Selfrole ini memiliki lebih dari satu kecocokan yang tidak membedakan huruf besar dan kecil. Mohon tanyakan kepada moderator untuk menyelesaikan ambiguitas ini, atau gunakan ID role untuk merujuk role tersebut."
|
||||
|
||||
|
||||
20
redbot/cogs/alias/locales/id-ID.po
generated
20
redbot/cogs/alias/locales/id-ID.po
generated
@@ -24,7 +24,13 @@ msgid "Create aliases for commands.\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
" and append them to the stored alias.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "Buat alias untuk perintah.\n\n"
|
||||
" Alias adalah nama alternatif/jalan pintas untuk perintah. Mereka\n"
|
||||
" dapat berfungsi sebagai lambda (menyimpan argumen untuk digunakan berulang kali)\n"
|
||||
" atau sebagai jalan pintas untuk mengatakan \"x y z\".\n\n"
|
||||
" Saat dijalankan, alias akan menerima argumen tambahan apa pun\n"
|
||||
" dan menambahkannya ke alias yang disimpan.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/alias/alias.py:190
|
||||
msgid "Aliases:\n"
|
||||
@@ -95,28 +101,28 @@ msgstr "Alias global baru dengan pemicu `{name}` telah dibuat."
|
||||
#: redbot/cogs/alias/alias.py:332
|
||||
#, docstring
|
||||
msgid "Edit an existing alias in this server."
|
||||
msgstr ""
|
||||
msgstr "Edit sebuah alias yang ada di server ini."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:337 redbot/cogs/alias/alias.py:372
|
||||
msgid "The alias with the name {name} does not exist."
|
||||
msgstr ""
|
||||
msgstr "Alias dengan nama {name} tidak ada."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:343 redbot/cogs/alias/alias.py:378
|
||||
msgid "You attempted to edit an alias to a command that doesn't exist."
|
||||
msgstr ""
|
||||
msgstr "Anda mencoba mengedit alias ke perintah yang tidak ada."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352 redbot/cogs/alias/alias.py:385
|
||||
msgid "The alias with the trigger `{name}` has been edited successfully."
|
||||
msgstr ""
|
||||
msgstr "Alias dengan pemicu `{name}` telah berhasil diedit."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:359 redbot/cogs/alias/alias.py:392
|
||||
msgid "Alias with the name `{name}` was not found."
|
||||
msgstr ""
|
||||
msgstr "Alias dengan nama `{name}` tidak ditemukan."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:367
|
||||
#, docstring
|
||||
msgid "Edit an existing global alias."
|
||||
msgstr ""
|
||||
msgstr "Edit sebuah alias global yang ada."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#, docstring
|
||||
|
||||
@@ -124,7 +124,7 @@ class LavalinkSetupCommands(MixinMeta, metaclass=CompositeMetaClass):
|
||||
if meta[1]:
|
||||
await ctx.send(
|
||||
_(
|
||||
"Heap-size must be less than your system RAM, "
|
||||
"Heap-size must be less than your system RAM. "
|
||||
"You currently have {ram_in_bytes} of RAM available."
|
||||
).format(ram_in_bytes=inline(sizeof_fmt(meta[0])))
|
||||
)
|
||||
@@ -250,7 +250,7 @@ class LavalinkSetupCommands(MixinMeta, metaclass=CompositeMetaClass):
|
||||
return await self.send_embed_msg(
|
||||
ctx,
|
||||
title=_("Setting Not Changed"),
|
||||
description=_("A port must be between 0 and 65535 "),
|
||||
description=_("A port must be between 0 and 65535."),
|
||||
)
|
||||
await self.config.ws_port.set(port)
|
||||
await self.send_embed_msg(
|
||||
@@ -295,11 +295,14 @@ class LavalinkSetupCommands(MixinMeta, metaclass=CompositeMetaClass):
|
||||
title=_("Setting Changed"),
|
||||
description=_(
|
||||
"Unmanaged Lavalink node will no longer connect using the secured "
|
||||
"{secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
"{secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
).format(p=ctx.prefix, cmd=self.command_audioset_restart.qualified_name),
|
||||
unsecured_protocol=inline("ws://"),
|
||||
secured_protocol=inline("wss://"),
|
||||
).format(
|
||||
p=ctx.prefix,
|
||||
cmd=self.command_audioset_restart.qualified_name,
|
||||
unsecured_protocol=inline("ws://"),
|
||||
secured_protocol=inline("wss://"),
|
||||
),
|
||||
)
|
||||
|
||||
@command_llset.command(name="info", aliases=["settings"])
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/ar-SA.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "تم تغيير الإعدادات"
|
||||
|
||||
@@ -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 "بيئة غير صالحة"
|
||||
|
||||
@@ -1098,13 +1098,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
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 ""
|
||||
|
||||
@@ -1864,7 +1864,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1923,14 +1923,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1950,93 +1950,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2044,12 +2044,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2057,170 +2057,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 ""
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/bg-BG.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -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 ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
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 ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 ""
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/cs-CZ.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -343,25 +343,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -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 ""
|
||||
|
||||
@@ -1090,13 +1090,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
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 ""
|
||||
|
||||
@@ -1850,7 +1850,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1909,14 +1909,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1936,93 +1936,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2030,12 +2030,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2043,170 +2043,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 ""
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/da-DK.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -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 ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
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 ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 ""
|
||||
|
||||
|
||||
448
redbot/cogs/audio/core/commands/locales/de-DE.po
generated
448
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Einstellung geändert"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1149,13 +1149,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Startet die lavalink-Verbindung neu."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr "Fehler beim Herunterfahren von Lavalink"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Bitte laden Sie Audio neu (`{prefix}reload audio`)."
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1917,7 +1917,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1976,15 +1976,15 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr "Einstellung nicht geändert"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgstr "Der Port muss zwischen 0 und 65535 liegen "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
||||
@@ -2003,93 +2003,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "Lavalink Verbindungseinstellungen anzeigen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "Verbindungseinstellungen"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "Host: [{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr "Port: [{port}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "Passwort: [{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr "Gesichert: [{state}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr "Einstellungen für Lavalink Knoten"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr "Ursprüngliche Heapsize: [{xms}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr "Maximale Heapsize: [{xmx}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr "Pfad zur ausführbaren Java-Datei: [{java_exc_path}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "Ich muss in der Lage sein dir Privatnachrichten schreiben zu können um dir diese Info zu senden."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2097,12 +2097,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2110,95 +2110,95 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr "Der Port muss zwischen 1025 und 65535 liegen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Der verwaltete Knoten erlaubt die Wiedergabe von lokalen Dateien.\n\n"
|
||||
"Führen Sie `{p}{cmd}` aus, damit es wirksam wird."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Der verwaltete Knoten wird nicht mehr aus lokalen Dateien wiedergeben.\n\n"
|
||||
"Führe `{p}{cmd}` aus, damit er wirksam wird."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Der verwaltete Knoten erlaubt die Wiedergabe von SoundCloud.\n\n"
|
||||
"Führen Sie `{p}{cmd}` aus, damit es wirksam wird."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Der verwaltete Knoten wird nicht mehr von SoundCloud wiedergeben.\n\n"
|
||||
"Führe `{p}{cmd}` aus, damit er wirksam wird."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
@@ -2207,82 +2207,82 @@ msgstr "`Gefährlicher Befehl` schaltet die YouTube als Quelle ein oder aus (die
|
||||
" Diese Option steuert die Wiedergabe aller YouTube- und Spotify-Inhalte.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Der verwaltete Knoten erlaubt die Wiedergabe von YouTube.\n\n"
|
||||
"Führen Sie `{p}{cmd}` aus, damit es wirksam wird."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Der verwaltete Knoten wird nicht mehr von YouTube wiedergeben.\n\n"
|
||||
"Führen Sie `{p}{cmd}` aus, damit es wirksam wird."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr "Der niedrigste Wert, auf den der Framebuffer eingestellt werden kann, ist 100 ms."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "PufferDurationMs des verwalteten Knotens auf {milliseconds} gesetzt.\n\n"
|
||||
"Führen Sie `{p}{cmd}` aus, damit es wirksam wird."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr "Der kleinste Wert, den der Puffer haben kann, ist 100 ms."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr "Setzt alle `llset`-Änderungen auf ihre Standardwerte zurück."
|
||||
@@ -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"
|
||||
|
||||
|
||||
453
redbot/cogs/audio/core/commands/locales/es-ES.po
generated
453
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Configuración cambiada"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1181,13 +1181,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Reinicia la conexión de lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr "Error al apagar el nodo Lavalink"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Por favor, recarga Audio (`{prefix}recargar audio`)."
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1966,8 +1966,8 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr "El Heap-size debe ser de al menos 64M, sin embargo se recomienda que se ajuste a al menos 1G."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr "El heap-size debe ser menor que la memoria RAM de tu sistema. Actualmente tienes {ram_in_bytes} de RAM disponible."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
msgid "Heap-size must be less than {limit} due to your system limitations."
|
||||
@@ -2032,15 +2032,15 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr "Configuración no cambiada"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgstr "Un puerto debe estar entre 0 y 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
||||
@@ -2062,70 +2062,69 @@ msgstr "El nodo Lavalink no-gestionado ahora se conectará usando el protocolo s
|
||||
"Ejecute `{p}{cmd}` para que tenga efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo Lavalink gestionado ya no se conectará utilizando el protocolo seguro {secured_protocol} y usará {unsecured_protocol} en su lugar.\n\n"
|
||||
"Ejecutar `{p}{cmd}` para que surta efecto."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "Mostrar configuración de conexión Lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "Configuración de conexión"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "Host: [{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr "Puerto: [{port}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr "Puerto HTTP/HTTPS por defecto"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "Contraseña: [{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr "Seguro: [{state}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr "Configuración del nodo Lavalink"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr "Heapsize Inicial: [{xms}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr "Heapsize máximo: [{xmx}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr "Ruta del ejecutable de Java: [{java_exc_path}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "Necesito ser capaz de DM para enviarte esta información."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr "Sube una copia del archivo application.yml utilizado por el nodo Lavalink administrado."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
@@ -2134,12 +2133,12 @@ msgstr "Configura las opciones de ejecución del nodo Lavalink.\n\n"
|
||||
" Es probable que todos los ajustes de este grupo provoquen un mal funcionamiento del audio si se cambia de sus valores predeterminados, sólo cambie la configuración de aquí si ha sido sugerido por el soporte.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr "Configura la autorización de nodo administrado y la configuración de conexión."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
@@ -2148,13 +2147,13 @@ msgstr "`Comando peligroso` Establece la dirección IP de enlace del nodo Lavali
|
||||
" Este valor por defecto es `localhost` que restringirá el servidor a sólo las aplicaciones localhost por defecto, cambiar esto probablemente romperá el nodo Lavalink administrado si no sabe lo que está haciendo.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ahora aceptará la conexión en {host}.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2165,13 +2164,13 @@ msgstr "Establecer la contraseña de conexión del nodo Lavalink administrado\n\
|
||||
" El valor por defecto es `youshallnotpass`.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ahora aceptará {password} como el token de autorización.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que tenga efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2182,17 +2181,17 @@ msgstr "`Comando peligroso` Establece el puerto de conexión de nodo Lavalink ad
|
||||
" El valor por defecto es `2333`.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr "El puerto debe ser entre 1024 y 49151."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ahora aceptará conexiones en el puerto {port}.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
@@ -2201,7 +2200,7 @@ msgstr "`Comando peligroso` Activa o desactiva las fuentes de audio.\n\n"
|
||||
" Por defecto, todas las fuentes están habilitadas, solo debes usar comandos aquí para desactivar una fuente específica si has sido avisado de, desactivar las fuentes sin conocimiento de fondo puede causar que el audio se rompa.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
@@ -2210,19 +2209,19 @@ msgstr "Activa o desactiva el uso de URLs directas HTTP.\n\n"
|
||||
" Esta fuente se utiliza para permitir la reproducción de streams HTTP directos (esto no afecta la reproducción directa de URL para las otras fuentes).\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado permitirá la reproducción desde las URL directas.\n\n"
|
||||
"Ejecuta `{p}{cmd}` para que tenga efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ya no reproducirá desde las URLs directas.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
@@ -2231,19 +2230,19 @@ msgstr "Activa o desactiva Bandcamp como fuente.\n\n"
|
||||
" Esta función controla la reproducción de todo el contenido relacionado con Bandcamping.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado permitirá la reproducción desde Bandcamp.\n\n"
|
||||
"Ejecuta `{p}{cmd}` para que tenga efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ya no reproducirá desde Bandcamp.\n\n"
|
||||
"Ejecuta `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
@@ -2252,19 +2251,19 @@ msgstr "Activa o desactiva el uso de archivos locales.\n\n"
|
||||
" Esta opción controla la reproducción de pistas locales, generalmente se encuentran dentro de la carpeta `localtracks`.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado permitirá la reproducción desde archivos locales.\n\n"
|
||||
"Ejecutar `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ya no se reproducirá desde archivos locales.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
@@ -2273,19 +2272,19 @@ msgstr "Activa o desactiva la fuente de SoundCloud.\n\n"
|
||||
" Esto activa o desactiva la reproducción de todo el contenido relacionado con SoundCloud.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado permitirá la reproducción desde Url directas.\n\n"
|
||||
"Ejecuta `{p}{cmd}` para que tenga efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ya no reproducirá desde Soundcloud.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
@@ -2294,19 +2293,19 @@ msgstr "`Comando peligroso` activa o desactiva la fuente de YouTube (esto incluy
|
||||
" Esta opción controla la reproducción de todo el contenido relacionado con YouTube y Spotify.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado permitirá la reproducción desde YouTube.\n\n"
|
||||
"Ejecuta `{p}{cmd}` para que tenga efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ya no reproducirá desde YouTube.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
@@ -2315,19 +2314,19 @@ msgstr "Activa o desactiva la fuente de Twitch.\n\n"
|
||||
" Esta función controla la reproducción de todo el contenido relacionado con Twitch.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado permitirá la reproducción desde Twitch.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ya no reproducirá desde Twitch.\n\n"
|
||||
"Ejecuta `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
@@ -2336,19 +2335,19 @@ msgstr "Activa o desactiva la fuente Vimeo.\n\n"
|
||||
" Esta función controla la reproducción de todo el contenido relacionado con Vimeo.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado permitirá la reproducción desde Vimeo.\n\n"
|
||||
"Ejecuta `{p}{cmd}` para que tenga efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ya no reproducirá desde Vimeo.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
@@ -2357,18 +2356,18 @@ msgstr "`Comando peligroso` Establece el tamaño del framebuffer del nodo admini
|
||||
" Sólo cambie esto si ha sido notificado directamente a cambiarlo puede causar problemas significativos de reproducción.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr "El valor más bajo al que se puede ajustar el framebuffer es 100ms."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Se han cambiado el bufferDurationMs de los nodos administrados a {milliseconds}.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que tenga efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
@@ -2377,11 +2376,11 @@ msgstr "`Comando peligroso` Establece el tamaño del búfer JDA-NAS gestionado d
|
||||
" Sólo cambie esto si ha sido notificado directamente a cambiarlo puede causar problemas significativos de reproducción.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr "El valor más bajo que puede tener el buffer es de 100ms."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr "Restablece todos los cambios de `llset` a sus valores predeterminados."
|
||||
@@ -2515,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"
|
||||
@@ -2711,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"
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/fi-FI.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Asetus muutettu"
|
||||
|
||||
@@ -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ö"
|
||||
|
||||
@@ -1129,13 +1129,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Käynnistää Lavalink-yhteyden uudelleen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Lataathan Audion uudelleen (`{prefix}reload audio`)."
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1898,7 +1898,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1957,14 +1957,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1984,93 +1984,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "Näytä Lavalink-yhteysasetukset."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "Yhteysasetukset"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "Osoite: [{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "Salasana: [{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "Minun tulee pystyä lähettämään sinulle yksityisviestejä, jotta voin lähettää nämä tiedot."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2078,12 +2078,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2091,170 +2091,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
@@ -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"
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/fr-FR.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Paramètre modifié"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1177,13 +1177,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Redémarrage de la connection à Lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Veuillez recharger l'Audio (`{prefix}reload audio`)."
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1951,7 +1951,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -2010,14 +2010,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -2039,93 +2039,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "Affiche les paramètres de connexion de Lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "Paramètres de connexion"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "Hôte : [{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr "Port : [{port}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr "Port HTTP/HTTPS par défaut"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "Mot de passe : [{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr "Sécurisé : [{state}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr "Paramètres du noeud Lavalink"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "Je dois être en mesure de vous envoyer cette information par MP."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr "Télécharge une copie du fichier application.yml utilisé par le noeud Lavalink géré."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2133,12 +2133,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2146,23 +2146,23 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr "Le port doit être compris entre 1024 et 49151."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
@@ -2171,17 +2171,17 @@ msgstr "Activer/désactiver la source HTTP.\n\n"
|
||||
" Permet de contrôler la lecture de tout le contenu lié au stream direct HTTP (n'affecte pas la lecture directe d'URL pour les autres sources).\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
@@ -2190,17 +2190,17 @@ msgstr "Activer/désactiver la source Bandcamp.\n\n"
|
||||
" Permet de contrôler la lecture de tout le contenu lié à Bandcamp.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
@@ -2209,17 +2209,17 @@ msgstr "Activer/désactiver les fichiers locaux.\n\n"
|
||||
" Permet de contrôler la lecture de tout le contenu lié aux fichiers locaux.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
@@ -2228,17 +2228,17 @@ msgstr "Activer/désactiver la source Soundcloud.\n\n"
|
||||
" Permet de contrôler la lecture de tout le contenu lié à SoundCloud.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
@@ -2247,17 +2247,17 @@ msgstr "`Commande dangereuse` Activer/désactiver la source Youtube (inclus Spot
|
||||
" Permet de contrôler la lecture de tout le contenu lié à Youtube et Spotify.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
@@ -2266,17 +2266,17 @@ msgstr "Activer/désactiver la source Twitch.\n\n"
|
||||
" Permet de contrôler la lecture de tout le contenu lié à Twitch.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
@@ -2285,45 +2285,45 @@ msgstr "Activer/désactiver la source Vimeo.\n\n"
|
||||
" Permet de contrôler la lecture de tout le contenu lié à Vimeo.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
@@ -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 ""
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/hi-IN.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hindi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -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 ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
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 ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 ""
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/hr-HR.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Croatian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -343,25 +343,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Postavka je promijenjena"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1091,13 +1091,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
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 "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"
|
||||
|
||||
@@ -1852,7 +1852,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1911,14 +1911,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1938,93 +1938,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2032,12 +2032,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2045,170 +2045,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 "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 ""
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/hu-HU.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -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 ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
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 ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 ""
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/id-ID.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Indonesian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Pengaturan Diubah"
|
||||
|
||||
@@ -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 ""
|
||||
|
||||
@@ -1092,13 +1092,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
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 ""
|
||||
|
||||
@@ -1852,7 +1852,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1911,14 +1911,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1938,93 +1938,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2032,12 +2032,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2045,170 +2045,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 ""
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/it-IT.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -344,25 +344,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Impostazione modificata"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1118,13 +1118,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -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 ""
|
||||
|
||||
@@ -1878,7 +1878,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1937,14 +1937,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1964,93 +1964,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2058,12 +2058,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2071,170 +2071,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 ""
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/ja-JP.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -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 ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
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 ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 ""
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/ko-KR.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "설정 변경됨"
|
||||
|
||||
@@ -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 "잘못된 환경입니다."
|
||||
|
||||
@@ -1104,13 +1104,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "라바링크 연결 재시작"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
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 "트랙을 올릴수 없습니다."
|
||||
|
||||
@@ -1865,7 +1865,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1924,14 +1924,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1951,93 +1951,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2045,12 +2045,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2058,170 +2058,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 ""
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/nb-NO.po
generated
446
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-07-10 14:13+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"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Innstilling endret"
|
||||
|
||||
@@ -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ø"
|
||||
|
||||
@@ -1181,13 +1181,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Gjenoppretter tilkoblingen med lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr "Kunne ikke slå av Lavalink-noden"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Last lyd på nytt (`{prefix}reload audio`)."
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1967,7 +1967,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -2026,14 +2026,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -2053,93 +2053,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "Vis tilkoblingsinnstillinger for Lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "Tilkoblingsinnstillinger"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "Vert: [{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "Passord: [{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "Jeg må være i stand til å sende deg denne info."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2147,12 +2147,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2160,170 +2160,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
@@ -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ø"
|
||||
|
||||
|
||||
444
redbot/cogs/audio/core/commands/locales/nl-NL.po
generated
444
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Dutch\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Instellingen aangepast"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1151,13 +1151,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Herstart de lavalink verbinding."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr "Lavalink uitschakelen mislukt"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Herlaad audio (`{prefix}herlaad audio`)."
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1922,7 +1922,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1981,14 +1981,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -2008,93 +2008,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2102,12 +2102,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2115,95 +2115,95 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Beheerde node staat het afspelen van lokale bestanden toe.\n\n"
|
||||
"Draai `{p}{cmd}` om deze effectief te maken."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Beheerde node zal niet meer van lokale bestanden afspelen.\n\n"
|
||||
"Voer `{p}{cmd}` uit om deze effectief te maken."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Beheerde node staat het afspelen vanaf Soundcloud toe.\n\n"
|
||||
"Voer `{p}{cmd}` uit om deze effectief te maken."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Beheerde node zal niet meer vanaf Soundcloud afspelen.\n\n"
|
||||
"Voer `{p}{cmd}` uit om deze effectief te maken."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
@@ -2212,19 +2212,19 @@ msgstr "`Gevaarlijk commando` Toggle YouTube bron aan of uit (dit omvat Spotify)
|
||||
" Deze optie bepaalt het afspelen van alle YouTube en Spotify gerelateerde content.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Beheerde node staat het afspelen vanaf YouTube toe.\n\n"
|
||||
"Draai `{p}{cmd}` om deze effectief te maken."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "De beheerde node zal niet meer vanaf YouTube afspelen.\n\n"
|
||||
"Voer `{p}{cmd}` uit om deze effectief te maken."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
@@ -2233,62 +2233,62 @@ msgstr "Zet Twitch bron aan of uit.\n\n"
|
||||
" Deze schakelaar bepaalt het afspelen van alle Twitch-gerelateerde inhoud.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
@@ -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 ""
|
||||
|
||||
|
||||
450
redbot/cogs/audio/core/commands/locales/pl-PL.po
generated
450
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Ustawienie zmienione"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1181,13 +1181,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Ponownie uruchamia połączenie lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr "Nie udało się wyłączyć Lavalink'a"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Proszę przeładować Audio (`{prefix}reload audio`)."
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1961,8 +1961,8 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr "Heap-size musi wynosić co najmniej 64M, jednak zaleca się ustawienie go na co najmniej 1G."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr "Heap-size musi być mniejszy niż twój systemowy RAM, Obecnie masz {ram_in_bytes} dostępnej pamięci RAM."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
msgid "Heap-size must be less than {limit} due to your system limitations."
|
||||
@@ -2021,15 +2021,15 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr "Ustawienie nie zostało zmienione"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgstr "Port musi być pomiędzy 0 a 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
||||
@@ -2048,69 +2048,69 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "Wyświetl ustawienia połączenia Lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "Ustawienia połączenia"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "Host: [{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr "Port: [{port}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "Hasło: [{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr "Zabezpieczony: [{state}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr "Ustawienia Lavalink"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr "Początkowy Heapsize: [{xms}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr "Maksymalny Heapsize: [{xmx}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr "Ekonwersja Javy: [{java_exc_path}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "Muszę być w stanie wysłać Ci te informacje."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr "Przesyła kopię pliku application.yml używanego przez zarządzany węzeł Lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
@@ -2119,12 +2119,12 @@ msgstr "Skonfiguruj opcje zarządzanego węzła Lavalink.\n\n"
|
||||
" Wszystkie ustawienia w tej grupie prawdopodobnie spowodują awarię dźwięku w przypadku zmiany ich wartości domyślnych, zmień ustawienia tutaj, jeśli otrzymałeś polecenie wsparcia.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr "Skonfiguruj autoryzację zarządzanego węzła i ustawienia połączenia."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
@@ -2133,13 +2133,13 @@ msgstr "`Niebezpieczna komenda` Ustawienie wiążącego adresu IP zarządzanego
|
||||
" Ta wartość domyślnie to `localhost`, co ograniczy serwer tylko do aplikacji localhost, zmiana tego spowoduje prawdopodobnie uszkodzenie zarządzanego węzła Lavalink, jeśli nie wiesz co robisz.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł zaakceptuje połączenie {host}.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby stało się skuteczne."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2150,13 +2150,13 @@ msgstr "Ustaw hasło połączenia zarządzanego węzła Lavalink.\n\n"
|
||||
" Wartością domyślną jest `youshallnotpass`.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł zaakceptuje {password} jako token autoryzacyjny.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby stał się skuteczny."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2167,17 +2167,17 @@ msgstr "`Dangerous command` Ustaw port połączenia zarządzanego węzła Lavali
|
||||
" Wartość domyślna to `2333`.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr "Port musi mieścić się w przedziale 1024–49151."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł będzie teraz akceptować połączenia na {port}.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
@@ -2186,7 +2186,7 @@ msgstr "`Niebezpieczne polecenie` Włącz/wyłącz źródła audio.\n\n"
|
||||
" Domyślnie wszystkie źródła są włączone, powinieneś używać poleceń tutaj, aby wyłączyć określone źródło, jeśli zostaniesz polecony, wyłączenie źródeł bez wiedzy w tle może spowodować uszkodzenie dźwięku.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
@@ -2195,19 +2195,19 @@ msgstr "Włącz lub wyłącz bezpośrednie użycie adresu URL HTTP.\n\n"
|
||||
" To źródło jest używane do umożliwienia odtwarzania z bezpośrednich strumieni HTTP (nie ma to wpływu na bezpośrednie odtwarzanie URL dla innych źródeł).\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z bezpośrednich adresów URL.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł nie będzie już odtwarzany z bezpośrednich adresów URL.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
@@ -2216,19 +2216,19 @@ msgstr "Przełącz lub wyłącz źródło Bandcamp.\n\n"
|
||||
" To przełączanie kontroluje odtwarzanie wszystkich treści związanych z Bandcamp.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z Bandcamp.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł nie będzie już grał z Bandcamp.\n\n"
|
||||
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
@@ -2237,19 +2237,19 @@ msgstr "Przełącz lub wyłącz lokalne użycie plików.\n\n"
|
||||
" To przełącz kontroluje odtwarzanie całej lokalnej zawartości ścieżki, zazwyczaj znajdującej się w folderze `localtracks`.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z plików lokalnych.\n\n"
|
||||
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł nie będzie już odtwarzany z plików lokalnych.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
@@ -2258,19 +2258,19 @@ msgstr "Włącz lub wyłącz źródło Soundcloud.\n\n"
|
||||
" To przełączanie kontroluje odtwarzanie wszystkich treści związanych z SoundCloud.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z Soundcloud.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł nie będzie już odtwarzany z Soundcloud.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
@@ -2279,19 +2279,19 @@ msgstr "`Niebezpieczne polecenie` Włącza lub wyłącz źródło YouTube (w tym
|
||||
" Przełącznik ten kontroluje odtwarzanie wszystkich treści związanych z YouTube i Spotify.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z YouTube.\n\n"
|
||||
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł nie będzie już odtwarzany z YouTube.\n\n"
|
||||
"Uruchom `{p}{cmd}`, aby stał się skuteczny."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
@@ -2300,19 +2300,19 @@ msgstr "Włącz lub wyłącz źródło Twitcha.\n\n"
|
||||
" Przełącznik ten kontroluje odtwarzanie wszystkich treści związanych z Twitchem.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z Twitcha.\n\n"
|
||||
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł nie będzie już odtwarzany z Twitcha.\n\n"
|
||||
"Uruchom `{p}{cmd}`, aby stał się skuteczny."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
@@ -2321,19 +2321,19 @@ msgstr "Włącz lub wyłącz źródło Vimeo.\n\n"
|
||||
" To przełączanie kontroluje odtwarzanie wszystkich treści związanych z Vimeo.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z Vimeo.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł nie będzie już grał z Vimeo.\n\n"
|
||||
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
@@ -2342,18 +2342,18 @@ msgstr "`Niebezpieczna komenda` Ustaw rozmiar framebuffera zarządzanego węzła
|
||||
" Zmieniaj to tylko wtedy, gdy zostało Ci to bezpośrednio zalecone, zmiana może spowodować znaczące problemy z odtwarzaniem.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr "Najniższa wartość, jaką bufor ramki można ustawić na 100ms."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Wielkość node heap-size ustawiona na {milliseconds}.\n\n"
|
||||
"Uruchom `{p}{cmd}`, aby to zadziałało."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
@@ -2362,11 +2362,11 @@ msgstr "`Niebezpieczna komenda` Ustawienie rozmiaru bufora zarządzanego węzła
|
||||
" Zmieniaj to tylko wtedy, gdy zostało Ci to bezpośrednio zalecone, zmiana może spowodować znaczące problemy z odtwarzaniem.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr "Najniższa wartość bufora może wynosić 100 ms."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr "Zresetuj wszystkie `llset` z powrotem do ich wartości domyślnych."
|
||||
@@ -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"
|
||||
|
||||
|
||||
469
redbot/cogs/audio/core/commands/locales/pt-BR.po
generated
469
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-07-10 14:13+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"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Configuração alterada"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1151,13 +1174,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Reinicia a conexão lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1917,7 +1940,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1976,14 +1999,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -2003,93 +2026,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2097,12 +2120,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2110,170 +2133,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
@@ -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 ""
|
||||
|
||||
|
||||
506
redbot/cogs/audio/core/commands/locales/pt-PT.po
generated
506
redbot/cogs/audio/core/commands/locales/pt-PT.po
generated
File diff suppressed because it is too large
Load Diff
721
redbot/cogs/audio/core/commands/locales/ru-RU.po
generated
721
redbot/cogs/audio/core/commands/locales/ru-RU.po
generated
File diff suppressed because it is too large
Load Diff
446
redbot/cogs/audio/core/commands/locales/sk-SK.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Slovak\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -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 ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
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 ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 ""
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/sl-SI.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Slovenian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
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 ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 ""
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/sv-SE.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Swedish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -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 ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
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 ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 ""
|
||||
|
||||
|
||||
448
redbot/cogs/audio/core/commands/locales/tr-TR.po
generated
448
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Turkish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Ayar Değiştirildi"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1151,13 +1151,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Lavalink bağlantısını yeniden başlatır."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr "Lavalink kapatılamadı"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Lütfen Audio'yu yeniden başlatın (`{prefix}reload audio`)."
|
||||
|
||||
@@ -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."
|
||||
|
||||
@@ -1927,7 +1927,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1986,15 +1986,15 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr "Ayarlar Değiştirilmedi"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgstr "Port numarası 0 ve 65535 arasında olmalıdır "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
||||
@@ -2013,93 +2013,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "Lavalink bağlantı ayarlarını göster."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "Bağlantı Ayarları"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "Sunucu: [{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "Şifre: [{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr "Lavalink Ayarları"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "Sana bu bilgiyi gönderebilmek için özel mesaj atabilmem gerek."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2107,12 +2107,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2120,170 +2120,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
@@ -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"
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/uk-UA.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -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 ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
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 ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 ""
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/vi-VN.po
generated
446
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-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-12-24 14:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -343,25 +343,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Thiết lập đã được thay đổi"
|
||||
|
||||
@@ -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 ""
|
||||
|
||||
@@ -1094,13 +1094,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
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 ""
|
||||
|
||||
@@ -1855,7 +1855,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1914,14 +1914,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1941,93 +1941,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2035,12 +2035,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2048,170 +2048,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 ""
|
||||
|
||||
|
||||
446
redbot/cogs/audio/core/commands/locales/zh-CN.po
generated
446
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-07-10 14:13+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"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "设置已更改"
|
||||
|
||||
@@ -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 "无效的环境"
|
||||
|
||||
@@ -1131,13 +1131,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "请重新加载音频 (\"{prefix}重新加载音频)。"
|
||||
|
||||
@@ -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 ""
|
||||
|
||||
@@ -1894,7 +1894,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1953,14 +1953,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1980,93 +1980,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2074,12 +2074,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2087,170 +2087,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
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 ""
|
||||
|
||||
|
||||
453
redbot/cogs/audio/core/commands/locales/zh-TW.po
generated
453
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-07-10 14:13+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"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "已變更設定"
|
||||
|
||||
@@ -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 "無效的環境。"
|
||||
|
||||
@@ -1181,13 +1181,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "重啟Lavalink連接。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr "關閉 Lavalink 節點失敗!"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "請重新加載Audio (`{prefix}reload audio`)。"
|
||||
|
||||
@@ -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 "無法將歌曲移動至佇列頂部。"
|
||||
|
||||
@@ -1966,8 +1966,8 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr "記憶體大小必須至少為 64M,但建議至少設置為 1G。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr "記憶體大小必須小於您的系統 RAM,您當前有 {ram_in_bytes} 可用 。"
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
msgid "Heap-size must be less than {limit} due to your system limitations."
|
||||
@@ -2032,15 +2032,15 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr "設置未更變"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgstr "端口必須介於 0 和 65535 之間 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
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."
|
||||
@@ -2062,70 +2062,69 @@ msgstr "非託管 Lavalink 節點現在將使用安全的 {secured_protocol} 協
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "非託管 Lavalink 節點將不再使用安全的 {secured_protocol} 協議連接,而是使用 {unsecured_protocol} 代替。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "顯示 Lavalink 連接設置。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "連接設置"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "主機:[{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr "端口: [{port}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr "默認 HTTP/HTTPS port"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "密碼:[{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr "安全:[{state}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr "Lavalink 節點設定"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr "初始記憶體大小:[{xms}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr "最大記憶體大小:[{xmx}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr "Java 執行程序:[{java_exc_path}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "我需要能夠通過 DM 向您發送此信息。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr "上傳託管 Lavalink 節點使用的 application.yml 文件的副本。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
@@ -2134,12 +2133,12 @@ msgstr "配置託管 Lavalink 節點運行時選項。\n\n"
|
||||
" 如果隨意更改此類別下的所有設置,可能會導致Audio出現故障,只有在官方人員建議您更改此處的設置時更改。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr "配置受管理節點授權和連接設置。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
@@ -2148,13 +2147,13 @@ msgstr "`Dangerous command` 設置託管 Lavalink 節點的綁定 IP 地址。\n
|
||||
" 默認情況下此數值是 localhost ,默認情況下會將服務器限制為僅本地主機應用程序,如果您不知道如何設置,隨意更改此值可能會破壞原託管的 Lavalink 節點。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點現在將接受 {host} 上的連接。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2165,13 +2164,13 @@ msgstr "設置託管 Lavalink 節點的連接密碼。\n\n"
|
||||
" 默認數值為“youshallnotpass”。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點現在將接受 {password} 作為授權令牌。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2182,17 +2181,17 @@ msgstr "`Dangerous command` 設置託管 Lavalink 節點的連接端口。\n\n"
|
||||
" 默認數值為“2333”。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr "端口必須介於 1024 和 49151 之間。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點現在將接受 {port} 上的連接。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
@@ -2201,7 +2200,7 @@ msgstr "`Dangerous command` 打開/關閉音頻來源。\n\n"
|
||||
" 默認情況下,所有源都已啟用,您應該只在被開發人員建議的情況下使用此處的命令來禁用特定源,在沒有相關知識的情況下禁用源可能會導致Audio中斷損壞。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
@@ -2210,19 +2209,19 @@ msgstr "打開或關閉 HTTP 直接 URL 使用。\n\n"
|
||||
" 此用於允許從直接 HTTP 直播播放(這不影響其他源的直接 URL 播放)。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將允許直接從 URL 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將不再直接從 URL 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
@@ -2231,19 +2230,19 @@ msgstr "打開或關閉 Bandcamp 來源。\n\n"
|
||||
" 此切換控制開關所有 Bandcamp 相關來源內容的播放。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將允許從 Bandcamp 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將不再從 Bandcamp 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
@@ -2252,19 +2251,19 @@ msgstr "啟用或關閉本地文件使用。\n\n"
|
||||
" 此切換控制所有本地軌道內容的播放,通常位於“localtracks”文件夾中。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將允許從本地文件播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將不再從本地文件播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
@@ -2273,19 +2272,19 @@ msgstr "啟用或關閉 Soundcloud 來源。\n\n"
|
||||
" 此切換控制所有 SoundCloud 相關內容的播放。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將允許從 Soundcloud 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將不再從 Soundcloud 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
@@ -2294,19 +2293,19 @@ msgstr "`Dangerous command` 打開或關閉 YouTube 來源(包括 Spotify)。\n\
|
||||
" 此切換控制所有 YouTube 和 Spotify 相關內容的播放。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將允許從 YouTube 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將不再從 YouTube 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
@@ -2315,19 +2314,19 @@ msgstr "打開或關閉 Twitch 來源。\n\n"
|
||||
" 此切換控制所有 Twitch 相關內容的播放。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將允許從 Twitch 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將不再從 Twitch 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
@@ -2336,19 +2335,19 @@ msgstr "打開或關閉 Vimeo 來源。\n\n"
|
||||
" 此切換控制所有 Vimeo 相關內容的播放。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將允許從 Vimeo 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將不再從 Vimeo 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
@@ -2357,18 +2356,18 @@ msgstr "`Dangerous command` 設置託管 Lavalink 節點幀緩衝區大小。\n\
|
||||
" 僅在我們直接建議您更改此設置時更改它,隨意更改它可能會導致嚴重的播放問題。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr "幀緩衝區可以設置的最低值為 100 毫秒。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "受管節點的 bufferDurationMs 設置為 {milliseconds}。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
@@ -2377,11 +2376,11 @@ msgstr "`Dangerous command` 設置託管 Lavalink 節點 JDA-NAS 緩衝區大小
|
||||
" 僅在我們直接建議您更改此設置時更改它,隨意更改它可能會導致嚴重的播放問題。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr "幀緩衝區可以設置的最低值為 100 毫秒。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr "將所有 `llset` 更改重置為默認值。"
|
||||
@@ -2515,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"
|
||||
@@ -2711,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."
|
||||
|
||||
|
||||
20
redbot/cogs/audio/core/events/locales/pt-PT.po
generated
20
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."
|
||||
|
||||
@@ -57,7 +57,7 @@ msgstr "Voz prioritária"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:43
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
msgstr "Vídeo"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:44
|
||||
msgid "Read Text Channels & See Voice Channels"
|
||||
@@ -69,7 +69,7 @@ msgstr "Enviar mensagens"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:46
|
||||
msgid "Send Text-to-speech Messages"
|
||||
msgstr ""
|
||||
msgstr "Envia mensagens de conversão de texto em voz"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:47
|
||||
msgid "Manage Messages"
|
||||
@@ -177,15 +177,15 @@ msgstr "Enviar Mensagens em Tópicos"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:73
|
||||
msgid "Use Activities"
|
||||
msgstr ""
|
||||
msgstr "Usar Atividades"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:74
|
||||
msgid "Time out members"
|
||||
msgstr ""
|
||||
msgstr "Castigar membros"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:75
|
||||
msgid "View Creator Monetization Analytics"
|
||||
msgstr ""
|
||||
msgstr "Visualizar a Análise da Monetização do Criador"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:76
|
||||
msgid "Use Soundboard"
|
||||
@@ -197,7 +197,7 @@ msgstr "Criar expressões"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:78
|
||||
msgid "Create Events"
|
||||
msgstr ""
|
||||
msgstr "Criar Eventos"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:79
|
||||
msgid "Use External Sounds"
|
||||
@@ -209,11 +209,11 @@ msgstr "Enviar Mensagens de Voz"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:81
|
||||
msgid "Create Polls"
|
||||
msgstr ""
|
||||
msgstr "Criar Votações"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:82
|
||||
msgid "Use External Apps"
|
||||
msgstr ""
|
||||
msgstr "Usar Aplicações Externas"
|
||||
|
||||
#: 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."
|
||||
|
||||
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-07-10 12:45+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-07-10 12:45+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-07-10 12:45+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-07-10 12:45+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-07-10 12:45+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-07-10 12:45+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-07-10 12:45+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-07-10 12:45+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-07-10 12:45+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-07-10 12:45+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-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-10-20 20:20+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user