Introduces multilingual translation cog supporting fantasy languages Adds proxying features for role-playing with sonas and auto-translation Includes admin commands for managing custom languages and context menus Replaces basic translation with enhanced functionality for Discord bot
11 lines
407 B
Python
11 lines
407 B
Python
MAP = {'a':'ak','b':'ba','c':'ce','d':'di','e':'ek','f':'fo','g':'gu','h':'ha','i':'ik','j':'je','k':'ki','l':'lo','m':'mu','n':'na','o':'ok','p':'pe','q':'qi','r':'ro','s':'su','t':'ta','u':'uk','v':'ve','w':'wi','x':'xo','y':'yk','z':'zu'}
|
|
|
|
def get_language():
|
|
return {
|
|
'name': 'Valspiren',
|
|
'type': 'generic',
|
|
'map': MAP,
|
|
'chunk_size': 2,
|
|
'separator': ''
|
|
}
|