From 02060eae2f8257d3c421a6000337da09adcdb2ef Mon Sep 17 00:00:00 2001 From: cgc186 <985305715@qq.com> Date: Fri, 17 Apr 2020 11:41:34 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E4=B8=8A=E4=BC=A0=E9=83=A8?= =?UTF-8?q?=E5=88=86=E6=B1=89=E5=8C=96=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/importer/importer/importer.component.css | 4 ++-- src/app/importer/importer/importer.component.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/importer/importer/importer.component.css b/src/app/importer/importer/importer.component.css index 8bc5451..cda3fe2 100644 --- a/src/app/importer/importer/importer.component.css +++ b/src/app/importer/importer/importer.component.css @@ -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; diff --git a/src/app/importer/importer/importer.component.ts b/src/app/importer/importer/importer.component.ts index 1a4f134..2a51192 100644 --- a/src/app/importer/importer/importer.component.ts +++ b/src/app/importer/importer/importer.component.ts @@ -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('上传中...'); } }