feat: add translator cog for fantasy languages

Implements commands for translating text into roleplay languages like Valspiren, Elvish, and Draconic, ported from a web application.
This commit is contained in:
2025-09-21 04:22:21 -04:00
parent 48c3793768
commit d3ee48112a
3 changed files with 178 additions and 0 deletions

4
translator/__init__.py Normal file
View File

@@ -0,0 +1,4 @@
from .translator import Translator
async def setup(bot):
await bot.add_cog(Translator(bot))