- {{ $t('type') }}
+ {{ $t('label.type') }}
{{ vm.systemvmtype == 'consoleproxy' ? 'Console Proxy VM' : 'Secondary Storage VM' }}
@@ -47,7 +47,7 @@
- {{ $t('publicip') }}
+ {{ $t('label.publicip') }}
{{ vm.publicip }}
@@ -55,7 +55,7 @@
- {{ $t('hostname') }}
+ {{ $t('label.hostname') }}
{{ vm.hostname }}
diff --git a/ui/src/views/infra/zone/ZoneWizardAddResources.vue b/ui/src/views/infra/zone/ZoneWizardAddResources.vue
index b00fc01b769..117c3792641 100644
--- a/ui/src/views/infra/zone/ZoneWizardAddResources.vue
+++ b/ui/src/views/infra/zone/ZoneWizardAddResources.vue
@@ -748,7 +748,7 @@ export default {
if (['KVM', 'VMware', 'Hyperv'].includes(hypervisor)) {
scope.push({
id: 'zone',
- description: this.$t('zone')
+ description: this.$t('label.zone')
})
scope.push({
id: 'cluster',
diff --git a/ui/src/views/network/AclListRulesTab.vue b/ui/src/views/network/AclListRulesTab.vue
index c27302ae357..782abfddadd 100644
--- a/ui/src/views/network/AclListRulesTab.vue
+++ b/ui/src/views/network/AclListRulesTab.vue
@@ -19,7 +19,7 @@
- {{ $t('add') }} {{ $t('aclid') }}
+ {{ $t('label.add') }} {{ $t('label.aclid') }}
@@ -41,43 +41,43 @@
-
{{ $t('number') }}
+
{{ $t('label.number') }}
{{ acl.number }}
-
{{ $t('cidrlist') }}
+
{{ $t('label.cidrlist') }}
{{ acl.cidrlist }}
-
{{ $t('action') }}
+
{{ $t('label.action') }}
{{ acl.action }}
-
{{ $t('protocol') }}
+
{{ $t('label.protocol') }}
{{ acl.protocol }}
-
{{ $t('startport') }}
+
{{ $t('label.startport') }}
{{ acl.startport }}
-
{{ $t('endport') }}
+
{{ $t('label.endport') }}
{{ acl.endport }}
-
{{ $t('icmpcode') }}
+
{{ $t('label.icmpcode') }}
{{ acl.icmpcode }}
-
{{ $t('icmptype') }}
+
{{ $t('label.icmptype') }}
{{ acl.icmptype }}
-
{{ $t('traffictype') }}
+
{{ $t('label.traffictype') }}
{{ acl.traffictype }}
-
{{ $t('reason') }}
+
{{ $t('label.reason') }}
{{ acl.reason }}
@@ -97,13 +97,13 @@
- {{ $t('OK') }}
+ {{ $t('label.ok') }}
-
+
-
+
-
+
Allow
Deny
-
+
TCP
UDP
@@ -149,35 +149,35 @@
-
+
-
+
Ingress
Egress
-
+
-
+
+ :placeholder="this.$t('label.name')"/>
-
+
+ :placeholder="this.$t('label.display.text')"/>
-
+
{ this.handleZoneChange(this.zones[val]) }">
{{ opt.name || opt.description }}
-
+
= 0
}"
:loading="domainLoading"
- :placeholder="this.$t('domainid')"
+ :placeholder="this.$t('label.domainid')"
@change="val => { this.handleDomainChange(this.domains[val]) }">
{{ opt.name || opt.description }}
-
+
{ this.handleNetworkOfferingChange(this.networkOfferings[val]) }">
{{ opt.name || opt.description }}
-
+
+ :placeholder="this.$t('label.vlanid')"/>
-
+
{ this.selectedVpc = this.vpcs[val] }">
{{ opt.name || opt.description }}
-
+
+ :placeholder="$t('label.externalid')"/>
-
+
+ :placeholder="this.$t('label.gateway')"/>
-
+
+ :placeholder="this.$t('label.netmask')"/>
-
+
+ :placeholder="this.$t('label.networkdomain')"/>
-
+
+ :placeholder="this.$t('label.account')"/>
diff --git a/ui/src/views/network/CreateL2NetworkForm.vue b/ui/src/views/network/CreateL2NetworkForm.vue
index 0489aa7b49a..46f9dcbf997 100644
--- a/ui/src/views/network/CreateL2NetworkForm.vue
+++ b/ui/src/views/network/CreateL2NetworkForm.vue
@@ -23,21 +23,21 @@
:form="form"
layout="vertical"
@submit="handleSubmit">
-
+
+ :placeholder="this.$t('label.name')"/>
-
+
+ :placeholder="this.$t('label.displaytext')"/>
-
+
{ this.handleZoneChange(this.zones[val]) }">
{{ opt.name || opt.description }}
-
+
= 0
}"
:loading="domainLoading"
- :placeholder="this.$t('domainid')"
+ :placeholder="this.$t('label.domainid')"
@change="val => { this.handleDomainChange(this.domains[val]) }">
{{ opt.name || opt.description }}
-
+
{ this.handleNetworkOfferingChange(this.networkOfferings[val]) }">
{{ opt.name || opt.description }}
-
+
+ :placeholder="this.$t('label.vlanid')"/>
-
+
-
+
+ :placeholder="this.$t('label.account')"/>
diff --git a/ui/src/views/network/CreateNetwork.vue b/ui/src/views/network/CreateNetwork.vue
index 15bb4662534..88f98fe5391 100644
--- a/ui/src/views/network/CreateNetwork.vue
+++ b/ui/src/views/network/CreateNetwork.vue
@@ -18,21 +18,21 @@
@@ -113,27 +113,27 @@ export default {
selectedNic: null,
columns: [
{
- title: this.$t('name'),
+ title: this.$t('label.name'),
scopedSlots: { customRender: 'name' }
},
{
- title: this.$t('instancename'),
+ title: this.$t('label.instancename'),
dataIndex: 'instancename'
},
{
- title: this.$t('displayname'),
+ title: this.$t('label.displayname'),
dataIndex: 'displayname'
},
{
- title: this.$t('account'),
+ title: this.$t('label.account'),
dataIndex: 'account'
},
{
- title: this.$t('zonenamelabel'),
+ title: this.$t('label.zonenamelabel'),
dataIndex: 'zonename'
},
{
- title: this.$t('state'),
+ title: this.$t('label.state'),
dataIndex: 'state',
scopedSlots: { customRender: 'state' }
},
diff --git a/ui/src/views/network/FirewallRules.vue b/ui/src/views/network/FirewallRules.vue
index 368b454efaf..04f1aeb2a79 100644
--- a/ui/src/views/network/FirewallRules.vue
+++ b/ui/src/views/network/FirewallRules.vue
@@ -20,35 +20,35 @@
@@ -67,10 +67,10 @@
{{ record.protocol | capitalise }}
- {{ record.icmptype || record.startport >= 0 ? record.icmptype || record.startport : $t('all') }}
+ {{ record.icmptype || record.startport >= 0 ? record.icmptype || record.startport : $t('label.all') }}
- {{ record.icmpcode || record.endport >= 0 ? record.icmpcode || record.endport : $t('all') }}
+ {{ record.icmpcode || record.endport >= 0 ? record.icmpcode || record.endport : $t('label.all') }}
@@ -94,14 +94,14 @@
@@ -114,7 +114,7 @@
-
{{ $t('done') }}
+
{{ $t('label.done') }}
@@ -157,27 +157,27 @@ export default {
pageSize: 10,
columns: [
{
- title: this.$t('sourcecidr'),
+ title: this.$t('label.sourcecidr'),
dataIndex: 'cidrlist'
},
{
- title: this.$t('protocol'),
+ title: this.$t('label.protocol'),
scopedSlots: { customRender: 'protocol' }
},
{
- title: `${this.$t('startport')}/${this.$t('icmptype')}`,
+ title: `${this.$t('label.startport')}/${this.$t('label.icmptype')}`,
scopedSlots: { customRender: 'startport' }
},
{
- title: `${this.$t('endport')}/${this.$t('icmpcode')}`,
+ title: `${this.$t('label.endport')}/${this.$t('label.icmpcode')}`,
scopedSlots: { customRender: 'endport' }
},
{
- title: this.$t('state'),
+ title: this.$t('label.state'),
dataIndex: 'state'
},
{
- title: this.$t('action'),
+ title: this.$t('label.action'),
scopedSlots: { customRender: 'actions' }
}
]
diff --git a/ui/src/views/network/IngressEgressRuleConfigure.vue b/ui/src/views/network/IngressEgressRuleConfigure.vue
index 42e6b871255..963761cdb34 100644
--- a/ui/src/views/network/IngressEgressRuleConfigure.vue
+++ b/ui/src/views/network/IngressEgressRuleConfigure.vue
@@ -29,27 +29,27 @@
@@ -174,15 +174,15 @@ export default {
tabType: null,
columns: [
{
- title: this.$t('protocol'),
+ title: this.$t('label.protocol'),
scopedSlots: { customRender: 'protocol' }
},
{
- title: this.$t('startport'),
+ title: this.$t('label.startport'),
dataIndex: 'startport'
},
{
- title: this.$t('endport'),
+ title: this.$t('label.endport'),
dataIndex: 'endport'
},
{
@@ -202,7 +202,7 @@ export default {
scopedSlots: { customRender: 'account' }
},
{
- title: this.$t('action'),
+ title: this.$t('label.action'),
scopedSlots: { customRender: 'actions' }
}
]
diff --git a/ui/src/views/network/InternalLBAssignVmForm.vue b/ui/src/views/network/InternalLBAssignVmForm.vue
index 15725d0f765..f84fe60d156 100644
--- a/ui/src/views/network/InternalLBAssignVmForm.vue
+++ b/ui/src/views/network/InternalLBAssignVmForm.vue
@@ -19,14 +19,14 @@
- {{ $t('Cancel') }}
+ {{ $t('label.cancel') }}
- {{ $t('OK') }}
+ {{ $t('label.ok') }}
diff --git a/ui/src/views/network/InternalLBAssignedVmTab.vue b/ui/src/views/network/InternalLBAssignedVmTab.vue
index a44d52e3db7..5e925875b56 100644
--- a/ui/src/views/network/InternalLBAssignedVmTab.vue
+++ b/ui/src/views/network/InternalLBAssignedVmTab.vue
@@ -76,12 +76,12 @@ export default {
totalInstances: 0,
columns: [
{
- title: this.$t('name'),
+ title: this.$t('label.name'),
dataIndex: 'displayname',
scopedSlots: { customRender: 'displayname' }
},
{
- title: this.$t('ipaddress'),
+ title: this.$t('label.ipaddress'),
dataIndex: 'ipaddress',
scopedSlots: { customRender: 'ipaddress' }
},
diff --git a/ui/src/views/network/IpAddressesTab.vue b/ui/src/views/network/IpAddressesTab.vue
index 7d63894c9b4..e9e9412826a 100644
--- a/ui/src/views/network/IpAddressesTab.vue
+++ b/ui/src/views/network/IpAddressesTab.vue
@@ -18,7 +18,7 @@
- {{ $t("label.acquire.new.ip") }}
+ {{ $t('label.acquire.new.ip') }}
Select Tier:
@@ -30,7 +30,7 @@
@change="handleTierSelect"
>
- {{ $t('Show All') }}
+ {{ $t('label.show.all') }}
{{ network.name }}
@@ -118,22 +118,22 @@ export default {
tiersSelect: false,
columns: [
{
- title: this.$t('ipaddress'),
+ title: this.$t('label.ipaddress'),
dataIndex: 'ipaddress',
scopedSlots: { customRender: 'ipaddress' }
},
{
- title: this.$t('state'),
+ title: this.$t('label.state'),
dataIndex: 'state',
scopedSlots: { customRender: 'state' }
},
{
- title: this.$t('vm'),
+ title: this.$t('label.vm'),
dataIndex: 'virtualmachineid',
scopedSlots: { customRender: 'virtualmachineid' }
},
{
- title: this.$t('Network'),
+ title: this.$t('label.network'),
dataIndex: 'associatednetworkname',
scopedSlots: { customRender: 'associatednetworkname' }
},
diff --git a/ui/src/views/network/LoadBalancing.vue b/ui/src/views/network/LoadBalancing.vue
index 50c72c44a98..586210a7fce 100644
--- a/ui/src/views/network/LoadBalancing.vue
+++ b/ui/src/views/network/LoadBalancing.vue
@@ -20,22 +20,22 @@