fix: fix the title of zun container
1. fix the title of auto remove to enable auto remove, same to auto heal and interactive 2. fix filter name from status to container status Change-Id: I890d27546e7425c053134751c0af24baf185839e
This commit is contained in:
parent
6c34ed67f0
commit
d80c23b202
@ -177,10 +177,8 @@
|
||||
"Auth Algorithm": "Auth Algorithm",
|
||||
"Auth Key": "Auth Key",
|
||||
"Auto": "Auto",
|
||||
"Auto Heal": "Auto Heal",
|
||||
"Auto Healing": "Auto Healing",
|
||||
"Auto Inspect": "Auto Inspect",
|
||||
"Auto Remove": "Auto Remove",
|
||||
"Auto Scaling": "Auto Scaling",
|
||||
"Auto allocate mac address": "Auto allocate mac address",
|
||||
"Auto scaling feature will be enabled": "Auto scaling feature will be enabled",
|
||||
@ -1243,7 +1241,6 @@
|
||||
"Instances": "Instances",
|
||||
"Instances \"{ name }\" are locked, can not delete them.": "Instances \"{ name }\" are locked, can not delete them.",
|
||||
"Insufficient {name} quota to create resources(left { quota }, input { input }).": "Insufficient {name} quota to create resources(left { quota }, input { input }).",
|
||||
"Interactive": "Interactive",
|
||||
"Interface Info": "Interface Info",
|
||||
"Interface Name:": "Interface Name:",
|
||||
"Interface for vendor-specific functionality on this node": "Interface for vendor-specific functionality on this node",
|
||||
|
@ -177,10 +177,8 @@
|
||||
"Auth Algorithm": "授权算法",
|
||||
"Auth Key": "密钥",
|
||||
"Auto": "自动",
|
||||
"Auto Heal": "自动修复",
|
||||
"Auto Healing": "自动修复",
|
||||
"Auto Inspect": "自动检测",
|
||||
"Auto Remove": "自动移除",
|
||||
"Auto Scaling": "自动缩放",
|
||||
"Auto allocate mac address": "自动分配MAC地址",
|
||||
"Auto scaling feature will be enabled": "将启用自动缩放功能",
|
||||
@ -1243,7 +1241,6 @@
|
||||
"Instances": "云主机",
|
||||
"Instances \"{ name }\" are locked, can not delete them.": "云主机\"{ name }\"被锁定,无法删除。",
|
||||
"Insufficient {name} quota to create resources(left { quota }, input { input }).": "{ name }配额不足,无法创建资源,请进行资源数量或配额的调整(剩余{ quota },输入{ input })。",
|
||||
"Interactive": "可交互",
|
||||
"Interface Info": "接口信息",
|
||||
"Interface Name:": "网卡ID:",
|
||||
"Interface for vendor-specific functionality on this node": "用于在此节点上特定Vendor功能的接口",
|
||||
|
@ -159,17 +159,17 @@ export class BaseDetail extends Base {
|
||||
},
|
||||
},
|
||||
{
|
||||
label: t('Auto Remove'),
|
||||
label: t('Enable auto remove'),
|
||||
dataIndex: 'auto_remove',
|
||||
valueRender: 'yesNo',
|
||||
},
|
||||
{
|
||||
label: t('Auto Heal'),
|
||||
label: t('Enable auto heal'),
|
||||
dataIndex: 'auto_heal',
|
||||
valueRender: 'yesNo',
|
||||
},
|
||||
{
|
||||
label: t('Interactive'),
|
||||
label: t('Enable interactive mode'),
|
||||
dataIndex: 'interactive',
|
||||
valueRender: 'yesNo',
|
||||
},
|
||||
|
@ -73,6 +73,7 @@ export class Containers extends Base {
|
||||
: '-'}
|
||||
</>
|
||||
),
|
||||
stringify: (value = []) => value.map((it) => it.addr).join(','),
|
||||
},
|
||||
{
|
||||
title: t('Ports'),
|
||||
@ -132,7 +133,7 @@ export class Containers extends Base {
|
||||
options: getOptions(imageDrivers),
|
||||
},
|
||||
{
|
||||
label: t('Status'),
|
||||
label: t('Container Status'),
|
||||
name: 'status',
|
||||
options: getOptions(containerStatus),
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user