2022-01-27 21:21:25 +08:00
|
|
|
# -*- coding:utf-8 -*-
|
2022-03-11 23:27:48 +08:00
|
|
|
'''对于音·创的语言支持兼语言文件编辑器'''
|
2022-01-27 21:21:25 +08:00
|
|
|
|
2022-03-19 11:58:28 +08:00
|
|
|
"""
|
2022-05-21 00:45:10 +08:00
|
|
|
Copyright 2022 all the developers of Musicreater
|
2022-03-19 11:58:28 +08:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the 'License');
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an 'AS IS' BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
"""
|
|
|
|
|
2022-01-27 21:21:25 +08:00
|
|
|
DEFAULTLANGUAGE = 'zh-CN'
|
|
|
|
|
|
|
|
LANGUAGELIST = {
|
2022-03-11 23:27:48 +08:00
|
|
|
# 第一个是语言的中文名称和地区
|
|
|
|
# 第二个是语言的英文名称和地区
|
|
|
|
# 第三个是语言的本地名称和地区
|
2022-01-27 21:21:25 +08:00
|
|
|
'zh-CN': (
|
|
|
|
"简体中文 中国大陆",
|
2022-03-26 12:24:00 +08:00
|
|
|
"Simplified Chinese - China Mainland",
|
2022-03-11 23:27:48 +08:00
|
|
|
"简体中文 中国大陆",
|
2022-01-27 21:21:25 +08:00
|
|
|
),
|
2022-03-11 23:27:48 +08:00
|
|
|
'zh-TW': (
|
2022-03-26 12:24:00 +08:00
|
|
|
"繁体中文 中国台湾省",
|
2022-06-11 13:53:59 +08:00
|
|
|
"Traditional Chinese - Taiwan Province, China",
|
2022-03-26 12:24:00 +08:00
|
|
|
"正體中文,中国台灣省",
|
2022-03-11 23:27:48 +08:00
|
|
|
),
|
|
|
|
# 'zh-HK': (
|
2022-03-17 16:21:17 +08:00
|
|
|
# "繁体中文 香港",
|
2022-06-11 13:53:59 +08:00
|
|
|
# "Traditional Chinese - Hong Kong SAR",
|
2022-03-11 23:27:48 +08:00
|
|
|
# "繁體中文,香港特別行政區",
|
|
|
|
# ),
|
|
|
|
# 'zh-MO': (
|
2022-03-17 16:21:17 +08:00
|
|
|
# "繁体中文 澳门",
|
2022-06-11 13:53:59 +08:00
|
|
|
# "Traditional Chinese - Macau SAR",
|
2022-03-11 23:27:48 +08:00
|
|
|
# "繁體中文,澳門特別行政區",
|
|
|
|
# ),
|
2022-01-27 21:21:25 +08:00
|
|
|
'en-GB': (
|
2022-03-11 23:27:48 +08:00
|
|
|
"英语 英国",
|
2022-03-26 12:24:00 +08:00
|
|
|
"British English - the United Kingdom",
|
|
|
|
"British English - the United Kingdom",
|
2022-01-27 21:21:25 +08:00
|
|
|
),
|
2022-03-26 12:24:00 +08:00
|
|
|
'zh-ME' : (
|
|
|
|
"喵喵文 中国大陆",
|
2022-06-11 13:53:59 +08:00
|
|
|
"Meow Catsnese - China Mainland"
|
|
|
|
"喵喵喵~ 种花家~"
|
2022-03-26 12:24:00 +08:00
|
|
|
)
|
2022-01-27 21:21:25 +08:00
|
|
|
}
|
|
|
|
|
2022-03-17 16:21:17 +08:00
|
|
|
|
2022-03-24 01:01:45 +08:00
|
|
|
from msctLib.log import log
|
|
|
|
|
2022-03-20 11:20:59 +08:00
|
|
|
def __loadLanguage(languageFilename: str):
|
|
|
|
with open(languageFilename, 'r', encoding='utf-8') as languageFile:
|
2022-03-17 16:21:17 +08:00
|
|
|
_text = {}
|
|
|
|
for line in languageFile:
|
2022-03-24 01:01:45 +08:00
|
|
|
if line.startswith('#'):
|
|
|
|
continue
|
2022-03-20 11:20:59 +08:00
|
|
|
line = line.split(' ', 1)
|
|
|
|
_text[line[0]] = line[1].replace('\n', '')
|
2022-03-17 16:21:17 +08:00
|
|
|
langkeys = _text.keys()
|
2022-03-20 11:20:59 +08:00
|
|
|
with open(languageFilename.replace(languageFilename[-10:-5], 'zh-CN'), 'r', encoding='utf-8') as defaultLangFile:
|
2022-03-17 16:21:17 +08:00
|
|
|
for line in defaultLangFile:
|
2022-03-24 01:01:45 +08:00
|
|
|
if line.startswith('#'):
|
|
|
|
continue
|
2022-03-20 11:20:59 +08:00
|
|
|
line = line.split(' ', 1)
|
2022-03-17 16:21:17 +08:00
|
|
|
if not line[0] in langkeys:
|
2022-03-20 11:20:59 +08:00
|
|
|
_text[line[0]] = line[1].replace('\n', '')
|
2022-03-17 16:21:17 +08:00
|
|
|
from msctLib.log import log
|
2022-03-20 11:20:59 +08:00
|
|
|
log(f'丢失对于 {line[0]} 的本地化文本', 'WARRING')
|
2022-03-17 16:21:17 +08:00
|
|
|
langkeys = _text.keys()
|
2022-03-28 23:12:24 +08:00
|
|
|
# print(_text)
|
2022-03-17 16:21:17 +08:00
|
|
|
return _text
|
|
|
|
|
|
|
|
|
2022-05-11 15:19:40 +08:00
|
|
|
|
|
|
|
if DEFAULTLANGUAGE in LANGUAGELIST.keys():
|
|
|
|
_TEXT = __loadLanguage('./languages/' + DEFAULTLANGUAGE + '.lang')
|
|
|
|
else:
|
|
|
|
log(f"无法打开当前本地化文本{DEFAULTLANGUAGE}", level='ERROR')
|
|
|
|
raise KeyError(f'无法打开默认语言{DEFAULTLANGUAGE}')
|
2022-03-13 22:29:57 +08:00
|
|
|
|
|
|
|
|
2022-03-20 11:20:59 +08:00
|
|
|
def wordTranslate(singleWord: str, debug: bool = False):
|
2022-03-13 22:29:57 +08:00
|
|
|
import requests
|
|
|
|
try:
|
2022-03-20 11:20:59 +08:00
|
|
|
return \
|
|
|
|
requests.post('https://fanyi.baidu.com/sug', data={'kw': f'{singleWord}'}).json()['data'][0]['v'].split(
|
|
|
|
'; ')[0]
|
2022-03-13 22:29:57 +08:00
|
|
|
except:
|
2022-03-20 11:20:59 +08:00
|
|
|
log(f"无法翻译文本{singleWord}", level='WARRING', isPrinted=debug)
|
2022-03-13 22:29:57 +08:00
|
|
|
return None
|
|
|
|
|
|
|
|
|
2022-03-20 11:20:59 +08:00
|
|
|
def _(text: str, debug: bool = False):
|
2022-03-13 22:29:57 +08:00
|
|
|
try:
|
|
|
|
return _TEXT[text]
|
|
|
|
except:
|
2022-03-17 16:21:17 +08:00
|
|
|
if debug:
|
|
|
|
raise KeyError(f'无法找到翻译文本{text}')
|
|
|
|
else:
|
2022-05-11 15:19:40 +08:00
|
|
|
log(f'无法找到本地化文本{text}','WARRING')
|
2022-03-24 01:01:45 +08:00
|
|
|
return ''
|
2022-03-13 22:29:57 +08:00
|
|
|
|
2022-03-11 23:27:48 +08:00
|
|
|
|