mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-12 18:11:34 +08:00
Merge branch 'feature/v1.2' into 'main'
fix: Update translation See merge request apipark/APIPark!40
This commit is contained in:
@@ -133,6 +133,10 @@ export const TranslateWord = ()=>{
|
||||
{$t('每天')}
|
||||
{$t('每周')}
|
||||
{$t('上线结果')}
|
||||
{$t('订阅服务数量')}
|
||||
{$t('鉴权数量')}
|
||||
{$t('列表')}
|
||||
{$t('块')}
|
||||
|
||||
</>
|
||||
)
|
||||
|
||||
@@ -208,6 +208,10 @@
|
||||
"每天": "Kfcda87fc",
|
||||
"每周": "K29ec75dc",
|
||||
"上线结果": "K93c2696e",
|
||||
"订阅服务数量": "K6e32a344",
|
||||
"鉴权数量": "Ka701316",
|
||||
"列表": "K9eaa2eb6",
|
||||
"块": "Kfaec39e9",
|
||||
"暂无操作权限,请联系管理员分配。": "K23fda291",
|
||||
"微信小程序": "K4618cb0a",
|
||||
"获取文件,需填路径": "Ka854f511",
|
||||
|
||||
@@ -649,5 +649,10 @@
|
||||
"K5c4e2865": "Create and manage your own consumer entities, with each consumer able to subscribe to multiple API services, ensuring the necessary permissions are obtained before making any calls. You can generate API keys or other credentials for consumers to securely call API services.",
|
||||
"K40a89bd8": "Enter Name, ID to Search Member",
|
||||
"Kba74f26d": "Access Consumer",
|
||||
"K70b79760": "Number of Access Consumers"
|
||||
"K70b79760": "Number of Access Consumers",
|
||||
"K93c2696e": "Online Result",
|
||||
"K6e32a344": "Number of Services",
|
||||
"Ka701316": "Number of Auths",
|
||||
"K9eaa2eb6": "List",
|
||||
"Kfaec39e9": "Block"
|
||||
}
|
||||
|
||||
@@ -1,3 +1 @@
|
||||
{
|
||||
"K93c2696e": "上线结果"
|
||||
}
|
||||
{}
|
||||
@@ -6,6 +6,10 @@
|
||||
"K8dabb98e": "人工审核:仅允许通过人工审核的消费者调用该服务",
|
||||
"K7c1fb123": "申请方-消费者",
|
||||
"K93c2696e": "上线结果",
|
||||
"K6e32a344": "订阅服务数量",
|
||||
"Ka701316": "鉴权数量",
|
||||
"K9eaa2eb6": "列表",
|
||||
"Kfaec39e9": "块",
|
||||
"Kdea9a418": "为了安全地调用 API,你需要创建一个消费者以及Token。",
|
||||
"Keee27105": "团队中包含了人员、消费者和服务,不同团队之间的消费者和服务数据是隔离的,可用于管理企业内部不同的部门/项目组/团队。",
|
||||
"Kaa717866": "提供服务的团队可以审核来自其他团队的订阅申请,审核通过后的消费者才可发起 API 请求。",
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
{
|
||||
"K93c2696e": "上线结果"
|
||||
"K93c2696e": "上线结果",
|
||||
"K6e32a344": "订阅服务数量",
|
||||
"Ka701316": "鉴权数量",
|
||||
"K9eaa2eb6": "列表",
|
||||
"Kfaec39e9": "块"
|
||||
}
|
||||
@@ -6,6 +6,10 @@
|
||||
"K8dabb98e": "人工审核:仅允许通过人工审核的消费者调用该服务",
|
||||
"K7c1fb123": "申请方-消费者",
|
||||
"K93c2696e": "上线结果",
|
||||
"K6e32a344": "订阅服务数量",
|
||||
"Ka701316": "鉴权数量",
|
||||
"K9eaa2eb6": "列表",
|
||||
"Kfaec39e9": "块",
|
||||
"Kdea9a418": "为了安全地调用 API,你需要创建一个消费者以及Token。",
|
||||
"Keee27105": "团队中包含了人员、消费者和服务,不同团队之间的消费者和服务数据是隔离的,可用于管理企业内部不同的部门/项目组/团队。",
|
||||
"Kaa717866": "提供服务的团队可以审核来自其他团队的订阅申请,审核通过后的消费者才可发起 API 请求。",
|
||||
|
||||
@@ -52,7 +52,7 @@ const getServiceList = ()=>{
|
||||
}
|
||||
|
||||
setServiceLoading(true)
|
||||
return fetchData<BasicResponse<{apps:ServiceHubAppListItem}>>(!checkPermission('system.workspace.application.view_all') ? 'my_apps':'apps',{method:'GET',eoParams:{ team:teamId,keyword:tableSearchWord},eoTransformKeys:['api_num','subscribe_num','subscribe_verify_num']}).then(response=>{
|
||||
return fetchData<BasicResponse<{apps:ServiceHubAppListItem}>>(!checkPermission('system.workspace.application.view_all') ? 'my_apps':'apps',{method:'GET',eoParams:{ team:teamId,keyword:tableSearchWord},eoTransformKeys:['api_num','subscribe_num','subscribe_verify_num','auth_num']}).then(response=>{
|
||||
const {code,data,msg} = response
|
||||
if(code === STATUS_CODE.SUCCESS){
|
||||
setServiceList([...data.apps,{type:'addNewItem'}])
|
||||
|
||||
Reference in New Issue
Block a user