locales: Missing Traslations (#637)

Co-authored-by: Pearl Dsilva <pearl.dsilva@shapeblue.com>
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
Pearl Dsilva 2020-08-31 13:25:56 +05:30 committed by Rohit Yadav
parent 895114bdda
commit 63500afe4c
5 changed files with 15 additions and 13 deletions

View File

@ -478,6 +478,8 @@
"label.blades": "Blades",
"label.bootable": "Bootbar",
"label.bootintosetup": "In das BIOS-Setup booten",
"label.bootmode": "Boot-Modus",
"label.boottype": "Boot-Typ",
"label.broadcastdomainrange": "Broadcast-Domain Bereich",
"label.broadcastdomaintype": "Broadcast Domain Typ",
"label.broadcasturi": "Broadcast-URI",
@ -2169,8 +2171,6 @@
"label.vlanrange": "VLAN/VNI-Bereich",
"label.vm": "VM",
"label.vm.add": "Instanz hinzufügen",
"label.vm.bootmode": "Boot-Modus",
"label.vm.boottype": "Boot-Typ",
"label.vm.destroy": "Zerstören",
"label.vm.password": "Passwort der VM ist",
"label.vm.reboot": "Neustart",

View File

@ -483,6 +483,8 @@
"label.blades": "Blades",
"label.bootable": "Bootable",
"label.bootintosetup": "Boot into hardware setup",
"label.bootmode": "Boot Mode",
"label.boottype": "Boot Type",
"label.broadcastdomainrange": "Broadcast domain range",
"label.broadcastdomaintype": "Broadcast Domain Type",
"label.broadcasturi": "Broadcast URI",
@ -558,6 +560,7 @@
"label.comma.separated.list.description": "Enter comma-separated list of commands",
"label.comments": "Comments",
"label.community": "Community",
"label.complete": "Complete",
"label.compute": "Compute",
"label.compute.and.storage": "Compute and Storage",
"label.compute.offering.access": "Compute offering access",
@ -2215,8 +2218,6 @@
"label.vlanrange": "VLAN/VNI Range",
"label.vm": "VM",
"label.vm.add": "Add Instance",
"label.vm.bootmode": "Boot Mode",
"label.vm.boottype": "Boot Type",
"label.vm.destroy": "Destroy",
"label.vm.password": "Password of the VM is",
"label.vm.reboot": "Reboot",
@ -2620,6 +2621,7 @@
"message.creating.zone": "Creating zone",
"message.datacenter.description": "Name of the datacenter on vCenter",
"message.datastore.description": "Name of the datastore on vCenter",
"message.data.migration": "Data Migration",
"message.dedicate.zone": "Dedicating zone",
"message.dedicated.zone.released": "Zone dedication released",
"message.dedicating.cluster": "Dedicating Cluster...",

View File

@ -404,7 +404,7 @@
<div style="margin-top: 15px" v-show="this.showDetails">
<div
v-if="vm.templateid && ['KVM', 'VMware'].includes(hypervisor)">
<a-form-item :label="$t('label.vm.boottype')">
<a-form-item :label="$t('label.boottype')">
<a-select
v-decorator="['boottype']"
@change="fetchBootModes"
@ -414,7 +414,7 @@
</a-select-option>
</a-select>
</a-form-item>
<a-form-item :label="$t('label.vm.bootmode')">
<a-form-item :label="$t('label.bootmode')">
<a-select
v-decorator="['bootmode']">
<a-select-option v-for="bootMode in options.bootModes" :key="bootMode.id">

View File

@ -71,13 +71,13 @@
}]"
:loading="loading"
>
<a-select-option value="Complete">Complete</a-select-option>
<a-select-option value="Balance">Balance</a-select-option>
<a-select-option value="Complete">{{ $t('label.complete') }}</a-select-option>
<a-select-option value="Balance">{{ $t('label.balance') }}</a-select-option>
</a-select>
</a-form-item>
<div :span="24" class="action-button">
<a-button @click="closeAction">{{ this.$t('Cancel') }}</a-button>
<a-button :loading="loading" type="primary" @click="handleSubmit">{{ this.$t('OK') }}</a-button>
<a-button @click="closeAction">{{ this.$t('label.cancel') }}</a-button>
<a-button :loading="loading" type="primary" @click="handleSubmit">{{ this.$t('label.ok') }}</a-button>
</div>
</a-form>
</a-spin>
@ -130,7 +130,7 @@ export default {
}
}
const title = 'Data Migration'
const title = this.$t('message.data.migration')
this.loading = true
const result = this.migrateData(params, title)

View File

@ -62,7 +62,7 @@
</span>
</a-table>
<a-modal
title="Edit Project Role"
:title="$t('label.edit.project.role')"
v-model="editModalVisible"
:footer="null"
:afterClose="closeAction"
@ -109,7 +109,7 @@
</a-form>
</a-modal>
<a-modal
title="Create Project Role"
:title="$t('label.create.project.role')"
v-model="createModalVisible"
:footer="null"
:afterClose="closeAction"