fix: 修复保存工作控件配额时超出组织的配额的bug
This commit is contained in:
parent
b43c2f4962
commit
a26a12fb17
|
@ -1 +1 @@
|
|||
Subproject commit fadab72bb656a3a2644e43bf46783c1f6cd96d4f
|
||||
Subproject commit 9b9208204ce138e2cb49d9549eac140019293160
|
|
@ -118,7 +118,6 @@ test_case_already_exists_excel=There are duplicate test cases in the import file
|
|||
test_case_module_already_exists=The module name already exists at the same level
|
||||
api_test_name_already_exists=Test name already exists
|
||||
functional_method_tip=Functional test not support auto method
|
||||
|
||||
#ldap
|
||||
ldap_url_is_null=LDAP address is empty
|
||||
ldap_dn_is_null=LDAP binding DN is empty
|
||||
|
@ -137,3 +136,9 @@ login_fail_ou_error=Login failed, please check the user OU
|
|||
login_fail_filter_error=Login failed, please check the user filter
|
||||
check_ldap_mapping=Check LDAP attribute mapping
|
||||
ldap_mapping_value_null=LDAP user attribute mapping field is empty
|
||||
#quota
|
||||
quota_workspace_excess_org_api=The total number of interface tests in the workspace cannot exceed the organization's quota
|
||||
quota_workspace_excess_org_performance=The total number of performance tests for the workspace cannot exceed the organization's quota
|
||||
quota_workspace_excess_org_max_threads=The maximum concurrent number of workspaces cannot exceed the quota of the organization
|
||||
quota_workspace_excess_org_max_duration=The stress test duration of the workspace cannot exceed the organization's quota
|
||||
quota_workspace_excess_org_resource_pool=The resource pool of the workspace cannot exceed the resource pool of the organization
|
|
@ -118,7 +118,6 @@ test_case_already_exists_excel=导入文件中存在重复用例
|
|||
test_case_module_already_exists=同层级下已存在该模块名称
|
||||
api_test_name_already_exists=测试名称已经存在
|
||||
functional_method_tip=功能测试不支持自动方式
|
||||
|
||||
#ldap
|
||||
ldap_url_is_null=LDAP地址为空
|
||||
ldap_dn_is_null=LDAP绑定DN为空
|
||||
|
@ -137,5 +136,12 @@ login_fail_ou_error=登录失败,请检查用户OU
|
|||
login_fail_filter_error=登录失败,请检查用户过滤器
|
||||
check_ldap_mapping=检查LDAP属性映射
|
||||
ldap_mapping_value_null=LDAP用户属性映射字段为空值
|
||||
#quota
|
||||
quota_workspace_excess_org_api=工作空间的接口测试数量总和不能超过组织的配额
|
||||
quota_workspace_excess_org_performance=工作空间的性能测试数量总和不能超过组织的配额
|
||||
quota_workspace_excess_org_max_threads=工作空间的最大并发数不能超过组织的配额
|
||||
quota_workspace_excess_org_max_duration=工作空间的压测时长不能超过组织的配额
|
||||
quota_workspace_excess_org_resource_pool=工作空间的资源池不能超过组织的资源池范围
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -118,7 +118,6 @@ test_case_already_exists_excel=導入文件中存在重復用例
|
|||
test_case_module_already_exists=同層級下已存在該模塊名稱
|
||||
api_test_name_already_exists=測試名稱已經存在
|
||||
functional_method_tip=功能測試不支持自動方式
|
||||
|
||||
#ldap
|
||||
ldap_url_is_null=LDAP地址為空
|
||||
ldap_dn_is_null=LDAP綁定DN為空
|
||||
|
@ -137,3 +136,9 @@ login_fail_ou_error=登錄失敗,請檢查用戶OU
|
|||
login_fail_filter_error=登錄失敗,請檢查用戶過濾器
|
||||
check_ldap_mapping=檢查LDAP屬性映射
|
||||
ldap_mapping_value_null=LDAP用戶屬性映射預設為空值
|
||||
#quota
|
||||
quota_workspace_excess_org_api=工作空間的接口測試數量總和不能超過組織的配額
|
||||
quota_workspace_excess_org_performance=工作空間的性能測試數量總和不能超過組織的配額
|
||||
quota_workspace_excess_org_max_threads=工作空間的最大並發數不能超過組織的配額
|
||||
quota_workspace_excess_org_max_duration=工作空間的壓測時長不能超過組織的配額
|
||||
quota_workspace_excess_org_resource_pool=工作空間的資源池不能超過組織的資源池範圍
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 7e4d80cc2b870a8cac6dbb9fe6711ab6041faf6d
|
||||
Subproject commit 06fc0a321a9886419be5c607ddaa6b40efb5179b
|
|
@ -795,5 +795,7 @@ export default {
|
|||
modify: "Modify Quota",
|
||||
edit_quota_title: "{0} quota",
|
||||
workspace_quota_list: "Workspace quota list of {0}",
|
||||
unlimited: "Unlimited",
|
||||
clean: "Clean"
|
||||
}
|
||||
};
|
||||
|
|
|
@ -799,5 +799,7 @@ export default {
|
|||
modify: "修改配额",
|
||||
edit_quota_title: "{0}的配额",
|
||||
workspace_quota_list: "{0}的工作空间配额列表",
|
||||
unlimited: "无限制",
|
||||
clean: "清空"
|
||||
}
|
||||
};
|
||||
|
|
|
@ -794,5 +794,7 @@ export default {
|
|||
modify: "修改配額",
|
||||
edit_quota_title: "{0}的配額",
|
||||
workspace_quota_list: "{0}的工作空間配額列表",
|
||||
unlimited: "無限制",
|
||||
clean: "清空"
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue