数据上传部分汉化修改

This commit is contained in:
cgc186
2020-04-17 11:41:34 +08:00
parent 508cb1f873
commit 02060eae2f
2 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
}
.upload-button::before {
content: 'Select File';
content: '浏览';
cursor: pointer;
outline: none;
border: none;
@@ -14,7 +14,7 @@
vertical-align: baseline;
text-align: center;
margin: 0;
min-width: 64px;
min-width: 36px;
line-height: 36px;
padding: 0 16px;
border-radius: 4px;

View File

@@ -46,10 +46,10 @@ export class ImporterComponent implements OnInit {
error => this.messageService.notice(error)
);
} else {
this.messageService.notice('Wrong Game ID, please check you have select the correct file.');
this.messageService.notice('错误的游戏ID请检查您是否选择了正确的文件.');
}
};
fileReader.readAsText(file);
this.messageService.notice('Uploading...');
this.messageService.notice('上传中...');
}
}