mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-12-06 09:22:31 -05:00
Compare commits
31 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
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":
|
"Category: Core - API - App Commands Package":
|
||||||
# Source
|
# Source
|
||||||
- redbot/core/app_commands/*
|
- redbot/core/app_commands/*
|
||||||
|
# Docs
|
||||||
|
- docs/framework_app_commands.rst
|
||||||
# Tests
|
# Tests
|
||||||
- tests/core/test_app_commands.py
|
- tests/core/test_app_commands.py
|
||||||
"Category: Core - API - Commands Package":
|
"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
|
- uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.8"
|
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
|
name: Install Flake8
|
||||||
- run: "python -m flake8 . --count --select=E9,F7,F82 --show-source"
|
- run: "python -m flake8 . --count --select=E9,F7,F82 --show-source"
|
||||||
name: Flake8 Linting
|
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
|
name: build-output
|
||||||
path: ./dist
|
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 dist
|
||||||
|
python .github/workflows/scripts/get_default_ll_server_config.py "dist/$APP_YML_FILE"
|
||||||
|
|
||||||
|
- name: Upload default application.yml
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: ll-default-server-config
|
||||||
|
path: ./dist
|
||||||
|
|
||||||
release_to_pypi:
|
release_to_pypi:
|
||||||
needs:
|
needs:
|
||||||
- release_information
|
- release_information
|
||||||
- build
|
- build
|
||||||
|
- generate_default_ll_server_config
|
||||||
environment: Release
|
environment: Release
|
||||||
name: Release to PyPI
|
name: Release to PyPI
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
|
contents: write
|
||||||
id-token: write
|
id-token: write
|
||||||
steps:
|
steps:
|
||||||
- name: Download packaged distributions
|
- name: Download packaged distributions
|
||||||
@@ -96,6 +125,18 @@ jobs:
|
|||||||
name: build-output
|
name: build-output
|
||||||
path: dist/
|
path: dist/
|
||||||
|
|
||||||
|
- name: Download default application.yml
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: ll-default-server-config
|
||||||
|
path: dist/
|
||||||
|
|
||||||
|
- name: Upload dists to GitHub Release
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: "${{ github.token }}"
|
||||||
|
run: |
|
||||||
|
gh release upload "$GITHUB_REF_NAME" dist/* --repo "$GITHUB_REPOSITORY"
|
||||||
|
|
||||||
- name: Publish package distributions to PyPI
|
- name: Publish package distributions to PyPI
|
||||||
uses: pypa/gh-action-pypi-publish@release/v1
|
uses: pypa/gh-action-pypi-publish@release/v1
|
||||||
with:
|
with:
|
||||||
|
|||||||
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())
|
||||||
114
CHANGES.rst
114
CHANGES.rst
@@ -1,5 +1,115 @@
|
|||||||
.. Red changelogs
|
.. Red changelogs
|
||||||
|
|
||||||
|
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)
|
Redbot 3.5.10 (2024-07-10)
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
@@ -53,8 +163,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`)
|
- **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`)
|
- **Cogs - Audio** - Fixed one of the recent YT playback issues (:issue:`6373`)
|
||||||
|
|
||||||
Developer changes
|
Developer changelog
|
||||||
-----------------
|
-------------------
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
*******
|
*******
|
||||||
|
|||||||
@@ -57,6 +57,8 @@ Paste the following and replace the following:
|
|||||||
<string>username</string>
|
<string>username</string>
|
||||||
<key>InitGroups</key>
|
<key>InitGroups</key>
|
||||||
<true/>
|
<true/>
|
||||||
|
<key>ProcessType</key>
|
||||||
|
<string>Interactive</string>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|
||||||
|
|||||||
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.DMContext
|
||||||
|
|
||||||
|
.. autoclass:: redbot.core.commands.UserFeedbackCheckFailure
|
||||||
|
:members:
|
||||||
|
|
||||||
.. automodule:: redbot.core.commands.requires
|
.. automodule:: redbot.core.commands.requires
|
||||||
:members: PrivilegeLevel, PermState, Requires
|
:members: PrivilegeLevel, PermState, Requires
|
||||||
|
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ Open a terminal or command prompt and type one of the following
|
|||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
To install the development version, replace ``Red-DiscordBot`` in the above commands with the
|
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
|
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
|
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
|
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
|
.. 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`)
|
(Windows users may need to use :code:`py -3.8` or :code:`python` instead of :code:`python3.8`)
|
||||||
|
|||||||
@@ -71,6 +71,7 @@ Welcome to Red - Discord Bot's documentation!
|
|||||||
framework_bot
|
framework_bot
|
||||||
framework_checks
|
framework_checks
|
||||||
framework_commands
|
framework_commands
|
||||||
|
framework_app_commands
|
||||||
framework_config
|
framework_config
|
||||||
framework_datamanager
|
framework_datamanager
|
||||||
framework_events
|
framework_events
|
||||||
|
|||||||
@@ -339,7 +339,7 @@ def _early_init():
|
|||||||
|
|
||||||
|
|
||||||
# This is bumped automatically by release workflow (`.github/workflows/scripts/bump_version.py`)
|
# This is bumped automatically by release workflow (`.github/workflows/scripts/bump_version.py`)
|
||||||
_VERSION = "3.5.10"
|
_VERSION = "3.5.13"
|
||||||
|
|
||||||
__version__, version_info = VersionInfo._get_version()
|
__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
|
#: redbot/cogs/admin/admin.py:275
|
||||||
msgid "{author} ({author.id}) changed the colour of role '{role.name}'"
|
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
|
#: redbot/cogs/admin/admin.py:294 redbot/cogs/admin/admin.py:327
|
||||||
msgid "Done."
|
msgid "Done."
|
||||||
@@ -150,7 +150,7 @@ msgstr "\n"
|
|||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:308
|
#: redbot/cogs/admin/admin.py:308
|
||||||
msgid "{author} ({author.id}) changed the name of role '{old_name}' to '{name}'"
|
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
|
#: redbot/cogs/admin/admin.py:332
|
||||||
#, docstring
|
#, docstring
|
||||||
@@ -362,5 +362,5 @@ msgstr "Role \"{role_name}\" bukan selfrole yang tepat."
|
|||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:36
|
#: 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."
|
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"
|
" When run, aliases will accept any additional arguments\n"
|
||||||
" and append them to the stored alias.\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
|
#: redbot/cogs/alias/alias.py:190
|
||||||
msgid "Aliases:\n"
|
msgid "Aliases:\n"
|
||||||
@@ -95,28 +101,28 @@ msgstr "Alias global baru dengan pemicu `{name}` telah dibuat."
|
|||||||
#: redbot/cogs/alias/alias.py:332
|
#: redbot/cogs/alias/alias.py:332
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Edit an existing alias in this server."
|
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
|
#: redbot/cogs/alias/alias.py:337 redbot/cogs/alias/alias.py:372
|
||||||
msgid "The alias with the name {name} does not exist."
|
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
|
#: 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."
|
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
|
#: redbot/cogs/alias/alias.py:352 redbot/cogs/alias/alias.py:385
|
||||||
msgid "The alias with the trigger `{name}` has been edited successfully."
|
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
|
#: redbot/cogs/alias/alias.py:359 redbot/cogs/alias/alias.py:392
|
||||||
msgid "Alias with the name `{name}` was not found."
|
msgid "Alias with the name `{name}` was not found."
|
||||||
msgstr ""
|
msgstr "Alias dengan nama `{name}` tidak ditemukan."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:367
|
#: redbot/cogs/alias/alias.py:367
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Edit an existing global alias."
|
msgid "Edit an existing global alias."
|
||||||
msgstr ""
|
msgstr "Edit sebuah alias global yang ada."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:399
|
#: redbot/cogs/alias/alias.py:399
|
||||||
#, docstring
|
#, docstring
|
||||||
|
|||||||
@@ -124,7 +124,7 @@ class LavalinkSetupCommands(MixinMeta, metaclass=CompositeMetaClass):
|
|||||||
if meta[1]:
|
if meta[1]:
|
||||||
await ctx.send(
|
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."
|
"You currently have {ram_in_bytes} of RAM available."
|
||||||
).format(ram_in_bytes=inline(sizeof_fmt(meta[0])))
|
).format(ram_in_bytes=inline(sizeof_fmt(meta[0])))
|
||||||
)
|
)
|
||||||
@@ -250,7 +250,7 @@ class LavalinkSetupCommands(MixinMeta, metaclass=CompositeMetaClass):
|
|||||||
return await self.send_embed_msg(
|
return await self.send_embed_msg(
|
||||||
ctx,
|
ctx,
|
||||||
title=_("Setting Not Changed"),
|
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.config.ws_port.set(port)
|
||||||
await self.send_embed_msg(
|
await self.send_embed_msg(
|
||||||
@@ -295,11 +295,14 @@ class LavalinkSetupCommands(MixinMeta, metaclass=CompositeMetaClass):
|
|||||||
title=_("Setting Changed"),
|
title=_("Setting Changed"),
|
||||||
description=_(
|
description=_(
|
||||||
"Unmanaged Lavalink node will no longer connect using the secured "
|
"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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
).format(p=ctx.prefix, cmd=self.command_audioset_restart.qualified_name),
|
).format(
|
||||||
|
p=ctx.prefix,
|
||||||
|
cmd=self.command_audioset_restart.qualified_name,
|
||||||
unsecured_protocol=inline("ws://"),
|
unsecured_protocol=inline("ws://"),
|
||||||
secured_protocol=inline("wss://"),
|
secured_protocol=inline("wss://"),
|
||||||
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
@command_llset.command(name="info", aliases=["settings"])
|
@command_llset.command(name="info", aliases=["settings"])
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/ar-SA.po
generated
166
redbot/cogs/audio/core/commands/locales/ar-SA.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Arabic\n"
|
"Language-Team: Arabic\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "تم تغيير الإعدادات"
|
msgstr "تم تغيير الإعدادات"
|
||||||
|
|
||||||
@@ -1098,13 +1098,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1864,7 +1864,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1923,14 +1923,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/bg-BG.po
generated
166
redbot/cogs/audio/core/commands/locales/bg-BG.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Bulgarian\n"
|
"Language-Team: Bulgarian\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/cs-CZ.po
generated
166
redbot/cogs/audio/core/commands/locales/cs-CZ.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Czech\n"
|
"Language-Team: Czech\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1090,13 +1090,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1850,7 +1850,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1909,14 +1909,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/da-DK.po
generated
166
redbot/cogs/audio/core/commands/locales/da-DK.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Danish\n"
|
"Language-Team: Danish\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
168
redbot/cogs/audio/core/commands/locales/de-DE.po
generated
168
redbot/cogs/audio/core/commands/locales/de-DE.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: German\n"
|
"Language-Team: German\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "Einstellung geändert"
|
msgstr "Einstellung geändert"
|
||||||
|
|
||||||
@@ -1149,13 +1149,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr "Startet die lavalink-Verbindung neu."
|
msgstr "Startet die lavalink-Verbindung neu."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr "Fehler beim Herunterfahren von Lavalink"
|
msgstr "Fehler beim Herunterfahren von Lavalink"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr "Bitte laden Sie Audio neu (`{prefix}reload audio`)."
|
msgstr "Bitte laden Sie Audio neu (`{prefix}reload audio`)."
|
||||||
|
|
||||||
@@ -1917,7 +1917,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1976,15 +1976,15 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr "Einstellung nicht geändert"
|
msgstr "Einstellung nicht geändert"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 "Der Port muss zwischen 0 und 65535 liegen "
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr "Lavalink Verbindungseinstellungen anzeigen."
|
msgstr "Lavalink Verbindungseinstellungen anzeigen."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr "Verbindungseinstellungen"
|
msgstr "Verbindungseinstellungen"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr "Host: [{host}]\n"
|
msgstr "Host: [{host}]\n"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr "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"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr "Passwort: [{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"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr "Gesichert: [{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"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr "Einstellungen für Lavalink Knoten"
|
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"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr "Ursprüngliche 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"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr "Maximale 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"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr "Pfad zur ausführbaren Java-Datei: [{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:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
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."
|
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
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr "Der Port muss zwischen 1025 und 65535 liegen."
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Der verwaltete Knoten erlaubt die Wiedergabe von lokalen Dateien.\n\n"
|
msgstr "Der verwaltete Knoten erlaubt die Wiedergabe von lokalen Dateien.\n\n"
|
||||||
"Führen Sie `{p}{cmd}` aus, damit es wirksam wird."
|
"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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Der verwaltete Knoten wird nicht mehr aus lokalen Dateien wiedergeben.\n\n"
|
msgstr "Der verwaltete Knoten wird nicht mehr aus lokalen Dateien wiedergeben.\n\n"
|
||||||
"Führe `{p}{cmd}` aus, damit er wirksam wird."
|
"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
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Der verwaltete Knoten erlaubt die Wiedergabe von SoundCloud.\n\n"
|
msgstr "Der verwaltete Knoten erlaubt die Wiedergabe von SoundCloud.\n\n"
|
||||||
"Führen Sie `{p}{cmd}` aus, damit es wirksam wird."
|
"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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Der verwaltete Knoten wird nicht mehr von SoundCloud wiedergeben.\n\n"
|
msgstr "Der verwaltete Knoten wird nicht mehr von SoundCloud wiedergeben.\n\n"
|
||||||
"Führe `{p}{cmd}` aus, damit er wirksam wird."
|
"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
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" 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"
|
" 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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Der verwaltete Knoten erlaubt die Wiedergabe von YouTube.\n\n"
|
msgstr "Der verwaltete Knoten erlaubt die Wiedergabe von YouTube.\n\n"
|
||||||
"Führen Sie `{p}{cmd}` aus, damit es wirksam wird."
|
"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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Der verwaltete Knoten wird nicht mehr von YouTube wiedergeben.\n\n"
|
msgstr "Der verwaltete Knoten wird nicht mehr von YouTube wiedergeben.\n\n"
|
||||||
"Führen Sie `{p}{cmd}` aus, damit es wirksam wird."
|
"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
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
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."
|
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:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "PufferDurationMs des verwalteten Knotens auf {milliseconds} gesetzt.\n\n"
|
msgstr "PufferDurationMs des verwalteten Knotens auf {milliseconds} gesetzt.\n\n"
|
||||||
"Führen Sie `{p}{cmd}` aus, damit es wirksam wird."
|
"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
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr "Der kleinste Wert, den der Puffer haben kann, ist 100 ms."
|
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
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr "Setzt alle `llset`-Änderungen auf ihre Standardwerte zurück."
|
msgstr "Setzt alle `llset`-Änderungen auf ihre Standardwerte zurück."
|
||||||
|
|||||||
173
redbot/cogs/audio/core/commands/locales/es-ES.po
generated
173
redbot/cogs/audio/core/commands/locales/es-ES.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Spanish\n"
|
"Language-Team: Spanish\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "Configuración cambiada"
|
msgstr "Configuración cambiada"
|
||||||
|
|
||||||
@@ -1181,13 +1181,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr "Reinicia la conexión de lavalink."
|
msgstr "Reinicia la conexión de lavalink."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr "Error al apagar el nodo Lavalink"
|
msgstr "Error al apagar el nodo Lavalink"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr "Por favor, recarga Audio (`{prefix}recargar audio`)."
|
msgstr "Por favor, recarga Audio (`{prefix}recargar audio`)."
|
||||||
|
|
||||||
@@ -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."
|
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
|
#: 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 "El heap-size debe ser menor que la memoria RAM de tu sistema. Actualmente tienes {ram_in_bytes} de RAM disponible."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
msgid "Heap-size must be less than {limit} due to your system limitations."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr "Configuración no cambiada"
|
msgstr "Configuración no cambiada"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 "Un puerto debe estar entre 0 y 65535 "
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
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."
|
"Ejecute `{p}{cmd}` para que tenga efecto."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"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"
|
msgstr ""
|
||||||
"Ejecutar `{p}{cmd}` para que surta efecto."
|
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr "Mostrar configuración de conexión Lavalink."
|
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"
|
msgid "Connection Settings"
|
||||||
msgstr "Configuración de conexión"
|
msgstr "Configuración de conexión"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr "Host: [{host}]\n"
|
msgstr "Host: [{host}]\n"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr "Puerto: [{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"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr "Puerto HTTP/HTTPS por defecto"
|
msgstr "Puerto HTTP/HTTPS por defecto"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr "Contraseña: [{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"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr "Seguro: [{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"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr "Configuración del nodo Lavalink"
|
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"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr "Heapsize Inicial: [{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"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr "Heapsize máximo: [{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"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr "Ruta del ejecutable de Java: [{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:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
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."
|
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
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
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."
|
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
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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"
|
" 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
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr "Configura la autorización de nodo administrado y la configuración de conexión."
|
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
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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"
|
" 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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado ahora aceptará la conexión en {host}.\n\n"
|
msgstr "El nodo administrado ahora aceptará la conexión en {host}.\n\n"
|
||||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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"
|
" 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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado ahora aceptará {password} como el token de autorización.\n\n"
|
msgstr "El nodo administrado ahora aceptará {password} como el token de autorización.\n\n"
|
||||||
"Ejecute `{p}{cmd}` para que tenga efecto."
|
"Ejecute `{p}{cmd}` para que tenga efecto."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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"
|
" 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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr "El puerto debe ser entre 1024 y 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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado ahora aceptará conexiones en el puerto {port}.\n\n"
|
msgstr "El nodo administrado ahora aceptará conexiones en el puerto {port}.\n\n"
|
||||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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"
|
" 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
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" 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"
|
" 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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado permitirá la reproducción desde las URL directas.\n\n"
|
msgstr "El nodo administrado permitirá la reproducción desde las URL directas.\n\n"
|
||||||
"Ejecuta `{p}{cmd}` para que tenga efecto."
|
"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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado ya no reproducirá desde las URLs directas.\n\n"
|
msgstr "El nodo administrado ya no reproducirá desde las URLs directas.\n\n"
|
||||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\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"
|
" 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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado permitirá la reproducción desde Bandcamp.\n\n"
|
msgstr "El nodo administrado permitirá la reproducción desde Bandcamp.\n\n"
|
||||||
"Ejecuta `{p}{cmd}` para que tenga efecto."
|
"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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado ya no reproducirá desde Bandcamp.\n\n"
|
msgstr "El nodo administrado ya no reproducirá desde Bandcamp.\n\n"
|
||||||
"Ejecuta `{p}{cmd}` para que surta efecto."
|
"Ejecuta `{p}{cmd}` para que surta efecto."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" 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"
|
" 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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado permitirá la reproducción desde archivos locales.\n\n"
|
msgstr "El nodo administrado permitirá la reproducción desde archivos locales.\n\n"
|
||||||
"Ejecutar `{p}{cmd}` para que surta efecto."
|
"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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado ya no se reproducirá desde archivos locales.\n\n"
|
msgstr "El nodo administrado ya no se reproducirá desde archivos locales.\n\n"
|
||||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\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"
|
" 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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado permitirá la reproducción desde Url directas.\n\n"
|
msgstr "El nodo administrado permitirá la reproducción desde Url directas.\n\n"
|
||||||
"Ejecuta `{p}{cmd}` para que tenga efecto."
|
"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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado ya no reproducirá desde Soundcloud.\n\n"
|
msgstr "El nodo administrado ya no reproducirá desde Soundcloud.\n\n"
|
||||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" 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"
|
" 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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado permitirá la reproducción desde YouTube.\n\n"
|
msgstr "El nodo administrado permitirá la reproducción desde YouTube.\n\n"
|
||||||
"Ejecuta `{p}{cmd}` para que tenga efecto."
|
"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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado ya no reproducirá desde YouTube.\n\n"
|
msgstr "El nodo administrado ya no reproducirá desde YouTube.\n\n"
|
||||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\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"
|
" 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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado permitirá la reproducción desde Twitch.\n\n"
|
msgstr "El nodo administrado permitirá la reproducción desde Twitch.\n\n"
|
||||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
"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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado ya no reproducirá desde Twitch.\n\n"
|
msgstr "El nodo administrado ya no reproducirá desde Twitch.\n\n"
|
||||||
"Ejecuta `{p}{cmd}` para que surta efecto."
|
"Ejecuta `{p}{cmd}` para que surta efecto."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\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"
|
" 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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado permitirá la reproducción desde Vimeo.\n\n"
|
msgstr "El nodo administrado permitirá la reproducción desde Vimeo.\n\n"
|
||||||
"Ejecuta `{p}{cmd}` para que tenga efecto."
|
"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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "El nodo administrado ya no reproducirá desde Vimeo.\n\n"
|
msgstr "El nodo administrado ya no reproducirá desde Vimeo.\n\n"
|
||||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" 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"
|
" 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."
|
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."
|
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:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Se han cambiado el bufferDurationMs de los nodos administrados a {milliseconds}.\n\n"
|
msgstr "Se han cambiado el bufferDurationMs de los nodos administrados a {milliseconds}.\n\n"
|
||||||
"Ejecute `{p}{cmd}` para que tenga efecto."
|
"Ejecute `{p}{cmd}` para que tenga efecto."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" 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"
|
" 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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr "El valor más bajo que puede tener el buffer es de 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
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr "Restablece todos los cambios de `llset` a sus valores predeterminados."
|
msgstr "Restablece todos los cambios de `llset` a sus valores predeterminados."
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/fi-FI.po
generated
166
redbot/cogs/audio/core/commands/locales/fi-FI.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Finnish\n"
|
"Language-Team: Finnish\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "Asetus muutettu"
|
msgstr "Asetus muutettu"
|
||||||
|
|
||||||
@@ -1129,13 +1129,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr "Käynnistää Lavalink-yhteyden uudelleen."
|
msgstr "Käynnistää Lavalink-yhteyden uudelleen."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr "Lataathan Audion uudelleen (`{prefix}reload audio`)."
|
msgstr "Lataathan Audion uudelleen (`{prefix}reload audio`)."
|
||||||
|
|
||||||
@@ -1898,7 +1898,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1957,14 +1957,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr "Näytä Lavalink-yhteysasetukset."
|
msgstr "Näytä Lavalink-yhteysasetukset."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr "Yhteysasetukset"
|
msgstr "Yhteysasetukset"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr "Osoite: [{host}]\n"
|
msgstr "Osoite: [{host}]\n"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr "Salasana: [{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"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
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."
|
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
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/fr-FR.po
generated
166
redbot/cogs/audio/core/commands/locales/fr-FR.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: French\n"
|
"Language-Team: French\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "Paramètre modifié"
|
msgstr "Paramètre modifié"
|
||||||
|
|
||||||
@@ -1177,13 +1177,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr "Redémarrage de la connection à Lavalink."
|
msgstr "Redémarrage de la connection à Lavalink."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr "Veuillez recharger l'Audio (`{prefix}reload audio`)."
|
msgstr "Veuillez recharger l'Audio (`{prefix}reload audio`)."
|
||||||
|
|
||||||
@@ -1951,7 +1951,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -2010,14 +2010,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr "Affiche les paramètres de connexion de Lavalink."
|
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"
|
msgid "Connection Settings"
|
||||||
msgstr "Paramètres de connexion"
|
msgstr "Paramètres de connexion"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr "Hôte : [{host}]\n"
|
msgstr "Hôte : [{host}]\n"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr "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"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr "Port HTTP/HTTPS par défaut"
|
msgstr "Port HTTP/HTTPS par défaut"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr "Mot de passe : [{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"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr "Sécurisé : [{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"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr "Paramètres du noeud Lavalink"
|
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"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
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."
|
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
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
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é."
|
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
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr "Le port doit être compris entre 1024 et 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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" 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"
|
" 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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\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"
|
" 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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" 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"
|
" 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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\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"
|
" 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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" 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"
|
" 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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\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"
|
" 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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\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"
|
" 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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/hi-IN.po
generated
166
redbot/cogs/audio/core/commands/locales/hi-IN.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hindi\n"
|
"Language-Team: Hindi\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/hr-HR.po
generated
166
redbot/cogs/audio/core/commands/locales/hr-HR.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Croatian\n"
|
"Language-Team: Croatian\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "Postavka je promijenjena"
|
msgstr "Postavka je promijenjena"
|
||||||
|
|
||||||
@@ -1091,13 +1091,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1852,7 +1852,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1911,14 +1911,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/hu-HU.po
generated
166
redbot/cogs/audio/core/commands/locales/hu-HU.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hungarian\n"
|
"Language-Team: Hungarian\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/id-ID.po
generated
166
redbot/cogs/audio/core/commands/locales/id-ID.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Indonesian\n"
|
"Language-Team: Indonesian\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "Pengaturan Diubah"
|
msgstr "Pengaturan Diubah"
|
||||||
|
|
||||||
@@ -1092,13 +1092,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1852,7 +1852,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1911,14 +1911,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/it-IT.po
generated
166
redbot/cogs/audio/core/commands/locales/it-IT.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Italian\n"
|
"Language-Team: Italian\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "Impostazione modificata"
|
msgstr "Impostazione modificata"
|
||||||
|
|
||||||
@@ -1118,13 +1118,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1878,7 +1878,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1937,14 +1937,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/ja-JP.po
generated
166
redbot/cogs/audio/core/commands/locales/ja-JP.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Japanese\n"
|
"Language-Team: Japanese\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/ko-KR.po
generated
166
redbot/cogs/audio/core/commands/locales/ko-KR.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Korean\n"
|
"Language-Team: Korean\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "설정 변경됨"
|
msgstr "설정 변경됨"
|
||||||
|
|
||||||
@@ -1104,13 +1104,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr "라바링크 연결 재시작"
|
msgstr "라바링크 연결 재시작"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1865,7 +1865,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1924,14 +1924,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/nb-NO.po
generated
166
redbot/cogs/audio/core/commands/locales/nb-NO.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Norwegian Bokmal\n"
|
"Language-Team: Norwegian Bokmal\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "Innstilling endret"
|
msgstr "Innstilling endret"
|
||||||
|
|
||||||
@@ -1181,13 +1181,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr "Gjenoppretter tilkoblingen med lavalink."
|
msgstr "Gjenoppretter tilkoblingen med lavalink."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr "Kunne ikke slå av Lavalink-noden"
|
msgstr "Kunne ikke slå av Lavalink-noden"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr "Last lyd på nytt (`{prefix}reload audio`)."
|
msgstr "Last lyd på nytt (`{prefix}reload audio`)."
|
||||||
|
|
||||||
@@ -1967,7 +1967,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -2026,14 +2026,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr "Vis tilkoblingsinnstillinger for Lavalink."
|
msgstr "Vis tilkoblingsinnstillinger for Lavalink."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr "Tilkoblingsinnstillinger"
|
msgstr "Tilkoblingsinnstillinger"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr "Vert: [{host}]\n"
|
msgstr "Vert: [{host}]\n"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr "Passord: [{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"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
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."
|
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
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/nl-NL.po
generated
166
redbot/cogs/audio/core/commands/locales/nl-NL.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Dutch\n"
|
"Language-Team: Dutch\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "Instellingen aangepast"
|
msgstr "Instellingen aangepast"
|
||||||
|
|
||||||
@@ -1151,13 +1151,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr "Herstart de lavalink verbinding."
|
msgstr "Herstart de lavalink verbinding."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr "Lavalink uitschakelen mislukt"
|
msgstr "Lavalink uitschakelen mislukt"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr "Herlaad audio (`{prefix}herlaad audio`)."
|
msgstr "Herlaad audio (`{prefix}herlaad audio`)."
|
||||||
|
|
||||||
@@ -1922,7 +1922,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1981,14 +1981,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Beheerde node staat het afspelen van lokale bestanden toe.\n\n"
|
msgstr "Beheerde node staat het afspelen van lokale bestanden toe.\n\n"
|
||||||
"Draai `{p}{cmd}` om deze effectief te maken."
|
"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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Beheerde node zal niet meer van lokale bestanden afspelen.\n\n"
|
msgstr "Beheerde node zal niet meer van lokale bestanden afspelen.\n\n"
|
||||||
"Voer `{p}{cmd}` uit om deze effectief te maken."
|
"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
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Beheerde node staat het afspelen vanaf Soundcloud toe.\n\n"
|
msgstr "Beheerde node staat het afspelen vanaf Soundcloud toe.\n\n"
|
||||||
"Voer `{p}{cmd}` uit om deze effectief te maken."
|
"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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Beheerde node zal niet meer vanaf Soundcloud afspelen.\n\n"
|
msgstr "Beheerde node zal niet meer vanaf Soundcloud afspelen.\n\n"
|
||||||
"Voer `{p}{cmd}` uit om deze effectief te maken."
|
"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
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" 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"
|
" 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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Beheerde node staat het afspelen vanaf YouTube toe.\n\n"
|
msgstr "Beheerde node staat het afspelen vanaf YouTube toe.\n\n"
|
||||||
"Draai `{p}{cmd}` om deze effectief te maken."
|
"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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "De beheerde node zal niet meer vanaf YouTube afspelen.\n\n"
|
msgstr "De beheerde node zal niet meer vanaf YouTube afspelen.\n\n"
|
||||||
"Voer `{p}{cmd}` uit om deze effectief te maken."
|
"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
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\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"
|
" 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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
170
redbot/cogs/audio/core/commands/locales/pl-PL.po
generated
170
redbot/cogs/audio/core/commands/locales/pl-PL.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Polish\n"
|
"Language-Team: Polish\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "Ustawienie zmienione"
|
msgstr "Ustawienie zmienione"
|
||||||
|
|
||||||
@@ -1181,13 +1181,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr "Ponownie uruchamia połączenie lavalink."
|
msgstr "Ponownie uruchamia połączenie lavalink."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr "Nie udało się wyłączyć Lavalink'a"
|
msgstr "Nie udało się wyłączyć Lavalink'a"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr "Proszę przeładować Audio (`{prefix}reload audio`)."
|
msgstr "Proszę przeładować Audio (`{prefix}reload audio`)."
|
||||||
|
|
||||||
@@ -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."
|
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
|
#: 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 "Heap-size musi być mniejszy niż twój systemowy RAM, Obecnie masz {ram_in_bytes} dostępnej pamięci RAM."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
msgid "Heap-size must be less than {limit} due to your system limitations."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr "Ustawienie nie zostało zmienione"
|
msgstr "Ustawienie nie zostało zmienione"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 "Port musi być pomiędzy 0 a 65535 "
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr "Wyświetl ustawienia połączenia Lavalink."
|
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"
|
msgid "Connection Settings"
|
||||||
msgstr "Ustawienia połączenia"
|
msgstr "Ustawienia połączenia"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr "Host: [{host}]\n"
|
msgstr "Host: [{host}]\n"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr "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"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr "Hasło: [{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"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr "Zabezpieczony: [{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"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr "Ustawienia Lavalink"
|
msgstr "Ustawienia Lavalink"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr "Początkowy 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"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr "Maksymalny 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"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr "Ekonwersja Javy: [{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:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr "Muszę być w stanie wysłać Ci te informacje."
|
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
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
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."
|
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
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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"
|
" 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
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr "Skonfiguruj autoryzację zarządzanego węzła i ustawienia połączenia."
|
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
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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"
|
" 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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Zarządzany węzeł zaakceptuje połączenie {host}.\n\n"
|
msgstr "Zarządzany węzeł zaakceptuje połączenie {host}.\n\n"
|
||||||
"Uruchom `{p}{cmd}` aby stało się skuteczne."
|
"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
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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"
|
" 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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Zarządzany węzeł zaakceptuje {password} jako token autoryzacyjny.\n\n"
|
msgstr "Zarządzany węzeł zaakceptuje {password} jako token autoryzacyjny.\n\n"
|
||||||
"Uruchom `{p}{cmd}` aby stał się skuteczny."
|
"Uruchom `{p}{cmd}` aby stał się skuteczny."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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"
|
" 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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr "Port musi mieścić się w przedziale 1024–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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Zarządzany węzeł będzie teraz akceptować połączenia na {port}.\n\n"
|
msgstr "Zarządzany węzeł będzie teraz akceptować połączenia na {port}.\n\n"
|
||||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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"
|
" 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
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" 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"
|
" 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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z bezpośrednich adresów URL.\n\n"
|
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z bezpośrednich adresów URL.\n\n"
|
||||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
"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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"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"
|
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ć."
|
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\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"
|
" 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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z Bandcamp.\n\n"
|
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z Bandcamp.\n\n"
|
||||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
"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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Zarządzany węzeł nie będzie już grał z Bandcamp.\n\n"
|
msgstr "Zarządzany węzeł nie będzie już grał z Bandcamp.\n\n"
|
||||||
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" 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"
|
" 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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z plików lokalnych.\n\n"
|
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z plików lokalnych.\n\n"
|
||||||
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
"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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Zarządzany węzeł nie będzie już odtwarzany z plików lokalnych.\n\n"
|
msgstr "Zarządzany węzeł nie będzie już odtwarzany z plików lokalnych.\n\n"
|
||||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\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"
|
" 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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z Soundcloud.\n\n"
|
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z Soundcloud.\n\n"
|
||||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
"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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Zarządzany węzeł nie będzie już odtwarzany z Soundcloud.\n\n"
|
msgstr "Zarządzany węzeł nie będzie już odtwarzany z Soundcloud.\n\n"
|
||||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" 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"
|
" 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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z YouTube.\n\n"
|
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z YouTube.\n\n"
|
||||||
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
"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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Zarządzany węzeł nie będzie już odtwarzany z YouTube.\n\n"
|
msgstr "Zarządzany węzeł nie będzie już odtwarzany z YouTube.\n\n"
|
||||||
"Uruchom `{p}{cmd}`, aby stał się skuteczny."
|
"Uruchom `{p}{cmd}`, aby stał się skuteczny."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\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"
|
" 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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z Twitcha.\n\n"
|
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z Twitcha.\n\n"
|
||||||
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
"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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Zarządzany węzeł nie będzie już odtwarzany z Twitcha.\n\n"
|
msgstr "Zarządzany węzeł nie będzie już odtwarzany z Twitcha.\n\n"
|
||||||
"Uruchom `{p}{cmd}`, aby stał się skuteczny."
|
"Uruchom `{p}{cmd}`, aby stał się skuteczny."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\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"
|
" 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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z Vimeo.\n\n"
|
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z Vimeo.\n\n"
|
||||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
"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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Zarządzany węzeł nie będzie już grał z Vimeo.\n\n"
|
msgstr "Zarządzany węzeł nie będzie już grał z Vimeo.\n\n"
|
||||||
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" 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"
|
" 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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr "Najniższa wartość, jaką bufor ramki można ustawić na 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:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Wielkość node heap-size ustawiona na {milliseconds}.\n\n"
|
msgstr "Wielkość node heap-size ustawiona na {milliseconds}.\n\n"
|
||||||
"Uruchom `{p}{cmd}`, aby to zadziałało."
|
"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
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" 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"
|
" 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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr "Najniższa wartość bufora może wynosić 100 ms."
|
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
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr "Zresetuj wszystkie `llset` z powrotem do ich wartości domyślnych."
|
msgstr "Zresetuj wszystkie `llset` z powrotem do ich wartości domyślnych."
|
||||||
|
|||||||
191
redbot/cogs/audio/core/commands/locales/pt-BR.po
generated
191
redbot/cogs/audio/core/commands/locales/pt-BR.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Portuguese, Brazilian\n"
|
"Language-Team: Portuguese, Brazilian\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "Configuração alterada"
|
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 MyGlobalPlaylist --scope Global`\n"
|
||||||
" `[p]audioset autoplay playlist PersonalPlaylist --scope User --author Draper`\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/audioset.py:497
|
||||||
#: redbot/cogs/audio/core/commands/playlists.py:105
|
#: redbot/cogs/audio/core/commands/playlists.py:105
|
||||||
@@ -1151,13 +1174,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr "Reinicia a conexão lavalink."
|
msgstr "Reinicia a conexão lavalink."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1917,7 +1940,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1976,14 +1999,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
226
redbot/cogs/audio/core/commands/locales/pt-PT.po
generated
226
redbot/cogs/audio/core/commands/locales/pt-PT.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Portuguese\n"
|
"Language-Team: Portuguese\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "Definições alteradas"
|
msgstr "Definições alteradas"
|
||||||
|
|
||||||
@@ -993,7 +993,7 @@ msgstr "Caminho das faixas locais: [{localpath}]\n"
|
|||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1159
|
#: redbot/cogs/audio/core/commands/audioset.py:1159
|
||||||
msgid "Lavalink Plugin Versions"
|
msgid "Lavalink Plugin Versions"
|
||||||
msgstr ""
|
msgstr "Versões do Plugin Lavalink"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1174
|
#: redbot/cogs/audio/core/commands/audioset.py:1174
|
||||||
#, docstring
|
#, docstring
|
||||||
@@ -1129,11 +1129,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1445
|
#: redbot/cogs/audio/core/commands/audioset.py:1445
|
||||||
msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n"
|
msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n"
|
||||||
msgstr ""
|
msgstr "A idade do cache não pode ser inferior a 7 dias. Se deseja desativá-lo, execute {prefix}audioset cache.\n"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1450
|
#: redbot/cogs/audio/core/commands/audioset.py:1450
|
||||||
msgid "I've set the cache age to {age} days"
|
msgid "I've set the cache age to {age} days"
|
||||||
msgstr ""
|
msgstr "Eu defini a idade do cache para {age} dias"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1457
|
#: redbot/cogs/audio/core/commands/audioset.py:1457
|
||||||
#, docstring
|
#, docstring
|
||||||
@@ -1149,31 +1149,31 @@ msgstr ""
|
|||||||
#: redbot/cogs/audio/core/commands/audioset.py:1477
|
#: redbot/cogs/audio/core/commands/audioset.py:1477
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Restarts the lavalink connection."
|
msgid "Restarts the lavalink connection."
|
||||||
msgstr ""
|
msgstr "Reinicia a conexão lavalink."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr "Falha ao desligar Lavalink"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1493
|
#: redbot/cogs/audio/core/commands/audioset.py:1493
|
||||||
msgid "Restarting Lavalink"
|
msgid "Restarting Lavalink"
|
||||||
msgstr ""
|
msgstr "Reiniciando Lavalink"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1494
|
#: redbot/cogs/audio/core/commands/audioset.py:1494
|
||||||
msgid "It can take a couple of minutes for Lavalink to fully start up."
|
msgid "It can take a couple of minutes for Lavalink to fully start up."
|
||||||
msgstr ""
|
msgstr "Pode levar alguns minutos para Lavalink iniciar completamente."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1501
|
#: redbot/cogs/audio/core/commands/audioset.py:1501
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the maximum volume allowed in this server."
|
msgid "Set the maximum volume allowed in this server."
|
||||||
msgstr ""
|
msgstr "Define o volume máximo permitido neste servidor."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1505
|
#: redbot/cogs/audio/core/commands/audioset.py:1505
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
@@ -1181,7 +1181,7 @@ msgstr "Erro"
|
|||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1506
|
#: redbot/cogs/audio/core/commands/audioset.py:1506
|
||||||
msgid "Music without sound isn't music at all. Try setting the volume higher then 0%."
|
msgid "Music without sound isn't music at all. Try setting the volume higher then 0%."
|
||||||
msgstr ""
|
msgstr "Música sem som não é música de forma nenhuma. Tente definir o volume para algo superior a 0%."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1514
|
#: redbot/cogs/audio/core/commands/audioset.py:1514
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1522
|
#: redbot/cogs/audio/core/commands/audioset.py:1522
|
||||||
@@ -1190,16 +1190,16 @@ msgstr "Definições alteradas"
|
|||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1515
|
#: redbot/cogs/audio/core/commands/audioset.py:1515
|
||||||
msgid "The maximum volume has been limited to 150%, be easy on your ears."
|
msgid "The maximum volume has been limited to 150%, be easy on your ears."
|
||||||
msgstr ""
|
msgstr "O volume máximo foi limitado a 150%, tenha cuidado com os seus ouvidos."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1523
|
#: redbot/cogs/audio/core/commands/audioset.py:1523
|
||||||
msgid "The maximum volume has been limited to {max_volume}%."
|
msgid "The maximum volume has been limited to {max_volume}%."
|
||||||
msgstr ""
|
msgstr "O volume máximo foi limitado a {max_volume}%."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:32
|
#: redbot/cogs/audio/core/commands/controller.py:32
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Disconnect from the voice channel."
|
msgid "Disconnect from the voice channel."
|
||||||
msgstr ""
|
msgstr "Desconectar do canal de voz."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:34
|
#: redbot/cogs/audio/core/commands/controller.py:34
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:89
|
#: redbot/cogs/audio/core/commands/controller.py:89
|
||||||
@@ -1230,14 +1230,14 @@ msgstr ""
|
|||||||
#: redbot/cogs/audio/core/commands/controller.py:49
|
#: redbot/cogs/audio/core/commands/controller.py:49
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:55
|
#: redbot/cogs/audio/core/commands/controller.py:55
|
||||||
msgid "Unable To Disconnect"
|
msgid "Unable To Disconnect"
|
||||||
msgstr ""
|
msgstr "Não foi possível desconectar"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:50
|
#: redbot/cogs/audio/core/commands/controller.py:50
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:264
|
#: redbot/cogs/audio/core/commands/controller.py:264
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:332
|
#: redbot/cogs/audio/core/commands/controller.py:332
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:586
|
#: redbot/cogs/audio/core/commands/controller.py:586
|
||||||
msgid "There are other people listening - vote to skip instead."
|
msgid "There are other people listening - vote to skip instead."
|
||||||
msgstr ""
|
msgstr "Há outras pessoas a ouvir - vote para saltar em vez disso."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:56
|
#: redbot/cogs/audio/core/commands/controller.py:56
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:62
|
#: redbot/cogs/audio/core/commands/controller.py:62
|
||||||
@@ -1246,7 +1246,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:61
|
#: redbot/cogs/audio/core/commands/controller.py:61
|
||||||
msgid "Unable to Disconnect"
|
msgid "Unable to Disconnect"
|
||||||
msgstr ""
|
msgstr "Não foi possível desconectar"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:65
|
#: redbot/cogs/audio/core/commands/controller.py:65
|
||||||
msgid "Disconnecting..."
|
msgid "Disconnecting..."
|
||||||
@@ -1255,7 +1255,7 @@ msgstr ""
|
|||||||
#: redbot/cogs/audio/core/commands/controller.py:87
|
#: redbot/cogs/audio/core/commands/controller.py:87
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Now playing."
|
msgid "Now playing."
|
||||||
msgstr ""
|
msgstr "A reproduzir."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:111
|
#: redbot/cogs/audio/core/commands/controller.py:111
|
||||||
#: redbot/cogs/audio/core/commands/queue.py:81
|
#: redbot/cogs/audio/core/commands/queue.py:81
|
||||||
@@ -1660,20 +1660,20 @@ msgstr ""
|
|||||||
#: redbot/cogs/audio/core/commands/controller.py:819
|
#: redbot/cogs/audio/core/commands/controller.py:819
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:892
|
#: redbot/cogs/audio/core/commands/controller.py:892
|
||||||
msgid "Song number must be greater than 1 and within the queue limit."
|
msgid "Song number must be greater than 1 and within the queue limit."
|
||||||
msgstr ""
|
msgstr "Número da música deve ser maior que 1 e dentro do limite da fila."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:833
|
#: redbot/cogs/audio/core/commands/controller.py:833
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:857
|
#: redbot/cogs/audio/core/commands/controller.py:857
|
||||||
msgid "Removed track from queue"
|
msgid "Removed track from queue"
|
||||||
msgstr ""
|
msgstr "Remove a faixa da fila"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:834
|
#: redbot/cogs/audio/core/commands/controller.py:834
|
||||||
msgid "Removed {track} from the queue."
|
msgid "Removed {track} from the queue."
|
||||||
msgstr ""
|
msgstr "{track} foi removido da fila."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:852
|
#: redbot/cogs/audio/core/commands/controller.py:852
|
||||||
msgid "Removed 0 tracks, nothing matches the URL provided."
|
msgid "Removed 0 tracks, nothing matches the URL provided."
|
||||||
msgstr ""
|
msgstr "Removido 0 faixas, nada corresponde à URL fornecida."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:858
|
#: redbot/cogs/audio/core/commands/controller.py:858
|
||||||
msgid "Removed {removed_tracks} tracks from queue which matched the URL provided."
|
msgid "Removed {removed_tracks} tracks from queue which matched the URL provided."
|
||||||
@@ -1701,7 +1701,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/controller.py:902
|
#: redbot/cogs/audio/core/commands/controller.py:902
|
||||||
msgid "Moved track to the top of the queue."
|
msgid "Moved track to the top of the queue."
|
||||||
msgstr ""
|
msgstr "A faixa foi movida para o topo da fila."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/equalizer.py:31
|
#: redbot/cogs/audio/core/commands/equalizer.py:31
|
||||||
#, docstring
|
#, docstring
|
||||||
@@ -1716,7 +1716,7 @@ msgstr ""
|
|||||||
#: redbot/cogs/audio/core/commands/equalizer.py:73
|
#: redbot/cogs/audio/core/commands/equalizer.py:73
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete a saved eq preset."
|
msgid "Delete a saved eq preset."
|
||||||
msgstr ""
|
msgstr "Apagar uma predefinição de eq salva."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/equalizer.py:82
|
#: redbot/cogs/audio/core/commands/equalizer.py:82
|
||||||
#: redbot/cogs/audio/core/commands/equalizer.py:89
|
#: redbot/cogs/audio/core/commands/equalizer.py:89
|
||||||
@@ -1813,7 +1813,7 @@ msgstr "Tente o comando novamente com um nome mais curto."
|
|||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/equalizer.py:275
|
#: redbot/cogs/audio/core/commands/equalizer.py:275
|
||||||
msgid "Preset name already exists, do you want to replace it?"
|
msgid "Preset name already exists, do you want to replace it?"
|
||||||
msgstr ""
|
msgstr "O nome da predefinição já existe, deseja substituí-lo?"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/equalizer.py:283
|
#: redbot/cogs/audio/core/commands/equalizer.py:283
|
||||||
msgid "Not saving preset."
|
msgid "Not saving preset."
|
||||||
@@ -1831,7 +1831,12 @@ msgid "Set an eq band with a band number or name and value.\n\n"
|
|||||||
" 6.3k, 10k, and 16k Hz.\n"
|
" 6.3k, 10k, and 16k Hz.\n"
|
||||||
" Setting a band value to -0.25 nullifies it while +0.25 is double.\n"
|
" Setting a band value to -0.25 nullifies it while +0.25 is double.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr "Definir uma banda de eq com um número ou valor de banda.\n\n"
|
||||||
|
" As posições da banda são 1-15 e valores têm um intervalo de -0. 5 a 1,0.\n"
|
||||||
|
" Nomes da banda são 25, 40, 63, 100, 160, 250, 400, 630, 1k, 1.6k, 2.5k, 4k,\n"
|
||||||
|
" 6.3k, 10k e 16k Hz.\n"
|
||||||
|
" Definir um valor de banda para -0.25 anula-a enquanto +0,25 é o dobro.\n"
|
||||||
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/equalizer.py:326
|
#: redbot/cogs/audio/core/commands/equalizer.py:326
|
||||||
msgid "Unable To Set Preset"
|
msgid "Unable To Set Preset"
|
||||||
@@ -1927,8 +1932,8 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr "O tamanho do heap deve ser de pelo menos 64M, porém é recomendado configurá-lo para pelo menos 1G."
|
msgstr "O tamanho do heap deve ser de pelo menos 64M, porém é recomendado configurá-lo para pelo menos 1G."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 "O tamanho do heap deve ser menor que a RAM do sistema. Atualmente você tem {ram_in_bytes} de RAM disponível."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
msgid "Heap-size must be less than {limit} due to your system limitations."
|
msgid "Heap-size must be less than {limit} due to your system limitations."
|
||||||
@@ -1996,15 +2001,15 @@ msgstr "Define a porta do nó de Lavalink.\n\n"
|
|||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr "Configurações não alteradas"
|
msgstr "Configurações não alteradas"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 "A porta deve estar entre 0 e 65535 "
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
||||||
@@ -2026,70 +2031,69 @@ msgstr "O nó Lavalink não gerenciado irá se conectar usando o protocolo {secu
|
|||||||
"Execute o `{p}{cmd}` para que ele tenha efeito."
|
"Execute o `{p}{cmd}` para que ele tenha efeito."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "Não gerenciado o nó Lavalink não irá mais se conectar usando o protocolo {secured_protocol} seguro e usar {unsecured_protocol} em vez disso.\n\n"
|
msgstr ""
|
||||||
"Execute `{p}{cmd}` para que ele tenha efeito."
|
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr "Exibir configurações de conexão Lava link."
|
msgstr "Exibir configurações de conexão Lava link."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr "Configurações de conexão"
|
msgstr "Configurações de conexão"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr "Host: [{host}]\n"
|
msgstr "Host: [{host}]\n"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr "Porta: [{port}]\n"
|
msgstr "Porta: [{port}]\n"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr "Default HTTP/HTTPS port"
|
msgstr "Default HTTP/HTTPS port"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr "Senha: [{password}]\n"
|
msgstr "Senha: [{password}]\n"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr "Protegido: [{state}]\n"
|
msgstr "Protegido: [{state}]\n"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr "Configurações Node Lavalink"
|
msgstr "Configurações Node Lavalink"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr "Tamanho inicial do heap: [{xms}]\n"
|
msgstr "Tamanho inicial do heap: [{xms}]\n"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr "Tamanho Máximo: [{xmx}]\n"
|
msgstr "Tamanho 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"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr "Executar Java: [{java_exc_path}]\n"
|
msgstr "Executar Java: [{java_exc_path}]\n"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr "Eu preciso ser capaz de mandar uma MD a si para enviar os logs."
|
msgstr "Eu preciso ser capaz de mandar uma MD a si para enviar os logs."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr "Carrega uma cópia do arquivo application.yml usado pelo nó Lavalink gerenciado."
|
msgstr "Carrega uma cópia do arquivo application.yml usado pelo nó Lavalink gerenciado."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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"
|
||||||
@@ -2098,12 +2102,12 @@ msgstr "Configure as opções de tempo de execução do nó Lavalink gerenciado.
|
|||||||
" Todas as configurações neste grupo provavelmente causarão mau funcionamento do áudio se forem alteradas em relação aos padrões. Altere as configurações aqui apenas se for avisado pelo suporte.\n"
|
" Todas as configurações neste grupo provavelmente causarão mau funcionamento do áudio se forem alteradas em relação aos padrões. Altere as configurações aqui apenas se for avisado pelo suporte.\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr "Configure as configurações de autorização de nó gerenciado e conexão."
|
msgstr "Configure as configurações de autorização de nó gerenciado e conexão."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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"
|
||||||
@@ -2112,13 +2116,13 @@ msgstr "`Comando perigoso` Defina o endereço IP de ligação do nó Lavalink ge
|
|||||||
" Este valor por padrão é `localhost` que restringirá o servidor apenas a aplicativos localhost por padrão, alterar isso provavelmente quebrará o nó Lavalink gerenciado se não souber o que está a fazer.\n"
|
" Este valor por padrão é `localhost` que restringirá o servidor apenas a aplicativos localhost por padrão, alterar isso provavelmente quebrará o nó Lavalink gerenciado se não souber o que está a fazer.\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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "O nó gerenciado irá agora aceitar a conexão em {host}.\n\n"
|
msgstr "O nó gerenciado irá agora aceitar a conexão em {host}.\n\n"
|
||||||
"Execute `{p}{cmd}` para que ele entre em vigor."
|
"Execute `{p}{cmd}` para que ele entre em vigor."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||||
@@ -2126,12 +2130,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
|||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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"
|
||||||
@@ -2139,170 +2143,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
|||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/ru-RU.po
generated
166
redbot/cogs/audio/core/commands/locales/ru-RU.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Russian\n"
|
"Language-Team: Russian\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "Настройки изменены"
|
msgstr "Настройки изменены"
|
||||||
|
|
||||||
@@ -1174,13 +1174,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr "Перезапуск соединение с lava link."
|
msgstr "Перезапуск соединение с lava link."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr "Пожалуйста, перезагрузите Audio (`{prefix}reload audio`)."
|
msgstr "Пожалуйста, перезагрузите Audio (`{prefix}reload audio`)."
|
||||||
|
|
||||||
@@ -1950,7 +1950,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -2009,14 +2009,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||||
@@ -2036,93 +2036,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr "Отображение настроек соединения Lava link."
|
msgstr "Отображение настроек соединения Lava link."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr "Параметры подключения"
|
msgstr "Параметры подключения"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr "Host: [{host}]\n"
|
msgstr "Host: [{host}]\n"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr "Пароль: [{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"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr "Я должен иметь возможность отправить вам эту информацию через ЛС."
|
msgstr "Я должен иметь возможность отправить вам эту информацию через ЛС."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||||
@@ -2130,12 +2130,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
|||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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"
|
||||||
@@ -2143,170 +2143,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
|||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/sk-SK.po
generated
166
redbot/cogs/audio/core/commands/locales/sk-SK.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Slovak\n"
|
"Language-Team: Slovak\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/sl-SI.po
generated
166
redbot/cogs/audio/core/commands/locales/sl-SI.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Slovenian\n"
|
"Language-Team: Slovenian\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/sv-SE.po
generated
166
redbot/cogs/audio/core/commands/locales/sv-SE.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Swedish\n"
|
"Language-Team: Swedish\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
168
redbot/cogs/audio/core/commands/locales/tr-TR.po
generated
168
redbot/cogs/audio/core/commands/locales/tr-TR.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Turkish\n"
|
"Language-Team: Turkish\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "Ayar Değiştirildi"
|
msgstr "Ayar Değiştirildi"
|
||||||
|
|
||||||
@@ -1151,13 +1151,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr "Lavalink bağlantısını yeniden başlatır."
|
msgstr "Lavalink bağlantısını yeniden başlatır."
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr "Lavalink kapatılamadı"
|
msgstr "Lavalink kapatılamadı"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr "Lütfen Audio'yu yeniden başlatın (`{prefix}reload audio`)."
|
msgstr "Lütfen Audio'yu yeniden başlatın (`{prefix}reload audio`)."
|
||||||
|
|
||||||
@@ -1927,7 +1927,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1986,15 +1986,15 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr "Ayarlar Değiştirilmedi"
|
msgstr "Ayarlar Değiştirilmedi"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 "Port numarası 0 ve 65535 arasında olmalıdır "
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr "Lavalink bağlantı ayarlarını göster."
|
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"
|
msgid "Connection Settings"
|
||||||
msgstr "Bağlantı Ayarları"
|
msgstr "Bağlantı Ayarları"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr "Sunucu: [{host}]\n"
|
msgstr "Sunucu: [{host}]\n"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr "Şifre: [{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"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr "Lavalink Ayarları"
|
msgstr "Lavalink Ayarları"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
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."
|
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
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/uk-UA.po
generated
166
redbot/cogs/audio/core/commands/locales/uk-UA.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Ukrainian\n"
|
"Language-Team: Ukrainian\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/vi-VN.po
generated
166
redbot/cogs/audio/core/commands/locales/vi-VN.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Vietnamese\n"
|
"Language-Team: Vietnamese\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "Thiết lập đã được thay đổi"
|
msgstr "Thiết lập đã được thay đổi"
|
||||||
|
|
||||||
@@ -1094,13 +1094,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1855,7 +1855,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1914,14 +1914,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
166
redbot/cogs/audio/core/commands/locales/zh-CN.po
generated
166
redbot/cogs/audio/core/commands/locales/zh-CN.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Chinese Simplified\n"
|
"Language-Team: Chinese Simplified\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "设置已更改"
|
msgstr "设置已更改"
|
||||||
|
|
||||||
@@ -1131,13 +1131,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr "请重新加载音频 (\"{prefix}重新加载音频)。"
|
msgstr "请重新加载音频 (\"{prefix}重新加载音频)。"
|
||||||
|
|
||||||
@@ -1894,7 +1894,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
@@ -1953,14 +1953,14 @@ msgid "Set the Lavalink node port.\n\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||||
msgid "Default HTTP/HTTPS port"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||||
msgid "Secured: [{state}]\n"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||||
msgid "Lavalink Node Settings"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||||
msgid "Max Heapsize: [{xmx}]\n"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||||
msgid "Java exec: [{java_exc_path}]\n"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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 ""
|
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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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 ""
|
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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
173
redbot/cogs/audio/core/commands/locales/zh-TW.po
generated
173
redbot/cogs/audio/core/commands/locales/zh-TW.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Chinese Traditional\n"
|
"Language-Team: Chinese Traditional\n"
|
||||||
"MIME-Version: 1.0\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:258
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||||
msgid "Setting Changed"
|
msgid "Setting Changed"
|
||||||
msgstr "已變更設定"
|
msgstr "已變更設定"
|
||||||
|
|
||||||
@@ -1181,13 +1181,13 @@ msgid "Restarts the lavalink connection."
|
|||||||
msgstr "重啟Lavalink連接。"
|
msgstr "重啟Lavalink連接。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
#: 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"
|
msgid "Failed To Shutdown Lavalink Node"
|
||||||
msgstr "關閉 Lavalink 節點失敗!"
|
msgstr "關閉 Lavalink 節點失敗!"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
#: 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`)."
|
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||||
msgstr "請重新加載Audio (`{prefix}reload audio`)。"
|
msgstr "請重新加載Audio (`{prefix}reload audio`)。"
|
||||||
|
|
||||||
@@ -1966,8 +1966,8 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
|||||||
msgstr "記憶體大小必須至少為 64M,但建議至少設置為 1G。"
|
msgstr "記憶體大小必須至少為 64M,但建議至少設置為 1G。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
#: 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 "記憶體大小必須小於您的系統 RAM,您當前有 {ram_in_bytes} 可用 。"
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||||
msgid "Heap-size must be less than {limit} due to your system limitations."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||||
msgid "Setting Not Changed"
|
msgid "Setting Not Changed"
|
||||||
msgstr "設置未更變"
|
msgstr "設置未更變"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
#: 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 "端口必須介於 0 和 65535 之間 "
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
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}` 使其生效。"
|
"運行 `{p}{cmd}` 使其生效。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
#: 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."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "非託管 Lavalink 節點將不再使用安全的 {secured_protocol} 協議連接,而是使用 {unsecured_protocol} 代替。\n\n"
|
msgstr ""
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Display Lavalink connection settings."
|
msgid "Display Lavalink connection settings."
|
||||||
msgstr "顯示 Lavalink 連接設置。"
|
msgstr "顯示 Lavalink 連接設置。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||||
msgid "Connection Settings"
|
msgid "Connection Settings"
|
||||||
msgstr "連接設置"
|
msgstr "連接設置"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||||
msgid "Host: [{host}]\n"
|
msgid "Host: [{host}]\n"
|
||||||
msgstr "主機:[{host}]\n"
|
msgstr "主機:[{host}]\n"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||||
msgid "Port: [{port}]\n"
|
msgid "Port: [{port}]\n"
|
||||||
msgstr "端口: [{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"
|
msgid "Default HTTP/HTTPS port"
|
||||||
msgstr "默認 HTTP/HTTPS port"
|
msgstr "默認 HTTP/HTTPS port"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||||
msgid "Password: [{password}]\n"
|
msgid "Password: [{password}]\n"
|
||||||
msgstr "密碼:[{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"
|
msgid "Secured: [{state}]\n"
|
||||||
msgstr "安全:[{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"
|
msgid "Lavalink Node Settings"
|
||||||
msgstr "Lavalink 節點設定"
|
msgstr "Lavalink 節點設定"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||||
msgid "Initial Heapsize: [{xms}]\n"
|
msgid "Initial Heapsize: [{xms}]\n"
|
||||||
msgstr "初始記憶體大小:[{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"
|
msgid "Max Heapsize: [{xmx}]\n"
|
||||||
msgstr "最大記憶體大小:[{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"
|
msgid "Java exec: [{java_exc_path}]\n"
|
||||||
msgstr "Java 執行程序:[{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:341
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||||
msgid "I need to be able to DM you to send you this info."
|
msgid "I need to be able to DM you to send you this info."
|
||||||
msgstr "我需要能夠通過 DM 向您發送此信息。"
|
msgstr "我需要能夠通過 DM 向您發送此信息。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||||
msgstr "上傳託管 Lavalink 節點使用的 application.yml 文件的副本。"
|
msgstr "上傳託管 Lavalink 節點使用的 application.yml 文件的副本。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
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"
|
" 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"
|
" 如果隨意更改此類別下的所有設置,可能會導致Audio出現故障,只有在官方人員建議您更改此處的設置時更改。\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Configure the managed node authorization and connection settings."
|
msgid "Configure the managed node authorization and connection settings."
|
||||||
msgstr "配置受管理節點授權和連接設置。"
|
msgstr "配置受管理節點授權和連接設置。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
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"
|
" 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"
|
" 默認情況下此數值是 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"
|
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點現在將接受 {host} 上的連接。\n\n"
|
msgstr "託管節點現在將接受 {host} 上的連接。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{p}{cmd}` 使其生效。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
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"
|
" 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"
|
" 默認數值為“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"
|
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點現在將接受 {password} 作為授權令牌。\n\n"
|
msgstr "託管節點現在將接受 {password} 作為授權令牌。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{p}{cmd}` 使其生效。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
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"
|
" 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"
|
" 默認數值為“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."
|
msgid "The port must be between 1024 and 49151."
|
||||||
msgstr "端口必須介於 1024 和 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"
|
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點現在將接受 {port} 上的連接。\n\n"
|
msgstr "託管節點現在將接受 {port} 上的連接。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{p}{cmd}` 使其生效。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
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"
|
" 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"
|
" 默認情況下,所有源都已啟用,您應該只在被開發人員建議的情況下使用此處的命令來禁用特定源,在沒有相關知識的情況下禁用源可能會導致Audio中斷損壞。\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
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"
|
" 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"
|
" 此用於允許從直接 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"
|
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點將允許直接從 URL 播放。\n\n"
|
msgstr "託管節點將允許直接從 URL 播放。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{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"
|
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點將不再直接從 URL 播放。\n\n"
|
msgstr "託管節點將不再直接從 URL 播放。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{p}{cmd}` 使其生效。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||||
@@ -2231,19 +2230,19 @@ msgstr "打開或關閉 Bandcamp 來源。\n\n"
|
|||||||
" 此切換控制開關所有 Bandcamp 相關來源內容的播放。\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"
|
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點將允許從 Bandcamp 播放。\n\n"
|
msgstr "託管節點將允許從 Bandcamp 播放。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{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"
|
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點將不再從 Bandcamp 播放。\n\n"
|
msgstr "託管節點將不再從 Bandcamp 播放。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{p}{cmd}` 使其生效。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle local file usage on or off.\n\n"
|
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"
|
" 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"
|
" 此切換控制所有本地軌道內容的播放,通常位於“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"
|
msgid "Managed node will allow playback from local files.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點將允許從本地文件播放。\n\n"
|
msgstr "託管節點將允許從本地文件播放。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{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"
|
msgid "Managed node will not play from local files anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點將不再從本地文件播放。\n\n"
|
msgstr "託管節點將不再從本地文件播放。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{p}{cmd}` 使其生效。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||||
@@ -2273,19 +2272,19 @@ msgstr "啟用或關閉 Soundcloud 來源。\n\n"
|
|||||||
" 此切換控制所有 SoundCloud 相關內容的播放。\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"
|
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點將允許從 Soundcloud 播放。\n\n"
|
msgstr "託管節點將允許從 Soundcloud 播放。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{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"
|
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點將不再從 Soundcloud 播放。\n\n"
|
msgstr "託管節點將不再從 Soundcloud 播放。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{p}{cmd}` 使其生效。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
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"
|
" 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"
|
" 此切換控制所有 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"
|
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點將允許從 YouTube 播放。\n\n"
|
msgstr "託管節點將允許從 YouTube 播放。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{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"
|
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點將不再從 YouTube 播放。\n\n"
|
msgstr "託管節點將不再從 YouTube 播放。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{p}{cmd}` 使其生效。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Twitch source on or off.\n\n"
|
msgid "Toggle Twitch source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Twitch related content.\n"
|
" This toggle controls the playback of all Twitch related content.\n"
|
||||||
@@ -2315,19 +2314,19 @@ msgstr "打開或關閉 Twitch 來源。\n\n"
|
|||||||
" 此切換控制所有 Twitch 相關內容的播放。\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"
|
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點將允許從 Twitch 播放。\n\n"
|
msgstr "託管節點將允許從 Twitch 播放。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{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"
|
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點將不再從 Twitch 播放。\n\n"
|
msgstr "託管節點將不再從 Twitch 播放。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{p}{cmd}` 使其生效。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Toggle Vimeo source on or off.\n\n"
|
msgid "Toggle Vimeo source on or off.\n\n"
|
||||||
" This toggle controls the playback of all Vimeo related content.\n"
|
" This toggle controls the playback of all Vimeo related content.\n"
|
||||||
@@ -2336,19 +2335,19 @@ msgstr "打開或關閉 Vimeo 來源。\n\n"
|
|||||||
" 此切換控制所有 Vimeo 相關內容的播放。\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"
|
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點將允許從 Vimeo 播放。\n\n"
|
msgstr "託管節點將允許從 Vimeo 播放。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{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"
|
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "託管節點將不再從 Vimeo 播放。\n\n"
|
msgstr "託管節點將不再從 Vimeo 播放。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{p}{cmd}` 使其生效。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
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"
|
" 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"
|
" 僅在我們直接建議您更改此設置時更改它,隨意更改它可能會導致嚴重的播放問題。\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."
|
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||||
msgstr "幀緩衝區可以設置的最低值為 100 毫秒。"
|
msgstr "幀緩衝區可以設置的最低值為 100 毫秒。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||||
"Run `{p}{cmd}` for it to take effect."
|
"Run `{p}{cmd}` for it to take effect."
|
||||||
msgstr "受管節點的 bufferDurationMs 設置為 {milliseconds}。\n\n"
|
msgstr "受管節點的 bufferDurationMs 設置為 {milliseconds}。\n\n"
|
||||||
"運行 `{p}{cmd}` 使其生效。"
|
"運行 `{p}{cmd}` 使其生效。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
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"
|
" 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"
|
" 僅在我們直接建議您更改此設置時更改它,隨意更改它可能會導致嚴重的播放問題。\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."
|
msgid "The lowest value the buffer may be is 100ms."
|
||||||
msgstr "幀緩衝區可以設置的最低值為 100 毫秒。"
|
msgstr "幀緩衝區可以設置的最低值為 100 毫秒。"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Reset all `llset` changes back to their default values."
|
msgid "Reset all `llset` changes back to their default values."
|
||||||
msgstr "將所有 `llset` 更改重置為默認值。"
|
msgstr "將所有 `llset` 更改重置為默認值。"
|
||||||
|
|||||||
@@ -198,6 +198,8 @@ class AudioEvents(MixinMeta, metaclass=CompositeMetaClass):
|
|||||||
if not guild:
|
if not guild:
|
||||||
return
|
return
|
||||||
notify_channel = guild.get_channel_or_thread(player.fetch("notify_channel"))
|
notify_channel = guild.get_channel_or_thread(player.fetch("notify_channel"))
|
||||||
|
if not notify_channel:
|
||||||
|
return
|
||||||
has_perms = self._has_notify_perms(notify_channel)
|
has_perms = self._has_notify_perms(notify_channel)
|
||||||
tries = 0
|
tries = 0
|
||||||
while not player._is_playing:
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Arabic\n"
|
"Language-Team: Arabic\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: ar_SA\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."
|
msgid "Auto Play started."
|
||||||
msgstr ""
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Bulgarian\n"
|
"Language-Team: Bulgarian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: bg_BG\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."
|
msgid "Auto Play started."
|
||||||
msgstr ""
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Czech\n"
|
"Language-Team: Czech\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: cs_CZ\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."
|
msgid "Auto Play started."
|
||||||
msgstr ""
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Danish\n"
|
"Language-Team: Danish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: da_DK\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."
|
msgid "Auto Play started."
|
||||||
msgstr ""
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: German\n"
|
"Language-Team: German\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: de_DE\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."
|
msgid "Auto Play started."
|
||||||
msgstr "Automatische Wiedergabe gestartet."
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Spanish\n"
|
"Language-Team: Spanish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: es_ES\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."
|
msgid "Auto Play started."
|
||||||
msgstr "Auto reproducción iniciada."
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Finnish\n"
|
"Language-Team: Finnish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: fi_FI\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."
|
msgid "Auto Play started."
|
||||||
msgstr "Automaattinen toisto aloitettu."
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: French\n"
|
"Language-Team: French\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: fr_FR\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."
|
msgid "Auto Play started."
|
||||||
msgstr "Lecture automatique démarrée."
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hindi\n"
|
"Language-Team: Hindi\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: hi_IN\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."
|
msgid "Auto Play started."
|
||||||
msgstr ""
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Croatian\n"
|
"Language-Team: Croatian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: hr_HR\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."
|
msgid "Auto Play started."
|
||||||
msgstr "Počela je automatska reprodukcija."
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hungarian\n"
|
"Language-Team: Hungarian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: hu_HU\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."
|
msgid "Auto Play started."
|
||||||
msgstr ""
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Indonesian\n"
|
"Language-Team: Indonesian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: id_ID\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."
|
msgid "Auto Play started."
|
||||||
msgstr ""
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Italian\n"
|
"Language-Team: Italian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: it_IT\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."
|
msgid "Auto Play started."
|
||||||
msgstr ""
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Japanese\n"
|
"Language-Team: Japanese\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: ja_JP\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."
|
msgid "Auto Play started."
|
||||||
msgstr "自動再生を開始しました"
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Korean\n"
|
"Language-Team: Korean\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: ko_KR\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."
|
msgid "Auto Play started."
|
||||||
msgstr "자동재생이 시작되었어요"
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Norwegian Bokmal\n"
|
"Language-Team: Norwegian Bokmal\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: nb_NO\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."
|
msgid "Auto Play started."
|
||||||
msgstr "Automatisk avspilling startet."
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Dutch\n"
|
"Language-Team: Dutch\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: nl_NL\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."
|
msgid "Auto Play started."
|
||||||
msgstr ""
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Polish\n"
|
"Language-Team: Polish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: pl_PL\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."
|
msgid "Auto Play started."
|
||||||
msgstr "Automatyczne odtwarzanie rozpoczęte."
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Portuguese, Brazilian\n"
|
"Language-Team: Portuguese, Brazilian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: pt_BR\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."
|
msgid "Auto Play started."
|
||||||
msgstr "Reprodução automática iniciada."
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Portuguese\n"
|
"Language-Team: Portuguese\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: pt_PT\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."
|
msgid "Auto Play started."
|
||||||
msgstr "Reprodução automática iniciada."
|
msgstr "Reprodução automática iniciada."
|
||||||
|
|
||||||
@@ -57,7 +57,7 @@ msgstr "Voz prioritária"
|
|||||||
|
|
||||||
#: redbot/cogs/audio/core/events/dpy.py:43
|
#: redbot/cogs/audio/core/events/dpy.py:43
|
||||||
msgid "Video"
|
msgid "Video"
|
||||||
msgstr ""
|
msgstr "Vídeo"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/events/dpy.py:44
|
#: redbot/cogs/audio/core/events/dpy.py:44
|
||||||
msgid "Read Text Channels & See Voice Channels"
|
msgid "Read Text Channels & See Voice Channels"
|
||||||
@@ -69,7 +69,7 @@ msgstr "Enviar mensagens"
|
|||||||
|
|
||||||
#: redbot/cogs/audio/core/events/dpy.py:46
|
#: redbot/cogs/audio/core/events/dpy.py:46
|
||||||
msgid "Send Text-to-speech Messages"
|
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
|
#: redbot/cogs/audio/core/events/dpy.py:47
|
||||||
msgid "Manage Messages"
|
msgid "Manage Messages"
|
||||||
@@ -177,15 +177,15 @@ msgstr "Enviar Mensagens em Tópicos"
|
|||||||
|
|
||||||
#: redbot/cogs/audio/core/events/dpy.py:73
|
#: redbot/cogs/audio/core/events/dpy.py:73
|
||||||
msgid "Use Activities"
|
msgid "Use Activities"
|
||||||
msgstr ""
|
msgstr "Usar Atividades"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/events/dpy.py:74
|
#: redbot/cogs/audio/core/events/dpy.py:74
|
||||||
msgid "Time out members"
|
msgid "Time out members"
|
||||||
msgstr ""
|
msgstr "Castigar membros"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/events/dpy.py:75
|
#: redbot/cogs/audio/core/events/dpy.py:75
|
||||||
msgid "View Creator Monetization Analytics"
|
msgid "View Creator Monetization Analytics"
|
||||||
msgstr ""
|
msgstr "Visualizar a Análise da Monetização do Criador"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/events/dpy.py:76
|
#: redbot/cogs/audio/core/events/dpy.py:76
|
||||||
msgid "Use Soundboard"
|
msgid "Use Soundboard"
|
||||||
@@ -197,7 +197,7 @@ msgstr "Criar expressões"
|
|||||||
|
|
||||||
#: redbot/cogs/audio/core/events/dpy.py:78
|
#: redbot/cogs/audio/core/events/dpy.py:78
|
||||||
msgid "Create Events"
|
msgid "Create Events"
|
||||||
msgstr ""
|
msgstr "Criar Eventos"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/events/dpy.py:79
|
#: redbot/cogs/audio/core/events/dpy.py:79
|
||||||
msgid "Use External Sounds"
|
msgid "Use External Sounds"
|
||||||
@@ -209,11 +209,11 @@ msgstr "Enviar Mensagens de Voz"
|
|||||||
|
|
||||||
#: redbot/cogs/audio/core/events/dpy.py:81
|
#: redbot/cogs/audio/core/events/dpy.py:81
|
||||||
msgid "Create Polls"
|
msgid "Create Polls"
|
||||||
msgstr ""
|
msgstr "Criar Votações"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/events/dpy.py:82
|
#: redbot/cogs/audio/core/events/dpy.py:82
|
||||||
msgid "Use External Apps"
|
msgid "Use External Apps"
|
||||||
msgstr ""
|
msgstr "Usar Aplicações Externas"
|
||||||
|
|
||||||
#: redbot/cogs/audio/core/events/dpy.py:86
|
#: 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."
|
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."
|
||||||
|
|||||||
4
redbot/cogs/audio/core/events/locales/ru-RU.po
generated
4
redbot/cogs/audio/core/events/locales/ru-RU.po
generated
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Russian\n"
|
"Language-Team: Russian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: ru_RU\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."
|
msgid "Auto Play started."
|
||||||
msgstr "Автоматическое воспроизведение запущено."
|
msgstr "Автоматическое воспроизведение запущено."
|
||||||
|
|
||||||
|
|||||||
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Slovak\n"
|
"Language-Team: Slovak\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: sk_SK\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."
|
msgid "Auto Play started."
|
||||||
msgstr "Automatické prehrávanie sa spustilo."
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Slovenian\n"
|
"Language-Team: Slovenian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: sl_SI\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."
|
msgid "Auto Play started."
|
||||||
msgstr "Samodejno predvajanje se je začelo."
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Swedish\n"
|
"Language-Team: Swedish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: sv_SE\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."
|
msgid "Auto Play started."
|
||||||
msgstr ""
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Turkish\n"
|
"Language-Team: Turkish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: tr_TR\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."
|
msgid "Auto Play started."
|
||||||
msgstr "Otomatik çalma başladı."
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Ukrainian\n"
|
"Language-Team: Ukrainian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: uk_UA\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."
|
msgid "Auto Play started."
|
||||||
msgstr ""
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Vietnamese\n"
|
"Language-Team: Vietnamese\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: vi_VN\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."
|
msgid "Auto Play started."
|
||||||
msgstr "Tự động phát đã bắt đầu."
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Chinese Simplified\n"
|
"Language-Team: Chinese Simplified\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: zh_CN\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."
|
msgid "Auto Play started."
|
||||||
msgstr ""
|
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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Chinese Traditional\n"
|
"Language-Team: Chinese Traditional\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,7 +15,7 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 670\n"
|
"X-Crowdin-File-ID: 670\n"
|
||||||
"Language: zh_TW\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."
|
msgid "Auto Play started."
|
||||||
msgstr "已開始自動播放。"
|
msgstr "已開始自動播放。"
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Arabic\n"
|
"Language-Team: Arabic\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Bulgarian\n"
|
"Language-Team: Bulgarian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Czech\n"
|
"Language-Team: Czech\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Danish\n"
|
"Language-Team: Danish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: German\n"
|
"Language-Team: German\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Spanish\n"
|
"Language-Team: Spanish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Finnish\n"
|
"Language-Team: Finnish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: French\n"
|
"Language-Team: French\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hindi\n"
|
"Language-Team: Hindi\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Croatian\n"
|
"Language-Team: Croatian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hungarian\n"
|
"Language-Team: Hungarian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Indonesian\n"
|
"Language-Team: Indonesian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Italian\n"
|
"Language-Team: Italian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Japanese\n"
|
"Language-Team: Japanese\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Korean\n"
|
"Language-Team: Korean\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Norwegian Bokmal\n"
|
"Language-Team: Norwegian Bokmal\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Dutch\n"
|
"Language-Team: Dutch\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Polish\n"
|
"Language-Team: Polish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Portuguese, Brazilian\n"
|
"Language-Team: Portuguese, Brazilian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Portuguese\n"
|
"Language-Team: Portuguese\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Russian\n"
|
"Language-Team: Russian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Slovak\n"
|
"Language-Team: Slovak\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Slovenian\n"
|
"Language-Team: Slovenian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Swedish\n"
|
"Language-Team: Swedish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Turkish\n"
|
"Language-Team: Turkish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Ukrainian\n"
|
"Language-Team: Ukrainian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Vietnamese\n"
|
"Language-Team: Vietnamese\n"
|
||||||
"MIME-Version: 1.0\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