Import lang from Red as a cog
Some checks are pending
Run pre-commit / Run pre-commit (push) Waiting to run

This commit is contained in:
Valerie 2025-04-28 14:08:03 -04:00
parent 48b098381c
commit 73e5689460
45 changed files with 177798 additions and 0 deletions

6
rubycore/__init__.py Normal file
View file

@ -0,0 +1,6 @@
from .rubycore import RubyCore
__red_end_user_data_statement__ = 'This cog does not store user data.'
async def setup(bot):
await bot.add_cog(RubyCore(bot))

20
rubycore/info.json Normal file
View file

@ -0,0 +1,20 @@
{
"author": [
"Valerie"
],
"install_msg": "You've just installed Ruby Core. This cog changes Red Bots locales",
"name": "RubyCore",
"short": "This cog changes Red Bots locales",
"requirements": [],
"description": "This cog changes Red-DiscordBot's locales",
"tags": [
"locale"
],
"min_bot_version": "3.5.0.dev1",
"min_python_version": [
3,
6,
0
],
"end_user_data_statement": "This cog does not store user data."
}

3425
rubycore/locales/af-ZA.po Normal file

File diff suppressed because it is too large Load diff

4744
rubycore/locales/ar-SA.po Normal file

File diff suppressed because it is too large Load diff

4689
rubycore/locales/bg-BG.po Normal file

File diff suppressed because it is too large Load diff

3425
rubycore/locales/bs-BA.po Normal file

File diff suppressed because it is too large Load diff

3425
rubycore/locales/ca-ES.po Normal file

File diff suppressed because it is too large Load diff

4717
rubycore/locales/cs-CZ.po Normal file

File diff suppressed because it is too large Load diff

4684
rubycore/locales/da-DK.po Normal file

File diff suppressed because it is too large Load diff

5030
rubycore/locales/de-DE.po Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,197 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2017-12-06 11:27+1100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: ../cog_manager.py:21
#, docstring
msgid ""
"Directory manager for Red's cogs.\n"
"\n"
" This module allows you to load cogs from multiple directories and even from\n"
" outside the bot directory. You may also set a directory for downloader to\n"
" install new cogs to, the default being the :code:`cogs/` folder in the root\n"
" bot directory.\n"
" "
msgstr ""
#: ../cog_manager.py:40
#, docstring
msgid ""
"Get all currently valid path directories.\n"
"\n"
" Returns\n"
" -------\n"
" `tuple` of `pathlib.Path`\n"
" All valid cog paths.\n"
"\n"
" "
msgstr ""
#: ../cog_manager.py:64
#, docstring
msgid ""
"Get the install path for 3rd party cogs.\n"
"\n"
" Returns\n"
" -------\n"
" pathlib.Path\n"
" The path to the directory where 3rd party cogs are stored.\n"
"\n"
" "
msgstr ""
#: ../cog_manager.py:273
#, docstring
msgid ""
"Finds the names of all available modules to load.\n"
" "
msgstr ""
#: ../cog_manager.py:285
#, docstring
msgid ""
"Re-evaluate modules in the py cache.\n"
"\n"
" This is an alias for an importlib internal and should be called\n"
" any time that a new module has been installed to a cog directory.\n"
" "
msgstr ""
#: ../cog_manager.py:298
#, docstring
msgid ""
"Commands to interface with Red's cog manager."
msgstr ""
"(TRANSLATED) Commands to interface with Red's cog manager."
#: ../cog_manager.py:302
#, docstring
msgid ""
"\n"
" Lists current cog paths in order of priority."
" "
msgstr ""
"\n"
" (TRANSLATED) Lists current cog paths in order of priority."
" "
#: ../cog_manager.py:321
#, docstring
msgid ""
"\n"
" Add a path to the list of available cog paths."
" "
msgstr ""
"\n"
" (TRANSLATED) Add a path to the list of available cog paths."
" "
#: ../cog_manager.py:340
#, docstring
msgid ""
"\n"
" Removes a path from the available cog paths given the path_number"
" from !paths"
" "
msgstr ""
"\n"
" (TRANSLATED) Removes a path from the available cog paths given the path_number"
" from !paths"
" "
#: ../cog_manager.py:357
#, docstring
msgid ""
"\n"
" Reorders paths internally to allow discovery of different cogs."
" "
msgstr ""
"\n"
" (TRANSLATED) Reorders paths internally to allow discovery of different cogs."
" "
#: ../cog_manager.py:383
#, docstring
msgid ""
"\n"
" Returns the current install path or sets it if one is provided."
" The provided path must be absolute or relative to the bot's"
" directory and it must already exist."
"\n"
" No installed cogs will be transferred in the process."
" "
msgstr ""
"\n"
" (TRANSLATED) Returns the current install path or sets it if one is provided."
" The provided path must be absolute or relative to the bot's"
" directory and it must already exist."
"\n"
" No installed cogs will be transferred in the process."
" "
#: ../cog_manager.py:406
#, docstring
msgid ""
"\n"
" Lists all loaded and available cogs."
" "
msgstr ""
"\n"
" (TRANSLATED) Lists all loaded and available cogs."
" "
#: ../cog_manager.py:309
msgid ""
"Install Path: {}\n"
"\n"
msgstr ""
#: ../cog_manager.py:325
msgid "That path is does not exist or does not point to a valid directory."
msgstr ""
#: ../cog_manager.py:334
msgid "Path successfully added."
msgstr ""
#: ../cog_manager.py:347
msgid "That is an invalid path number."
msgstr ""
#: ../cog_manager.py:351
msgid "Path successfully removed."
msgstr ""
#: ../cog_manager.py:367
msgid "Invalid 'from' index."
msgstr ""
#: ../cog_manager.py:373
msgid "Invalid 'to' index."
msgstr ""
#: ../cog_manager.py:377
msgid "Paths reordered."
msgstr ""
#: ../cog_manager.py:395
msgid "That path does not exist."
msgstr ""
#: ../cog_manager.py:399
msgid "The bot will install new cogs to the `{}` directory."
msgstr ""

