Browse Source

语音识别翻译补充

cxmo 10 months ago
parent
commit
816b42ecf8

+ 34 - 0
src/lang/modules/SemanticsManage/ASRpage.js

@@ -24,6 +24,21 @@ export const ASRPageEn = {
     supported_audio_formats:"Supported Audio Formats",
     supported_video_formats:"Supported Video Formats",
     upload_description:"Single file up to 5 hours long, maximum 1GB, up to 50 files per upload.",
+    start_trans:"Start transliteration",
+    upload_title:"Upload Local Audio/Video Files",
+    same_file_hint:"The file with the same name is being uploaded, please try again later",
+    format_hint:"The format is not supported",
+    size_hint:"The size is out of limit",
+    limit_hint:"Description The number of uploaded files exceeds {num}. {name} failed to upload",
+    audio_text:'audio',
+    video_text:'video',
+    time_hint:"The time limit has expired",
+    time_fail:"Cannot get the duration, please try again",
+    trans_hint:"There are still audio/video upload is not completed, please wait for upload success before transferring!",
+    trans_success_hint:"The transfer was submitted successfully. ",
+    trans_status_1:"Translating",
+    trans_status_2:"Transliteration complete",
+    trans_status_3:"Transliteration failure",
 
     //搜索,筛选
     search_placeholder:"Please Enter File Name",
@@ -93,6 +108,8 @@ export const ASRPageEn = {
     export_text:"Export",
     export_content:"Export Content",
     file_format:"File Format",
+    file_format_required:"File Format Required",
+    file_format_placeholder:"Select File Format",
     display_information:"Display Information",
     display_information_placeholder:"Select Display Information",
     timestamps_text:"Timestamp",
@@ -141,6 +158,21 @@ export const ASRPageZh = {
     supported_audio_formats:"支持音频格式",
     supported_video_formats:"支持视频格式",
     upload_description:"单个文件最长5小时,最大1GB,单次上传支持上传50个",
+    start_trans:"开始转写",
+    upload_title:"上传本地音视频文件",
+    same_file_hint:"同名文件正在上传,请稍后重试",
+    format_hint:"格式不受支持",
+    size_hint:"大小已超限",
+    limit_hint:"上传文件已超过{num}个,{name}上传失败",
+    audio_text:'音频',
+    video_text:'视频',
+    time_hint:"时长已超限",
+    time_fail:"获取不到时长,请重试",
+    trans_hint:"还有音/视频未上传完成,请等待上传成功后再转写!",
+    trans_success_hint:"提交转写成功",
+    trans_status_1:"转写中",
+    trans_status_2:"转写完成",
+    trans_status_3:"转写失败",
 
     search_placeholder:"请输入文件名称",
     filter_text:"筛选",
@@ -200,6 +232,8 @@ export const ASRPageZh = {
     export_text:"导出",
     export_content:"导出成功",
     file_format:"文件格式",
+    file_format_required:"文件格式必填",
+    file_format_placeholder:"请选择文件格式",
     display_information:"显示信息",
     display_information_placeholder:"请选择显示信息",
     timestamps_text:"时间戳",

+ 2 - 2
src/views/semantics_manage/asr/components/exportDia.vue

@@ -14,8 +14,8 @@
 					hide-required-asterisk
 					:model="formData">
 					<el-form-item :label="$t('SemanticsManage.ASRpage.file_format')" 
-						:rules="{required:true,message:'文件格式必填',trigger:'change'}" prop="type">
-						<el-select v-model="formData.type" placeholder="请选择文件格式" style="width: 100%">
+						:rules="{required:true,message:$t('SemanticsManage.ASRpage.file_format_required'),trigger:'change'}" prop="type">
+						<el-select v-model="formData.type" :placeholder="$t('SemanticsManage.ASRpage.file_format_placeholder')" style="width: 100%">
 							<el-option :label="item.label" :value="item.value" v-for="item in exportType" :key="item.value"></el-option>
 						</el-select>
 					</el-form-item>

+ 18 - 14
src/views/semantics_manage/asr/components/mediaUpload.vue

@@ -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)
               }

+ 12 - 2
src/views/semantics_manage/asr/components/transferStatus.vue

@@ -4,7 +4,7 @@
     <div class="transfer-status-header">
       <div class="status-header-left">
         <img src="~@/assets/img/smartReport/icon02.png" :draggable="false" />
-        <span>转写中({{ transferStatus.transferingNumber || 0 }})</span>
+        <span>{{$t('SemanticsManage.ASRpage.trans_status_1')}}({{ transferStatus.transferingNumber || 0 }})</span>
       </div>
       <div class="status-header-right">
         <img src="~@/assets/img/icons/arrow_black_up.png" style="margin-right: 12px;" @click="isFold=!isFold"
@@ -53,9 +53,19 @@ import { asrInterface } from '../../../../api/modules/semanticsApi'
         dragOffsetX: null,
         dragOffsetY: null,
         dragDocument:null,
-        stateTextArr:['','转写中','转写完成','转写失败']
+        /* stateTextArr:['','转写中','转写完成','转写失败'] */
       }
     },
+    computed:{
+        stateTextArr(){
+            return [
+                '',
+                this.$t('SemanticsManage.ASRpage.trans_status_1'),
+                this.$t('SemanticsManage.ASRpage.trans_status_2'),
+                this.$t('SemanticsManage.ASRpage.trans_status_3')
+            ]
+        }
+    },
     watch:{
       windowShow:{
         handler:function(value){