fix tranlate

This commit is contained in:
2022-07-22 16:24:04 +08:00
parent f3e69b032f
commit 00399785d4
2 changed files with 2 additions and 1 deletions

View File

@@ -98,7 +98,7 @@ function AudioPlayer(props) {
{CalcReadableFilesizeDetail(props.playingFile.filesize)} {CalcReadableFilesizeDetail(props.playingFile.filesize)}
</button> </button>
{isPreparing && <button disabled>Preparing...</button>} {isPreparing && <button disabled>{Tr("Preparing...")}</button>}
{playingURL !== "" && ( {playingURL !== "" && (
<button <button

View File

@@ -100,6 +100,7 @@ const LANG_zh_CN = {
"filename updated": "已修改文件名", "filename updated": "已修改文件名",
"please select a tag": "请选择一个标签", "please select a tag": "请选择一个标签",
"files in folder": "文件夹内", "files in folder": "文件夹内",
"preparing...": "转码中...",
}; };
export default LANG_zh_CN; export default LANG_zh_CN;