Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/modules/cc/__init__.py

20 lines
525 B
Python
Raw Normal View History

fallback = {
'zh': [
'zh-hans',
'zh-hant',
'zh-cn',
'zh-tw',
'zh-hk',
'zh-sg',
'zh-mo',
'zh-my'
],
'zh-hans': ['zh-cn', 'zh-sg', 'zh-my'],
'zh-hant': ['zh-tw', 'zh-hk', 'zh-mo'],
'zh-cn': ['zh-hans', 'zh-sg', 'zh-my'],
'zh-sg': ['zh-hans', 'zh-cn', 'zh-my'],
'zh-my': ['zh-hans', 'zh-sg', 'zh-cn'],
'zh-tw': ['zh-hant', 'zh-hk', 'zh-mo'],
'zh-hk': ['zh-hant', 'zh-mo', 'zh-tw'],
'zh-mo': ['zh-hant', 'zh-hk', 'zh-tw'], }