Compare commits

...

6 Commits

Author SHA1 Message Date
github-actions[bot]
d6054412f4 Version bump to 3.5.16 (#6520)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-02-06 02:36:23 +01:00
github-actions[bot]
5cf69bdc51 Automated Crowdin downstream (#6521)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-02-06 02:35:50 +01:00
Jakub Kuczys
2fd6ea88d9 Red 3.5.16 - Changelog (#6519) 2025-02-06 02:31:40 +01:00
Jakub Kuczys
50ad59a6c8 Catch TypeError when setting global locale (#6518) 2025-02-06 02:31:03 +01:00
Jakub Kuczys
dfc1e742f8 Handle invalid locale configuration graciously during startup (#6517) 2025-02-05 19:42:42 -05:00
github-actions[bot]
769c319ffd Version bump to 3.5.16.dev1 (#6516)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-02-03 02:13:08 +00:00
33 changed files with 128 additions and 92 deletions

View File

@@ -1,5 +1,21 @@
.. Red changelogs
Redbot 3.5.16 (2025-02-06)
==========================
| Thanks to all these amazing people that contributed to this release:
| :ghuser:`Flame442`, :ghuser:`Jackenmen`
This is a hotfix release changing our implementation to prevent crash at startup
when invalid value of global locale/regional format configuration is encountered.
We have seen a few reports of this occurring and we believe that this was caused by
some 3rd-party cog(s) passing invalid values to Red <3.5 i18n APIs as those versions
did not validate the input in some scenarios. During startup, Red will now simply
log a warning, if it encounters incorrect global locale/regional format configuration
and reset it to a known valid value.
----
Redbot 3.5.15 (2025-02-03)
==========================

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.15"
_VERSION = "3.5.16"
__version__, version_info = VersionInfo._get_version()

View File

@@ -22,8 +22,9 @@ __all__ = (
)
FRESH_INSTALL_LOCALE = "en-US"
current_locale = ContextVar("current_locale")
current_locale_default = "en-US"
current_locale_default = FRESH_INSTALL_LOCALE
current_regional_format = ContextVar("current_regional_format")
current_regional_format_default = None

View File

@@ -115,7 +115,7 @@ class Red(
owner=None,
whitelist=[],
blacklist=[],
locale="en-US",
locale=_i18n.FRESH_INSTALL_LOCALE,
regional_format=None,
embeds=True,
color=15158332,
@@ -1145,9 +1145,28 @@ class Red(
self.owner_ids.add(self._owner_id_overwrite)
i18n_locale = await self._config.locale()
_i18n.set_global_locale(i18n_locale)
try:
_i18n.set_global_locale(i18n_locale)
except (ValueError, TypeError):
log.warning(
"The bot's global locale was set to an invalid value (%r)"
" and will be reset to default (%s).",
i18n_locale,
_i18n.FRESH_INSTALL_LOCALE,
)
i18n_locale = _i18n.FRESH_INSTALL_LOCALE
await self._config.locale.clear()
i18n_regional_format = await self._config.regional_format()
_i18n.set_global_regional_format(i18n_regional_format)
try:
_i18n.set_global_regional_format(i18n_regional_format)
except (ValueError, TypeError):
log.warning(
"The bot's global regional format was set to an invalid value (%r)"
" and will be reset to default (which is to inherit global locale, i.e. %s).",
i18n_regional_format,
i18n_locale,
)
await self._config.regional_format.clear()
async def _pre_connect(self) -> None:
"""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Arabic\n"
"MIME-Version: 1.0\n"
@@ -742,11 +742,11 @@ msgstr "لا يمكن دفع ثمن هذا الأمر في DM بدون بنك ع
msgid "You need at least {cost} {currency} to use this command."
msgstr "تحتاج على الأقل إلى {cost} {currency} لاستخدام هذا الأمر."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Bulgarian\n"
"MIME-Version: 1.0\n"
@@ -748,11 +748,11 @@ msgstr ""
msgid "You need at least {cost} {currency} to use this command."
msgstr ""
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@@ -754,11 +754,11 @@ msgstr "Nelze zaplatit za tento příkaz v DM bez globální banky."
msgid "You need at least {cost} {currency} to use this command."
msgstr "Potřebujete alespoň {cost} {currency} k použití tohoto příkazu."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"MIME-Version: 1.0\n"
@@ -741,11 +741,11 @@ msgstr "Kan ikke betale for denne kommando i PB uden en global bank."
msgid "You need at least {cost} {currency} to use this command."
msgstr "Du skal bruge mindst {cost} {currency} for at bruge denne kommando."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@@ -773,11 +773,11 @@ msgstr "Dieser Befehl kann ohne eine globale Bank nicht in den Direktnachrichten
msgid "You need at least {cost} {currency} to use this command."
msgstr "Sie benötigen mindestens {cost} {currency} um diesen Befehl zu verwenden."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr "Es bleibt noch eine Nachricht übrig. Geben Sie {command_1} ein, um fortzufahren oder {command_2}, um alle Inhalte als Datei hochzuladen."
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr "Es bleiben noch {count} Nachrichten. Geben Sie {command_1} ein, um fortzufahren oder {command_2}, um alle Inhalte als Datei hochzuladen."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
@@ -774,11 +774,11 @@ msgstr "No se puede pagar con este comando en DM sin un banco global."
msgid "You need at least {cost} {currency} to use this command."
msgstr "Necesitas al menos {cost} {currency} para usar este comando."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr "Todavía queda un mensaje. Escribe {command_1} para continuar o {command_2} para subir todos los contenidos como archivos."
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr "Quedan {count} mensajes pendientes. Escriba {command_1} para continuar o {command_2} para subir todos los contenidos como archivos."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"MIME-Version: 1.0\n"
@@ -732,11 +732,11 @@ msgstr "Et voi maksaa tästä komennosta yksityisviesteissä ilman globaalia pan
msgid "You need at least {cost} {currency} to use this command."
msgstr "Sinulla pitää olla vähintään {cost} {currency} käyttääksesi tätä komentoa."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@@ -770,11 +770,11 @@ msgstr "Impossible de payer cette commande en message privé sans banque globale
msgid "You need at least {cost} {currency} to use this command."
msgstr "Vous avez besoin dau moins {cost} {currency} pour utiliser cette commande."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr "Il reste encore un message. Tapez {command_1} pour continuer ou {command_2} pour télécharger tout le contenu en tant que fichier."
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr "Il y a encore des messages {count} restants. Tapez {command_1} pour continuer ou {command_2} pour télécharger tout le contenu en tant que fichier."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Hindi\n"
"MIME-Version: 1.0\n"
@@ -732,11 +732,11 @@ msgstr ""
msgid "You need at least {cost} {currency} to use this command."
msgstr ""
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Croatian\n"
"MIME-Version: 1.0\n"
@@ -754,11 +754,11 @@ msgstr "Ne može se platiti za ovu naredbu u DM-u bez globalne banke."
msgid "You need at least {cost} {currency} to use this command."
msgstr "Za korištenje ove naredbe trebate imati najmanje {cost}{currency}."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -741,11 +741,11 @@ msgstr "Nem lehet fizetni ézért a parancsért DM-ben globális bank nélkül."
msgid "You need at least {cost} {currency} to use this command."
msgstr "Legfeljebb {cost}{currency} kell ahoz hogy használd ezt a parancsot."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"MIME-Version: 1.0\n"
@@ -732,11 +732,11 @@ msgstr ""
msgid "You need at least {cost} {currency} to use this command."
msgstr ""
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
@@ -746,11 +746,11 @@ msgstr "Impossibile pagare per questo comando in DM senza una banca globale."
msgid "You need at least {cost} {currency} to use this command."
msgstr "Necessiti di almeno {cost} {currency} per usare questo comando."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"
@@ -739,11 +739,11 @@ msgstr "グローバルバンクがないので、DMでこのコマンドを実
msgid "You need at least {cost} {currency} to use this command."
msgstr "このコマンドを使用するには、少なくとも {cost} {currency} が必要です。"
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"MIME-Version: 1.0\n"
@@ -732,11 +732,11 @@ msgstr ""
msgid "You need at least {cost} {currency} to use this command."
msgstr ""
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Norwegian Bokmal\n"
"MIME-Version: 1.0\n"
@@ -771,11 +771,11 @@ msgstr "Kan ikke betale for denne kommandoen i DM uten en global bank."
msgid "You need at least {cost} {currency} to use this command."
msgstr "Du trenger minst {cost} {currency} for å bruke denne kommandoen."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"MIME-Version: 1.0\n"
@@ -732,11 +732,11 @@ msgstr ""
msgid "You need at least {cost} {currency} to use this command."
msgstr "Je moet minstens {cost} {currency} hebben om dit commando te gebruiken."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -757,11 +757,11 @@ msgstr "Nie można zapłacić za tą komendę przez PW bez banku globalnego."
msgid "You need at least {cost} {currency} to use this command."
msgstr "Potrzebujesz co najmniej {cost} {currency} aby użyć tej komendy."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n"
@@ -760,11 +760,11 @@ msgstr "Não pode pagar por este comando em uma mensagem direta sem um banco glo
msgid "You need at least {cost} {currency} to use this command."
msgstr "Você precisa de pelo menos {cost} {currency} para usar este comando."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
@@ -743,11 +743,11 @@ msgstr ""
msgid "You need at least {cost} {currency} to use this command."
msgstr ""
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@@ -773,11 +773,11 @@ msgstr "Не удается оплатить эту команду в ЛС бе
msgid "You need at least {cost} {currency} to use this command."
msgstr "Вам нужно как минимум {cost} {currency} для того чтобы использовать данную команду."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Slovak\n"
"MIME-Version: 1.0\n"
@@ -732,11 +732,11 @@ msgstr ""
msgid "You need at least {cost} {currency} to use this command."
msgstr ""
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Slovenian\n"
"MIME-Version: 1.0\n"
@@ -737,11 +737,11 @@ msgstr "Plačevanje v zasebnih sporočilih ni mogoče brez globalne banke."
msgid "You need at least {cost} {currency} to use this command."
msgstr "Potrebno je vsaj {cost}{currency} da uporabiš to komando."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@@ -742,11 +742,11 @@ msgstr "Kan inte betala för detta kommando i DM utan en global bank."
msgid "You need at least {cost} {currency} to use this command."
msgstr "Du behöver minst {cost} {currency} för att använda detta kommando."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
@@ -767,11 +767,11 @@ msgstr "Bu komut için özel mesajda küresel banka olmaksızın ödeme yapılam
msgid "You need at least {cost} {currency} to use this command."
msgstr "Bu komutu kullanabilmen için {cost} {currency} ihtiyacın var."
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Ukrainian\n"
"MIME-Version: 1.0\n"
@@ -732,11 +732,11 @@ msgstr ""
msgid "You need at least {cost} {currency} to use this command."
msgstr ""
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n"
@@ -732,11 +732,11 @@ msgstr ""
msgid "You need at least {cost} {currency} to use this command."
msgstr ""
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
@@ -750,11 +750,11 @@ msgstr "如果没有全球银行无法在DM中支付此命令"
msgid "You need at least {cost} {currency} to use this command."
msgstr "你至少需要 {cost} {currency} 才能使用此命令"
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2025-01-27 00:33+0000\n"
"POT-Creation-Date: 2025-02-06 00:43+0000\n"
"Last-Translator: \n"
"Language-Team: Chinese Traditional\n"
"MIME-Version: 1.0\n"
@@ -764,11 +764,11 @@ msgstr "如果沒有全球銀行,就無法在 DM 中支付此命令。 "
msgid "You need at least {cost} {currency} to use this command."
msgstr "您至少需要 {cost} {currency} 才能使用此命令。"
#: redbot/core/bot.py:2463
#: redbot/core/bot.py:2482
msgid "There is still one message remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""
#: redbot/core/bot.py:2468
#: redbot/core/bot.py:2487
msgid "There are still {count} messages remaining. Type {command_1} to continue or {command_2} to upload all contents as a file."
msgstr ""