Discord translator & translation of Discord functions/interactions
Project description
Features
- Dicord Interactions Translator
- Optimization
- Easy to use
Installation
- Install evg with pip
pip install evg
- Set up a new folder /locales
- Add language packs with the file .json according to the template /locales/en-US/.json
Examples
File - locales/en-US/example.json
{
"hello1": "Hello world!",
"hello2": "Hello {name}!",
"hello3": "Hello {0}!"
}
Base
import evg
_ = evg.MSG("en-US").msg
print(_("hello1"))
- Output text: Hello world!
OR
import evg
from nextcord import Interaction, PartialInteractionMessage
async def hi(ctx: Interaction) -> PartialInteractionMessage:
_ = evg.MSG(ctx.locale).msg
return await ctx.send(text=_("hello1"))
- Output text: Hello world!
OR
import evg
from nextcord import Interaction, PartialInteractionMessage
async def hi(ctx: Interaction) -> PartialInteractionMessage:
_ = evg.MSG(ctx.locale).msg
return await ctx.send(text=(_("hello2")).format(name="Nikita"))
async def hi2(ctx: Interaction) -> PartialInteractionMessage:
_ = evg.MSG(ctx.locale).msg
return await ctx.send(text=(_("hello3")).format("Bob"))
Output text:
- Hello Nikita!
- Hello Bob!
Change settings
Default language
evg.Setup.language("en-US")
Default text if no translation was found
evg.Setup.text("рџ’•")
Support
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
evg-2.5.7.tar.gz
(2.8 kB
view hashes)
Built Distribution
evg-2.5.7-py3-none-any.whl
(3.1 kB
view hashes)