3425
rubycore/locales/el-GR.po Normal file

File diff suppressed because it is too large Load diff

1411
rubycore/locales/en-PT.po Normal file

File diff suppressed because it is too large Load diff

1410
rubycore/locales/en-US.po Normal file

File diff suppressed because it is too large Load diff

5096
rubycore/locales/es-ES.po Normal file

File diff suppressed because it is too large Load diff

4674
rubycore/locales/et-EE.po Normal file

File diff suppressed because it is too large Load diff

4674
rubycore/locales/fi-FI.po Normal file

File diff suppressed because it is too large Load diff

4940
rubycore/locales/fr-FR.po Normal file

File diff suppressed because it is too large Load diff

3425
rubycore/locales/he-IL.po Normal file

File diff suppressed because it is too large Load diff

4673
rubycore/locales/hi-IN.po Normal file

File diff suppressed because it is too large Load diff

4734
rubycore/locales/hr-HR.po Normal file

File diff suppressed because it is too large Load diff

4685
rubycore/locales/hu-HU.po Normal file

File diff suppressed because it is too large Load diff

4681
rubycore/locales/id-ID.po Normal file

File diff suppressed because it is too large Load diff

4737
rubycore/locales/it-IT.po Normal file

File diff suppressed because it is too large Load diff

4680
rubycore/locales/ja-JP.po Normal file

File diff suppressed because it is too large Load diff

4673
rubycore/locales/ko-KR.po Normal file

File diff suppressed because it is too large Load diff

1411
rubycore/locales/lol-US.po Normal file

File diff suppressed because it is too large Load diff

4811
rubycore/locales/nb-NO.po Normal file

File diff suppressed because it is too large Load diff

4681
rubycore/locales/nl-NL.po Normal file

File diff suppressed because it is too large Load diff

4735
rubycore/locales/pl-PL.po Normal file

File diff suppressed because it is too large Load diff

4722
rubycore/locales/pt-BR.po Normal file

File diff suppressed because it is too large Load diff

4691
rubycore/locales/pt-PT.po Normal file

File diff suppressed because it is too large Load diff

3425
rubycore/locales/ro-RO.po Normal file

File diff suppressed because it is too large Load diff

4843
rubycore/locales/ru-RU.po Normal file

File diff suppressed because it is too large Load diff

4673
rubycore/locales/sk-SK.po Normal file

File diff suppressed because it is too large Load diff

4709
rubycore/locales/sl-SI.po Normal file

File diff suppressed because it is too large Load diff

3425
rubycore/locales/sr-CS.po Normal file

File diff suppressed because it is too large Load diff

3425
rubycore/locales/sr-SP.po Normal file

File diff suppressed because it is too large Load diff

4697
rubycore/locales/sv-SE.po Normal file

File diff suppressed because it is too large Load diff

4827
rubycore/locales/tr-TR.po Normal file

File diff suppressed because it is too large Load diff

4681
rubycore/locales/uk-UA.po Normal file

File diff suppressed because it is too large Load diff

4673
rubycore/locales/vi-VN.po Normal file

File diff suppressed because it is too large Load diff

4759
rubycore/locales/zh-CN.po Normal file

File diff suppressed because it is too large Load diff

3425
rubycore/locales/zh-HK.po Normal file

File diff suppressed because it is too large Load diff

4905
rubycore/locales/zh-TW.po Normal file

File diff suppressed because it is too large Load diff