diff --git a/backend/src/main/resources/i18n/messages_en_US.properties b/backend/src/main/resources/i18n/messages_en_US.properties index f3a48bdc0d..f6edc5e762 100644 --- a/backend/src/main/resources/i18n/messages_en_US.properties +++ b/backend/src/main/resources/i18n/messages_en_US.properties @@ -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 diff --git a/backend/src/main/resources/i18n/messages_zh_CN.properties b/backend/src/main/resources/i18n/messages_zh_CN.properties index a78d106463..3746f89597 100644 --- a/backend/src/main/resources/i18n/messages_zh_CN.properties +++ b/backend/src/main/resources/i18n/messages_zh_CN.properties @@ -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=不能修改正在运行的测试 diff --git a/backend/src/main/resources/i18n/messages_zh_TW.properties b/backend/src/main/resources/i18n/messages_zh_TW.properties index 8f21283c9e..419afc2025 100644 --- a/backend/src/main/resources/i18n/messages_zh_TW.properties +++ b/backend/src/main/resources/i18n/messages_zh_TW.properties @@ -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 不可用,請檢查配置 diff --git a/frontend/src/business/components/api/definition/components/ApiKeyValue.vue b/frontend/src/business/components/api/definition/components/ApiKeyValue.vue index a2a8598afc..6f9631e8e0 100644 --- a/frontend/src/business/components/api/definition/components/ApiKeyValue.vue +++ b/frontend/src/business/components/api/definition/components/ApiKeyValue.vue @@ -5,11 +5,11 @@ - 全选/反选 + {{ $t('api_test.select_or_invert') }} - 全选 - 反选 + {{ $t('api_test.select_all') }} + {{ $t('api_test.invert_select') }}
diff --git a/frontend/src/business/components/api/definition/components/ApiVariable.vue b/frontend/src/business/components/api/definition/components/ApiVariable.vue index 41806dd5d1..ca8cb56669 100644 --- a/frontend/src/business/components/api/definition/components/ApiVariable.vue +++ b/frontend/src/business/components/api/definition/components/ApiVariable.vue @@ -5,11 +5,11 @@ - 全选/反选 + {{ $t('api_test.select_or_invert') }} - 全选 - 反选 + {{ $t('api_test.select_all') }} + {{ $t('api_test.invert_select') }}
diff --git a/frontend/src/i18n/en-US.js b/frontend/src/i18n/en-US.js index 32a16a6f4b..a2e8f3926a 100644 --- a/frontend/src/i18n/en-US.js +++ b/frontend/src/i18n/en-US.js @@ -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", diff --git a/frontend/src/i18n/zh-CN.js b/frontend/src/i18n/zh-CN.js index 1638f93a73..ee02668daa 100644 --- a/frontend/src/i18n/zh-CN.js +++ b/frontend/src/i18n/zh-CN.js @@ -535,6 +535,9 @@ export default { run: "执行", running: "正在执行", reset: "重置", + select_all: "全选", + invert_select: "反选", + select_or_invert: "全选/反选", input_name: "请输入测试名称", select_project: "请选择项目", variable_name: "变量名", diff --git a/frontend/src/i18n/zh-TW.js b/frontend/src/i18n/zh-TW.js index 3ff7115141..a634debaf0 100644 --- a/frontend/src/i18n/zh-TW.js +++ b/frontend/src/i18n/zh-TW.js @@ -535,6 +535,9 @@ export default { run: "執行", running: "正在執行", reset: "重置", + select_all: "全選", + invert_select: "反選", + select_or_invert: "全選/反選", input_name: "請輸入測試名稱", select_project: "請選擇項目", variable_name: "變量名",