fix: 国际化补充 (#1615)
* feat(测试跟踪): 测试用例下载模版增加标签列 * fix(接口定义): 扩大请求头键长度 * fix: 国际化补充
This commit is contained in:
parent
c25f10050b
commit
de06a5e770
|
@ -34,7 +34,7 @@ edit_load_test_not_found=Cannot edit test, test not found=
|
|||
run_load_test_not_found=Cannot run test, test not found=
|
||||
run_load_test_file_not_found=Unable to run test, unable to get test file meta information, test ID=
|
||||
run_load_test_file_content_not_found=Cannot run test, cannot get test file content, test ID=
|
||||
run_load_test_file_init_error=Failed to run test, please check current end point configuration
|
||||
run_load_test_file_init_error=Failed to run the test, please go to [Settings-System-System Parameter Setting] to check the current site configuration. For details, see https://metersphere.io/docs/faq/load_ test/#url
|
||||
load_test_is_running=Load test is running, please wait.
|
||||
load_test_kafka_invalid=Kafka is not available, please check the configuration
|
||||
cannot_edit_load_test_running=Cannot modify the running test
|
||||
|
|
|
@ -34,7 +34,7 @@ edit_load_test_not_found=无法编辑测试,未找到测试:
|
|||
run_load_test_not_found=无法运行测试,未找到测试:
|
||||
run_load_test_file_not_found=无法运行测试,无法获取测试文件元信息,测试ID:
|
||||
run_load_test_file_content_not_found=无法运行测试,无法获取测试文件内容,测试ID:
|
||||
run_load_test_file_init_error=无法运行测试,请前往 [系统设置-系统-系统参数设置] 检查当前站点配置,详情见https://metersphere.io/docs/faq/load_test/#url
|
||||
run_load_test_file_init_error=无法运行测试,请前往 [系统设置-系统-系统参数设置] 检查当前站点配置,详情见 https://metersphere.io/docs/faq/load_test/#url
|
||||
load_test_is_running=测试正在运行, 请等待
|
||||
load_test_kafka_invalid=Kafka 不可用,请检查配置
|
||||
cannot_edit_load_test_running=不能修改正在运行的测试
|
||||
|
|
|
@ -33,7 +33,7 @@ user_apikey_limit=最多能有5個Api key
|
|||
edit_load_test_not_found=無法編輯測試,未找到測試:
|
||||
run_load_test_not_found=無法運行測試,未找到測試:
|
||||
run_load_test_file_not_found=無法運行測試,無法獲取測試文件元信息,測試ID:
|
||||
run_load_test_file_content_not_found=無法運行測試,無法獲取測試文件內容,測試ID:
|
||||
run_load_test_file_content_not_found=無法運行測試,請前往 [系統設置-系統-系統參數設置] 檢查當前站點配置,詳情見 https://metersphere.io/docs/faq/load_test/#url
|
||||
run_load_test_file_init_error=無法運行測試,請檢查當前站點配置
|
||||
load_test_is_running=測試正在運行, 請等待
|
||||
load_test_kafka_invalid=Kafka 不可用,請檢查配置
|
||||
|
|
|
@ -5,11 +5,11 @@
|
|||
</span>
|
||||
<el-dropdown>
|
||||
<span class="el-dropdown-link">
|
||||
全选/反选<i class="el-icon-arrow-down el-icon--right"></i>
|
||||
{{ $t('api_test.select_or_invert') }} <i class="el-icon-arrow-down el-icon--right"></i>
|
||||
</span>
|
||||
<el-dropdown-menu slot="dropdown">
|
||||
<el-dropdown-item @click.native="selectAll">全选</el-dropdown-item>
|
||||
<el-dropdown-item @click.native="invertSelect">反选</el-dropdown-item>
|
||||
<el-dropdown-item @click.native="selectAll">{{ $t('api_test.select_all') }}</el-dropdown-item>
|
||||
<el-dropdown-item @click.native="invertSelect">{{ $t('api_test.invert_select') }}</el-dropdown-item>
|
||||
</el-dropdown-menu>
|
||||
</el-dropdown>
|
||||
<div class="kv-row item" v-for="(item, index) in items" :key="index">
|
||||
|
|
|
@ -5,11 +5,11 @@
|
|||
</span>
|
||||
<el-dropdown>
|
||||
<span class="el-dropdown-link">
|
||||
全选/反选<i class="el-icon-arrow-down el-icon--right"></i>
|
||||
{{ $t('api_test.select_or_invert') }} <i class="el-icon-arrow-down el-icon--right"></i>
|
||||
</span>
|
||||
<el-dropdown-menu slot="dropdown">
|
||||
<el-dropdown-item @click.native="selectAll">全选</el-dropdown-item>
|
||||
<el-dropdown-item @click.native="invertSelect">反选</el-dropdown-item>
|
||||
<el-dropdown-item @click.native="selectAll">{{ $t('api_test.select_all') }}</el-dropdown-item>
|
||||
<el-dropdown-item @click.native="invertSelect">{{ $t('api_test.invert_select') }}</el-dropdown-item>
|
||||
</el-dropdown-menu>
|
||||
</el-dropdown>
|
||||
<div class="item kv-row" v-for="(item, index) in parameters" :key="index">
|
||||
|
|
|
@ -536,6 +536,9 @@ export default {
|
|||
run: "Run",
|
||||
running: "Running",
|
||||
reset: "Rest",
|
||||
select_all: "Select all",
|
||||
invert_select: "Invert select",
|
||||
select_or_invert: "Select all/Invert select",
|
||||
input_name: "Please enter the test name",
|
||||
select_project: "Please select project",
|
||||
variable_name: "Variable name",
|
||||
|
|
|
@ -535,6 +535,9 @@ export default {
|
|||
run: "执行",
|
||||
running: "正在执行",
|
||||
reset: "重置",
|
||||
select_all: "全选",
|
||||
invert_select: "反选",
|
||||
select_or_invert: "全选/反选",
|
||||
input_name: "请输入测试名称",
|
||||
select_project: "请选择项目",
|
||||
variable_name: "变量名",
|
||||
|
|
|
@ -535,6 +535,9 @@ export default {
|
|||
run: "執行",
|
||||
running: "正在執行",
|
||||
reset: "重置",
|
||||
select_all: "全選",
|
||||
invert_select: "反選",
|
||||
select_or_invert: "全選/反選",
|
||||
input_name: "請輸入測試名稱",
|
||||
select_project: "請選擇項目",
|
||||
variable_name: "變量名",
|
||||
|
|
Loading…
Reference in New Issue