16 lines
346 B
Python
16 lines
346 B
Python
text = {"简体中文": '''
|
|
v4.X
|
|
修复启动动画广告加载失败的问题
|
|
修复了部分音源的搜索和下载失败的问题
|
|
''',
|
|
"English(US)": '''
|
|
v4.X
|
|
Fix the issue of failed loading of animation ads during startup
|
|
Fixed the issue of search and download failures for some audio sources
|
|
'''
|
|
}
|
|
|
|
|
|
def get(lang):
|
|
return text[lang]
|