mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-12-05 17:02:32 -05:00
Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e4b75f5333 | ||
|
|
254d5a91d6 | ||
|
|
b979a7c4d1 | ||
|
|
54a29174ea | ||
|
|
5bbced5b0d | ||
|
|
5b21c89505 | ||
|
|
04d856cfb0 | ||
|
|
701339f8a1 | ||
|
|
3d04d696c1 | ||
|
|
0b8bcef86c | ||
|
|
2d47d75919 | ||
|
|
7eb26da647 | ||
|
|
699471f27a | ||
|
|
2c2080df12 | ||
|
|
fa7236af63 | ||
|
|
601816abc0 | ||
|
|
bf8c0d03b5 | ||
|
|
2e40ec4a1a | ||
|
|
9b9fdf555b |
2
.github/labeler.yml
vendored
2
.github/labeler.yml
vendored
@@ -141,6 +141,8 @@
|
||||
"Category: Core - API - App Commands Package":
|
||||
# Source
|
||||
- redbot/core/app_commands/*
|
||||
# Docs
|
||||
- docs/framework_app_commands.rst
|
||||
# Tests
|
||||
- tests/core/test_app_commands.py
|
||||
"Category: Core - API - Commands Package":
|
||||
|
||||
6
.github/workflows/lint_python.yaml
vendored
6
.github/workflows/lint_python.yaml
vendored
@@ -20,7 +20,11 @@ jobs:
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.8"
|
||||
- run: "python -m pip install git+https://github.com/pycqa/pyflakes@1911c20#egg=pyflakes git+https://github.com/pycqa/pycodestyle@d219c68#egg=pycodestyle git+https://github.com/pycqa/flake8@3.7.9#egg=flake8"
|
||||
- run: >
|
||||
python -m pip install
|
||||
'pyflakes @ https://github.com/pycqa/pyflakes/tarball/1911c20'
|
||||
'pycodestyle @ https://github.com/pycqa/pycodestyle/tarball/d219c68'
|
||||
'flake8 @ https://github.com/pycqa/flake8/tarball/3.7.9'
|
||||
name: Install Flake8
|
||||
- run: "python -m flake8 . --count --select=E9,F7,F82 --show-source"
|
||||
name: Flake8 Linting
|
||||
|
||||
81
CHANGES.rst
81
CHANGES.rst
@@ -1,5 +1,82 @@
|
||||
.. Red changelogs
|
||||
|
||||
Redbot 3.5.12 (2024-08-08)
|
||||
==========================
|
||||
|
||||
| Thanks to all these amazing people that contributed to this release:
|
||||
| :ghuser:`aikaterna`, :ghuser:`Jackenmen`
|
||||
|
||||
Read before updating
|
||||
--------------------
|
||||
|
||||
#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
|
||||
|
||||
We've updated our default application.yml file and you should update your instance's ``application.yml`` accordingly.
|
||||
More specifically, we bumped the version of YT source plugin.
|
||||
`Download Red 3.5.12's default application.yml file <https://github.com/Cog-Creators/Red-DiscordBot/releases/download/3.5.12/Red-DiscordBot-3.5.12-default-lavalink-application.yml>`__
|
||||
|
||||
End-user changelog
|
||||
------------------
|
||||
|
||||
Fixes
|
||||
*****
|
||||
|
||||
- **Cogs - Audio** - Fixed the ``[p]llset secured`` command failing to send the response message (:issue:`6423`)
|
||||
- **Cogs - Audio** - Fixed some age-restricted YT tracks not playing (:issue:`6424`)
|
||||
|
||||
----
|
||||
|
||||
Redbot 3.5.11 (2024-08-04)
|
||||
==========================
|
||||
|
||||
| Thanks to all these amazing people that contributed to this release:
|
||||
| :ghuser:`aikaterna`, :ghuser:`anopem`, :ghuser:`Flame442`, :ghuser:`japandotorg`, :ghuser:`Jackenmen`, :ghuser:`Kowlin`, :ghuser:`palmtree5`, :ghuser:`yamikaitou`
|
||||
|
||||
Read before updating
|
||||
--------------------
|
||||
|
||||
#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
|
||||
|
||||
We've updated our default application.yml file and you should update your instance's ``application.yml`` accordingly.
|
||||
More specifically, we bumped the version of YT source plugin and added new plugin configuration.
|
||||
`Download Red 3.5.11's default application.yml file <https://github.com/Cog-Creators/Red-DiscordBot/releases/download/3.5.11/Red-DiscordBot-3.5.11-default-lavalink-application.yml>`__
|
||||
|
||||
End-user changelog
|
||||
------------------
|
||||
|
||||
Changes
|
||||
*******
|
||||
|
||||
- **Core** - Menus sent in ephemeral messages will now be deleted the same way menus in normal messages do (:issue:`6304`)
|
||||
- **Core - Dependencies** - Red's dependencies have been bumped (:issue:`6417`)
|
||||
|
||||
Fixes
|
||||
*****
|
||||
|
||||
- **Core - RPC** - RPC is now forcefully shut down after 2 minutes, if it cannot shutdown gracefully (:issue:`6391`, :issue:`6412`)
|
||||
- |cool| **Cogs - Audio** - Fixed some of the recent YT playback issues (:issue:`6414`, :issue:`6415`)
|
||||
- **Cogs - Mutes** - Fixed the cog failing to unmute a user, if they were muted by someone who no longer has permissions to mute that user (:issue:`6376`, :issue:`6411`)
|
||||
- **Cogs - Streams** - Fixed the viewer count for Twitch streams (:issue:`6413`)
|
||||
|
||||
Developer changelog
|
||||
-------------------
|
||||
|
||||
Additions
|
||||
*********
|
||||
|
||||
- **Core - App Commands Package** - Added `app_commands.UserFeedbackCheckFailure` exception allowing the cog creators to return non-default error message when the check fails (:issue:`6397`)
|
||||
|
||||
Documentation changes
|
||||
---------------------
|
||||
|
||||
Changes
|
||||
*******
|
||||
|
||||
- Updated instructions for installing the development version of Red in `guide_cog_creation` (:issue:`6408`)
|
||||
- Updated the contents of the ``red.plist`` file in the `autostart_mac` document to use no resource limitations, same as regular applications (:issue:`6416`)
|
||||
|
||||
----
|
||||
|
||||
Redbot 3.5.10 (2024-07-10)
|
||||
==========================
|
||||
|
||||
@@ -53,8 +130,8 @@ Fixes
|
||||
- **Core** - Fixed command autocompletion not showing any proper result (error message) when bot's global checks (channel/server ignores, allowlist/blocklist) do not pass (:issue:`6374`, :issue:`6375`)
|
||||
- **Cogs - Audio** - Fixed one of the recent YT playback issues (:issue:`6373`)
|
||||
|
||||
Developer changes
|
||||
-----------------
|
||||
Developer changelog
|
||||
-------------------
|
||||
|
||||
Changes
|
||||
*******
|
||||
|
||||
@@ -57,6 +57,8 @@ Paste the following and replace the following:
|
||||
<string>username</string>
|
||||
<key>InitGroups</key>
|
||||
<true/>
|
||||
<key>ProcessType</key>
|
||||
<string>Interactive</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
||||
|
||||
13
docs/framework_app_commands.rst
Normal file
13
docs/framework_app_commands.rst
Normal file
@@ -0,0 +1,13 @@
|
||||
.. red app_commands module documentation
|
||||
|
||||
====================
|
||||
App Commands Package
|
||||
====================
|
||||
|
||||
This package acts almost identically to :doc:`discord.ext.app_commands <dpy:interactions/api>`; i.e.
|
||||
all of the attributes from discord.py's are also in ours.
|
||||
Some of these attributes, however, have been slightly modified, while others have been added to
|
||||
extend functionalities used throughout the bot, as outlined below.
|
||||
|
||||
.. autoclass:: redbot.core.app_commands.UserFeedbackCheckFailure
|
||||
:members:
|
||||
@@ -47,6 +47,9 @@ extend functionalities used throughout the bot, as outlined below.
|
||||
|
||||
.. autoclass:: redbot.core.commands.DMContext
|
||||
|
||||
.. autoclass:: redbot.core.commands.UserFeedbackCheckFailure
|
||||
:members:
|
||||
|
||||
.. automodule:: redbot.core.commands.requires
|
||||
:members: PrivilegeLevel, PermState, Requires
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ Open a terminal or command prompt and type one of the following
|
||||
.. note::
|
||||
|
||||
To install the development version, replace ``Red-DiscordBot`` in the above commands with the
|
||||
link below. **The development version of the bot contains experimental changes. It is not
|
||||
value below. **The development version of the bot contains experimental changes. It is not
|
||||
intended for normal users.** We will not support anyone using the development version in any
|
||||
support channels. Using the development version may break third party cogs and not all core
|
||||
commands may work. Downgrading to stable after installing the development version may cause
|
||||
@@ -40,7 +40,7 @@ Open a terminal or command prompt and type one of the following
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
git+https://github.com/Cog-Creators/Red-DiscordBot@V3/develop#egg=Red-DiscordBot
|
||||
Red-DiscordBot @ https://github.com/Cog-Creators/Red-DiscordBot/tarball/V3/develop
|
||||
|
||||
|
||||
(Windows users may need to use :code:`py -3.8` or :code:`python` instead of :code:`python3.8`)
|
||||
|
||||
@@ -71,6 +71,7 @@ Welcome to Red - Discord Bot's documentation!
|
||||
framework_bot
|
||||
framework_checks
|
||||
framework_commands
|
||||
framework_app_commands
|
||||
framework_config
|
||||
framework_datamanager
|
||||
framework_events
|
||||
|
||||
@@ -339,7 +339,7 @@ def _early_init():
|
||||
|
||||
|
||||
# This is bumped automatically by release workflow (`.github/workflows/scripts/bump_version.py`)
|
||||
_VERSION = "3.5.10"
|
||||
_VERSION = "3.5.12"
|
||||
|
||||
__version__, version_info = VersionInfo._get_version()
|
||||
|
||||
|
||||
6
redbot/cogs/admin/locales/id-ID.po
generated
6
redbot/cogs/admin/locales/id-ID.po
generated
@@ -127,7 +127,7 @@ msgstr "\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:275
|
||||
msgid "{author} ({author.id}) changed the colour of role '{role.name}'"
|
||||
msgstr ""
|
||||
msgstr "{author} ({author.id}) telah mengubah warna role '{role.name}'"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:294 redbot/cogs/admin/admin.py:327
|
||||
msgid "Done."
|
||||
@@ -150,7 +150,7 @@ msgstr "\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:308
|
||||
msgid "{author} ({author.id}) changed the name of role '{old_name}' to '{name}'"
|
||||
msgstr ""
|
||||
msgstr "{author} ({author.id}) telah mengubah nama role '{old_name}' menjadi '{name}'"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:332
|
||||
#, docstring
|
||||
@@ -362,5 +362,5 @@ msgstr "Role \"{role_name}\" bukan selfrole yang tepat."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:36
|
||||
msgid "This selfrole has more than one case insensitive match. Please ask a moderator to resolve the ambiguity, or use the role ID to reference the role."
|
||||
msgstr ""
|
||||
msgstr "Selfrole ini memiliki lebih dari satu kecocokan yang tidak membedakan huruf besar dan kecil. Mohon tanyakan kepada moderator untuk menyelesaikan ambiguitas ini, atau gunakan ID role untuk merujuk role tersebut."
|
||||
|
||||
|
||||
20
redbot/cogs/alias/locales/id-ID.po
generated
20
redbot/cogs/alias/locales/id-ID.po
generated
@@ -24,7 +24,13 @@ msgid "Create aliases for commands.\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
" and append them to the stored alias.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "Buat alias untuk perintah.\n\n"
|
||||
" Alias adalah nama alternatif/jalan pintas untuk perintah. Mereka\n"
|
||||
" dapat berfungsi sebagai lambda (menyimpan argumen untuk digunakan berulang kali)\n"
|
||||
" atau sebagai jalan pintas untuk mengatakan \"x y z\".\n\n"
|
||||
" Saat dijalankan, alias akan menerima argumen tambahan apa pun\n"
|
||||
" dan menambahkannya ke alias yang disimpan.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/alias/alias.py:190
|
||||
msgid "Aliases:\n"
|
||||
@@ -95,28 +101,28 @@ msgstr "Alias global baru dengan pemicu `{name}` telah dibuat."
|
||||
#: redbot/cogs/alias/alias.py:332
|
||||
#, docstring
|
||||
msgid "Edit an existing alias in this server."
|
||||
msgstr ""
|
||||
msgstr "Edit sebuah alias yang ada di server ini."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:337 redbot/cogs/alias/alias.py:372
|
||||
msgid "The alias with the name {name} does not exist."
|
||||
msgstr ""
|
||||
msgstr "Alias dengan nama {name} tidak ada."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:343 redbot/cogs/alias/alias.py:378
|
||||
msgid "You attempted to edit an alias to a command that doesn't exist."
|
||||
msgstr ""
|
||||
msgstr "Anda mencoba mengedit alias ke perintah yang tidak ada."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352 redbot/cogs/alias/alias.py:385
|
||||
msgid "The alias with the trigger `{name}` has been edited successfully."
|
||||
msgstr ""
|
||||
msgstr "Alias dengan pemicu `{name}` telah berhasil diedit."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:359 redbot/cogs/alias/alias.py:392
|
||||
msgid "Alias with the name `{name}` was not found."
|
||||
msgstr ""
|
||||
msgstr "Alias dengan nama `{name}` tidak ditemukan."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:367
|
||||
#, docstring
|
||||
msgid "Edit an existing global alias."
|
||||
msgstr ""
|
||||
msgstr "Edit sebuah alias global yang ada."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#, docstring
|
||||
|
||||
@@ -124,7 +124,7 @@ class LavalinkSetupCommands(MixinMeta, metaclass=CompositeMetaClass):
|
||||
if meta[1]:
|
||||
await ctx.send(
|
||||
_(
|
||||
"Heap-size must be less than your system RAM, "
|
||||
"Heap-size must be less than your system RAM. "
|
||||
"You currently have {ram_in_bytes} of RAM available."
|
||||
).format(ram_in_bytes=inline(sizeof_fmt(meta[0])))
|
||||
)
|
||||
@@ -250,7 +250,7 @@ class LavalinkSetupCommands(MixinMeta, metaclass=CompositeMetaClass):
|
||||
return await self.send_embed_msg(
|
||||
ctx,
|
||||
title=_("Setting Not Changed"),
|
||||
description=_("A port must be between 0 and 65535 "),
|
||||
description=_("A port must be between 0 and 65535."),
|
||||
)
|
||||
await self.config.ws_port.set(port)
|
||||
await self.send_embed_msg(
|
||||
@@ -295,11 +295,14 @@ class LavalinkSetupCommands(MixinMeta, metaclass=CompositeMetaClass):
|
||||
title=_("Setting Changed"),
|
||||
description=_(
|
||||
"Unmanaged Lavalink node will no longer connect using the secured "
|
||||
"{secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
"{secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
).format(p=ctx.prefix, cmd=self.command_audioset_restart.qualified_name),
|
||||
unsecured_protocol=inline("ws://"),
|
||||
secured_protocol=inline("wss://"),
|
||||
).format(
|
||||
p=ctx.prefix,
|
||||
cmd=self.command_audioset_restart.qualified_name,
|
||||
unsecured_protocol=inline("ws://"),
|
||||
secured_protocol=inline("wss://"),
|
||||
),
|
||||
)
|
||||
|
||||
@command_llset.command(name="info", aliases=["settings"])
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "تم تغيير الإعدادات"
|
||||
|
||||
@@ -1098,13 +1098,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1864,7 +1864,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1923,14 +1923,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1950,93 +1950,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2044,12 +2044,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2057,170 +2057,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Czech\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -343,25 +343,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1090,13 +1090,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1850,7 +1850,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1909,14 +1909,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1936,93 +1936,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2030,12 +2030,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2043,170 +2043,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Danish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Einstellung geändert"
|
||||
|
||||
@@ -1149,13 +1149,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Startet die lavalink-Verbindung neu."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr "Fehler beim Herunterfahren von Lavalink"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Bitte laden Sie Audio neu (`{prefix}reload audio`)."
|
||||
|
||||
@@ -1917,7 +1917,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1976,15 +1976,15 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr "Einstellung nicht geändert"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgstr "Der Port muss zwischen 0 und 65535 liegen "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
||||
@@ -2003,93 +2003,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "Lavalink Verbindungseinstellungen anzeigen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "Verbindungseinstellungen"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "Host: [{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr "Port: [{port}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "Passwort: [{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr "Gesichert: [{state}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr "Einstellungen für Lavalink Knoten"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr "Ursprüngliche Heapsize: [{xms}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr "Maximale Heapsize: [{xmx}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr "Pfad zur ausführbaren Java-Datei: [{java_exc_path}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "Ich muss in der Lage sein dir Privatnachrichten schreiben zu können um dir diese Info zu senden."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2097,12 +2097,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2110,95 +2110,95 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr "Der Port muss zwischen 1025 und 65535 liegen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Der verwaltete Knoten erlaubt die Wiedergabe von lokalen Dateien.\n\n"
|
||||
"Führen Sie `{p}{cmd}` aus, damit es wirksam wird."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Der verwaltete Knoten wird nicht mehr aus lokalen Dateien wiedergeben.\n\n"
|
||||
"Führe `{p}{cmd}` aus, damit er wirksam wird."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Der verwaltete Knoten erlaubt die Wiedergabe von SoundCloud.\n\n"
|
||||
"Führen Sie `{p}{cmd}` aus, damit es wirksam wird."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Der verwaltete Knoten wird nicht mehr von SoundCloud wiedergeben.\n\n"
|
||||
"Führe `{p}{cmd}` aus, damit er wirksam wird."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
@@ -2207,82 +2207,82 @@ msgstr "`Gefährlicher Befehl` schaltet die YouTube als Quelle ein oder aus (die
|
||||
" Diese Option steuert die Wiedergabe aller YouTube- und Spotify-Inhalte.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Der verwaltete Knoten erlaubt die Wiedergabe von YouTube.\n\n"
|
||||
"Führen Sie `{p}{cmd}` aus, damit es wirksam wird."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Der verwaltete Knoten wird nicht mehr von YouTube wiedergeben.\n\n"
|
||||
"Führen Sie `{p}{cmd}` aus, damit es wirksam wird."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr "Der niedrigste Wert, auf den der Framebuffer eingestellt werden kann, ist 100 ms."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "PufferDurationMs des verwalteten Knotens auf {milliseconds} gesetzt.\n\n"
|
||||
"Führen Sie `{p}{cmd}` aus, damit es wirksam wird."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr "Der kleinste Wert, den der Puffer haben kann, ist 100 ms."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr "Setzt alle `llset`-Änderungen auf ihre Standardwerte zurück."
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Configuración cambiada"
|
||||
|
||||
@@ -1181,13 +1181,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Reinicia la conexión de lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr "Error al apagar el nodo Lavalink"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Por favor, recarga Audio (`{prefix}recargar audio`)."
|
||||
|
||||
@@ -1966,8 +1966,8 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr "El Heap-size debe ser de al menos 64M, sin embargo se recomienda que se ajuste a al menos 1G."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr "El heap-size debe ser menor que la memoria RAM de tu sistema. Actualmente tienes {ram_in_bytes} de RAM disponible."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
msgid "Heap-size must be less than {limit} due to your system limitations."
|
||||
@@ -2032,15 +2032,15 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr "Configuración no cambiada"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgstr "Un puerto debe estar entre 0 y 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
||||
@@ -2062,70 +2062,69 @@ msgstr "El nodo Lavalink no-gestionado ahora se conectará usando el protocolo s
|
||||
"Ejecute `{p}{cmd}` para que tenga efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo Lavalink gestionado ya no se conectará utilizando el protocolo seguro {secured_protocol} y usará {unsecured_protocol} en su lugar.\n\n"
|
||||
"Ejecutar `{p}{cmd}` para que surta efecto."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "Mostrar configuración de conexión Lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "Configuración de conexión"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "Host: [{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr "Puerto: [{port}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr "Puerto HTTP/HTTPS por defecto"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "Contraseña: [{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr "Seguro: [{state}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr "Configuración del nodo Lavalink"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr "Heapsize Inicial: [{xms}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr "Heapsize máximo: [{xmx}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr "Ruta del ejecutable de Java: [{java_exc_path}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "Necesito ser capaz de DM para enviarte esta información."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr "Sube una copia del archivo application.yml utilizado por el nodo Lavalink administrado."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
@@ -2134,12 +2133,12 @@ msgstr "Configura las opciones de ejecución del nodo Lavalink.\n\n"
|
||||
" Es probable que todos los ajustes de este grupo provoquen un mal funcionamiento del audio si se cambia de sus valores predeterminados, sólo cambie la configuración de aquí si ha sido sugerido por el soporte.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr "Configura la autorización de nodo administrado y la configuración de conexión."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
@@ -2148,13 +2147,13 @@ msgstr "`Comando peligroso` Establece la dirección IP de enlace del nodo Lavali
|
||||
" Este valor por defecto es `localhost` que restringirá el servidor a sólo las aplicaciones localhost por defecto, cambiar esto probablemente romperá el nodo Lavalink administrado si no sabe lo que está haciendo.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ahora aceptará la conexión en {host}.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2165,13 +2164,13 @@ msgstr "Establecer la contraseña de conexión del nodo Lavalink administrado\n\
|
||||
" El valor por defecto es `youshallnotpass`.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ahora aceptará {password} como el token de autorización.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que tenga efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2182,17 +2181,17 @@ msgstr "`Comando peligroso` Establece el puerto de conexión de nodo Lavalink ad
|
||||
" El valor por defecto es `2333`.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr "El puerto debe ser entre 1024 y 49151."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ahora aceptará conexiones en el puerto {port}.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
@@ -2201,7 +2200,7 @@ msgstr "`Comando peligroso` Activa o desactiva las fuentes de audio.\n\n"
|
||||
" Por defecto, todas las fuentes están habilitadas, solo debes usar comandos aquí para desactivar una fuente específica si has sido avisado de, desactivar las fuentes sin conocimiento de fondo puede causar que el audio se rompa.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
@@ -2210,19 +2209,19 @@ msgstr "Activa o desactiva el uso de URLs directas HTTP.\n\n"
|
||||
" Esta fuente se utiliza para permitir la reproducción de streams HTTP directos (esto no afecta la reproducción directa de URL para las otras fuentes).\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado permitirá la reproducción desde las URL directas.\n\n"
|
||||
"Ejecuta `{p}{cmd}` para que tenga efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ya no reproducirá desde las URLs directas.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
@@ -2231,19 +2230,19 @@ msgstr "Activa o desactiva Bandcamp como fuente.\n\n"
|
||||
" Esta función controla la reproducción de todo el contenido relacionado con Bandcamping.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado permitirá la reproducción desde Bandcamp.\n\n"
|
||||
"Ejecuta `{p}{cmd}` para que tenga efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ya no reproducirá desde Bandcamp.\n\n"
|
||||
"Ejecuta `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
@@ -2252,19 +2251,19 @@ msgstr "Activa o desactiva el uso de archivos locales.\n\n"
|
||||
" Esta opción controla la reproducción de pistas locales, generalmente se encuentran dentro de la carpeta `localtracks`.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado permitirá la reproducción desde archivos locales.\n\n"
|
||||
"Ejecutar `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ya no se reproducirá desde archivos locales.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
@@ -2273,19 +2272,19 @@ msgstr "Activa o desactiva la fuente de SoundCloud.\n\n"
|
||||
" Esto activa o desactiva la reproducción de todo el contenido relacionado con SoundCloud.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado permitirá la reproducción desde Url directas.\n\n"
|
||||
"Ejecuta `{p}{cmd}` para que tenga efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ya no reproducirá desde Soundcloud.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
@@ -2294,19 +2293,19 @@ msgstr "`Comando peligroso` activa o desactiva la fuente de YouTube (esto incluy
|
||||
" Esta opción controla la reproducción de todo el contenido relacionado con YouTube y Spotify.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado permitirá la reproducción desde YouTube.\n\n"
|
||||
"Ejecuta `{p}{cmd}` para que tenga efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ya no reproducirá desde YouTube.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
@@ -2315,19 +2314,19 @@ msgstr "Activa o desactiva la fuente de Twitch.\n\n"
|
||||
" Esta función controla la reproducción de todo el contenido relacionado con Twitch.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado permitirá la reproducción desde Twitch.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ya no reproducirá desde Twitch.\n\n"
|
||||
"Ejecuta `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
@@ -2336,19 +2335,19 @@ msgstr "Activa o desactiva la fuente Vimeo.\n\n"
|
||||
" Esta función controla la reproducción de todo el contenido relacionado con Vimeo.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado permitirá la reproducción desde Vimeo.\n\n"
|
||||
"Ejecuta `{p}{cmd}` para que tenga efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "El nodo administrado ya no reproducirá desde Vimeo.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que surta efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
@@ -2357,18 +2356,18 @@ msgstr "`Comando peligroso` Establece el tamaño del framebuffer del nodo admini
|
||||
" Sólo cambie esto si ha sido notificado directamente a cambiarlo puede causar problemas significativos de reproducción.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr "El valor más bajo al que se puede ajustar el framebuffer es 100ms."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Se han cambiado el bufferDurationMs de los nodos administrados a {milliseconds}.\n\n"
|
||||
"Ejecute `{p}{cmd}` para que tenga efecto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
@@ -2377,11 +2376,11 @@ msgstr "`Comando peligroso` Establece el tamaño del búfer JDA-NAS gestionado d
|
||||
" Sólo cambie esto si ha sido notificado directamente a cambiarlo puede causar problemas significativos de reproducción.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr "El valor más bajo que puede tener el buffer es de 100ms."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr "Restablece todos los cambios de `llset` a sus valores predeterminados."
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Finnish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Asetus muutettu"
|
||||
|
||||
@@ -1129,13 +1129,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Käynnistää Lavalink-yhteyden uudelleen."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Lataathan Audion uudelleen (`{prefix}reload audio`)."
|
||||
|
||||
@@ -1898,7 +1898,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1957,14 +1957,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1984,93 +1984,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "Näytä Lavalink-yhteysasetukset."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "Yhteysasetukset"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "Osoite: [{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "Salasana: [{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "Minun tulee pystyä lähettämään sinulle yksityisviestejä, jotta voin lähettää nämä tiedot."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2078,12 +2078,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2091,170 +2091,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Paramètre modifié"
|
||||
|
||||
@@ -1177,13 +1177,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Redémarrage de la connection à Lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Veuillez recharger l'Audio (`{prefix}reload audio`)."
|
||||
|
||||
@@ -1951,7 +1951,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -2010,14 +2010,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -2039,93 +2039,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "Affiche les paramètres de connexion de Lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "Paramètres de connexion"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "Hôte : [{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr "Port : [{port}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr "Port HTTP/HTTPS par défaut"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "Mot de passe : [{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr "Sécurisé : [{state}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr "Paramètres du noeud Lavalink"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "Je dois être en mesure de vous envoyer cette information par MP."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr "Télécharge une copie du fichier application.yml utilisé par le noeud Lavalink géré."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2133,12 +2133,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2146,23 +2146,23 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr "Le port doit être compris entre 1024 et 49151."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
@@ -2171,17 +2171,17 @@ msgstr "Activer/désactiver la source HTTP.\n\n"
|
||||
" Permet de contrôler la lecture de tout le contenu lié au stream direct HTTP (n'affecte pas la lecture directe d'URL pour les autres sources).\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
@@ -2190,17 +2190,17 @@ msgstr "Activer/désactiver la source Bandcamp.\n\n"
|
||||
" Permet de contrôler la lecture de tout le contenu lié à Bandcamp.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
@@ -2209,17 +2209,17 @@ msgstr "Activer/désactiver les fichiers locaux.\n\n"
|
||||
" Permet de contrôler la lecture de tout le contenu lié aux fichiers locaux.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
@@ -2228,17 +2228,17 @@ msgstr "Activer/désactiver la source Soundcloud.\n\n"
|
||||
" Permet de contrôler la lecture de tout le contenu lié à SoundCloud.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
@@ -2247,17 +2247,17 @@ msgstr "`Commande dangereuse` Activer/désactiver la source Youtube (inclus Spot
|
||||
" Permet de contrôler la lecture de tout le contenu lié à Youtube et Spotify.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
@@ -2266,17 +2266,17 @@ msgstr "Activer/désactiver la source Twitch.\n\n"
|
||||
" Permet de contrôler la lecture de tout le contenu lié à Twitch.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
@@ -2285,45 +2285,45 @@ msgstr "Activer/désactiver la source Vimeo.\n\n"
|
||||
" Permet de contrôler la lecture de tout le contenu lié à Vimeo.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Hindi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Croatian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -343,25 +343,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Postavka je promijenjena"
|
||||
|
||||
@@ -1091,13 +1091,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1852,7 +1852,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1911,14 +1911,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1938,93 +1938,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2032,12 +2032,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2045,170 +2045,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Indonesian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Pengaturan Diubah"
|
||||
|
||||
@@ -1092,13 +1092,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1852,7 +1852,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1911,14 +1911,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1938,93 +1938,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2032,12 +2032,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2045,170 +2045,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Italian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -344,25 +344,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Impostazione modificata"
|
||||
|
||||
@@ -1118,13 +1118,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1878,7 +1878,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1937,14 +1937,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1964,93 +1964,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2058,12 +2058,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2071,170 +2071,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Japanese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Korean\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "설정 변경됨"
|
||||
|
||||
@@ -1104,13 +1104,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "라바링크 연결 재시작"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1865,7 +1865,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1924,14 +1924,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1951,93 +1951,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2045,12 +2045,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2058,170 +2058,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Norwegian Bokmal\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Innstilling endret"
|
||||
|
||||
@@ -1181,13 +1181,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Gjenoppretter tilkoblingen med lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr "Kunne ikke slå av Lavalink-noden"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Last lyd på nytt (`{prefix}reload audio`)."
|
||||
|
||||
@@ -1967,7 +1967,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -2026,14 +2026,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -2053,93 +2053,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "Vis tilkoblingsinnstillinger for Lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "Tilkoblingsinnstillinger"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "Vert: [{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "Passord: [{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "Jeg må være i stand til å sende deg denne info."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2147,12 +2147,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2160,170 +2160,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Dutch\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Instellingen aangepast"
|
||||
|
||||
@@ -1151,13 +1151,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Herstart de lavalink verbinding."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr "Lavalink uitschakelen mislukt"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Herlaad audio (`{prefix}herlaad audio`)."
|
||||
|
||||
@@ -1922,7 +1922,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1981,14 +1981,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -2008,93 +2008,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2102,12 +2102,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2115,95 +2115,95 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Beheerde node staat het afspelen van lokale bestanden toe.\n\n"
|
||||
"Draai `{p}{cmd}` om deze effectief te maken."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Beheerde node zal niet meer van lokale bestanden afspelen.\n\n"
|
||||
"Voer `{p}{cmd}` uit om deze effectief te maken."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Beheerde node staat het afspelen vanaf Soundcloud toe.\n\n"
|
||||
"Voer `{p}{cmd}` uit om deze effectief te maken."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Beheerde node zal niet meer vanaf Soundcloud afspelen.\n\n"
|
||||
"Voer `{p}{cmd}` uit om deze effectief te maken."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
@@ -2212,19 +2212,19 @@ msgstr "`Gevaarlijk commando` Toggle YouTube bron aan of uit (dit omvat Spotify)
|
||||
" Deze optie bepaalt het afspelen van alle YouTube en Spotify gerelateerde content.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Beheerde node staat het afspelen vanaf YouTube toe.\n\n"
|
||||
"Draai `{p}{cmd}` om deze effectief te maken."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "De beheerde node zal niet meer vanaf YouTube afspelen.\n\n"
|
||||
"Voer `{p}{cmd}` uit om deze effectief te maken."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
@@ -2233,62 +2233,62 @@ msgstr "Zet Twitch bron aan of uit.\n\n"
|
||||
" Deze schakelaar bepaalt het afspelen van alle Twitch-gerelateerde inhoud.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Ustawienie zmienione"
|
||||
|
||||
@@ -1181,13 +1181,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Ponownie uruchamia połączenie lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr "Nie udało się wyłączyć Lavalink'a"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Proszę przeładować Audio (`{prefix}reload audio`)."
|
||||
|
||||
@@ -1961,8 +1961,8 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr "Heap-size musi wynosić co najmniej 64M, jednak zaleca się ustawienie go na co najmniej 1G."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr "Heap-size musi być mniejszy niż twój systemowy RAM, Obecnie masz {ram_in_bytes} dostępnej pamięci RAM."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
msgid "Heap-size must be less than {limit} due to your system limitations."
|
||||
@@ -2021,15 +2021,15 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr "Ustawienie nie zostało zmienione"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgstr "Port musi być pomiędzy 0 a 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
||||
@@ -2048,69 +2048,69 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "Wyświetl ustawienia połączenia Lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "Ustawienia połączenia"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "Host: [{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr "Port: [{port}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "Hasło: [{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr "Zabezpieczony: [{state}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr "Ustawienia Lavalink"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr "Początkowy Heapsize: [{xms}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr "Maksymalny Heapsize: [{xmx}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr "Ekonwersja Javy: [{java_exc_path}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "Muszę być w stanie wysłać Ci te informacje."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr "Przesyła kopię pliku application.yml używanego przez zarządzany węzeł Lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
@@ -2119,12 +2119,12 @@ msgstr "Skonfiguruj opcje zarządzanego węzła Lavalink.\n\n"
|
||||
" Wszystkie ustawienia w tej grupie prawdopodobnie spowodują awarię dźwięku w przypadku zmiany ich wartości domyślnych, zmień ustawienia tutaj, jeśli otrzymałeś polecenie wsparcia.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr "Skonfiguruj autoryzację zarządzanego węzła i ustawienia połączenia."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
@@ -2133,13 +2133,13 @@ msgstr "`Niebezpieczna komenda` Ustawienie wiążącego adresu IP zarządzanego
|
||||
" Ta wartość domyślnie to `localhost`, co ograniczy serwer tylko do aplikacji localhost, zmiana tego spowoduje prawdopodobnie uszkodzenie zarządzanego węzła Lavalink, jeśli nie wiesz co robisz.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł zaakceptuje połączenie {host}.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby stało się skuteczne."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2150,13 +2150,13 @@ msgstr "Ustaw hasło połączenia zarządzanego węzła Lavalink.\n\n"
|
||||
" Wartością domyślną jest `youshallnotpass`.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł zaakceptuje {password} jako token autoryzacyjny.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby stał się skuteczny."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2167,17 +2167,17 @@ msgstr "`Dangerous command` Ustaw port połączenia zarządzanego węzła Lavali
|
||||
" Wartość domyślna to `2333`.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr "Port musi mieścić się w przedziale 1024–49151."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł będzie teraz akceptować połączenia na {port}.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
@@ -2186,7 +2186,7 @@ msgstr "`Niebezpieczne polecenie` Włącz/wyłącz źródła audio.\n\n"
|
||||
" Domyślnie wszystkie źródła są włączone, powinieneś używać poleceń tutaj, aby wyłączyć określone źródło, jeśli zostaniesz polecony, wyłączenie źródeł bez wiedzy w tle może spowodować uszkodzenie dźwięku.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
@@ -2195,19 +2195,19 @@ msgstr "Włącz lub wyłącz bezpośrednie użycie adresu URL HTTP.\n\n"
|
||||
" To źródło jest używane do umożliwienia odtwarzania z bezpośrednich strumieni HTTP (nie ma to wpływu na bezpośrednie odtwarzanie URL dla innych źródeł).\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z bezpośrednich adresów URL.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł nie będzie już odtwarzany z bezpośrednich adresów URL.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
@@ -2216,19 +2216,19 @@ msgstr "Przełącz lub wyłącz źródło Bandcamp.\n\n"
|
||||
" To przełączanie kontroluje odtwarzanie wszystkich treści związanych z Bandcamp.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z Bandcamp.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł nie będzie już grał z Bandcamp.\n\n"
|
||||
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
@@ -2237,19 +2237,19 @@ msgstr "Przełącz lub wyłącz lokalne użycie plików.\n\n"
|
||||
" To przełącz kontroluje odtwarzanie całej lokalnej zawartości ścieżki, zazwyczaj znajdującej się w folderze `localtracks`.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z plików lokalnych.\n\n"
|
||||
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł nie będzie już odtwarzany z plików lokalnych.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
@@ -2258,19 +2258,19 @@ msgstr "Włącz lub wyłącz źródło Soundcloud.\n\n"
|
||||
" To przełączanie kontroluje odtwarzanie wszystkich treści związanych z SoundCloud.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z Soundcloud.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł nie będzie już odtwarzany z Soundcloud.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
@@ -2279,19 +2279,19 @@ msgstr "`Niebezpieczne polecenie` Włącza lub wyłącz źródło YouTube (w tym
|
||||
" Przełącznik ten kontroluje odtwarzanie wszystkich treści związanych z YouTube i Spotify.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z YouTube.\n\n"
|
||||
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł nie będzie już odtwarzany z YouTube.\n\n"
|
||||
"Uruchom `{p}{cmd}`, aby stał się skuteczny."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
@@ -2300,19 +2300,19 @@ msgstr "Włącz lub wyłącz źródło Twitcha.\n\n"
|
||||
" Przełącznik ten kontroluje odtwarzanie wszystkich treści związanych z Twitchem.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z Twitcha.\n\n"
|
||||
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł nie będzie już odtwarzany z Twitcha.\n\n"
|
||||
"Uruchom `{p}{cmd}`, aby stał się skuteczny."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
@@ -2321,19 +2321,19 @@ msgstr "Włącz lub wyłącz źródło Vimeo.\n\n"
|
||||
" To przełączanie kontroluje odtwarzanie wszystkich treści związanych z Vimeo.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł pozwoli na odtwarzanie z Vimeo.\n\n"
|
||||
"Uruchom `{p}{cmd}` aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Zarządzany węzeł nie będzie już grał z Vimeo.\n\n"
|
||||
"Uruchom `{p}{cmd}`, aby zaczął działać."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
@@ -2342,18 +2342,18 @@ msgstr "`Niebezpieczna komenda` Ustaw rozmiar framebuffera zarządzanego węzła
|
||||
" Zmieniaj to tylko wtedy, gdy zostało Ci to bezpośrednio zalecone, zmiana może spowodować znaczące problemy z odtwarzaniem.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr "Najniższa wartość, jaką bufor ramki można ustawić na 100ms."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "Wielkość node heap-size ustawiona na {milliseconds}.\n\n"
|
||||
"Uruchom `{p}{cmd}`, aby to zadziałało."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
@@ -2362,11 +2362,11 @@ msgstr "`Niebezpieczna komenda` Ustawienie rozmiaru bufora zarządzanego węzła
|
||||
" Zmieniaj to tylko wtedy, gdy zostało Ci to bezpośrednio zalecone, zmiana może spowodować znaczące problemy z odtwarzaniem.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr "Najniższa wartość bufora może wynosić 100 ms."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr "Zresetuj wszystkie `llset` z powrotem do ich wartości domyślnych."
|
||||
|
||||
166
redbot/cogs/audio/core/commands/locales/pt-BR.po
generated
166
redbot/cogs/audio/core/commands/locales/pt-BR.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 14:13+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Configuração alterada"
|
||||
|
||||
@@ -1151,13 +1151,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Reinicia a conexão lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1917,7 +1917,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1976,14 +1976,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -2003,93 +2003,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2097,12 +2097,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2110,170 +2110,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Portuguese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Definições alteradas"
|
||||
|
||||
@@ -993,7 +993,7 @@ msgstr "Caminho das faixas locais: [{localpath}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1159
|
||||
msgid "Lavalink Plugin Versions"
|
||||
msgstr ""
|
||||
msgstr "Versões do Plugin Lavalink"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1174
|
||||
#, docstring
|
||||
@@ -1129,11 +1129,11 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1445
|
||||
msgid "Cache age cannot be less than 7 days. If you wish to disable it run {prefix}audioset cache.\n"
|
||||
msgstr ""
|
||||
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
|
||||
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
|
||||
#, docstring
|
||||
@@ -1149,31 +1149,31 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1477
|
||||
#, docstring
|
||||
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/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
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/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1493
|
||||
msgid "Restarting Lavalink"
|
||||
msgstr ""
|
||||
msgstr "Reiniciando Lavalink"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1494
|
||||
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
|
||||
#, docstring
|
||||
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
|
||||
msgid "Error"
|
||||
@@ -1181,7 +1181,7 @@ msgstr "Erro"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1506
|
||||
msgid "Music without sound isn't music at all. Try setting the volume higher then 0%."
|
||||
msgstr ""
|
||||
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:1522
|
||||
@@ -1190,16 +1190,16 @@ msgstr "Definições alteradas"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1515
|
||||
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
|
||||
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
|
||||
#, docstring
|
||||
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:89
|
||||
@@ -1230,14 +1230,14 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:49
|
||||
#: redbot/cogs/audio/core/commands/controller.py:55
|
||||
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:264
|
||||
#: redbot/cogs/audio/core/commands/controller.py:332
|
||||
#: redbot/cogs/audio/core/commands/controller.py:586
|
||||
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:62
|
||||
@@ -1246,7 +1246,7 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:61
|
||||
msgid "Unable to Disconnect"
|
||||
msgstr ""
|
||||
msgstr "Não foi possível desconectar"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:65
|
||||
msgid "Disconnecting..."
|
||||
@@ -1255,7 +1255,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/controller.py:87
|
||||
#, docstring
|
||||
msgid "Now playing."
|
||||
msgstr ""
|
||||
msgstr "A reproduzir."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:111
|
||||
#: 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:892
|
||||
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:857
|
||||
msgid "Removed track from queue"
|
||||
msgstr ""
|
||||
msgstr "Remove a faixa da fila"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:834
|
||||
msgid "Removed {track} from the queue."
|
||||
msgstr ""
|
||||
msgstr "{track} foi removido da fila."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/controller.py:852
|
||||
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
|
||||
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
|
||||
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
|
||||
#, docstring
|
||||
@@ -1716,7 +1716,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/equalizer.py:73
|
||||
#, docstring
|
||||
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:89
|
||||
@@ -1813,7 +1813,7 @@ msgstr "Tente o comando novamente com um nome mais curto."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/equalizer.py:275
|
||||
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
|
||||
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"
|
||||
" 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
|
||||
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."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr "O tamanho do heap deve ser menor que a RAM do sistema. Atualmente você tem {ram_in_bytes} de RAM disponível."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
msgid "Heap-size must be less than {limit} due to your system limitations."
|
||||
@@ -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:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr "Configurações não alteradas"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgstr "A porta deve estar entre 0 e 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
||||
@@ -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."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "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"
|
||||
"Execute `{p}{cmd}` para que ele tenha efeito."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
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"
|
||||
msgstr "Configurações de conexão"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "Host: [{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr "Porta: [{port}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr "Default HTTP/HTTPS port"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "Senha: [{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Executar Java: [{java_exc_path}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "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
|
||||
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."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
@@ -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"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr "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
|
||||
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"
|
||||
@@ -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"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "O nó gerenciado irá agora aceitar a conexão em {host}.\n\n"
|
||||
"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
|
||||
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"
|
||||
@@ -2126,12 +2130,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2139,170 +2143,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Настройки изменены"
|
||||
|
||||
@@ -1174,13 +1174,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Перезапуск соединение с lava link."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Пожалуйста, перезагрузите 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 ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -2009,14 +2009,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -2036,93 +2036,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "Отображение настроек соединения Lava link."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "Параметры подключения"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "Host: [{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "Пароль: [{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "Я должен иметь возможность отправить вам эту информацию через ЛС."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2130,12 +2130,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2143,170 +2143,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Slovak\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Slovenian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Swedish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Turkish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Ayar Değiştirildi"
|
||||
|
||||
@@ -1151,13 +1151,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "Lavalink bağlantısını yeniden başlatır."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr "Lavalink kapatılamadı"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "Lütfen Audio'yu yeniden başlatın (`{prefix}reload audio`)."
|
||||
|
||||
@@ -1927,7 +1927,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1986,15 +1986,15 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr "Ayarlar Değiştirilmedi"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgstr "Port numarası 0 ve 65535 arasında olmalıdır "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
||||
@@ -2013,93 +2013,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "Lavalink bağlantı ayarlarını göster."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "Bağlantı Ayarları"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "Sunucu: [{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "Şifre: [{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr "Lavalink Ayarları"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "Sana bu bilgiyi gönderebilmek için özel mesaj atabilmem gerek."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2107,12 +2107,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2120,170 +2120,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -341,25 +341,25 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1088,13 +1088,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1848,7 +1848,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1907,14 +1907,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1934,93 +1934,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2028,12 +2028,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2041,170 +2041,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -343,25 +343,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "Thiết lập đã được thay đổi"
|
||||
|
||||
@@ -1094,13 +1094,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr ""
|
||||
|
||||
@@ -1855,7 +1855,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1914,14 +1914,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1941,93 +1941,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2035,12 +2035,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2048,170 +2048,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "设置已更改"
|
||||
|
||||
@@ -1131,13 +1131,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "请重新加载音频 (\"{prefix}重新加载音频)。"
|
||||
|
||||
@@ -1894,7 +1894,7 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
@@ -1953,14 +1953,14 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
@@ -1980,93 +1980,93 @@ msgid "Unmanaged Lavalink node will now connect using the secured {secured_proto
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2074,12 +2074,12 @@ msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2087,170 +2087,170 @@ msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -345,25 +345,25 @@ msgstr "\n"
|
||||
#: redbot/cogs/audio/core/commands/llset.py:258
|
||||
#: redbot/cogs/audio/core/commands/llset.py:282
|
||||
#: redbot/cogs/audio/core/commands/llset.py:295
|
||||
#: redbot/cogs/audio/core/commands/llset.py:388
|
||||
#: redbot/cogs/audio/core/commands/llset.py:412
|
||||
#: redbot/cogs/audio/core/commands/llset.py:443
|
||||
#: redbot/cogs/audio/core/commands/llset.py:472
|
||||
#: redbot/cogs/audio/core/commands/llset.py:481
|
||||
#: redbot/cogs/audio/core/commands/llset.py:499
|
||||
#: redbot/cogs/audio/core/commands/llset.py:508
|
||||
#: redbot/cogs/audio/core/commands/llset.py:526
|
||||
#: redbot/cogs/audio/core/commands/llset.py:535
|
||||
#: redbot/cogs/audio/core/commands/llset.py:553
|
||||
#: redbot/cogs/audio/core/commands/llset.py:562
|
||||
#: redbot/cogs/audio/core/commands/llset.py:580
|
||||
#: redbot/cogs/audio/core/commands/llset.py:589
|
||||
#: redbot/cogs/audio/core/commands/llset.py:607
|
||||
#: redbot/cogs/audio/core/commands/llset.py:616
|
||||
#: redbot/cogs/audio/core/commands/llset.py:634
|
||||
#: redbot/cogs/audio/core/commands/llset.py:643
|
||||
#: redbot/cogs/audio/core/commands/llset.py:670
|
||||
#: redbot/cogs/audio/core/commands/llset.py:701
|
||||
#: redbot/cogs/audio/core/commands/llset.py:391
|
||||
#: redbot/cogs/audio/core/commands/llset.py:415
|
||||
#: redbot/cogs/audio/core/commands/llset.py:446
|
||||
#: redbot/cogs/audio/core/commands/llset.py:475
|
||||
#: redbot/cogs/audio/core/commands/llset.py:484
|
||||
#: redbot/cogs/audio/core/commands/llset.py:502
|
||||
#: redbot/cogs/audio/core/commands/llset.py:511
|
||||
#: redbot/cogs/audio/core/commands/llset.py:529
|
||||
#: redbot/cogs/audio/core/commands/llset.py:538
|
||||
#: redbot/cogs/audio/core/commands/llset.py:556
|
||||
#: redbot/cogs/audio/core/commands/llset.py:565
|
||||
#: redbot/cogs/audio/core/commands/llset.py:583
|
||||
#: redbot/cogs/audio/core/commands/llset.py:592
|
||||
#: redbot/cogs/audio/core/commands/llset.py:610
|
||||
#: redbot/cogs/audio/core/commands/llset.py:619
|
||||
#: redbot/cogs/audio/core/commands/llset.py:637
|
||||
#: redbot/cogs/audio/core/commands/llset.py:646
|
||||
#: redbot/cogs/audio/core/commands/llset.py:673
|
||||
#: redbot/cogs/audio/core/commands/llset.py:704
|
||||
msgid "Setting Changed"
|
||||
msgstr "已變更設定"
|
||||
|
||||
@@ -1181,13 +1181,13 @@ msgid "Restarts the lavalink connection."
|
||||
msgstr "重啟Lavalink連接。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1485
|
||||
#: redbot/cogs/audio/core/commands/llset.py:731
|
||||
#: redbot/cogs/audio/core/commands/llset.py:734
|
||||
msgid "Failed To Shutdown Lavalink Node"
|
||||
msgstr "關閉 Lavalink 節點失敗!"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:1486
|
||||
#: redbot/cogs/audio/core/commands/llset.py:187
|
||||
#: redbot/cogs/audio/core/commands/llset.py:732
|
||||
#: redbot/cogs/audio/core/commands/llset.py:735
|
||||
msgid "Please reload Audio (`{prefix}reload audio`)."
|
||||
msgstr "請重新加載Audio (`{prefix}reload audio`)。"
|
||||
|
||||
@@ -1966,8 +1966,8 @@ msgid "Heap-size must be at least 64M, however it is recommended to have it set
|
||||
msgstr "記憶體大小必須至少為 64M,但建議至少設置為 1G。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:126
|
||||
msgid "Heap-size must be less than your system RAM, You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr "記憶體大小必須小於您的系統 RAM,您當前有 {ram_in_bytes} 可用 。"
|
||||
msgid "Heap-size must be less than your system RAM. You currently have {ram_in_bytes} of RAM available."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:133
|
||||
msgid "Heap-size must be less than {limit} due to your system limitations."
|
||||
@@ -2032,15 +2032,15 @@ msgid "Set the Lavalink node port.\n\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:252
|
||||
#: redbot/cogs/audio/core/commands/llset.py:436
|
||||
#: redbot/cogs/audio/core/commands/llset.py:664
|
||||
#: redbot/cogs/audio/core/commands/llset.py:695
|
||||
#: redbot/cogs/audio/core/commands/llset.py:439
|
||||
#: redbot/cogs/audio/core/commands/llset.py:667
|
||||
#: redbot/cogs/audio/core/commands/llset.py:698
|
||||
msgid "Setting Not Changed"
|
||||
msgstr "設置未更變"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:253
|
||||
msgid "A port must be between 0 and 65535 "
|
||||
msgstr "端口必須介於 0 和 65535 之間 "
|
||||
msgid "A port must be between 0 and 65535."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:259
|
||||
msgid "Unmanaged Lavalink node port set to {port}. Run `{p}{cmd}` for it to take effect."
|
||||
@@ -2062,70 +2062,69 @@ msgstr "非託管 Lavalink 節點現在將使用安全的 {secured_protocol} 協
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:296
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and wil use {unsecured_protocol} instead .\n\n"
|
||||
msgid "Unmanaged Lavalink node will no longer connect using the secured {secured_protocol} protocol and will use {unsecured_protocol} instead.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "非託管 Lavalink 節點將不再使用安全的 {secured_protocol} 協議連接,而是使用 {unsecured_protocol} 代替。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:307
|
||||
#: redbot/cogs/audio/core/commands/llset.py:310
|
||||
#, docstring
|
||||
msgid "Display Lavalink connection settings."
|
||||
msgstr "顯示 Lavalink 連接設置。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:311
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
msgid "Connection Settings"
|
||||
msgstr "連接設置"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:312
|
||||
#: redbot/cogs/audio/core/commands/llset.py:321
|
||||
#: redbot/cogs/audio/core/commands/llset.py:315
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
msgid "Host: [{host}]\n"
|
||||
msgstr "主機:[{host}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:313
|
||||
#: redbot/cogs/audio/core/commands/llset.py:324
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:327
|
||||
msgid "Port: [{port}]\n"
|
||||
msgstr "端口: [{port}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:314
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
msgid "Default HTTP/HTTPS port"
|
||||
msgstr "默認 HTTP/HTTPS port"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:316
|
||||
#: redbot/cogs/audio/core/commands/llset.py:325
|
||||
#: redbot/cogs/audio/core/commands/llset.py:319
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
msgid "Password: [{password}]\n"
|
||||
msgstr "密碼:[{password}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:317
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
msgid "Secured: [{state}]\n"
|
||||
msgstr "安全:[{state}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:320
|
||||
#: redbot/cogs/audio/core/commands/llset.py:323
|
||||
msgid "Lavalink Node Settings"
|
||||
msgstr "Lavalink 節點設定"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:328
|
||||
#: redbot/cogs/audio/core/commands/llset.py:331
|
||||
msgid "Initial Heapsize: [{xms}]\n"
|
||||
msgstr "初始記憶體大小:[{xms}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:329
|
||||
#: redbot/cogs/audio/core/commands/llset.py:332
|
||||
msgid "Max Heapsize: [{xmx}]\n"
|
||||
msgstr "最大記憶體大小:[{xmx}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:330
|
||||
#: redbot/cogs/audio/core/commands/llset.py:333
|
||||
msgid "Java exec: [{java_exc_path}]\n"
|
||||
msgstr "Java 執行程序:[{java_exc_path}]\n"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:338
|
||||
#: redbot/cogs/audio/core/commands/llset.py:360
|
||||
#: redbot/cogs/audio/core/commands/llset.py:341
|
||||
#: redbot/cogs/audio/core/commands/llset.py:363
|
||||
msgid "I need to be able to DM you to send you this info."
|
||||
msgstr "我需要能夠通過 DM 向您發送此信息。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:343
|
||||
#: redbot/cogs/audio/core/commands/llset.py:346
|
||||
#, docstring
|
||||
msgid "Uploads a copy of the application.yml file used by the managed Lavalink node."
|
||||
msgstr "上傳託管 Lavalink 節點使用的 application.yml 文件的副本。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:367
|
||||
#: redbot/cogs/audio/core/commands/llset.py:370
|
||||
#, docstring
|
||||
msgid "Configure the managed Lavalink node runtime options.\n\n"
|
||||
" All settings under this group will likely cause Audio to malfunction if changed from their defaults, only change settings here if you have been advised to by support.\n"
|
||||
@@ -2134,12 +2133,12 @@ msgstr "配置託管 Lavalink 節點運行時選項。\n\n"
|
||||
" 如果隨意更改此類別下的所有設置,可能會導致Audio出現故障,只有在官方人員建議您更改此處的設置時更改。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:374
|
||||
#: redbot/cogs/audio/core/commands/llset.py:377
|
||||
#, docstring
|
||||
msgid "Configure the managed node authorization and connection settings."
|
||||
msgstr "配置受管理節點授權和連接設置。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:380
|
||||
#: redbot/cogs/audio/core/commands/llset.py:383
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's binding IP address.\n\n"
|
||||
" This value by default is `localhost` which will restrict the server to only localhost apps by default, changing this will likely break the managed Lavalink node if you don't know what you are doing.\n"
|
||||
@@ -2148,13 +2147,13 @@ msgstr "`Dangerous command` 設置託管 Lavalink 節點的綁定 IP 地址。\n
|
||||
" 默認情況下此數值是 localhost ,默認情況下會將服務器限制為僅本地主機應用程序,如果您不知道如何設置,隨意更改此值可能會破壞原託管的 Lavalink 節點。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:389
|
||||
#: redbot/cogs/audio/core/commands/llset.py:392
|
||||
msgid "Managed node will now accept connection on {host}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點現在將接受 {host} 上的連接。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:404
|
||||
#: redbot/cogs/audio/core/commands/llset.py:407
|
||||
#, docstring
|
||||
msgid "Set the managed Lavalink node's connection password.\n\n"
|
||||
" This is the password required for Audio to connect to the managed Lavalink node.\n"
|
||||
@@ -2165,13 +2164,13 @@ msgstr "設置託管 Lavalink 節點的連接密碼。\n\n"
|
||||
" 默認數值為“youshallnotpass”。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:413
|
||||
#: redbot/cogs/audio/core/commands/llset.py:416
|
||||
msgid "Managed node will now accept {password} as the authorization token.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點現在將接受 {password} 作為授權令牌。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:427
|
||||
#: redbot/cogs/audio/core/commands/llset.py:430
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node's connection port.\n\n"
|
||||
" This port is the port the managed Lavalink node binds to, you should only change this if there is a conflict with the default port because you already have an application using port 2333 on this device.\n\n"
|
||||
@@ -2182,17 +2181,17 @@ msgstr "`Dangerous command` 設置託管 Lavalink 節點的連接端口。\n\n"
|
||||
" 默認數值為“2333”。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:437
|
||||
#: redbot/cogs/audio/core/commands/llset.py:440
|
||||
msgid "The port must be between 1024 and 49151."
|
||||
msgstr "端口必須介於 1024 和 49151 之間。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:444
|
||||
#: redbot/cogs/audio/core/commands/llset.py:447
|
||||
msgid "Managed node will now accept connections on {port}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點現在將接受 {port} 上的連接。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:456
|
||||
#: redbot/cogs/audio/core/commands/llset.py:459
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle audio sources on/off.\n\n"
|
||||
" By default, all sources are enabled, you should only use commands here to disable a specific source if you have been advised to, disabling sources without background knowledge can cause Audio to break.\n"
|
||||
@@ -2201,7 +2200,7 @@ msgstr "`Dangerous command` 打開/關閉音頻來源。\n\n"
|
||||
" 默認情況下,所有源都已啟用,您應該只在被開發人員建議的情況下使用此處的命令來禁用特定源,在沒有相關知識的情況下禁用源可能會導致Audio中斷損壞。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:463
|
||||
#: redbot/cogs/audio/core/commands/llset.py:466
|
||||
#, docstring
|
||||
msgid "Toggle HTTP direct URL usage on or off.\n\n"
|
||||
" This source is used to allow playback from direct HTTP streams (this does not affect direct URL playback for the other sources).\n"
|
||||
@@ -2210,19 +2209,19 @@ msgstr "打開或關閉 HTTP 直接 URL 使用。\n\n"
|
||||
" 此用於允許從直接 HTTP 直播播放(這不影響其他源的直接 URL 播放)。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:473
|
||||
#: redbot/cogs/audio/core/commands/llset.py:476
|
||||
msgid "Managed node will allow playback from direct URLs.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將允許直接從 URL 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:482
|
||||
#: redbot/cogs/audio/core/commands/llset.py:485
|
||||
msgid "Managed node will not play from direct URLs anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將不再直接從 URL 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:490
|
||||
#: redbot/cogs/audio/core/commands/llset.py:493
|
||||
#, docstring
|
||||
msgid "Toggle Bandcamp source on or off.\n\n"
|
||||
" This toggle controls the playback of all Bandcamp related content.\n"
|
||||
@@ -2231,19 +2230,19 @@ msgstr "打開或關閉 Bandcamp 來源。\n\n"
|
||||
" 此切換控制開關所有 Bandcamp 相關來源內容的播放。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:500
|
||||
#: redbot/cogs/audio/core/commands/llset.py:503
|
||||
msgid "Managed node will allow playback from Bandcamp.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將允許從 Bandcamp 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:509
|
||||
#: redbot/cogs/audio/core/commands/llset.py:512
|
||||
msgid "Managed node will not play from Bandcamp anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將不再從 Bandcamp 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:517
|
||||
#: redbot/cogs/audio/core/commands/llset.py:520
|
||||
#, docstring
|
||||
msgid "Toggle local file usage on or off.\n\n"
|
||||
" This toggle controls the playback of all local track content, usually found inside the `localtracks` folder.\n"
|
||||
@@ -2252,19 +2251,19 @@ msgstr "啟用或關閉本地文件使用。\n\n"
|
||||
" 此切換控制所有本地軌道內容的播放,通常位於“localtracks”文件夾中。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:527
|
||||
#: redbot/cogs/audio/core/commands/llset.py:530
|
||||
msgid "Managed node will allow playback from local files.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將允許從本地文件播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:536
|
||||
#: redbot/cogs/audio/core/commands/llset.py:539
|
||||
msgid "Managed node will not play from local files anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將不再從本地文件播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:544
|
||||
#: redbot/cogs/audio/core/commands/llset.py:547
|
||||
#, docstring
|
||||
msgid "Toggle Soundcloud source on or off.\n\n"
|
||||
" This toggle controls the playback of all SoundCloud related content.\n"
|
||||
@@ -2273,19 +2272,19 @@ msgstr "啟用或關閉 Soundcloud 來源。\n\n"
|
||||
" 此切換控制所有 SoundCloud 相關內容的播放。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:554
|
||||
#: redbot/cogs/audio/core/commands/llset.py:557
|
||||
msgid "Managed node will allow playback from Soundcloud.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將允許從 Soundcloud 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:563
|
||||
#: redbot/cogs/audio/core/commands/llset.py:566
|
||||
msgid "Managed node will not play from Soundcloud anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將不再從 Soundcloud 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:571
|
||||
#: redbot/cogs/audio/core/commands/llset.py:574
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Toggle YouTube source on or off (this includes Spotify).\n\n"
|
||||
" This toggle controls the playback of all YouTube and Spotify related content.\n"
|
||||
@@ -2294,19 +2293,19 @@ msgstr "`Dangerous command` 打開或關閉 YouTube 來源(包括 Spotify)。\n\
|
||||
" 此切換控制所有 YouTube 和 Spotify 相關內容的播放。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:581
|
||||
#: redbot/cogs/audio/core/commands/llset.py:584
|
||||
msgid "Managed node will allow playback from YouTube.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將允許從 YouTube 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:590
|
||||
#: redbot/cogs/audio/core/commands/llset.py:593
|
||||
msgid "Managed node will not play from YouTube anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將不再從 YouTube 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:598
|
||||
#: redbot/cogs/audio/core/commands/llset.py:601
|
||||
#, docstring
|
||||
msgid "Toggle Twitch source on or off.\n\n"
|
||||
" This toggle controls the playback of all Twitch related content.\n"
|
||||
@@ -2315,19 +2314,19 @@ msgstr "打開或關閉 Twitch 來源。\n\n"
|
||||
" 此切換控制所有 Twitch 相關內容的播放。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:608
|
||||
#: redbot/cogs/audio/core/commands/llset.py:611
|
||||
msgid "Managed node will allow playback from Twitch.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將允許從 Twitch 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:617
|
||||
#: redbot/cogs/audio/core/commands/llset.py:620
|
||||
msgid "Managed node will not play from Twitch anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將不再從 Twitch 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:625
|
||||
#: redbot/cogs/audio/core/commands/llset.py:628
|
||||
#, docstring
|
||||
msgid "Toggle Vimeo source on or off.\n\n"
|
||||
" This toggle controls the playback of all Vimeo related content.\n"
|
||||
@@ -2336,19 +2335,19 @@ msgstr "打開或關閉 Vimeo 來源。\n\n"
|
||||
" 此切換控制所有 Vimeo 相關內容的播放。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:635
|
||||
#: redbot/cogs/audio/core/commands/llset.py:638
|
||||
msgid "Managed node will allow playback from Vimeo.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將允許從 Vimeo 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:644
|
||||
#: redbot/cogs/audio/core/commands/llset.py:647
|
||||
msgid "Managed node will not play from Vimeo anymore.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "託管節點將不再從 Vimeo 播放。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:657
|
||||
#: redbot/cogs/audio/core/commands/llset.py:660
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node framebuffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
@@ -2357,18 +2356,18 @@ msgstr "`Dangerous command` 設置託管 Lavalink 節點幀緩衝區大小。\n\
|
||||
" 僅在我們直接建議您更改此設置時更改它,隨意更改它可能會導致嚴重的播放問題。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:665
|
||||
#: redbot/cogs/audio/core/commands/llset.py:668
|
||||
msgid "The lowest value the framebuffer can be set to is 100ms."
|
||||
msgstr "幀緩衝區可以設置的最低值為 100 毫秒。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:671
|
||||
#: redbot/cogs/audio/core/commands/llset.py:702
|
||||
#: redbot/cogs/audio/core/commands/llset.py:674
|
||||
#: redbot/cogs/audio/core/commands/llset.py:705
|
||||
msgid "Managed node's bufferDurationMs set to {milliseconds}.\n\n"
|
||||
"Run `{p}{cmd}` for it to take effect."
|
||||
msgstr "受管節點的 bufferDurationMs 設置為 {milliseconds}。\n\n"
|
||||
"運行 `{p}{cmd}` 使其生效。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:688
|
||||
#: redbot/cogs/audio/core/commands/llset.py:691
|
||||
#, docstring
|
||||
msgid "`Dangerous command` Set the managed Lavalink node JDA-NAS buffer size.\n\n"
|
||||
" Only change this if you have been directly advised to, changing it can cause significant playback issues.\n"
|
||||
@@ -2377,11 +2376,11 @@ msgstr "`Dangerous command` 設置託管 Lavalink 節點 JDA-NAS 緩衝區大小
|
||||
" 僅在我們直接建議您更改此設置時更改它,隨意更改它可能會導致嚴重的播放問題。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:696
|
||||
#: redbot/cogs/audio/core/commands/llset.py:699
|
||||
msgid "The lowest value the buffer may be is 100ms."
|
||||
msgstr "幀緩衝區可以設置的最低值為 100 毫秒。"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/llset.py:714
|
||||
#: redbot/cogs/audio/core/commands/llset.py:717
|
||||
#, docstring
|
||||
msgid "Reset all `llset` changes back to their default values."
|
||||
msgstr "將所有 `llset` 更改重置為默認值。"
|
||||
|
||||
16
redbot/cogs/audio/core/events/locales/pt-PT.po
generated
16
redbot/cogs/audio/core/events/locales/pt-PT.po
generated
@@ -57,7 +57,7 @@ msgstr "Voz prioritária"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:43
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
msgstr "Vídeo"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:44
|
||||
msgid "Read Text Channels & See Voice Channels"
|
||||
@@ -69,7 +69,7 @@ msgstr "Enviar mensagens"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:46
|
||||
msgid "Send Text-to-speech Messages"
|
||||
msgstr ""
|
||||
msgstr "Envia mensagens de conversão de texto em voz"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:47
|
||||
msgid "Manage Messages"
|
||||
@@ -177,15 +177,15 @@ msgstr "Enviar Mensagens em Tópicos"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:73
|
||||
msgid "Use Activities"
|
||||
msgstr ""
|
||||
msgstr "Usar Atividades"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:74
|
||||
msgid "Time out members"
|
||||
msgstr ""
|
||||
msgstr "Castigar membros"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:75
|
||||
msgid "View Creator Monetization Analytics"
|
||||
msgstr ""
|
||||
msgstr "Visualizar a Análise da Monetização do Criador"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:76
|
||||
msgid "Use Soundboard"
|
||||
@@ -197,7 +197,7 @@ msgstr "Criar expressões"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:78
|
||||
msgid "Create Events"
|
||||
msgstr ""
|
||||
msgstr "Criar Eventos"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:79
|
||||
msgid "Use External Sounds"
|
||||
@@ -209,11 +209,11 @@ msgstr "Enviar Mensagens de Voz"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:81
|
||||
msgid "Create Polls"
|
||||
msgstr ""
|
||||
msgstr "Criar Votações"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:82
|
||||
msgid "Use External Apps"
|
||||
msgstr ""
|
||||
msgstr "Usar Aplicações Externas"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:86
|
||||
msgid "This command will change the executable path of Java, this is useful if you have multiple installations of Java and the default one is causing issues. Please don't change this unless you are certain that the Java version you are specifying is supported by Red. The default and supported versions are currently Java 17 and 11."
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hindi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Croatian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Indonesian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Norwegian Bokmal\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Dutch\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Slovak\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Slovenian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Swedish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Turkish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 12:45+0000\n"
|
||||
"POT-Creation-Date: 2024-08-07 20:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
@@ -299,7 +299,7 @@ class LavalinkVersion:
|
||||
|
||||
class ServerManager:
|
||||
JAR_VERSION: Final[str] = LavalinkVersion(3, 7, 11, red=3)
|
||||
YT_PLUGIN_VERSION: Final[str] = "1.4.0"
|
||||
YT_PLUGIN_VERSION: Final[str] = "1.5.2"
|
||||
|
||||
LAVALINK_DOWNLOAD_URL: Final[str] = (
|
||||
"https://github.com/Cog-Creators/Lavalink-Jars/releases/download/"
|
||||
|
||||
@@ -8,7 +8,7 @@ import time
|
||||
|
||||
from enum import Enum, unique
|
||||
from pathlib import Path
|
||||
from typing import MutableMapping, Tuple, Union
|
||||
from typing import Any, MutableMapping, Tuple, Union
|
||||
|
||||
import discord
|
||||
import psutil
|
||||
@@ -83,6 +83,24 @@ DEFAULT_LAVALINK_YAML = {
|
||||
"yaml__logging__level__lavalink": "INFO",
|
||||
"yaml__logging__logback__rollingpolicy__max_history": 15,
|
||||
"yaml__logging__logback__rollingpolicy__max_size": "10MB",
|
||||
# plugin configuration - note that the plugin may be disabled by the manager
|
||||
"yaml__plugins__youtube__enabled": True,
|
||||
"yaml__plugins__youtube__allowSearch": True,
|
||||
"yaml__plugins__youtube__allowDirectVideoIds": True,
|
||||
"yaml__plugins__youtube__allowDirectPlaylistIds": True,
|
||||
"yaml__plugins__youtube__clients": [
|
||||
"MUSIC",
|
||||
"WEB",
|
||||
"ANDROID_TESTSUITE",
|
||||
"TVHTML5EMBEDDED",
|
||||
"ANDROID_LITE",
|
||||
"MEDIA_CONNECT",
|
||||
"IOS",
|
||||
],
|
||||
"yaml__plugins__youtube__WEB__playback": True,
|
||||
"yaml__plugins__youtube__TVHTML5EMBEDDED__playlistLoading": False,
|
||||
"yaml__plugins__youtube__TVHTML5EMBEDDED__videoLoading": False,
|
||||
"yaml__plugins__youtube__TVHTML5EMBEDDED__searching": False,
|
||||
}
|
||||
|
||||
DEFAULT_LAVALINK_SETTINGS = {
|
||||
@@ -110,17 +128,16 @@ def convert_function(key: str) -> str:
|
||||
|
||||
|
||||
def change_dict_naming_convention(data) -> dict:
|
||||
new = {}
|
||||
for k, v in data.items():
|
||||
new_v = v
|
||||
if isinstance(v, dict):
|
||||
new_v = change_dict_naming_convention(v)
|
||||
elif isinstance(v, list):
|
||||
new_v = list()
|
||||
for x in v:
|
||||
new_v.append(change_dict_naming_convention(x))
|
||||
new[convert_function(k)] = new_v
|
||||
return new
|
||||
ret: Any = data
|
||||
if isinstance(data, dict):
|
||||
ret = {}
|
||||
for key, value in data.items():
|
||||
ret[convert_function(key)] = change_dict_naming_convention(value)
|
||||
elif isinstance(data, list):
|
||||
ret = []
|
||||
for value in data:
|
||||
ret.append(change_dict_naming_convention(value))
|
||||
return ret
|
||||
|
||||
|
||||
class CacheLevel:
|
||||
|
||||
30
redbot/cogs/cleanup/locales/id-ID.po
generated
30
redbot/cogs/cleanup/locales/id-ID.po
generated
@@ -23,11 +23,16 @@ msgid "This cog contains commands used for \"cleaning up\" (deleting) messages.\
|
||||
" Messages older than two weeks cannot be mass deleted.\n"
|
||||
" This is a limitation of the API.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "Cog ini berisi perintah untuk \"membersihkan\" (menghapus) pesan.\n\n"
|
||||
" Ini dirancang sebagai alat bagi moderator dan menawarkan banyak kasus penggunaan yang nyaman. \n"
|
||||
" Semua perintah cleanup hanya berlaku untuk channel tempat perintah dijalankan.\n\n"
|
||||
" Pesan yang lebih lama dari 2 minggu tidak dapat dihapus secara massal.\n"
|
||||
" Ini adalah batasan dari API.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/cleanup/cleanup.py:58
|
||||
msgid "Try a smaller number instead."
|
||||
msgstr ""
|
||||
msgstr "Cobalah angka yang lebih kecil."
|
||||
|
||||
#: redbot/cogs/cleanup/cleanup.py:61
|
||||
msgid "Are you sure you want to delete {number} messages?"
|
||||
@@ -48,7 +53,7 @@ msgstr "{num} pesan telah dihapus."
|
||||
#: redbot/cogs/cleanup/cleanup.py:187
|
||||
#, docstring
|
||||
msgid "Base command for deleting messages."
|
||||
msgstr ""
|
||||
msgstr "Perintah dasar untuk menghapus pesan."
|
||||
|
||||
#: redbot/cogs/cleanup/cleanup.py:197
|
||||
#, docstring
|
||||
@@ -60,7 +65,14 @@ msgid "Delete the last X messages matching the specified text in the current cha
|
||||
" - `<number>` The max number of messages to cleanup. Must be a positive integer.\n"
|
||||
" - `<delete_pinned>` Whether to delete pinned messages or not. Defaults to False\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "Hapus X pesan terakhir yang cocok dengan teks yang spesifik di saluran saat ini.\n\n"
|
||||
" Contoh:\n"
|
||||
" - `[p]cleanup text \"test\" 5`\n\n"
|
||||
" Pastikan untuk menggunakan tanda kutip dua.\n\n"
|
||||
" **Argumen:**\n\n"
|
||||
" - `<number>` Jumlah maksimal pesan yang akan dibersihkan. Harus berupa bilangan bulat positif.\n"
|
||||
" - `<delete_pinned>` Apakah akan menghapus pesan yang disematkan atau tidak. Default-nya adalah False\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/cleanup/cleanup.py:257
|
||||
#, docstring
|
||||
@@ -73,7 +85,15 @@ msgid "Delete the last X messages from a specified user in the current channel.\
|
||||
" - `<number>` The max number of messages to cleanup. Must be a positive integer.\n"
|
||||
" - `<delete_pinned>` Whether to delete pinned messages or not. Defaults to False\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "Hapus X pesan terakhir dari sebuah user di channel ini.\n\n"
|
||||
" Contoh:\n"
|
||||
" - `[p]cleanup user @Twentysix 2`\n"
|
||||
" - `[p]cleanup user Red 6`\n\n"
|
||||
" **Argumen:**\n\n"
|
||||
" - `<user>` User yang akan dihapus pesannya.\n"
|
||||
" - `<number>` Jumlah maksimal pesan yang akan dibersihkan. Harus berupa bilangan bulat positif.\n"
|
||||
" - `<delete_pinned>` Apakah akan menghapus pesan yang disematkan atau tidak. Default-nya adalah False\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/cleanup/cleanup.py:327
|
||||
#, docstring
|
||||
|
||||
@@ -329,7 +329,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
del muted_users[str(data["member"])]
|
||||
del self._server_mutes[guild.id][data["member"]]
|
||||
return
|
||||
result = await self.unmute_user(guild, author, member, _("Automatic unmute"))
|
||||
result = await self.unmute_user(guild, None, member, _("Automatic unmute"))
|
||||
async with self.config.guild(guild).muted_users() as muted_users:
|
||||
if str(member.id) in muted_users:
|
||||
del muted_users[str(member.id)]
|
||||
@@ -507,7 +507,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
del self._channel_mutes[channel.id][data["member"]]
|
||||
return None
|
||||
result = await self.channel_unmute_user(
|
||||
channel.guild, channel, author, member, _("Automatic unmute")
|
||||
channel.guild, channel, None, member, _("Automatic unmute")
|
||||
)
|
||||
async with self.config.channel(channel).muted_users() as muted_users:
|
||||
if str(member.id) in muted_users:
|
||||
@@ -1750,7 +1750,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
async def unmute_user(
|
||||
self,
|
||||
guild: discord.Guild,
|
||||
author: discord.Member,
|
||||
author: Optional[discord.Member],
|
||||
user: discord.Member,
|
||||
reason: Optional[str] = None,
|
||||
) -> MuteResponse:
|
||||
@@ -1760,7 +1760,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
ret: MuteResponse = MuteResponse(success=False, reason=None, user=user)
|
||||
|
||||
mute_role_id = await self.config.guild(guild).mute_role()
|
||||
if not await self.is_allowed_by_hierarchy(guild, author, user):
|
||||
if author is not None and not await self.is_allowed_by_hierarchy(guild, author, user):
|
||||
ret.reason = _(MUTE_UNMUTE_ISSUES["hierarchy_problem"])
|
||||
return ret
|
||||
|
||||
@@ -1926,7 +1926,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
self,
|
||||
guild: discord.Guild,
|
||||
channel: discord.abc.GuildChannel,
|
||||
author: discord.Member,
|
||||
author: Optional[discord.Member],
|
||||
user: discord.Member,
|
||||
reason: Optional[str] = None,
|
||||
*,
|
||||
@@ -1963,7 +1963,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
|
||||
if channel.permissions_for(guild.me).move_members:
|
||||
move_channel = True
|
||||
|
||||
if not await self.is_allowed_by_hierarchy(guild, author, user):
|
||||
if author is not None and not await self.is_allowed_by_hierarchy(guild, author, user):
|
||||
ret.reason = _(MUTE_UNMUTE_ISSUES["hierarchy_problem"])
|
||||
return ret
|
||||
|
||||
|
||||
@@ -393,7 +393,6 @@ class TwitchStream(Stream):
|
||||
if user_profile_data is not None:
|
||||
final_data["login"] = user_profile_data["login"]
|
||||
final_data["profile_image_url"] = user_profile_data["profile_image_url"]
|
||||
final_data["view_count"] = user_profile_data["view_count"]
|
||||
|
||||
stream_data = stream_data["data"][0]
|
||||
final_data["user_name"] = self.display_name = stream_data["user_name"]
|
||||
@@ -401,6 +400,7 @@ class TwitchStream(Stream):
|
||||
final_data["thumbnail_url"] = stream_data["thumbnail_url"]
|
||||
final_data["title"] = stream_data["title"]
|
||||
final_data["type"] = stream_data["type"]
|
||||
final_data["view_count"] = stream_data["viewer_count"]
|
||||
|
||||
__, follows_data = await self.get_data(
|
||||
TWITCH_FOLLOWS_ENDPOINT, {"broadcaster_id": self.id}
|
||||
|
||||
@@ -93,7 +93,14 @@ class RPC:
|
||||
self._started, _discard, self._site = (
|
||||
True,
|
||||
await self._runner.setup(),
|
||||
web.TCPSite(self._runner, host="127.0.0.1", port=port, shutdown_timeout=0),
|
||||
web.TCPSite(
|
||||
self._runner,
|
||||
host="127.0.0.1",
|
||||
port=port,
|
||||
shutdown_timeout=120
|
||||
# Give the RPC server 2 minutes to finish up, else slap it!
|
||||
# Seems like a reasonable time. See Red#6391
|
||||
),
|
||||
)
|
||||
except Exception as exc:
|
||||
log.exception("RPC setup failure", exc_info=exc)
|
||||
|
||||
@@ -69,6 +69,9 @@ from discord.app_commands import (
|
||||
)
|
||||
|
||||
from . import checks as checks
|
||||
from .errors import (
|
||||
UserFeedbackCheckFailure as UserFeedbackCheckFailure,
|
||||
)
|
||||
|
||||
__all__ = (
|
||||
"AllChannels",
|
||||
@@ -131,4 +134,5 @@ __all__ = (
|
||||
"rename",
|
||||
"user_install",
|
||||
"checks",
|
||||
"UserFeedbackCheckFailure",
|
||||
)
|
||||
|
||||
10
redbot/core/app_commands/errors.py
Normal file
10
redbot/core/app_commands/errors.py
Normal file
@@ -0,0 +1,10 @@
|
||||
"""Errors module for the app_commands package."""
|
||||
from discord import app_commands
|
||||
|
||||
|
||||
class UserFeedbackCheckFailure(app_commands.CheckFailure):
|
||||
"""A version of CheckFailure responding with a custom error message."""
|
||||
|
||||
def __init__(self, message=None, *args):
|
||||
self.message = message
|
||||
super().__init__(message, *args)
|
||||
22
redbot/core/locales/ar-SA.po
generated
22
redbot/core/locales/ar-SA.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -678,23 +678,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr ""
|
||||
|
||||
@@ -706,7 +706,7 @@ msgstr ""
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4727,19 +4727,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
22
redbot/core/locales/bg-BG.po
generated
22
redbot/core/locales/bg-BG.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -684,23 +684,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr ""
|
||||
|
||||
@@ -712,7 +712,7 @@ msgstr ""
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4672,19 +4672,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
22
redbot/core/locales/cs-CZ.po
generated
22
redbot/core/locales/cs-CZ.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -690,23 +690,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr ""
|
||||
|
||||
@@ -718,7 +718,7 @@ msgstr ""
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4700,19 +4700,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
22
redbot/core/locales/da-DK.po
generated
22
redbot/core/locales/da-DK.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -677,23 +677,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr ""
|
||||
|
||||
@@ -705,7 +705,7 @@ msgstr ""
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4667,19 +4667,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
34
redbot/core/locales/de-DE.po
generated
34
redbot/core/locales/de-DE.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -50,25 +50,27 @@ msgstr "Dieser Pfad existiert nicht oder zeigt nicht auf ein gültiges Verzeichn
|
||||
|
||||
#: redbot/core/_cog_manager.py:364
|
||||
msgid "A cog path cannot be part of bot's data path ({bot_data_path})."
|
||||
msgstr ""
|
||||
msgstr "Ein Cog Pfad kann nicht Teil des Bots Datenpfad sein ({bot_data_path})."
|
||||
|
||||
#: redbot/core/_cog_manager.py:374
|
||||
msgid "A cog path cannot be part of bot's core path ({core_path})."
|
||||
msgstr ""
|
||||
msgstr "Ein Cog Pfad kann nicht Teil des Bots Kernpfades sein ({core_path})."
|
||||
|
||||
#: redbot/core/_cog_manager.py:416
|
||||
msgid "The provided path appears to be a cog package, are you sure that this is the path that you want to add as a **cog path**?\n\n"
|
||||
"For example, in the following case, you should be adding the {path} as a **cog path**:\n"
|
||||
msgstr ""
|
||||
msgstr "Der angegebene Pfad scheint ein Cog-packet zu sein bist du sicher, dass dies der Pfad ist, den du als **Cog-Pfad** hinzufügen möchtest?\n\n"
|
||||
"Zum Beispiel solltest du im folgenden Fall den {path} als **Cog-Pfad** hinzufügen:\n"
|
||||
|
||||
#: redbot/core/_cog_manager.py:423
|
||||
msgid "\n"
|
||||
"Please consult the Cog Manager UI documentation, if you're unsure: "
|
||||
msgstr ""
|
||||
msgstr "\n"
|
||||
"Bitte konsultieren Sie die UI-Dokumentation des Cog Managers, falls Sie nicht sicher sind: "
|
||||
|
||||
#: redbot/core/_cog_manager.py:429
|
||||
msgid "Okay, the path will not be added."
|
||||
msgstr ""
|
||||
msgstr "Okay, der Pfad wird nicht hinzugefügt."
|
||||
|
||||
#: redbot/core/_cog_manager.py:438
|
||||
msgid "Path successfully added."
|
||||
@@ -707,23 +709,23 @@ msgstr "\"{argument}\" ist kein integer."
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr "\"{argument}\" ist keine Zahl."
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr "Fehler im Befehl '{command}'. Überprüfen Sie Ihre Konsole oder Protokolle für Details."
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr "Fehler im Befehl '{command}'."
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr "Ich benötige die Berechtigung {permission}, um diesen Befehl auszuführen."
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr "Ich benötige folgende Berechtigungen, um diesen Befehl auszuführen: {permission_list}"
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr "Dieser Befehl ist nicht in Direktnachrichten verfügbar."
|
||||
|
||||
@@ -735,7 +737,7 @@ msgstr "Dieser Befehl kann nur in Direktnachrichten genutzt werden."
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr "Dieser Befehl ist nur in NSFW-Kanälen verfügbar."
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr "Dieser Befehl ist auf Abklingzeit. Versuche es erneut {relative_time}."
|
||||
|
||||
@@ -5022,19 +5024,19 @@ msgstr "Geändert durch:"
|
||||
msgid "Last modified at:"
|
||||
msgstr "Zuletzt geändert am:"
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
22
redbot/core/locales/es-ES.po
generated
22
redbot/core/locales/es-ES.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -708,23 +708,23 @@ msgstr "\"{argument}\" no es un entero."
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr "\"{argument}\" no es un número."
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr "Error en el comando '{command}'. Revisa tu consola o logs para obtener más detalles."
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr "Error en el comando '{command}'."
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr "Necesito el permiso {permission} para ejecutar ese comando."
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr "Necesito el permiso {permission_list} para ejecutar este comando."
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr "Ese comando no está disponible en DMs."
|
||||
|
||||
@@ -736,7 +736,7 @@ msgstr "Ese comando sólo está disponible en DMs."
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr "Este comando sólo está disponible en canales NSFW."
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr "Este comando está en enfriamiento. Inténtalo de nuevo {relative_time}."
|
||||
|
||||
@@ -5072,19 +5072,19 @@ msgstr "Enmendado por:"
|
||||
msgid "Last modified at:"
|
||||
msgstr "Última modificación en:"
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr "Comando no encontrado."
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr "No tienes permiso para usar este comando."
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
22
redbot/core/locales/fi-FI.po
generated
22
redbot/core/locales/fi-FI.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -668,23 +668,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr "Tuo komento ei ole käytettävissä yksityisviesteissä."
|
||||
|
||||
@@ -696,7 +696,7 @@ msgstr "Tuo komento on käytettävissä vain yksityisviesteissä."
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4657,19 +4657,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
22
redbot/core/locales/fr-FR.po
generated
22
redbot/core/locales/fr-FR.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -706,23 +706,23 @@ msgstr "\"{argument}\" n'est pas un nombre."
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr "\"{argument}\" n'est pas un nombre."
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr "Erreur dans la commande '{command}'. Vérifiez votre console ou les logs pour plus de détails."
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr "Erreur lors de l’exécution de la commande '{command}'."
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr "J'ai besoin de la permission {permission} pour exécuter cette commande."
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr "J'ai besoin de ces permissions {permission_list} pour exécuter cette commande."
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr "Cette commande n'est pas disponible en Messages Privés (DMs)."
|
||||
|
||||
@@ -734,7 +734,7 @@ msgstr "Cette commande est disponible seulement en messages privés."
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr "Cette commande n'est disponible que dans les channels NSFW."
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr "Cette commande est en cours de rechargement. Réessayez {relative_time}."
|
||||
|
||||
@@ -4925,19 +4925,19 @@ msgstr "Modifié par :"
|
||||
msgid "Last modified at:"
|
||||
msgstr "Modifié pour la dernière fois :"
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr "Commande introuvable."
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr "Vous n'avez pas la permission d'utiliser cette commande."
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
22
redbot/core/locales/hi-IN.po
generated
22
redbot/core/locales/hi-IN.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hindi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -668,23 +668,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr ""
|
||||
|
||||
@@ -696,7 +696,7 @@ msgstr ""
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4656,19 +4656,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
22
redbot/core/locales/hr-HR.po
generated
22
redbot/core/locales/hr-HR.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Croatian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -690,23 +690,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr "Pogreška u naredbi '{command}'. Provjerite konzolu ili zapisnike za detalje."
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr "Potrebna mi je {permission} dozvola za izvršavanje te naredbe."
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr "Potrebne su mi {permission_list} dozvole za izvršavanje te naredbe."
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr "Ova naredba nije dostupna u direktnim porukama."
|
||||
|
||||
@@ -718,7 +718,7 @@ msgstr "Ova naredba je dostupna samo u direktnim porukama."
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr "Ova naredba je dostupna samo u NSFW kanalima."
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4717,19 +4717,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
22
redbot/core/locales/hu-HU.po
generated
22
redbot/core/locales/hu-HU.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -677,23 +677,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr ""
|
||||
|
||||
@@ -705,7 +705,7 @@ msgstr ""
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4668,19 +4668,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
22
redbot/core/locales/id-ID.po
generated
22
redbot/core/locales/id-ID.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Indonesian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -668,23 +668,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr ""
|
||||
|
||||
@@ -696,7 +696,7 @@ msgstr ""
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4664,19 +4664,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
22
redbot/core/locales/it-IT.po
generated
22
redbot/core/locales/it-IT.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -682,23 +682,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr ""
|
||||
|
||||
@@ -710,7 +710,7 @@ msgstr ""
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4720,19 +4720,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
22
redbot/core/locales/ja-JP.po
generated
22
redbot/core/locales/ja-JP.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -675,23 +675,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr ""
|
||||
|
||||
@@ -703,7 +703,7 @@ msgstr ""
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4663,19 +4663,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
22
redbot/core/locales/ko-KR.po
generated
22
redbot/core/locales/ko-KR.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -668,23 +668,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr ""
|
||||
|
||||
@@ -696,7 +696,7 @@ msgstr ""
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4656,19 +4656,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
22
redbot/core/locales/nb-NO.po
generated
22
redbot/core/locales/nb-NO.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Norwegian Bokmal\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -707,23 +707,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr "Feil under kommandoen{command}'. Sjekk konsollen eller loggene for detaljer."
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr "Jeg trenger {permission} tillatelse til å utføre denne kommandoen."
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr "Jeg krever {permission_list} tillatelser til å utføre den kommandoen."
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr "Den kommandoen er ikke tilgjengelig i direktemeldinger."
|
||||
|
||||
@@ -735,7 +735,7 @@ msgstr "Den kommandoen er bare tilgjengelig i direktemeldinger."
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr "Denne kommandoen er bare tilgjengelig i NSFW kanaler."
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4794,19 +4794,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
52
redbot/core/locales/nl-NL.po
generated
52
redbot/core/locales/nl-NL.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Dutch\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -130,11 +130,11 @@ msgstr ""
|
||||
|
||||
#: redbot/core/_cog_manager.py:545 redbot/core/_cog_manager.py:560
|
||||
msgid "**{} loaded:**\n"
|
||||
msgstr ""
|
||||
msgstr "**{} geladen:**\n"
|
||||
|
||||
#: redbot/core/_cog_manager.py:546 redbot/core/_cog_manager.py:562
|
||||
msgid "**{} unloaded:**\n"
|
||||
msgstr ""
|
||||
msgstr "**{} niet geladen:**\n"
|
||||
|
||||
#: redbot/core/_diagnoser.py:104
|
||||
msgid "To fix this issue, you need to do one of these:"
|
||||
@@ -146,7 +146,7 @@ msgstr ""
|
||||
|
||||
#: redbot/core/_diagnoser.py:118
|
||||
msgid "The user is a bot which prevents them from running any command."
|
||||
msgstr ""
|
||||
msgstr "De gebruiker is een bot die verhindert dat ze een commando uitvoeren."
|
||||
|
||||
#: redbot/core/_diagnoser.py:119
|
||||
msgid "This cannot be fixed - bots should not be listening to other bots."
|
||||
@@ -283,7 +283,7 @@ msgstr ""
|
||||
|
||||
#: redbot/core/_diagnoser.py:423
|
||||
msgid "Global checks"
|
||||
msgstr ""
|
||||
msgstr "Globale controles"
|
||||
|
||||
#: redbot/core/_diagnoser.py:433
|
||||
msgid "One of the global checks for the command {command} failed with a message:\n"
|
||||
@@ -309,7 +309,7 @@ msgstr ""
|
||||
|
||||
#: redbot/core/_diagnoser.py:463
|
||||
msgid "Command checks"
|
||||
msgstr ""
|
||||
msgstr "Commando controles"
|
||||
|
||||
#: redbot/core/_diagnoser.py:477
|
||||
msgid "One of the command checks for the command {command} failed with a message:\n"
|
||||
@@ -322,11 +322,11 @@ msgstr ""
|
||||
|
||||
#: redbot/core/_diagnoser.py:485
|
||||
msgid "Permissions verification"
|
||||
msgstr ""
|
||||
msgstr "Machtigingen verificatie"
|
||||
|
||||
#: redbot/core/_diagnoser.py:488
|
||||
msgid "Cog permissions verification"
|
||||
msgstr ""
|
||||
msgstr "Cog permissies verificatie"
|
||||
|
||||
#: redbot/core/_diagnoser.py:503
|
||||
msgid "The cog of the given command is disabled in this guild."
|
||||
@@ -346,7 +346,7 @@ msgstr ""
|
||||
|
||||
#: redbot/core/_diagnoser.py:538
|
||||
msgid "To fix this issue, grant the required permissions to the bot through role settings or channel overrides."
|
||||
msgstr ""
|
||||
msgstr "Om dit probleem op te lossen, verleen de vereiste rechten aan de bot via rolinstellingen of kanaaloverschrijvingen."
|
||||
|
||||
#: redbot/core/_diagnoser.py:557 redbot/core/_diagnoser.py:653
|
||||
msgid "Other issues related to the permissions."
|
||||
@@ -362,7 +362,7 @@ msgstr ""
|
||||
|
||||
#: redbot/core/_diagnoser.py:567
|
||||
msgid "This is an unexpected error, please report it on Red's issue tracker."
|
||||
msgstr ""
|
||||
msgstr "Dit is een onverwachte fout, rapporteer deze op Red's issue tracker."
|
||||
|
||||
#: redbot/core/_diagnoser.py:574
|
||||
msgid "Ensure that the command is not bot owner only"
|
||||
@@ -423,7 +423,7 @@ msgstr ""
|
||||
|
||||
#: redbot/core/_diagnoser.py:670
|
||||
msgid "Permission checks"
|
||||
msgstr ""
|
||||
msgstr "Toestemming controles"
|
||||
|
||||
#: redbot/core/_diagnoser.py:674
|
||||
msgid "The access has been denied by one of the permissions checks of {cog} cog."
|
||||
@@ -455,19 +455,19 @@ msgstr ""
|
||||
|
||||
#: redbot/core/_diagnoser.py:721
|
||||
msgid "the guild owner"
|
||||
msgstr ""
|
||||
msgstr "de server eigenaar"
|
||||
|
||||
#: redbot/core/_diagnoser.py:724
|
||||
msgid "the mod role"
|
||||
msgstr ""
|
||||
msgstr "de mod rol"
|
||||
|
||||
#: redbot/core/_diagnoser.py:726
|
||||
msgid "the admin role"
|
||||
msgstr ""
|
||||
msgstr "de admin rol"
|
||||
|
||||
#: redbot/core/_diagnoser.py:729
|
||||
msgid "assign appropriate role to the user"
|
||||
msgstr ""
|
||||
msgstr "gepaste rol toewijzen aan de gebruiker"
|
||||
|
||||
#: redbot/core/_diagnoser.py:731
|
||||
msgid "The user is missing the privilege level ({privilege_level}) required by the {cog} cog."
|
||||
@@ -495,7 +495,7 @@ msgstr ""
|
||||
|
||||
#: redbot/core/_diagnoser.py:804 redbot/core/_diagnoser.py:917
|
||||
msgid "Other command checks"
|
||||
msgstr ""
|
||||
msgstr "Andere commando controles"
|
||||
|
||||
#: redbot/core/_diagnoser.py:805 redbot/core/_diagnoser.py:918
|
||||
msgid "The given command is failing one of the required checks."
|
||||
@@ -668,23 +668,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr ""
|
||||
|
||||
@@ -696,7 +696,7 @@ msgstr ""
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4664,19 +4664,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
22
redbot/core/locales/pl-PL.po
generated
22
redbot/core/locales/pl-PL.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -693,23 +693,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr ""
|
||||
|
||||
@@ -721,7 +721,7 @@ msgstr ""
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4718,19 +4718,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
34
redbot/core/locales/pt-BR.po
generated
34
redbot/core/locales/pt-BR.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -50,25 +50,27 @@ msgstr "Este caminho não existe ou não aponta para um diretório válido."
|
||||
|
||||
#: redbot/core/_cog_manager.py:364
|
||||
msgid "A cog path cannot be part of bot's data path ({bot_data_path})."
|
||||
msgstr ""
|
||||
msgstr "Um caminho de cog não pode fazer parte do caminho de dados do bot ({bot_data_path})."
|
||||
|
||||
#: redbot/core/_cog_manager.py:374
|
||||
msgid "A cog path cannot be part of bot's core path ({core_path})."
|
||||
msgstr ""
|
||||
msgstr "Um caminho de cog não pode fazer parte do caminho central do bot ({core_path})."
|
||||
|
||||
#: redbot/core/_cog_manager.py:416
|
||||
msgid "The provided path appears to be a cog package, are you sure that this is the path that you want to add as a **cog path**?\n\n"
|
||||
"For example, in the following case, you should be adding the {path} as a **cog path**:\n"
|
||||
msgstr ""
|
||||
msgstr "O caminho fornecido parece ser um pacote cog. Você tem certeza de que este é o caminho que deseja adicionar como **caminho de cog**?\n\n"
|
||||
"Por exemplo, no caso a seguir, você deve adicionar {path} como um **caminho de cog**:"
|
||||
|
||||
#: redbot/core/_cog_manager.py:423
|
||||
msgid "\n"
|
||||
"Please consult the Cog Manager UI documentation, if you're unsure: "
|
||||
msgstr ""
|
||||
msgstr "\n"
|
||||
"Consulte a documentação da UI do Cog Manager, em caso de dúvida: "
|
||||
|
||||
#: redbot/core/_cog_manager.py:429
|
||||
msgid "Okay, the path will not be added."
|
||||
msgstr ""
|
||||
msgstr "Ok, o caminho não será adicionado."
|
||||
|
||||
#: redbot/core/_cog_manager.py:438
|
||||
msgid "Path successfully added."
|
||||
@@ -694,23 +696,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr ""
|
||||
|
||||
@@ -722,7 +724,7 @@ msgstr ""
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4703,19 +4705,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
49
redbot/core/locales/pt-PT.po
generated
49
redbot/core/locales/pt-PT.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -48,7 +48,7 @@ msgstr "Esse caminho não existe ou não aponta para um caminho válido."
|
||||
|
||||
#: redbot/core/_cog_manager.py:364
|
||||
msgid "A cog path cannot be part of bot's data path ({bot_data_path})."
|
||||
msgstr ""
|
||||
msgstr "Um caminho para a cog não pode fazer parte do caminho de dados do bot ({bot_data_path})."
|
||||
|
||||
#: redbot/core/_cog_manager.py:374
|
||||
msgid "A cog path cannot be part of bot's core path ({core_path})."
|
||||
@@ -66,7 +66,7 @@ msgstr ""
|
||||
|
||||
#: redbot/core/_cog_manager.py:429
|
||||
msgid "Okay, the path will not be added."
|
||||
msgstr ""
|
||||
msgstr "Ok, o caminho não será adicionado."
|
||||
|
||||
#: redbot/core/_cog_manager.py:438
|
||||
msgid "Path successfully added."
|
||||
@@ -87,7 +87,7 @@ msgstr "Os seguintes caminhos foram removidos: {paths}"
|
||||
|
||||
#: redbot/core/_cog_manager.py:470
|
||||
msgid "The following path numbers did not exist: {path_numbers}"
|
||||
msgstr ""
|
||||
msgstr "Os números de caminhos a seguir não existem: {path_numbers}"
|
||||
|
||||
#: redbot/core/_cog_manager.py:481
|
||||
#, docstring
|
||||
@@ -136,7 +136,7 @@ msgstr "\n"
|
||||
|
||||
#: redbot/core/_cog_manager.py:545 redbot/core/_cog_manager.py:560
|
||||
msgid "**{} loaded:**\n"
|
||||
msgstr ""
|
||||
msgstr "**{} carregado:**\n"
|
||||
|
||||
#: redbot/core/_cog_manager.py:546 redbot/core/_cog_manager.py:562
|
||||
msgid "**{} unloaded:**\n"
|
||||
@@ -177,15 +177,16 @@ msgstr "O 'bot' não tem permissão para enviar mensagens no canal fornecido."
|
||||
#: redbot/core/_diagnoser.py:138
|
||||
msgid "To fix this issue, ensure that the permissions setup allows the bot to send messages per Discord's role hierarchy:\n"
|
||||
"https://support.discord.com/hc/en-us/articles/206141927"
|
||||
msgstr ""
|
||||
msgstr "Para corrigir esse problema, certifique-se de que a configuração de permissões permite ao bot enviar mensagens segundo a hierarquia de cargos do Discord:\n"
|
||||
"https://support.discord.com/hc/en-us/articles/206141927"
|
||||
|
||||
#: redbot/core/_diagnoser.py:150
|
||||
msgid "Check if the channel and the server aren't set to be ignored"
|
||||
msgstr ""
|
||||
msgstr "Verifique se o canal e o servidor não estão definidos para serem ignorados"
|
||||
|
||||
#: redbot/core/_diagnoser.py:156
|
||||
msgid "To fix this issue, check the list returned by the {command} command and ensure that the {thread} thread, its parent channel, and the server aren't a part of that list."
|
||||
msgstr ""
|
||||
msgstr "Para corrigir este problema, verifique a lista retornada pelo comando {command} e certifique-se de que o tópico {thread}, seu canal pai e o servidor não fazem parte dessa lista."
|
||||
|
||||
#: redbot/core/_diagnoser.py:165
|
||||
msgid "To fix this issue, check the list returned by the {command} command and ensure that the {channel} channel and the server aren't a part of that list."
|
||||
@@ -201,17 +202,19 @@ msgstr ""
|
||||
|
||||
#: redbot/core/_diagnoser.py:200
|
||||
msgid "The bot is set to ignore commands in the given channel or this server."
|
||||
msgstr ""
|
||||
msgstr "O bot está configurado para ignorar comandos no canal dado ou neste servidor."
|
||||
|
||||
#: redbot/core/_diagnoser.py:210
|
||||
msgid "Global allowlist prevents the user from running this command."
|
||||
msgstr ""
|
||||
msgstr "A lista de permissões global impede que o utilizador execute esse comando."
|
||||
|
||||
#: redbot/core/_diagnoser.py:211
|
||||
msgid "To fix this issue, you can either add the user to the allowlist, or clear the allowlist.\n"
|
||||
"If you want to keep the allowlist, you can run {command_1} which will add {user} to the allowlist.\n"
|
||||
"If you instead want to clear the allowlist and let all users run commands freely, you can run {command_2} to do that."
|
||||
msgstr ""
|
||||
msgstr "Para corrigir esse problema, você pode adicionar o utilizador à lista de permissões ou limpar a lista de permissões.\n"
|
||||
"Se você quiser manter a lista de permissões, você pode executar {command_1} que adicionará {user} à lista de permissões.\n"
|
||||
"Se, em vez disso, quiser limpar a lista de permissões e permitir que todos os usuários executem comandos livremente, você pode executar {command_2} para fazer isso."
|
||||
|
||||
#: redbot/core/_diagnoser.py:227
|
||||
msgid "Global blocklist prevents the user from running this command."
|
||||
@@ -221,7 +224,9 @@ msgstr ""
|
||||
msgid "To fix this issue, you can either remove the user from the blocklist, or clear the blocklist.\n"
|
||||
"If you want to keep the blocklist, you can run {command_1} which will remove {user} from the blocklist.\n"
|
||||
"If you instead want to clear the blocklist and let all users run commands freely, you can run {command_2} to do that."
|
||||
msgstr ""
|
||||
msgstr "Para corrigir esse problema, você pode remover o utilizador da lista de bloqueio ou limpar a lista de bloqueio.\n"
|
||||
"Se você quiser manter a lista de bloqueio, você pode executar {command_1} que removerá {user} da lista de bloqueio.\n"
|
||||
"Se, em vez disso, você quiser limpar a lista de bloqueio e permitir que todos os utilizador executem comandos livremente, você pode executar {command_2} para fazer isso."
|
||||
|
||||
#: redbot/core/_diagnoser.py:250
|
||||
msgid "Local allowlist prevents the user from running this command."
|
||||
@@ -674,23 +679,23 @@ msgstr ""
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr ""
|
||||
|
||||
@@ -702,7 +707,7 @@ msgstr ""
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4669,19 +4674,19 @@ msgstr ""
|
||||
msgid "Last modified at:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
22
redbot/core/locales/ru-RU.po
generated
22
redbot/core/locales/ru-RU.po
generated
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2024-07-10 18:37+0000\n"
|
||||
"POT-Creation-Date: 2024-07-12 17:30+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -707,23 +707,23 @@ msgstr "\"{argument}\" не целое число."
|
||||
msgid "\"{argument}\" is not a number."
|
||||
msgstr "\"{argument}\" не является числом."
|
||||
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:292
|
||||
#: redbot/core/_events.py:385 redbot/core/tree.py:293
|
||||
msgid "Error in command '{command}'. Check your console or logs for details."
|
||||
msgstr "Ошибка в команде '{command}'. Проверьте консоль или журналы для получения подробной информации."
|
||||
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:295
|
||||
#: redbot/core/_events.py:388 redbot/core/tree.py:296
|
||||
msgid "Error in command '{command}'."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:309
|
||||
#: redbot/core/_events.py:406 redbot/core/tree.py:310
|
||||
msgid "I require the {permission} permission to execute that command."
|
||||
msgstr "Мне требуется разрешение {permission} на выполнение этой команды."
|
||||
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:313
|
||||
#: redbot/core/_events.py:410 redbot/core/tree.py:314
|
||||
msgid "I require {permission_list} permissions to execute that command."
|
||||
msgstr "Мне требуются разрешения {permission_list} для выполнения этой команды."
|
||||
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:320
|
||||
#: redbot/core/_events.py:418 redbot/core/tree.py:321
|
||||
msgid "That command is not available in DMs."
|
||||
msgstr "Эта команда недоступна в DMs."
|
||||
|
||||
@@ -735,7 +735,7 @@ msgstr "Эта команда доступна только в DMs."
|
||||
msgid "That command is only available in NSFW channels."
|
||||
msgstr "Эта команда доступна только в NSFW каналах."
|
||||
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:326
|
||||
#: redbot/core/_events.py:434 redbot/core/tree.py:327
|
||||
msgid "This command is on cooldown. Try again {relative_time}."
|
||||
msgstr ""
|
||||
|
||||
@@ -4812,19 +4812,19 @@ msgstr "Изменено:"
|
||||
msgid "Last modified at:"
|
||||
msgstr "Последние изменения:"
|
||||
|
||||
#: redbot/core/tree.py:271
|
||||
#: redbot/core/tree.py:272
|
||||
msgid "Command not found."
|
||||
msgstr "Команда не найдена."
|
||||
|
||||
#: redbot/core/tree.py:332
|
||||
#: redbot/core/tree.py:336
|
||||
msgid "You are not permitted to use this command."
|
||||
msgstr "Вам не разрешено использовать эту команду."
|
||||
|
||||
#: redbot/core/tree.py:359
|
||||
#: redbot/core/tree.py:363
|
||||
msgid "This channel or server is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/core/tree.py:366
|
||||
#: redbot/core/tree.py:370
|
||||
msgid "You are not permitted to use commands because of an allowlist or blocklist."
|
||||
msgstr ""
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user