mirror of
https://github.com/TriM-Organization/Musicreater.git
synced 2024-11-11 09:37:35 +08:00
21 lines
430 B
Python
21 lines
430 B
Python
# -*- coding:utf-8 -*-
|
|
|
|
|
|
DEFAULTLANGUAGE = 'zh-CN'
|
|
|
|
LANGUAGELIST = {
|
|
'zh-CN': (
|
|
"简体中文 中国大陆",
|
|
"Simplified Chinese, China Mainland",
|
|
),
|
|
'en-GB': (
|
|
"英式英语 大不列颠",
|
|
"British English, Great Britain",
|
|
),
|
|
}
|
|
|
|
if DEFAULTLANGUAGE == 'zh-CN':
|
|
from languages.zhCN import READABLETEXT
|
|
elif DEFAULTLANGUAGE == 'en-GB':
|
|
from languages.enGB import READABLETEXT
|