|
@@ -4,7 +4,7 @@
|
|
|
:visible.sync="diaShow"
|
|
|
:close-on-click-modal="false"
|
|
|
:modal-append-to-body='false'
|
|
|
- :title="diaTitle"
|
|
|
+ :title="$t('SemanticsManage.ASRpage.upload_title')"
|
|
|
@close="closeHandle"
|
|
|
center top="10vh"
|
|
|
width="800px">
|
|
@@ -63,8 +63,9 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="dia-bot">
|
|
|
- <el-button type="primary" plain style="margin-right:20px;min-width:120px ;" @click="cancelHandle">取消</el-button>
|
|
|
- <el-button type="primary" @click="saveHandle" style="min-width:120px;" :disabled="fileList.length==0">开始转写</el-button>
|
|
|
+ <el-button type="primary" plain style="margin-right:20px;min-width:120px ;" @click="cancelHandle">{{ $t('Dialog.cancel_btn') }}</el-button>
|
|
|
+ <!-- 开始转写 -->
|
|
|
+ <el-button type="primary" @click="saveHandle" style="min-width:120px;" :disabled="fileList.length==0">{{ $t('SemanticsManage.ASRpage.start_trans') }}</el-button>
|
|
|
</div>
|
|
|
<!-- :http-request="handleUpload"
|
|
|
:before-upload="handleBeforeUpload" -->
|
|
@@ -106,7 +107,7 @@ import MD5 from "js-md5";
|
|
|
this.uploadHint=null
|
|
|
}
|
|
|
if(this.closeDia) return
|
|
|
- this.$message.success("上传完成,请检查转写列表")
|
|
|
+ this.$message.success(/* "上传完成,请检查转写列表" */this.$t('SemanticsManage.ASRpage.success_upload_hint'))
|
|
|
}
|
|
|
},
|
|
|
diaShow(value){
|
|
@@ -155,13 +156,13 @@ import MD5 from "js-md5";
|
|
|
let fileFront=file.name.split('.')[0]
|
|
|
|
|
|
if(this.uploadingFileNames.some(item=> item == fileFront)){
|
|
|
- return this.$message.error(file.name+'同名文件正在上传,请稍后重试')
|
|
|
+ return this.$message.error(file.name+/* '同名文件正在上传,请稍后重试' */this.$t('SemanticsManage.ASRpage.same_file_hint'))
|
|
|
}
|
|
|
if(!(this.fileExp.test(file.name))){
|
|
|
- return this.$message.error(file.name+'格式不受支持')
|
|
|
+ return this.$message.error(file.name+/* '格式不受支持' */ this.$t('SemanticsManage.ASRpage.format_hint'))
|
|
|
}
|
|
|
if(!(file.size/1024/1024 < 1024.1)){
|
|
|
- return this.$message.error(file.name+'大小已超限')
|
|
|
+ return this.$message.error(file.name+/* '大小已超限' */this.$t('SemanticsManage.ASRpage.size_hint'))
|
|
|
}
|
|
|
|
|
|
let res = await this.checkDuration(file)
|
|
@@ -172,7 +173,10 @@ import MD5 from "js-md5";
|
|
|
let audioDuration = res.duration
|
|
|
|
|
|
if(!( (this.fileList.length+this.uploadingFileNames.length) < this.fileLimit)){
|
|
|
- return this.$message.error(`上传文件已超过${this.fileLimit}个,${file.name}上传失败`)
|
|
|
+ return this.$message.error(
|
|
|
+ /* `上传文件已超过${this.fileLimit}个,${file.name}上传失败` */
|
|
|
+ this.$t('SemanticsManage.ASRpage.limit_hint',{num:this.fileLimit,name:file.name})
|
|
|
+ )
|
|
|
}
|
|
|
// 判断于 在库的文件名是否重名
|
|
|
let flag=true
|
|
@@ -183,7 +187,7 @@ import MD5 from "js-md5";
|
|
|
if(!this.uploadHint){
|
|
|
this.uploadHint = this.$message({
|
|
|
type:"info",
|
|
|
- message:'上传中,请勿关闭弹窗',
|
|
|
+ message:this.$t('SemanticsManage.ASRpage.uploading_hint'),
|
|
|
duration:0,
|
|
|
iconClass:'el-icon-loading'
|
|
|
})
|
|
@@ -230,7 +234,7 @@ import MD5 from "js-md5";
|
|
|
fileUrl:res,
|
|
|
sizeText:this.sizeFormat(file.size),
|
|
|
size:file.size,
|
|
|
- type:this.videoExp.test(res)?"视频":"音频",
|
|
|
+ type:this.videoExp.test(res)?this.$t('SemanticsManage.ASRpage.video_text'):this.$t('SemanticsManage.ASRpage.audio_text'),
|
|
|
duration:audioDuration || 0
|
|
|
}
|
|
|
this.fileList.push(item)
|
|
@@ -262,14 +266,14 @@ import MD5 from "js-md5";
|
|
|
let audioElement = new Audio(url);
|
|
|
audioElement.addEventListener('loadeddata', () => {
|
|
|
if(audioElement.duration>(60*60*5+1)){
|
|
|
- resolve({flag:false,msg:file.name+'时长已超限',duration:audioElement.duration})
|
|
|
+ resolve({flag:false,msg:file.name+/* '时长已超限' */this.$t('SemanticsManage.ASRpage.time_hint'),duration:audioElement.duration})
|
|
|
}else{
|
|
|
resolve({flag:true,msg:'',duration:audioElement.duration})
|
|
|
}
|
|
|
URL.revokeObjectURL(url);
|
|
|
});
|
|
|
setTimeout(()=>{
|
|
|
- resolve({flag:false,msg:file.name+"获取不到时长,请重试"})
|
|
|
+ resolve({flag:false,msg:file.name+/* "获取不到时长,请重试" */this.$t('SemanticsManage.ASRpage.time_fail')})
|
|
|
},5000)
|
|
|
} catch (error) {
|
|
|
this.$message.error(error.msg)
|
|
@@ -286,7 +290,7 @@ import MD5 from "js-md5";
|
|
|
},
|
|
|
saveHandle(){
|
|
|
if(this.uploadingFileNames && this.uploadingFileNames.length>0){
|
|
|
- return this.$message.error("还有音/视频未上传完成,请等待上传成功后再转写!")
|
|
|
+ return this.$message.error(/* "还有音/视频未上传完成,请等待上传成功后再转写!" */this.$t('SemanticsManage.ASRpage.trans_hint'))
|
|
|
}
|
|
|
let params={
|
|
|
MenuId:this.formData.catalogue,
|
|
@@ -303,7 +307,7 @@ import MD5 from "js-md5";
|
|
|
if(valid){
|
|
|
asrInterface.speechTransfer(params).then(res=>{
|
|
|
if(res.Ret == 200){
|
|
|
- this.$message.success("提交转写成功")
|
|
|
+ this.$message.success(/* "提交转写成功" */ this.$t('SemanticsManage.ASRpage.trans_success_hint'))
|
|
|
this.$emit("uploadSuccess")
|
|
|
this.$emit("update:diaShow",false)
|
|
|
}
|