Compare commits

...

12 Commits

Author SHA1 Message Date
Ryan
dd3b9a01d3
Fix set api modal not submitting (#6626) 2025-10-12 09:09:35 +02:00
Kowlin
a809c3604a
Explicitly comment some speed up dependencies not directly used by Red (#6621) 2025-09-26 19:45:08 +02:00
github-actions[bot]
982f082cb0
Version bump to 3.5.23.dev1 (#6617)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-09-05 01:50:31 +02:00
github-actions[bot]
6a4d777723
Automated Crowdin downstream (#6616)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-09-05 01:35:29 +02:00
github-actions[bot]
4dc18342d9
Version bump to 3.5.22 (#6615)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-09-05 01:34:31 +02:00
Jakub Kuczys
71311c446a
Red 3.5.22 - Changelog (#6613)
Co-authored-by: Michael Oliveira <34169552+Flame442@users.noreply.github.com>
2025-09-05 01:34:17 +02:00
Michael Oliveira
d4a1ee38f0
Fix audio command docstrings not translating (#6609) 2025-09-05 01:26:49 +02:00
Jakub Kuczys
8507b0165f
Update deprecated use of TextInput.label (#6612) 2025-09-04 21:12:26 +02:00
Jakub Kuczys
c7651da2f9
Bump dependencies (includes discord.py 2.6.3 bump) (#6614) 2025-09-04 21:11:35 +02:00
AAA3A
4d24365d17
Update the invite Regex to match invites with backslashes / ignore promos (#6586)
Co-authored-by: Twentysix <6267772+Twentysix26@users.noreply.github.com>
2025-09-04 16:49:48 +02:00
aikaterna
d2f0f8d5ed
[Audio] Update application.yml source options (#6611) 2025-09-02 00:22:44 +02:00
github-actions[bot]
cc803579a0
Version bump to 3.5.22.dev1 (#6606)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-08-26 03:33:47 +02:00
117 changed files with 492 additions and 450 deletions

View File

@ -1,5 +1,41 @@
.. Red changelogs
Redbot 3.5.22 (2025-09-05)
==========================
| Thanks to all these amazing people that contributed to this release:
| :ghuser:`AAA3A-AAA3A`, :ghuser:`aikaterna`, :ghuser:`Flame442`, :ghuser:`Jackenmen`, :ghuser:`Kowlin`
Read before updating
--------------------
#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
We've updated our default application.yml file and you should update your instance's ``application.yml`` accordingly.
More specifically, we updated YT client options to fix a few regressions introduced by changes in 3.5.21.
`Download Red 3.5.22's default application.yml file <https://github.com/Cog-Creators/Red-DiscordBot/releases/download/3.5.22/Red-DiscordBot-3.5.22-default-lavalink-application.yml>`__
End-user changelog
------------------
Fixes
*****
- **Cogs - Audio** - Fixed a regression with YT video metadata loading introduced by Red 3.5.21 (:issue:`6611`)
- **Cogs - Audio** - Fixed a problem with command help texts not being translated in the Audio cog (:issue:`6608`, :issue:`6609`)
Developer changelog
-------------------
Changes
*******
- **Core - Dependencies** - Bumped ``discord.py`` to version 2.6.3 (:issue:`6612`, :issue:`6614`)
- **Core - Utils Package** - Updated ``INVITE_URL_RE`` common filter to also match invite links using ``\\`` instead of just ``/`` (:issue:`6586`)
- **Core - Utils Package** - Updated ``INVITE_URL_RE`` common filter to ignore ``promos.discord.gg`` links (:issue:`6586`)
----
Redbot 3.5.21 (2025-08-26)
==========================
@ -12,7 +48,7 @@ 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.
More specifically, we bumped the version of YT source plugin and updated its client options.
`Download Red 3.5.21's default application.yml file <https://github.com/Cog-Creators/Red-DiscordBot/releases/download/3.5.21/Red-DiscordBot-3.5.21-default-lavalink-application.yml>`__
#. Following operating systems are no longer supported as they have already reached their end of life:

View File

@ -339,7 +339,7 @@ def _early_init():
# This is bumped automatically by release workflow (`.github/workflows/scripts/bump_version.py`)
_VERSION = "3.5.21"
_VERSION = "3.5.23.dev1"
__version__, version_info = VersionInfo._get_version()

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -3,7 +3,6 @@ import datetime
import json
from collections import Counter, defaultdict
from pathlib import Path
from typing import Mapping, Dict
import aiohttp
@ -13,7 +12,6 @@ from redbot.core import Config
from redbot.core.bot import Red
from redbot.core.commands import Cog
from redbot.core.data_manager import cog_data_path
from redbot.core.i18n import Translator, cog_i18n
from redbot.core.utils.antispam import AntiSpam
from ..utils import (
@ -25,10 +23,7 @@ from ..utils import (
from . import abc, cog_utils, commands, events, tasks, utilities
from .cog_utils import CompositeMetaClass
_ = Translator("Audio", Path(__file__))
@cog_i18n(_)
class Audio(
commands.Commands,
events.Events,
@ -37,8 +32,6 @@ class Audio(
Cog,
metaclass=CompositeMetaClass,
):
"""Play audio through voice channels."""
llset_captcha_intervals = [
(datetime.timedelta(days=1), 1),
]

View File

@ -8,8 +8,13 @@ from .miscellaneous import MiscellaneousCommands
from .player import PlayerCommands
from .playlists import PlaylistCommands
from .queue import QueueCommands
from redbot.core.i18n import Translator, cog_i18n
_ = Translator("Audio", __file__)
@cog_i18n(_)
class Commands(
AudioSetCommands,
PlayerControllerCommands,
@ -22,4 +27,4 @@ class Commands(
QueueCommands,
metaclass=CompositeMetaClass,
):
"""Class joining all command subclasses"""
"""Play audio through voice channels."""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Arabic\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: ar_SA\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "تشغيل الصوت من خلال القنوات الصوتية."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Bulgarian\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: bg_BG\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr ""
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: cs_CZ\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Přehrávat zvuk prostřednictvím hlasových kanálů."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: da_DK\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Afspil lyd via stemmekanaler."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: de_DE\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Spiele Audio über Sprachkanäle ab."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: es_ES\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Reproducir audio a través de canales de voz."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Estonian\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: et_EE\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr ""
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: fi_FI\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Toista ääntä puhekanavilla."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: fr_FR\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Lire l'audio au travers des salons vocaux."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Hindi\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: hi_IN\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr ""
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Croatian\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: hr_HR\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Reproduciraj zvuk putem glasovnih kanala."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: hu_HU\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Játssz le hangot hangcsatornákon keresztül."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: id_ID\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr ""
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: it_IT\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Riproduci audio attraverso i canali vocali."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: ja_JP\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "音声チャンネルを介して音楽を再生します。"
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: ko_KR\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "음성체널을 통해 음악을 재생합니다."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Norwegian Bokmal\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: nb_NO\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Spill av lyd gjennom stemmekanaler."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: nl_NL\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Speel audio af via spraakkanalen."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: pl_PL\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Odtwarzaj dźwięk przez kanały głosowe."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: pt_BR\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Reproduzir áudio através de canais de voz."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: pt_PT\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Reproduz áudio através de canais de voz."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: ru_RU\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Воспроизведение аудио через голосовые каналы."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Slovak\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: sk_SK\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Prehrávať zvuk prostredníctvom hlasových kanálov."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Slovenian\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: sl_SI\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Predvajaj zvok v zvočnih kanalih."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: sv_SE\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Spela upp ljud genom röstkanaler."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: tr_TR\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Ses kanallarında müzik çal"
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Ukrainian\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: uk_UA\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Відтворювати звук через голосові канали."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: vi_VN\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "Phát nhạc qua kênh thoại."
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: zh_CN\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "通过声音频道播放音频。"
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-26 22:03+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Chinese Traditional\n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"X-Crowdin-File-ID: 676\n"
"Language: zh_TW\n"
#: redbot/cogs/audio/core/commands/__init__.py:30
#, docstring
msgid "Play audio through voice channels."
msgstr "透過語音頻道來播放音樂。"
#: redbot/cogs/audio/core/commands/audioset.py:36
#, docstring
msgid "Music configuration options."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Arabic\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: ar_SA\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "تشغيل الصوت من خلال القنوات الصوتية."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Bulgarian\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: bg_BG\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: cs_CZ\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Přehrávat zvuk prostřednictvím hlasových kanálů."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: da_DK\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: de_DE\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Spiele Audio über Sprachkanäle ab."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: es_ES\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Reproducir audio a través de canales de voz."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Estonian\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: et_EE\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: fi_FI\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Toista ääntä puhekanavilla."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: fr_FR\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Lire l'audio au travers des salons vocaux."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Hindi\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: hi_IN\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Croatian\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: hr_HR\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Reproduciraj zvuk putem glasovnih kanala."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: hu_HU\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Játssz le hangot hangcsatornákon keresztül."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: id_ID\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: it_IT\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Riproduci audio attraverso i canali vocali."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: ja_JP\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "音声チャンネルを介して音楽を再生します。"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: ko_KR\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "음성체널을 통해 음악을 재생합니다."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Norwegian Bokmal\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: nb_NO\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Spill av lyd gjennom stemmekanaler."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: nl_NL\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Speel audio af via spraakkanalen."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: pl_PL\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Odtwarzaj dźwięk przez kanały głosowe."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: pt_BR\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Reproduzir áudio através de canais de voz."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: pt_PT\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Reproduz áudio através de canais de voz."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: ru_RU\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Воспроизведение аудио через голосовые каналы."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Slovak\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: sk_SK\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Prehrávať zvuk prostredníctvom hlasových kanálov."

View File

@ -1,22 +1,17 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Slovenian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"
"X-Crowdin-File-ID: 692\n"
"Language: sl_SI\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Predvajaj zvok v zvočnih kanalih."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: sv_SE\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: tr_TR\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Ses kanallarında müzik çal"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Ukrainian\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: uk_UA\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Відтворювати звук через голосові канали."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: vi_VN\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "Phát nhạc qua kênh thoại."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: zh_CN\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2022-03-28 15:24+0000\n"
"POT-Creation-Date: 2025-09-04 23:27+0000\n"
"Last-Translator: \n"
"Language-Team: Chinese Traditional\n"
"MIME-Version: 1.0\n"
@ -15,8 +15,3 @@ msgstr ""
"X-Crowdin-File-ID: 692\n"
"Language: zh_TW\n"
#: redbot/cogs/audio/core/__init__.py:40
#, docstring
msgid "Play audio through voice channels."
msgstr "透過語音頻道來播放音樂。"

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -61,39 +61,39 @@ DEFAULT_LAVALINK_YAML = {
"yaml__plugins__youtube__clientOptions__ANDROID_MUSIC__playback": True,
"yaml__plugins__youtube__clientOptions__ANDROID_MUSIC__playlistLoading": False,
"yaml__plugins__youtube__clientOptions__ANDROID_MUSIC__searching": True,
"yaml__plugins__youtube__clientOptions__ANDROID_MUSIC__videoLoading": False,
"yaml__plugins__youtube__clientOptions__ANDROID_VR__playback": False,
"yaml__plugins__youtube__clientOptions__ANDROID_MUSIC__videoLoading": True,
"yaml__plugins__youtube__clientOptions__ANDROID_VR__playback": True,
"yaml__plugins__youtube__clientOptions__ANDROID_VR__playlistLoading": True,
"yaml__plugins__youtube__clientOptions__ANDROID_VR__searching": True,
"yaml__plugins__youtube__clientOptions__ANDROID_VR__videoLoading": False,
"yaml__plugins__youtube__clientOptions__ANDROID_VR__videoLoading": True,
"yaml__plugins__youtube__clientOptions__IOS__playback": True,
"yaml__plugins__youtube__clientOptions__IOS__playlistLoading": True,
"yaml__plugins__youtube__clientOptions__IOS__searching": True,
"yaml__plugins__youtube__clientOptions__IOS__videoLoading": False,
"yaml__plugins__youtube__clientOptions__IOS__videoLoading": True,
"yaml__plugins__youtube__clientOptions__MUSIC__playback": False,
"yaml__plugins__youtube__clientOptions__MUSIC__playlistLoading": False,
"yaml__plugins__youtube__clientOptions__MUSIC__searching": True,
"yaml__plugins__youtube__clientOptions__MUSIC__videoLoading": False,
"yaml__plugins__youtube__clientOptions__MWEB__playback": True,
"yaml__plugins__youtube__clientOptions__MWEB__playlistLoading": True,
"yaml__plugins__youtube__clientOptions__MWEB__searching": False,
"yaml__plugins__youtube__clientOptions__MWEB__videoLoading": False,
"yaml__plugins__youtube__clientOptions__TV__playback": True,
"yaml__plugins__youtube__clientOptions__MWEB__searching": True,
"yaml__plugins__youtube__clientOptions__MWEB__videoLoading": True,
"yaml__plugins__youtube__clientOptions__TV__playback": False,
"yaml__plugins__youtube__clientOptions__TV__playlistLoading": False,
"yaml__plugins__youtube__clientOptions__TV__searching": False,
"yaml__plugins__youtube__clientOptions__TV__videoLoading": False,
"yaml__plugins__youtube__clientOptions__TVHTML5EMBEDDED__playback": True,
"yaml__plugins__youtube__clientOptions__TVHTML5EMBEDDED__playback": False,
"yaml__plugins__youtube__clientOptions__TVHTML5EMBEDDED__playlistLoading": False,
"yaml__plugins__youtube__clientOptions__TVHTML5EMBEDDED__searching": False,
"yaml__plugins__youtube__clientOptions__TVHTML5EMBEDDED__videoLoading": False,
"yaml__plugins__youtube__clientOptions__TVHTML5EMBEDDED__searching": True,
"yaml__plugins__youtube__clientOptions__TVHTML5EMBEDDED__videoLoading": True,
"yaml__plugins__youtube__clientOptions__WEB__playback": True,
"yaml__plugins__youtube__clientOptions__WEB__playlistLoading": True,
"yaml__plugins__youtube__clientOptions__WEB__searching": False,
"yaml__plugins__youtube__clientOptions__WEB__videoLoading": False,
"yaml__plugins__youtube__clientOptions__WEB__searching": True,
"yaml__plugins__youtube__clientOptions__WEB__videoLoading": True,
"yaml__plugins__youtube__clientOptions__WEBEMBEDDED__playback": True,
"yaml__plugins__youtube__clientOptions__WEBEMBEDDED__playlistLoading": False,
"yaml__plugins__youtube__clientOptions__WEBEMBEDDED__searching": False,
"yaml__plugins__youtube__clientOptions__WEBEMBEDDED__videoLoading": False,
"yaml__plugins__youtube__clientOptions__WEBEMBEDDED__videoLoading": True,
}

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: redgettext 3.4.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
"X-Crowdin-Project: red-discordbot\n"
"X-Crowdin-Project-ID: 289505\n"
"X-Crowdin-Language: sl\n"

View File

@ -16,7 +16,9 @@ __all__ = [
# regexes
URL_RE = re.compile(r"(https?|s?ftp)://(\S+)", re.I)
INVITE_URL_RE = re.compile(r"(discord\.(?:gg|io|me|li)|discord(?:app)?\.com\/invite)\/(\S+)", re.I)
INVITE_URL_RE = re.compile(
r"(?<!promos\.)(discord\.(?:gg|io|me|li)|discord(?:app)?\.com\/invite)[\/\\](\S+)", re.I
)
MASS_MENTION_RE = re.compile(r"(@)(?=everyone|here)") # This only matches the @ for sanitizing

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-02-01 23:37+0000\n"
"POT-Creation-Date: 2025-09-04 19:12+0000\n"
"Last-Translator: \n"
"Language-Team: Arabic\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr ""
msgid "Page {num}"
msgstr ""
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:698
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:702
msgid "You are not authorized to interact with this."
msgstr ""
@ -95,20 +95,20 @@ msgstr ""
msgid "Service"
msgstr ""
#: redbot/core/utils/views.py:434
#: redbot/core/utils/views.py:438
msgid "This modal is for bot owners only. Whoops!"
msgstr ""
#: redbot/core/utils/views.py:447
#: redbot/core/utils/views.py:451
msgid "{error_message}\n"
"Please try again."
msgstr ""
#: redbot/core/utils/views.py:454 redbot/core/utils/views.py:461
#: redbot/core/utils/views.py:458 redbot/core/utils/views.py:465
msgid "`{service}` API tokens have been set."
msgstr "تم تعيين رمز API{service}."
#: redbot/core/utils/views.py:497
#: redbot/core/utils/views.py:501
msgid "This button is for bot owners only, oh well."
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-02-01 23:37+0000\n"
"POT-Creation-Date: 2025-09-04 19:12+0000\n"
"Last-Translator: \n"
"Language-Team: Bulgarian\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr ""
msgid "Page {num}"
msgstr ""
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:698
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:702
msgid "You are not authorized to interact with this."
msgstr ""
@ -95,20 +95,20 @@ msgstr ""
msgid "Service"
msgstr ""
#: redbot/core/utils/views.py:434
#: redbot/core/utils/views.py:438
msgid "This modal is for bot owners only. Whoops!"
msgstr ""
#: redbot/core/utils/views.py:447
#: redbot/core/utils/views.py:451
msgid "{error_message}\n"
"Please try again."
msgstr ""
#: redbot/core/utils/views.py:454 redbot/core/utils/views.py:461
#: redbot/core/utils/views.py:458 redbot/core/utils/views.py:465
msgid "`{service}` API tokens have been set."
msgstr ""
#: redbot/core/utils/views.py:497
#: redbot/core/utils/views.py:501
msgid "This button is for bot owners only, oh well."
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-02-01 23:37+0000\n"
"POT-Creation-Date: 2025-09-04 19:12+0000\n"
"Last-Translator: \n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr ""
msgid "Page {num}"
msgstr ""
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:698
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:702
msgid "You are not authorized to interact with this."
msgstr ""
@ -95,21 +95,21 @@ msgstr "Klíče a tokeny pro {service}"
msgid "Service"
msgstr "Služba"
#: redbot/core/utils/views.py:434
#: redbot/core/utils/views.py:438
msgid "This modal is for bot owners only. Whoops!"
msgstr ""
#: redbot/core/utils/views.py:447
#: redbot/core/utils/views.py:451
msgid "{error_message}\n"
"Please try again."
msgstr "{error_message}\n"
"Zkuste to prosím znovu."
#: redbot/core/utils/views.py:454 redbot/core/utils/views.py:461
#: redbot/core/utils/views.py:458 redbot/core/utils/views.py:465
msgid "`{service}` API tokens have been set."
msgstr "`{service} API tokeny byly nastaveny."
#: redbot/core/utils/views.py:497
#: redbot/core/utils/views.py:501
msgid "This button is for bot owners only, oh well."
msgstr "Toto tlačítko je pouze pro majitele bota."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-02-01 23:37+0000\n"
"POT-Creation-Date: 2025-09-04 19:12+0000\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr ""
msgid "Page {num}"
msgstr ""
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:698
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:702
msgid "You are not authorized to interact with this."
msgstr ""
@ -95,20 +95,20 @@ msgstr ""
msgid "Service"
msgstr ""
#: redbot/core/utils/views.py:434
#: redbot/core/utils/views.py:438
msgid "This modal is for bot owners only. Whoops!"
msgstr ""
#: redbot/core/utils/views.py:447
#: redbot/core/utils/views.py:451
msgid "{error_message}\n"
"Please try again."
msgstr ""
#: redbot/core/utils/views.py:454 redbot/core/utils/views.py:461
#: redbot/core/utils/views.py:458 redbot/core/utils/views.py:465
msgid "`{service}` API tokens have been set."
msgstr ""
#: redbot/core/utils/views.py:497
#: redbot/core/utils/views.py:501
msgid "This button is for bot owners only, oh well."
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-02-01 23:37+0000\n"
"POT-Creation-Date: 2025-09-04 19:12+0000\n"
"Last-Translator: \n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr "Seite auswählen"
msgid "Page {num}"
msgstr "Seite {num}"
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:698
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:702
msgid "You are not authorized to interact with this."
msgstr "Du bist nicht berechtigt um damit zu Interagieren."
@ -95,21 +95,21 @@ msgstr "Schlüssel und Token für {service}"
msgid "Service"
msgstr "Service"
#: redbot/core/utils/views.py:434
#: redbot/core/utils/views.py:438
msgid "This modal is for bot owners only. Whoops!"
msgstr "Dieser Modus ist nur für Bot-Besitzer. Hoppla!"
#: redbot/core/utils/views.py:447
#: redbot/core/utils/views.py:451
msgid "{error_message}\n"
"Please try again."
msgstr "{error_message}\n"
"Bitte versuchen Sie es erneut."
#: redbot/core/utils/views.py:454 redbot/core/utils/views.py:461
#: redbot/core/utils/views.py:458 redbot/core/utils/views.py:465
msgid "`{service}` API tokens have been set."
msgstr "`{service}` API-Token wurden gesetzt."
#: redbot/core/utils/views.py:497
#: redbot/core/utils/views.py:501
msgid "This button is for bot owners only, oh well."
msgstr "Diese Taste ist nur für Bot-Besitzer, oh gut."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-02-01 23:37+0000\n"
"POT-Creation-Date: 2025-09-04 19:12+0000\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr "Seleccione una página"
msgid "Page {num}"
msgstr "Página {num}"
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:698
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:702
msgid "You are not authorized to interact with this."
msgstr "No está autorizado a interactuar con esto."
@ -95,21 +95,21 @@ msgstr "Llaves y tokens para {service}"
msgid "Service"
msgstr "Servicio"
#: redbot/core/utils/views.py:434
#: redbot/core/utils/views.py:438
msgid "This modal is for bot owners only. Whoops!"
msgstr "Esta modal es sólo para propietarios de bots. ¡Ups!"
#: redbot/core/utils/views.py:447
#: redbot/core/utils/views.py:451
msgid "{error_message}\n"
"Please try again."
msgstr "{error_message}\n"
"Por favor, inténtalo de nuevo."
#: redbot/core/utils/views.py:454 redbot/core/utils/views.py:461
#: redbot/core/utils/views.py:458 redbot/core/utils/views.py:465
msgid "`{service}` API tokens have been set."
msgstr "`{service}` Los tokens de la API han sido establecidos."
#: redbot/core/utils/views.py:497
#: redbot/core/utils/views.py:501
msgid "This button is for bot owners only, oh well."
msgstr "Este botón es sólo para los propietarios de bots, oh bueno."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-02-01 23:37+0000\n"
"POT-Creation-Date: 2025-09-04 19:12+0000\n"
"Last-Translator: \n"
"Language-Team: Estonian\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr ""
msgid "Page {num}"
msgstr ""
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:698
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:702
msgid "You are not authorized to interact with this."
msgstr ""
@ -95,20 +95,20 @@ msgstr ""
msgid "Service"
msgstr ""
#: redbot/core/utils/views.py:434
#: redbot/core/utils/views.py:438
msgid "This modal is for bot owners only. Whoops!"
msgstr ""
#: redbot/core/utils/views.py:447
#: redbot/core/utils/views.py:451
msgid "{error_message}\n"
"Please try again."
msgstr ""
#: redbot/core/utils/views.py:454 redbot/core/utils/views.py:461
#: redbot/core/utils/views.py:458 redbot/core/utils/views.py:465
msgid "`{service}` API tokens have been set."
msgstr ""
#: redbot/core/utils/views.py:497
#: redbot/core/utils/views.py:501
msgid "This button is for bot owners only, oh well."
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-02-01 23:37+0000\n"
"POT-Creation-Date: 2025-09-04 19:12+0000\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr ""
msgid "Page {num}"
msgstr ""
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:698
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:702
msgid "You are not authorized to interact with this."
msgstr ""
@ -95,20 +95,20 @@ msgstr ""
msgid "Service"
msgstr ""
#: redbot/core/utils/views.py:434
#: redbot/core/utils/views.py:438
msgid "This modal is for bot owners only. Whoops!"
msgstr ""
#: redbot/core/utils/views.py:447
#: redbot/core/utils/views.py:451
msgid "{error_message}\n"
"Please try again."
msgstr ""
#: redbot/core/utils/views.py:454 redbot/core/utils/views.py:461
#: redbot/core/utils/views.py:458 redbot/core/utils/views.py:465
msgid "`{service}` API tokens have been set."
msgstr ""
#: redbot/core/utils/views.py:497
#: redbot/core/utils/views.py:501
msgid "This button is for bot owners only, oh well."
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-02-01 23:37+0000\n"
"POT-Creation-Date: 2025-09-04 19:12+0000\n"
"Last-Translator: \n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr ""
msgid "Page {num}"
msgstr "Page {num}"
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:698
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:702
msgid "You are not authorized to interact with this."
msgstr ""
@ -95,20 +95,20 @@ msgstr ""
msgid "Service"
msgstr ""
#: redbot/core/utils/views.py:434
#: redbot/core/utils/views.py:438
msgid "This modal is for bot owners only. Whoops!"
msgstr ""
#: redbot/core/utils/views.py:447
#: redbot/core/utils/views.py:451
msgid "{error_message}\n"
"Please try again."
msgstr ""
#: redbot/core/utils/views.py:454 redbot/core/utils/views.py:461
#: redbot/core/utils/views.py:458 redbot/core/utils/views.py:465
msgid "`{service}` API tokens have been set."
msgstr "`{service}` les tokens API ont été définis."
#: redbot/core/utils/views.py:497
#: redbot/core/utils/views.py:501
msgid "This button is for bot owners only, oh well."
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-02-01 23:37+0000\n"
"POT-Creation-Date: 2025-09-04 19:12+0000\n"
"Last-Translator: \n"
"Language-Team: Hindi\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr ""
msgid "Page {num}"
msgstr ""
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:698
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:702
msgid "You are not authorized to interact with this."
msgstr ""
@ -95,20 +95,20 @@ msgstr ""
msgid "Service"
msgstr ""
#: redbot/core/utils/views.py:434
#: redbot/core/utils/views.py:438
msgid "This modal is for bot owners only. Whoops!"
msgstr ""
#: redbot/core/utils/views.py:447
#: redbot/core/utils/views.py:451
msgid "{error_message}\n"
"Please try again."
msgstr ""
#: redbot/core/utils/views.py:454 redbot/core/utils/views.py:461
#: redbot/core/utils/views.py:458 redbot/core/utils/views.py:465
msgid "`{service}` API tokens have been set."
msgstr ""
#: redbot/core/utils/views.py:497
#: redbot/core/utils/views.py:501
msgid "This button is for bot owners only, oh well."
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-02-01 23:37+0000\n"
"POT-Creation-Date: 2025-09-04 19:12+0000\n"
"Last-Translator: \n"
"Language-Team: Croatian\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr ""
msgid "Page {num}"
msgstr ""
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:698
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:702
msgid "You are not authorized to interact with this."
msgstr ""
@ -95,21 +95,21 @@ msgstr "Ključevi i tokeni za {service}"
msgid "Service"
msgstr "Usluga"
#: redbot/core/utils/views.py:434
#: redbot/core/utils/views.py:438
msgid "This modal is for bot owners only. Whoops!"
msgstr "Ovaj modal je samo za vlasnike bota. Ups!"
#: redbot/core/utils/views.py:447
#: redbot/core/utils/views.py:451
msgid "{error_message}\n"
"Please try again."
msgstr "{error_message}\n"
"Molim te pokušaj ponovno."
#: redbot/core/utils/views.py:454 redbot/core/utils/views.py:461
#: redbot/core/utils/views.py:458 redbot/core/utils/views.py:465
msgid "`{service}` API tokens have been set."
msgstr "`{service}` API tokeni su postavljeni."
#: redbot/core/utils/views.py:497
#: redbot/core/utils/views.py:501
msgid "This button is for bot owners only, oh well."
msgstr "Ovaj gumb je samo za vlasnike bota."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-02-01 23:37+0000\n"
"POT-Creation-Date: 2025-09-04 19:12+0000\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr "Válasz oldalt"
msgid "Page {num}"
msgstr "Oldal {num}"
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:698
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:702
msgid "You are not authorized to interact with this."
msgstr "Ön nem jogosult arra, hogy ezzel kapcsolatba lépjen."
@ -95,21 +95,21 @@ msgstr "Kulcsok és tokenek {service} re/ra"
msgid "Service"
msgstr "Szolgáltatás"
#: redbot/core/utils/views.py:434
#: redbot/core/utils/views.py:438
msgid "This modal is for bot owners only. Whoops!"
msgstr "Ez a modal csak a botok tulajdonosainak szól. Whoops!"
#: redbot/core/utils/views.py:447
#: redbot/core/utils/views.py:451
msgid "{error_message}\n"
"Please try again."
msgstr "{error_message}\n"
"Kérlek, próbáld újra."
#: redbot/core/utils/views.py:454 redbot/core/utils/views.py:461
#: redbot/core/utils/views.py:458 redbot/core/utils/views.py:465
msgid "`{service}` API tokens have been set."
msgstr "`{service}` API token beállítva."
#: redbot/core/utils/views.py:497
#: redbot/core/utils/views.py:501
msgid "This button is for bot owners only, oh well."
msgstr "Ez a gomb a bot tulajdonosnak van csak, ó hát."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-02-01 23:37+0000\n"
"POT-Creation-Date: 2025-09-04 19:12+0000\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr "Pilih Halaman"
msgid "Page {num}"
msgstr "Halaman {num}"
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:698
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:702
msgid "You are not authorized to interact with this."
msgstr "Anda tidak berwenang untuk berinteraksi dengan ini."
@ -95,20 +95,20 @@ msgstr ""
msgid "Service"
msgstr "Layanan"
#: redbot/core/utils/views.py:434
#: redbot/core/utils/views.py:438
msgid "This modal is for bot owners only. Whoops!"
msgstr ""
#: redbot/core/utils/views.py:447
#: redbot/core/utils/views.py:451
msgid "{error_message}\n"
"Please try again."
msgstr ""
#: redbot/core/utils/views.py:454 redbot/core/utils/views.py:461
#: redbot/core/utils/views.py:458 redbot/core/utils/views.py:465
msgid "`{service}` API tokens have been set."
msgstr ""
#: redbot/core/utils/views.py:497
#: redbot/core/utils/views.py:501
msgid "This button is for bot owners only, oh well."
msgstr "Tombol ini hanya untuk pemilik bot saja, oh baiklah."

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-02-01 23:37+0000\n"
"POT-Creation-Date: 2025-09-04 19:12+0000\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr ""
msgid "Page {num}"
msgstr ""
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:698
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:702
msgid "You are not authorized to interact with this."
msgstr ""
@ -95,20 +95,20 @@ msgstr ""
msgid "Service"
msgstr ""
#: redbot/core/utils/views.py:434
#: redbot/core/utils/views.py:438
msgid "This modal is for bot owners only. Whoops!"
msgstr ""
#: redbot/core/utils/views.py:447
#: redbot/core/utils/views.py:451
msgid "{error_message}\n"
"Please try again."
msgstr ""
#: redbot/core/utils/views.py:454 redbot/core/utils/views.py:461
#: redbot/core/utils/views.py:458 redbot/core/utils/views.py:465
msgid "`{service}` API tokens have been set."
msgstr ""
#: redbot/core/utils/views.py:497
#: redbot/core/utils/views.py:501
msgid "This button is for bot owners only, oh well."
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-02-01 23:37+0000\n"
"POT-Creation-Date: 2025-09-04 19:12+0000\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr "ページを選択"
msgid "Page {num}"
msgstr "ページ{num}"
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:698
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:702
msgid "You are not authorized to interact with this."
msgstr "これをインタラクトする権限がありません"
@ -95,21 +95,21 @@ msgstr "{service} のキーとトークン"
msgid "Service"
msgstr "サービス"
#: redbot/core/utils/views.py:434
#: redbot/core/utils/views.py:438
msgid "This modal is for bot owners only. Whoops!"
msgstr "おっとこのモーダルはBot所有者専用です。"
#: redbot/core/utils/views.py:447
#: redbot/core/utils/views.py:451
msgid "{error_message}\n"
"Please try again."
msgstr "{error_message}\n"
"もう一度お試しください。"
#: redbot/core/utils/views.py:454 redbot/core/utils/views.py:461
#: redbot/core/utils/views.py:458 redbot/core/utils/views.py:465
msgid "`{service}` API tokens have been set."
msgstr "`{service}` APIトークンが設定されました"
#: redbot/core/utils/views.py:497
#: redbot/core/utils/views.py:501
msgid "This button is for bot owners only, oh well."
msgstr "このボタンは、Bot所有者のみが使用できます"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-02-01 23:37+0000\n"
"POT-Creation-Date: 2025-09-04 19:12+0000\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr ""
msgid "Page {num}"
msgstr ""
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:698
#: redbot/core/utils/views.py:338 redbot/core/utils/views.py:702
msgid "You are not authorized to interact with this."
msgstr ""
@ -95,20 +95,20 @@ msgstr ""
msgid "Service"
msgstr ""
#: redbot/core/utils/views.py:434
#: redbot/core/utils/views.py:438
msgid "This modal is for bot owners only. Whoops!"
msgstr ""
#: redbot/core/utils/views.py:447
#: redbot/core/utils/views.py:451
msgid "{error_message}\n"
"Please try again."
msgstr ""
#: redbot/core/utils/views.py:454 redbot/core/utils/views.py:461
#: redbot/core/utils/views.py:458 redbot/core/utils/views.py:465
msgid "`{service}` API tokens have been set."
msgstr ""
#: redbot/core/utils/views.py:497
#: redbot/core/utils/views.py:501
msgid "This button is for bot owners only, oh well."
msgstr ""

Some files were not shown because too many files have changed in this diff Show More