diff --git a/src/components/AccountListTable/index.vue b/src/components/AccountListTable/index.vue index e43d3fcbb..8b6948add 100644 --- a/src/components/AccountListTable/index.vue +++ b/src/components/AccountListTable/index.vue @@ -77,12 +77,12 @@ export default { resource: 'account' }, columns: [ - 'hostname', 'ip', 'username', 'version', 'connectivity', + 'hostname', 'ip', 'username', 'version', 'privlieged', 'connectivity', 'date_created', 'date_updated', 'actions' ], columnsShow: { min: ['username', 'actions'], - default: ['hostname', 'ip', 'username', 'version', 'actions'] + default: ['hostname', 'ip', 'username', 'version', 'privlieged', 'actions'] }, columnsMeta: { hostname: { @@ -116,6 +116,9 @@ export default { version: { width: '70px' }, + privlieged: { + label: this.$t('assets.Privileged') + }, connectivity: connectivityMeta, actions: { formatter: ActionsFormatter, diff --git a/src/i18n/langs/en.json b/src/i18n/langs/en.json index b9b45c91b..f274d35b4 100644 --- a/src/i18n/langs/en.json +++ b/src/i18n/langs/en.json @@ -103,6 +103,7 @@ "CreateDevice": "Create asset - Network device", "CreateCloud": "Create asset - Cloud platform", "CreateWeb": "Create asset - web", + "Privileged": "Privileged", "SelectPlatforms": "Select platforms", "AppList": "Application list", "AssociateSystemUsers": "Associate system users", diff --git a/src/i18n/langs/ja.json b/src/i18n/langs/ja.json index 67d989d51..d267cfdc0 100644 --- a/src/i18n/langs/ja.json +++ b/src/i18n/langs/ja.json @@ -108,6 +108,7 @@ "CreateDevice": "資産の作成 - ネットワークデバイス", "CreateCloud": "資産の作成 - クラウドプラットフォーム", "CreateWeb": "資産の作成 - ウェブ", + "Privileged": "特権のある", "SelectPlatforms": "プラットフォームを選択", "AppList": "アプリケーションリスト", "AssociateSystemUsers": "関連システムユーザー", diff --git a/src/i18n/langs/zh.json b/src/i18n/langs/zh.json index 02478be55..87da261b6 100644 --- a/src/i18n/langs/zh.json +++ b/src/i18n/langs/zh.json @@ -109,6 +109,7 @@ "CreateDevice": "创建资产-网络设备", "CreateCloud": "创建资产-云平台", "CreateWeb": "创建资产-web", + "Privileged": "有特权", "SelectPlatforms": "选择平台", "AppList": "应用列表", "AssociateSystemUsers": "关联系统用户",