mirror of https://github.com/apache/cloudstack.git
Add translation support (#30)
Add Translations from old files and scripts to generate it. Update columns generated to be formatted. Show modal instead of drawer for forms Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
parent
2d11f9e6ce
commit
8ec1f6c59d
|
|
@ -0,0 +1,29 @@
|
|||
var loadFields = function (data, prefix) {
|
||||
if ($.type(data) != 'object') return {}
|
||||
var allFields = {}
|
||||
var columnsOrder = {}
|
||||
$.each(Object.keys(data), function (idx, key) {
|
||||
if (key == 'listView' && $.type(data[key]) == 'object' && data.listView.fields) {
|
||||
var fields = data.listView.fields
|
||||
var cols = []
|
||||
$.each(Object.keys(fields), function (idx1, fieldId) {
|
||||
if (allFields[fieldId]) {
|
||||
console.log('[WARN] Found multiple labels for API Key: ' + fieldId)
|
||||
allFields[fieldId].labels.push(fields[fieldId].label)
|
||||
allFields[fieldId].components.add(prefix)
|
||||
} else {
|
||||
allFields[fieldId] = {
|
||||
'labels': [fields[fieldId].label],
|
||||
'components': [prefix]
|
||||
}
|
||||
}
|
||||
cols.push(fieldId)
|
||||
})
|
||||
console.log(cols)
|
||||
columnsOrder[prefix] = cols
|
||||
} else if ($.type(data[key]) == 'object' && ($.type(key) != 'string' || key.indexOf('$') == -1)) {
|
||||
$.extend(allFields, loadFields(data[key], prefix + '.' + key))
|
||||
}
|
||||
})
|
||||
return columnsOrder
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,67 @@
|
|||
# coding: utf-8
|
||||
|
||||
import json
|
||||
import os
|
||||
import sys
|
||||
|
||||
def loadJson(lfile):
|
||||
ldata = lfile.read()
|
||||
cont = ldata.split("var dictionary =")
|
||||
if len(cont) != 2:
|
||||
print "Unexpected format for file " + lfile + ". Expected `var dictionary =` from old source code"
|
||||
exit(1)
|
||||
|
||||
trans = cont[1].strip().replace("\n", "")
|
||||
if trans[-1] == ";":
|
||||
trans = trans[0: -1]
|
||||
|
||||
try:
|
||||
return json.loads(trans)
|
||||
except expression as identifier:
|
||||
print "Something went wrong in parsing old files. Perhaps incorrect formatting?"
|
||||
exit(1)
|
||||
|
||||
def loadTranslations(l10repo):
|
||||
with open("fieldsFromOldLayout.json") as outfile:
|
||||
fieldsFromOldLayout = json.load(outfile)["allFields"]
|
||||
with open("manualNeededLabels.json") as outfile:
|
||||
manualNeededLabels = json.load(outfile)
|
||||
|
||||
newTranslations = {}
|
||||
for r, d, f in os.walk(l10repo):
|
||||
for file in f:
|
||||
print file
|
||||
if '.js' in file:
|
||||
with open(os.path.join(r, file)) as oldfile:
|
||||
oldTrans = loadJson(oldfile)
|
||||
print len(oldTrans.keys())
|
||||
newTrans = {}
|
||||
for apikey in fieldsFromOldLayout:
|
||||
currLabel = fieldsFromOldLayout[apikey]["labels"][0] # Just use the first label for now in case multiple labels exist
|
||||
if currLabel in oldTrans:
|
||||
newTrans[apikey] = oldTrans[currLabel]
|
||||
for label in manualNeededLabels:
|
||||
if label in oldTrans:
|
||||
newTrans[manualNeededLabels[label]] = oldTrans[label]
|
||||
else:
|
||||
newTrans[manualNeededLabels[label]] = manualNeededLabels[label]
|
||||
|
||||
newTranslations[file] = newTrans
|
||||
|
||||
for file in newTranslations:
|
||||
with open("../src/locales/" + file[:-3] + ".json", "w") as newT:
|
||||
json.dump(newTranslations[file], newT, sort_keys=True, indent=4)
|
||||
|
||||
if __name__ == "__main__":
|
||||
if len(sys.argv) != 2:
|
||||
print "Usage: fileTranslations.py $CLOUDSTACK_CODE_REPO"
|
||||
exit(1)
|
||||
|
||||
cldstk = sys.argv[1]
|
||||
l10repo = os.path.join(cldstk, "ui/l10n")
|
||||
if not os.path.isdir(l10repo):
|
||||
print "Invalid translations location sent: " + l10repo + " does not exists"
|
||||
exit(1)
|
||||
|
||||
loadTranslations(l10repo)
|
||||
exit(0)
|
||||
|
|
@ -0,0 +1,65 @@
|
|||
/* eslint-disable no-mixed-spaces-and-tabs */
|
||||
// Run this in browser with old UI Running and dump the data to olderLayout.json.
|
||||
// Then run filterTranslations.py to populate the translations files.
|
||||
// This is hacky but perhaps more effort isn't needed. Migrate away to the new UI!
|
||||
|
||||
var loadLabel = function (allFields, fieldDict, prefix) {
|
||||
var cols = ''
|
||||
$.each(Object.keys(fieldDict), function (idx1, fieldId) {
|
||||
if (fieldDict[fieldId].label) {
|
||||
if (allFields[fieldId]) {
|
||||
console.log('[WARN] Found multiple labels for API Key: ' + fieldId)
|
||||
allFields[fieldId].labels.push(fieldDict[fieldId].label)
|
||||
allFields[fieldId].components.push(prefix)
|
||||
} else {
|
||||
allFields[fieldId] = {
|
||||
'labels': [fieldDict[fieldId].label],
|
||||
'components': [prefix]
|
||||
}
|
||||
}
|
||||
cols = cols + "'" + fieldId + "', "
|
||||
if (fieldDict[fieldId].columns && $.type(fieldDict[fieldId].columns) === 'object') {
|
||||
prefix = prefix + '_columns'
|
||||
var columns = fieldDict[fieldId].columns
|
||||
$.each(Object.keys(columns), function (idx, colId) {
|
||||
if (allFields[colId]) {
|
||||
console.log('[WARN] Found multiple labels for API Key: ' + colId)
|
||||
allFields[colId].labels.push(columns[colId].label)
|
||||
allFields[colId].components.push(prefix)
|
||||
} else {
|
||||
allFields[colId] = {
|
||||
'labels': [columns[colId].label],
|
||||
'components': [prefix]
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
return cols
|
||||
}
|
||||
|
||||
var loadFields = function (data, prefix) {
|
||||
if ($.type(data) !== 'object') return {}
|
||||
var allFields = {}
|
||||
var columnsOrder = {}
|
||||
$.each(Object.keys(data), function (idx, key) {
|
||||
if (key === 'fields' || key === 'bottomFields' || key === 'topFields') {
|
||||
var fields = data[key]
|
||||
var cols = ''
|
||||
if ($.type(fields) === 'object') {
|
||||
cols = loadLabel(allFields, fields, prefix)
|
||||
} else if ($.type(fields) === 'array') {
|
||||
$.each(fields, function (idx, fieldDict) {
|
||||
cols = cols + "'" + loadLabel(allFields, fieldDict, prefix) + "', "
|
||||
})
|
||||
}
|
||||
columnsOrder[prefix] = cols.substring(0, cols.length - 2)
|
||||
} else if ($.type(data[key]) === 'object' && ($.type(key) !== 'string' || key.indexOf('$') === -1)) {
|
||||
var recRes = loadFields(data[key], prefix + '.' + key)
|
||||
$.extend(allFields, recRes.allFields)
|
||||
$.extend(columnsOrder, recRes.columnsOrder)
|
||||
}
|
||||
})
|
||||
return { 'allFields': allFields, 'columnsOrder': columnsOrder }
|
||||
}
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"label.menu.dashboard": "Dashboard",
|
||||
"label.compute": "Compute",
|
||||
"label.instances":"Instances",
|
||||
"label.ssh.key.pairs": "SSH Key Pairs",
|
||||
"label.affinity.groups": "Affinity Groups",
|
||||
"label.configuration":"Configuration",
|
||||
"label.menu.global.settings":"Global Settings",
|
||||
"label.ldap.configuration":"LDAP Configuration",
|
||||
"label.hypervisor.capabilities":"Hypervisor Capabilities",
|
||||
"label.identityandaccess": "Identity and Access",
|
||||
"label.users":"Users",
|
||||
"label.menu.accounts":"Accounts",
|
||||
"label.domains":"Domains",
|
||||
"label.roles":"Roles",
|
||||
"label.menu.templates":"Templates",
|
||||
"label.menu.isos":"ISOs",
|
||||
"label.monitor": "Monitor",
|
||||
"label.menu.alerts":"Alerts",
|
||||
"label.menu.events":"Events",
|
||||
"label.menu.network":"Network",
|
||||
"label.public.network":"Public network",
|
||||
"label.vpc":"VPC",
|
||||
"label.security.groups":"Security Groups",
|
||||
"label.public.ips":"Public IP Addresses",
|
||||
"label.VPN.gateway":"VPN Gateway",
|
||||
"label.compute.offerings":"Compute Offerings",
|
||||
"label.menu.disk.offerings":"Disk Offerings",
|
||||
"label.menu.network.offerings":"Network Offerings",
|
||||
"label.menu.vpc.offerings":"VPC Offerings",
|
||||
"label.menu.system.service.offerings":"System Offerings",
|
||||
"label.plugins":"Plugins",
|
||||
"label.quota": "Quota",
|
||||
"label.cloudianstorage": "Cloudian Storage",
|
||||
"label.projects":"Projects",
|
||||
"label.storage":"Storage",
|
||||
"label.volumes":"Volumes",
|
||||
"label.menu.snapshots":"Snapshots",
|
||||
"label.vmsnapshot":"VM Snapshots",
|
||||
"label.menu.infrastructure":"Infrastructure",
|
||||
"label.zones":"Zones",
|
||||
"label.pods":"Pods",
|
||||
"label.clusters":"Clusters",
|
||||
"label.hosts":"Hosts",
|
||||
"label.primary.storage":"Primary Storage",
|
||||
"label.secondary.storage":"Secondary Storage",
|
||||
"label.system.vms":"System VMs",
|
||||
"label.virtual.routers":"Virtual Routers",
|
||||
"label.sockets":"CPU Sockets",
|
||||
"label.management.servers":"Management Servers"
|
||||
}
|
||||
|
|
@ -906,6 +906,24 @@
|
|||
"regexpu-core": "^4.5.4"
|
||||
}
|
||||
},
|
||||
"@babel/polyfill": {
|
||||
"version": "7.4.4",
|
||||
"resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.4.4.tgz",
|
||||
"integrity": "sha512-WlthFLfhQQhh+A2Gn5NSFl0Huxz36x86Jn+E9OW7ibK8edKPq+KLy4apM1yDpQ8kJOVi1OVjpP4vSDLdrI04dg==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"core-js": "^2.6.5",
|
||||
"regenerator-runtime": "^0.13.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"regenerator-runtime": {
|
||||
"version": "0.13.3",
|
||||
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz",
|
||||
"integrity": "sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==",
|
||||
"dev": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"@babel/preset-env": {
|
||||
"version": "7.3.4",
|
||||
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.3.4.tgz",
|
||||
|
|
@ -1594,6 +1612,16 @@
|
|||
"@types/yargs": "^13.0.0"
|
||||
}
|
||||
},
|
||||
"@kazupon/vue-i18n-loader": {
|
||||
"version": "0.4.1",
|
||||
"resolved": "https://registry.npmjs.org/@kazupon/vue-i18n-loader/-/vue-i18n-loader-0.4.1.tgz",
|
||||
"integrity": "sha512-hVznmhnyoUKozGY7pwq/UtPL76UDzb+aiN2YksZZIzCY/MkEqih0MSyEmTGw7+HVWzJRPAlDyoRNR4tWKmkCRw==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"js-yaml": "^3.13.1",
|
||||
"json5": "^2.1.0"
|
||||
}
|
||||
},
|
||||
"@mrmlnc/readdir-enhanced": {
|
||||
"version": "2.2.1",
|
||||
"resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
|
||||
|
|
@ -4659,6 +4687,51 @@
|
|||
"colors": "1.0.3"
|
||||
}
|
||||
},
|
||||
"cli-table3": {
|
||||
"version": "0.5.1",
|
||||
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.5.1.tgz",
|
||||
"integrity": "sha1-AlI3LZTfxA29jfBgBfSPMfZW8gI=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"colors": "^1.1.2",
|
||||
"object-assign": "^4.1.0",
|
||||
"string-width": "^2.1.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"ansi-regex": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
|
||||
"integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
|
||||
"dev": true
|
||||
},
|
||||
"colors": {
|
||||
"version": "1.3.3",
|
||||
"resolved": "https://registry.npmjs.org/colors/-/colors-1.3.3.tgz",
|
||||
"integrity": "sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg==",
|
||||
"dev": true,
|
||||
"optional": true
|
||||
},
|
||||
"string-width": {
|
||||
"version": "2.1.1",
|
||||
"resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
|
||||
"integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"is-fullwidth-code-point": "^2.0.0",
|
||||
"strip-ansi": "^4.0.0"
|
||||
}
|
||||
},
|
||||
"strip-ansi": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
|
||||
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"ansi-regex": "^3.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"cli-width": {
|
||||
"version": "2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz",
|
||||
|
|
@ -6394,6 +6467,16 @@
|
|||
"domelementtype": "1"
|
||||
}
|
||||
},
|
||||
"dot-object": {
|
||||
"version": "1.7.1",
|
||||
"resolved": "https://registry.npmjs.org/dot-object/-/dot-object-1.7.1.tgz",
|
||||
"integrity": "sha1-7CvJruuGve7PPXgjXB7gm7k5kuY=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"commander": "^2.19.0",
|
||||
"glob": "^7.1.3"
|
||||
}
|
||||
},
|
||||
"dot-prop": {
|
||||
"version": "4.2.0",
|
||||
"resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz",
|
||||
|
|
@ -7422,9 +7505,9 @@
|
|||
}
|
||||
},
|
||||
"eslint-utils": {
|
||||
"version": "1.4.0",
|
||||
"resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.0.tgz",
|
||||
"integrity": "sha512-7ehnzPaP5IIEh1r1tkjuIrxqhNkzUJa9z3R92tLJdZIVdWaczEhr3EbhGtsMrVxi1KeR8qA7Off6SWc5WNQqyQ==",
|
||||
"version": "1.4.2",
|
||||
"resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.2.tgz",
|
||||
"integrity": "sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"eslint-visitor-keys": "^1.0.0"
|
||||
|
|
@ -7436,6 +7519,12 @@
|
|||
"integrity": "sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==",
|
||||
"dev": true
|
||||
},
|
||||
"esm": {
|
||||
"version": "3.2.23",
|
||||
"resolved": "https://registry.npmjs.org/esm/-/esm-3.2.23.tgz",
|
||||
"integrity": "sha512-p7iNpE0K3nLn1KE2O0Vz/2Gpg93U+JroVqAdHZwK7l3MmPKh4iu5CEvw1Gym9DT23BgNNvnY5wOf9vMjBFw7Ug==",
|
||||
"dev": true
|
||||
},
|
||||
"espree": {
|
||||
"version": "3.5.4",
|
||||
"resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz",
|
||||
|
|
@ -8102,6 +8191,28 @@
|
|||
"path-exists": "^4.0.0"
|
||||
}
|
||||
},
|
||||
"flag-icon-css": {
|
||||
"version": "2.9.0",
|
||||
"resolved": "https://registry.npmjs.org/flag-icon-css/-/flag-icon-css-2.9.0.tgz",
|
||||
"integrity": "sha512-SeHvGEB43XFPZiJz6lFFRGHfp+Db+s1qGiClW70cZauQVbPM42wImlNUEuXSXs94kPchz7xvoxP0QK1y6FxLfg=="
|
||||
},
|
||||
"flat": {
|
||||
"version": "4.1.0",
|
||||
"resolved": "https://registry.npmjs.org/flat/-/flat-4.1.0.tgz",
|
||||
"integrity": "sha1-CQvsiwXjnLowl0fx1YjwTbr5jbI=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"is-buffer": "~2.0.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"is-buffer": {
|
||||
"version": "2.0.3",
|
||||
"resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.3.tgz",
|
||||
"integrity": "sha1-Ts8/z3ScvR5HJonhCaxmJhol5yU=",
|
||||
"dev": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"flat-cache": {
|
||||
"version": "1.3.4",
|
||||
"resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.4.tgz",
|
||||
|
|
@ -10201,6 +10312,12 @@
|
|||
"integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=",
|
||||
"dev": true
|
||||
},
|
||||
"is-valid-glob": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz",
|
||||
"integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=",
|
||||
"dev": true
|
||||
},
|
||||
"is-whitespace": {
|
||||
"version": "0.3.0",
|
||||
"resolved": "https://registry.npmjs.org/is-whitespace/-/is-whitespace-0.3.0.tgz",
|
||||
|
|
@ -17558,6 +17675,36 @@
|
|||
"resolved": "https://registry.npmjs.org/vue/-/vue-2.6.10.tgz",
|
||||
"integrity": "sha512-ImThpeNU9HbdZL3utgMCq0oiMzAkt1mcgy3/E6zWC/G6AaQoeuFdsl9nDhTDU3X1R6FK7nsIUuRACVcjI+A2GQ=="
|
||||
},
|
||||
"vue-cli-plugin-i18n": {
|
||||
"version": "0.6.0",
|
||||
"resolved": "https://registry.npmjs.org/vue-cli-plugin-i18n/-/vue-cli-plugin-i18n-0.6.0.tgz",
|
||||
"integrity": "sha1-ixWl6Be29VoF5BGlZffzxbuGwWs=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"debug": "^3.1.0",
|
||||
"deepmerge": "^2.1.1",
|
||||
"dotenv": "^6.0.0",
|
||||
"flat": "^4.0.0",
|
||||
"rimraf": "^2.6.3",
|
||||
"vue": "^2.5.16",
|
||||
"vue-i18n": "^8.0.0",
|
||||
"vue-i18n-extract": "^0.4.13"
|
||||
},
|
||||
"dependencies": {
|
||||
"deepmerge": {
|
||||
"version": "2.2.1",
|
||||
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-2.2.1.tgz",
|
||||
"integrity": "sha1-XT/yKgHAD2RUBaL7wX0HeKGAEXA=",
|
||||
"dev": true
|
||||
},
|
||||
"dotenv": {
|
||||
"version": "6.2.0",
|
||||
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-6.2.0.tgz",
|
||||
"integrity": "sha1-lBwEEFNdlCyL7PKNPzV9vZ1HYGQ=",
|
||||
"dev": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"vue-clipboard2": {
|
||||
"version": "0.3.0",
|
||||
"resolved": "https://registry.npmjs.org/vue-clipboard2/-/vue-clipboard2-0.3.0.tgz",
|
||||
|
|
@ -17604,12 +17751,271 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"vue-flag-icon": {
|
||||
"version": "1.0.6",
|
||||
"resolved": "https://registry.npmjs.org/vue-flag-icon/-/vue-flag-icon-1.0.6.tgz",
|
||||
"integrity": "sha1-AwT9/uvZgqa/mFxjPDRv88bS+dc=",
|
||||
"requires": {
|
||||
"flag-icon-css": "^2.8.0"
|
||||
}
|
||||
},
|
||||
"vue-hot-reload-api": {
|
||||
"version": "2.3.3",
|
||||
"resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.3.tgz",
|
||||
"integrity": "sha512-KmvZVtmM26BQOMK1rwUZsrqxEGeKiYSZGA7SNWE6uExx8UX/cj9hq2MRV/wWC3Cq6AoeDGk57rL9YMFRel/q+g==",
|
||||
"dev": true
|
||||
},
|
||||
"vue-i18n": {
|
||||
"version": "8.14.0",
|
||||
"resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-8.14.0.tgz",
|
||||
"integrity": "sha512-utI1Rvc8i+fmmUkkKRmHaf4QQ87s7rGVL5ZZLsKvvRzmgaIr1l+GfGxxxRmsZxHpPlgeB8OxoUZ4noqZgDL6xg=="
|
||||
},
|
||||
"vue-i18n-extract": {
|
||||
"version": "0.4.14",
|
||||
"resolved": "https://registry.npmjs.org/vue-i18n-extract/-/vue-i18n-extract-0.4.14.tgz",
|
||||
"integrity": "sha1-7UgTeUS1Yv7Ge8pBqdyq7pOQlzg=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"cli-table3": "^0.5.1",
|
||||
"dot-object": "^1.7.1",
|
||||
"esm": "^3.2.13",
|
||||
"glob": "^7.1.3",
|
||||
"is-valid-glob": "^1.0.0",
|
||||
"yargs": "^13.2.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"ansi-regex": {
|
||||
"version": "4.1.0",
|
||||
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
|
||||
"integrity": "sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc=",
|
||||
"dev": true
|
||||
},
|
||||
"ansi-styles": {
|
||||
"version": "3.2.1",
|
||||
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
|
||||
"integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"color-convert": "^1.9.0"
|
||||
}
|
||||
},
|
||||
"camelcase": {
|
||||
"version": "5.3.1",
|
||||
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
|
||||
"integrity": "sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA=",
|
||||
"dev": true
|
||||
},
|
||||
"cliui": {
|
||||
"version": "5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz",
|
||||
"integrity": "sha1-3u/P2y6AB4SqNPRvoI4GhRx7u8U=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"string-width": "^3.1.0",
|
||||
"strip-ansi": "^5.2.0",
|
||||
"wrap-ansi": "^5.1.0"
|
||||
}
|
||||
},
|
||||
"cross-spawn": {
|
||||
"version": "6.0.5",
|
||||
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
|
||||
"integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"nice-try": "^1.0.4",
|
||||
"path-key": "^2.0.1",
|
||||
"semver": "^5.5.0",
|
||||
"shebang-command": "^1.2.0",
|
||||
"which": "^1.2.9"
|
||||
}
|
||||
},
|
||||
"execa": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
|
||||
"integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"cross-spawn": "^6.0.0",
|
||||
"get-stream": "^4.0.0",
|
||||
"is-stream": "^1.1.0",
|
||||
"npm-run-path": "^2.0.0",
|
||||
"p-finally": "^1.0.0",
|
||||
"signal-exit": "^3.0.0",
|
||||
"strip-eof": "^1.0.0"
|
||||
}
|
||||
},
|
||||
"find-up": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
|
||||
"integrity": "sha1-SRafHXmTQwZG2mHsxa41XCHJe3M=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"locate-path": "^3.0.0"
|
||||
}
|
||||
},
|
||||
"get-caller-file": {
|
||||
"version": "2.0.5",
|
||||
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
|
||||
"integrity": "sha1-T5RBKoLbMvNuOwuXQfipf+sDH34=",
|
||||
"dev": true
|
||||
},
|
||||
"invert-kv": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz",
|
||||
"integrity": "sha1-c5P1r6Weyf9fZ6J2INEcIm4+7AI=",
|
||||
"dev": true
|
||||
},
|
||||
"lcid": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz",
|
||||
"integrity": "sha1-bvXS32DlL4LrIopMNz6NHzlyU88=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"invert-kv": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"locate-path": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
|
||||
"integrity": "sha1-2+w7OrdZdYBxtY/ln8QYca8hQA4=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"p-locate": "^3.0.0",
|
||||
"path-exists": "^3.0.0"
|
||||
}
|
||||
},
|
||||
"mem": {
|
||||
"version": "4.3.0",
|
||||
"resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz",
|
||||
"integrity": "sha1-Rhr0l7xK4JYIzbLmDu+2m/90QXg=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"map-age-cleaner": "^0.1.1",
|
||||
"mimic-fn": "^2.0.0",
|
||||
"p-is-promise": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"mimic-fn": {
|
||||
"version": "2.1.0",
|
||||
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
|
||||
"integrity": "sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs=",
|
||||
"dev": true
|
||||
},
|
||||
"os-locale": {
|
||||
"version": "3.1.0",
|
||||
"resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz",
|
||||
"integrity": "sha1-qAKm7hfyTBBIOrmTVxnO9O0Wvxo=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"execa": "^1.0.0",
|
||||
"lcid": "^2.0.0",
|
||||
"mem": "^4.0.0"
|
||||
}
|
||||
},
|
||||
"p-limit": {
|
||||
"version": "2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz",
|
||||
"integrity": "sha1-QXyZQeYCepq8ulCS3SkE4lW1+8I=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"p-try": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"p-locate": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
|
||||
"integrity": "sha1-Mi1poFwCZLJZl9n0DNiokasAZKQ=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"p-limit": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"p-try": {
|
||||
"version": "2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
|
||||
"integrity": "sha1-yyhoVA4xPWHeWPr741zpAE1VQOY=",
|
||||
"dev": true
|
||||
},
|
||||
"path-exists": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
|
||||
"integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
|
||||
"dev": true
|
||||
},
|
||||
"require-main-filename": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
|
||||
"integrity": "sha1-0LMp7MfMD2Fkn2IhW+aa9UqomJs=",
|
||||
"dev": true
|
||||
},
|
||||
"semver": {
|
||||
"version": "5.7.1",
|
||||
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
|
||||
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
|
||||
"dev": true
|
||||
},
|
||||
"string-width": {
|
||||
"version": "3.1.0",
|
||||
"resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
|
||||
"integrity": "sha1-InZ74htirxCBV0MG9prFG2IgOWE=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"emoji-regex": "^7.0.1",
|
||||
"is-fullwidth-code-point": "^2.0.0",
|
||||
"strip-ansi": "^5.1.0"
|
||||
}
|
||||
},
|
||||
"strip-ansi": {
|
||||
"version": "5.2.0",
|
||||
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
|
||||
"integrity": "sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"ansi-regex": "^4.1.0"
|
||||
}
|
||||
},
|
||||
"wrap-ansi": {
|
||||
"version": "5.1.0",
|
||||
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
|
||||
"integrity": "sha1-H9H2cjXVttD+54EFYAG/tpTAOwk=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"ansi-styles": "^3.2.0",
|
||||
"string-width": "^3.0.0",
|
||||
"strip-ansi": "^5.0.0"
|
||||
}
|
||||
},
|
||||
"yargs": {
|
||||
"version": "13.2.4",
|
||||
"resolved": "https://registry.npmjs.org/yargs/-/yargs-13.2.4.tgz",
|
||||
"integrity": "sha1-C1YreUAW65ZRuYvTes82SqXW3IM=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"cliui": "^5.0.0",
|
||||
"find-up": "^3.0.0",
|
||||
"get-caller-file": "^2.0.1",
|
||||
"os-locale": "^3.1.0",
|
||||
"require-directory": "^2.1.1",
|
||||
"require-main-filename": "^2.0.0",
|
||||
"set-blocking": "^2.0.0",
|
||||
"string-width": "^3.0.0",
|
||||
"which-module": "^2.0.0",
|
||||
"y18n": "^4.0.0",
|
||||
"yargs-parser": "^13.1.0"
|
||||
}
|
||||
},
|
||||
"yargs-parser": {
|
||||
"version": "13.1.0",
|
||||
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.0.tgz",
|
||||
"integrity": "sha1-cBa23QPijhQYpRDiWL5L/1oxE48=",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"camelcase": "^5.0.0",
|
||||
"decamelize": "^1.2.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"vue-jest": {
|
||||
"version": "3.0.4",
|
||||
"resolved": "https://registry.npmjs.org/vue-jest/-/vue-jest-3.0.4.tgz",
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
"serve": "vue-cli-service serve",
|
||||
"build": "vue-cli-service build",
|
||||
"lint": "vue-cli-service lint",
|
||||
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'",
|
||||
"test:unit": "vue-cli-service test:unit"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
@ -32,6 +33,8 @@
|
|||
"vue-clipboard2": "^0.3.0",
|
||||
"vue-cookies": "^1.5.13",
|
||||
"vue-cropper": "0.4.9",
|
||||
"vue-flag-icon": "^1.0.6",
|
||||
"vue-i18n": "^8.14.0",
|
||||
"vue-ls": "^3.2.1",
|
||||
"vue-router": "^3.1.2",
|
||||
"vue-svg-component-runtime": "^1.0.1",
|
||||
|
|
@ -52,7 +55,10 @@
|
|||
"eslint-plugin-html": "^6.0.0",
|
||||
"eslint-plugin-vue": "^5.2.3",
|
||||
"less": "^3.10.3",
|
||||
"@babel/polyfill": "^7.4.4",
|
||||
"@kazupon/vue-i18n-loader": "^0.4.1",
|
||||
"less-loader": "^5.0.0",
|
||||
"vue-cli-plugin-i18n": "^0.6.0",
|
||||
"vue-svg-icon-loader": "^2.1.1",
|
||||
"vue-template-compiler": "^2.6.10"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -62,13 +62,15 @@
|
|||
</a-col>
|
||||
</a-row>
|
||||
|
||||
<a-drawer
|
||||
<a-modal
|
||||
:title="currentAction.label"
|
||||
placement="right"
|
||||
width="75%"
|
||||
:closable="true"
|
||||
@close="closeAction"
|
||||
:visible="showAction"
|
||||
:closable="true"
|
||||
style="top: 20px;"
|
||||
@ok="handleSubmit"
|
||||
@cancel="closeAction"
|
||||
:confirmLoading="currentAction.loading"
|
||||
centered
|
||||
>
|
||||
<a-spin :spinning="currentAction.loading">
|
||||
<a-form
|
||||
|
|
@ -121,36 +123,9 @@
|
|||
</span>
|
||||
</a-form-item>
|
||||
|
||||
<a-form-item>
|
||||
<div
|
||||
:style="{
|
||||
bottom: 0,
|
||||
width: '100%',
|
||||
borderTop: '1px solid #e8e8e8',
|
||||
paddingTop: '24px',
|
||||
textAlign: 'right',
|
||||
left: 0,
|
||||
background: '#fff',
|
||||
borderRadius: '0 0 4px 4px',
|
||||
}"
|
||||
>
|
||||
<a-button
|
||||
style="marginRight: 8px"
|
||||
@click="closeAction"
|
||||
>
|
||||
Cancel
|
||||
</a-button>
|
||||
<a-button
|
||||
:loading="currentAction.loading"
|
||||
type="primary"
|
||||
html-type="submit">
|
||||
Submit
|
||||
</a-button>
|
||||
</div>
|
||||
</a-form-item>
|
||||
</a-form>
|
||||
</a-spin>
|
||||
</a-drawer>
|
||||
</a-modal>
|
||||
|
||||
<div v-if="dataView">
|
||||
<a-row :gutter="12">
|
||||
|
|
@ -286,6 +261,9 @@ export default {
|
|||
this.breadList = []
|
||||
this.name = this.$route.name
|
||||
this.$route.matched.forEach((item) => {
|
||||
if (item.meta.title) {
|
||||
item.meta.title = this.$t(item.meta.title)
|
||||
}
|
||||
this.breadList.push(item)
|
||||
})
|
||||
},
|
||||
|
|
@ -344,7 +322,7 @@ export default {
|
|||
key = Object.keys(key)[0]
|
||||
}
|
||||
this.columns.push({
|
||||
title: key,
|
||||
title: this.$t(key),
|
||||
dataIndex: key,
|
||||
key: counter++,
|
||||
scopedSlots: { customRender: key },
|
||||
|
|
@ -482,12 +460,16 @@ export default {
|
|||
}
|
||||
}
|
||||
|
||||
const closeAction = this.closeAction
|
||||
const showError = this.$notification['error']
|
||||
api(this.currentAction.api, params).then(json => {
|
||||
console.log(json)
|
||||
this.closeAction()
|
||||
closeAction()
|
||||
}).catch(function (error) {
|
||||
console.log(error)
|
||||
this.closeAction()
|
||||
closeAction()
|
||||
showError({
|
||||
message: 'Request Failed',
|
||||
description: error.response.headers['x-description']
|
||||
})
|
||||
}).then(function () {
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ export default {
|
|||
<Item {...{ key: menu.path }}>
|
||||
<router-link {...{ props }}>
|
||||
{this.renderIcon(menu.meta.icon)}
|
||||
<span>{menu.meta.title}</span>
|
||||
<span>{this.$t(menu.meta.title)}</span>
|
||||
</router-link>
|
||||
</Item>
|
||||
)
|
||||
|
|
|
|||
|
|
@ -5,40 +5,91 @@
|
|||
<a-icon type="global"></a-icon>
|
||||
</span>
|
||||
<a-menu slot="overlay" @click="onClick">
|
||||
<a-menu-item key="en" :value="enUS">English</a-menu-item>
|
||||
<a-menu-item key="cn" :value="null">Chinese</a-menu-item>
|
||||
<a-menu-item key="jp" :value="null">Japanese</a-menu-item>
|
||||
<a-menu-item key="fr" :value="null">French</a-menu-item>
|
||||
<a-menu-item key="en" :value="enUS"><flag iso="gb"/> English</a-menu-item>
|
||||
<a-menu-item key="ja_JP" :value="jpJP"><flag iso="jp"/> 日本語</a-menu-item>
|
||||
<a-menu-item key="ko_KR" :value="koKR"><flag iso="kr"/> 한국어</a-menu-item>
|
||||
<a-menu-item key="zh_CN" :value="zhCN"><flag iso="cn"/> 简体中文</a-menu-item>
|
||||
<a-menu-item key="ar" :value="arEG"><flag iso="ae"/> Arabic</a-menu-item>
|
||||
<a-menu-item key="ca" :value="caES"><flag iso="ca"/> Catalan</a-menu-item>
|
||||
<a-menu-item key="de_DE" :value="deDE"><flag iso="de"/> Deutsch</a-menu-item>
|
||||
<a-menu-item key="es" :value="esES"><flag iso="es"/> Españo</a-menu-item>
|
||||
<a-menu-item key="fr_FR" :value="frFR"><flag iso="fr"/> Français</a-menu-item>
|
||||
<a-menu-item key="it_IT" :value="itIT"><flag iso="it"/> Italiano</a-menu-item>
|
||||
<a-menu-item key="hu" :value="huHU"><flag iso="hu"/> Magyar</a-menu-item>
|
||||
<a-menu-item key="nl_NL" :value="nlNL"><flag iso="nl"/> Nederlands</a-menu-item>
|
||||
<a-menu-item key="nb_NO" :value="nbNO"><flag iso="no"/> Norsk</a-menu-item>
|
||||
<a-menu-item key="pl" :value="plPL"><flag iso="pl"/> Polish</a-menu-item>
|
||||
<a-menu-item key="pt_BR" :value="ptBR"><flag iso="pt"/> Português brasileiro</a-menu-item>
|
||||
<a-menu-item key="ru_RU" :value="ruRU"><flag iso="ru"/> Русский</a-menu-item>
|
||||
</a-menu>
|
||||
</a-dropdown>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Vue from 'vue'
|
||||
import enUS from 'ant-design-vue/lib/locale-provider/en_US'
|
||||
import arEG from 'ant-design-vue/lib/locale-provider/ar_EG'
|
||||
import caES from 'ant-design-vue/lib/locale-provider/ca_ES'
|
||||
import deDE from 'ant-design-vue/lib/locale-provider/de_DE'
|
||||
import esES from 'ant-design-vue/lib/locale-provider/es_ES'
|
||||
import frFR from 'ant-design-vue/lib/locale-provider/fr_FR'
|
||||
import huHU from 'ant-design-vue/lib/locale-provider/hu_HU'
|
||||
import itIT from 'ant-design-vue/lib/locale-provider/it_IT'
|
||||
import jpJP from 'ant-design-vue/lib/locale-provider/ja_JP'
|
||||
import koKR from 'ant-design-vue/lib/locale-provider/ko_KR'
|
||||
import nbNO from 'ant-design-vue/lib/locale-provider/nb_NO'
|
||||
import nlNL from 'ant-design-vue/lib/locale-provider/nl_NL'
|
||||
import plPL from 'ant-design-vue/lib/locale-provider/pl_PL'
|
||||
import ptBR from 'ant-design-vue/lib/locale-provider/pt_BR'
|
||||
import ruRU from 'ant-design-vue/lib/locale-provider/ru_RU'
|
||||
import zhCN from 'ant-design-vue/lib/locale-provider/zh_CN'
|
||||
import moment from 'moment'
|
||||
import 'moment/locale/zh-cn'
|
||||
|
||||
import FlagIcon from 'vue-flag-icon'
|
||||
Vue.use(FlagIcon)
|
||||
|
||||
moment.locale('en')
|
||||
|
||||
export default {
|
||||
name: 'TranslationMenu',
|
||||
components: {
|
||||
FlagIcon
|
||||
},
|
||||
data () {
|
||||
return {
|
||||
locale: null,
|
||||
enUS
|
||||
enUS,
|
||||
arEG,
|
||||
caES,
|
||||
deDE,
|
||||
esES,
|
||||
frFR,
|
||||
huHU,
|
||||
itIT,
|
||||
jpJP,
|
||||
koKR,
|
||||
nbNO,
|
||||
nlNL,
|
||||
plPL,
|
||||
ptBR,
|
||||
ruRU,
|
||||
zhCN
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
moment,
|
||||
onClick (e) {
|
||||
const localeValue = e.target.value
|
||||
const localeValue = e.key
|
||||
this.locale = localeValue
|
||||
if (!localeValue) {
|
||||
moment.locale('en')
|
||||
} else {
|
||||
moment.locale('zh-cn')
|
||||
moment.locale(localeValue)
|
||||
this.$i18n.locale = e.key
|
||||
Vue.ls.set('current_locale', e.key)
|
||||
this.$router.go(0)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -50,4 +101,5 @@ export default {
|
|||
font-size: 18px;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -52,18 +52,52 @@ export default {
|
|||
label: 'Reboot VM',
|
||||
dataView: true
|
||||
},
|
||||
{
|
||||
api: 'createVMSnapshot',
|
||||
icon: 'camera',
|
||||
label: 'Create VM Snapshot',
|
||||
dataView: true
|
||||
},
|
||||
{
|
||||
api: 'restoreVirtualMachine',
|
||||
icon: 'to-top',
|
||||
label: 'Reinstall Instance',
|
||||
dataView: true,
|
||||
params: ['virtualmachineid']
|
||||
},
|
||||
{
|
||||
api: 'attachIso',
|
||||
icon: 'paper-clip',
|
||||
label: 'Attach ISO to Instance',
|
||||
dataView: true,
|
||||
params: ['id', 'virtualmachineid']
|
||||
},
|
||||
{
|
||||
api: 'migrateVirtualMachine',
|
||||
icon: 'drag',
|
||||
label: 'Migrate VM',
|
||||
dataView: true
|
||||
},
|
||||
{
|
||||
api: 'resetPasswordForVirtualMachine',
|
||||
icon: 'key',
|
||||
label: 'Reset Instance Password',
|
||||
dataView: true,
|
||||
params: ['id']
|
||||
},
|
||||
{
|
||||
api: 'resetSSHKeyForVirtualMachine',
|
||||
icon: 'lock',
|
||||
label: 'Reset SSH Key',
|
||||
dataView: true
|
||||
},
|
||||
{
|
||||
api: 'changeServiceForVirtualMachine',
|
||||
icon: 'swap',
|
||||
label: 'Change Service Offering',
|
||||
dataView: true,
|
||||
params: ['id', 'serviceofferingid']
|
||||
},
|
||||
{
|
||||
api: 'destroyVirtualMachine',
|
||||
icon: 'delete',
|
||||
|
|
@ -79,11 +113,11 @@ export default {
|
|||
title: 'Demo',
|
||||
icon: 'radar-chart',
|
||||
permission: [ 'listVirtualMachines' ],
|
||||
component: () => import('@/components/CloudMonkey/Resource.vue')
|
||||
component: () => import('@/components/Test.vue')
|
||||
},
|
||||
{
|
||||
name: 'ssh',
|
||||
title: 'SSH Keys',
|
||||
title: 'SSH Key Pairs',
|
||||
icon: 'key',
|
||||
permission: [ 'listSSHKeyPairs' ],
|
||||
component: () => import('@/components/CloudMonkey/Resource.vue'),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
export default {
|
||||
name: 'config',
|
||||
title: 'Configurations',
|
||||
title: 'Configuration',
|
||||
icon: 'setting',
|
||||
permission: [ 'listConfigurations' ],
|
||||
children: [
|
||||
|
|
@ -14,7 +14,7 @@ export default {
|
|||
},
|
||||
{
|
||||
name: 'ldapsetting',
|
||||
title: 'LDAP Settings',
|
||||
title: 'LDAP Configuration',
|
||||
icon: 'team',
|
||||
permission: [ 'listLdapConfigurations' ],
|
||||
component: () => import('@/components/CloudMonkey/Resource.vue'),
|
||||
|
|
|
|||
|
|
@ -10,7 +10,16 @@ export default {
|
|||
permission: [ 'listTemplates' ],
|
||||
params: { 'templatefilter': 'executable' },
|
||||
component: () => import('@/components/CloudMonkey/Resource.vue'),
|
||||
columns: ['name', 'ostypename', 'status', 'hypervisor', 'account', 'domain']
|
||||
columns: ['name', 'ostypename', 'status', 'hypervisor', 'account', 'domain'],
|
||||
actions: [
|
||||
{
|
||||
api: 'registerTemplate',
|
||||
icon: 'plus',
|
||||
label: 'Create template',
|
||||
listView: true,
|
||||
params: ['displaytext', 'format', 'hypervisor', 'name', 'ostypeid', 'url', 'account', 'bits', 'checksum', 'details', 'directdownload', 'domainid', 'isdynamicallyscalable', 'isextractable', 'isfeatured', 'ispublic', 'isrouting', 'passwordenabled', 'projectid', 'requireshvm', 'sshkeyenabled', 'templatetag', 'zoneid', 'zoneids']
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'iso',
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ export default {
|
|||
},
|
||||
{
|
||||
name: 'storagepool',
|
||||
title: 'Primary Storages',
|
||||
title: 'Primary Storage',
|
||||
icon: 'database',
|
||||
permission: [ 'listStoragePools', 'listStoragePoolsMetrics' ],
|
||||
component: () => import('@/components/CloudMonkey/Resource.vue'),
|
||||
|
|
|
|||
|
|
@ -9,11 +9,21 @@ export default {
|
|||
icon: 'gateway',
|
||||
permission: [ 'listNetworks' ],
|
||||
component: () => import('@/components/CloudMonkey/Resource.vue'),
|
||||
columns: ['name', 'state', 'type', 'cidr', 'ip6cidr', 'broadcasturi', 'account', 'zonename']
|
||||
columns: ['name', 'state', 'type', 'cidr', 'ip6cidr', 'broadcasturi', 'account', 'zonename'],
|
||||
actions: [
|
||||
{
|
||||
api: 'deleteNetwork',
|
||||
icon: 'delete',
|
||||
label: 'Delete Network',
|
||||
params: ['id'],
|
||||
listView: true,
|
||||
dataView: true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'vpc',
|
||||
title: 'VPCs',
|
||||
title: 'VPC',
|
||||
icon: 'deployment-unit',
|
||||
permission: [ 'listVPCs' ],
|
||||
component: () => import('@/components/CloudMonkey/Resource.vue'),
|
||||
|
|
@ -37,7 +47,7 @@ export default {
|
|||
},
|
||||
{
|
||||
name: 'vpngateway',
|
||||
title: 'VPN Gateways',
|
||||
title: 'VPN Gateway',
|
||||
icon: 'lock',
|
||||
permission: [ 'listVpnCustomerGateways' ],
|
||||
component: () => import('@/components/CloudMonkey/Resource.vue'),
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ import {
|
|||
DEFAULT_FIXED_SIDEMENU,
|
||||
DEFAULT_CONTENT_WIDTH_TYPE,
|
||||
DEFAULT_MULTI_TAB
|
||||
// CURRENT_LOCALE
|
||||
} from '@/store/mutation-types'
|
||||
import config from '@/config/settings'
|
||||
|
||||
|
|
@ -29,6 +30,7 @@ export default function Initializer () {
|
|||
store.commit('TOGGLE_MULTI_TAB', Vue.ls.get(DEFAULT_MULTI_TAB, config.multiTab))
|
||||
store.commit('SET_TOKEN', Vue.ls.get(ACCESS_TOKEN))
|
||||
store.commit('SET_PROJECT', Vue.ls.get(CURRENT_PROJECT))
|
||||
// store.commit('CURRENT_LOCALE', Vue.ls.get(CURRENT_LOCALE), config.defaultLocale)
|
||||
|
||||
// last step
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,638 @@
|
|||
{
|
||||
"Accounts": "Accounts",
|
||||
"Affinity Groups": "Affinity Groups",
|
||||
"Alerts": "\u0627\u0644\u062a\u0646\u0628\u064a\u0647\u0627\u062a",
|
||||
"CPU Sockets": "CPU Sockets",
|
||||
"Cloudian Storage": "Cloudian Storage",
|
||||
"Clusters": "Clusters",
|
||||
"Compute": "Compute",
|
||||
"Compute Offerings": "Compute Offerings",
|
||||
"Configuration": "\u062a\u0631\u062a\u064a\u0628",
|
||||
"Dashboard": "\u0644\u0648\u062d\u0629 \u0627\u0644\u0642\u064a\u0627\u062f\u0629",
|
||||
"Disk Offerings": "\u0639\u0631\u0648\u0636 \u0627\u0644\u0642\u0631\u0635",
|
||||
"Domains": "Domains",
|
||||
"Events": "\u0623\u062d\u062f\u0627\u062b",
|
||||
"Global Settings": "\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0639\u0645\u0648\u0645\u064a\u0629",
|
||||
"Hosts": "Hosts",
|
||||
"Hypervisor Capabilities": "Hypervisor capabilities",
|
||||
"ISOs": "ISOs",
|
||||
"Identity and Access": "Identity and Access",
|
||||
"Infrastructure": "Infrastructure",
|
||||
"Instances": "\u0627\u0644\u062d\u0627\u0644\u0627\u062a",
|
||||
"LDAP Configuration": "LDAP Configuration",
|
||||
"Management Servers": "Management Servers",
|
||||
"Monitor": "Monitor",
|
||||
"Network": "Network",
|
||||
"Network Offerings": "Network Offerings",
|
||||
"Plugins": "Plugins",
|
||||
"Pods": "Pods",
|
||||
"Primary Storage": "Primary Storage",
|
||||
"Projects": "\u0627\u0644\u0645\u0634\u0627\u0631\u064a\u0639",
|
||||
"Public IP Addresses": "Public IP Addresses",
|
||||
"Public network": "Public network",
|
||||
"Quota": "Quota",
|
||||
"RESOURCE_NAME": "Resource Name",
|
||||
"Roles": "Roles",
|
||||
"SSH Key Pairs": "SSH Key Pairs",
|
||||
"Secondary Storage": "Secondary Storage",
|
||||
"Security Groups": "Security Groups",
|
||||
"Snapshots": "Snapshots",
|
||||
"Storage": "Storage",
|
||||
"System Offerings": "System Offerings",
|
||||
"System VMs": "System VMs",
|
||||
"Templates": "Templates",
|
||||
"Users": "Users",
|
||||
"VM Snapshots": "VM Snapshots",
|
||||
"VPC": "\u0633\u062d\u0627\u0628\u0629 \u0625\u0641\u062a\u0631\u0627\u0636\u064a\u0629 \u062e\u0627\u0635\u0629 VPC",
|
||||
"VPC Offerings": "VPC Offerings",
|
||||
"VPN Gateway": "\u0628\u0648\u0627\u0628\u0629 \u0627\u0644\u0634\u0628\u0643\u0629 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629 \u0627\u0644\u0634\u062e\u0635\u064a\u0629",
|
||||
"Virtual Routers": "Virtual Routers",
|
||||
"Volumes": "Volumes",
|
||||
"Zones": "Zones",
|
||||
"accesskey": "\u0645\u0641\u062a\u0627\u062d \u0627\u0644\u0648\u0635\u0648\u0644",
|
||||
"account": "Account",
|
||||
"accountId": "Account",
|
||||
"accountTotal": "Accounts",
|
||||
"accountlist": "Accounts",
|
||||
"accounts": "Accounts",
|
||||
"accounttype": "Account Type",
|
||||
"aclTotal": "\u0625\u062c\u0645\u0627\u0644 \u0634\u0628\u0643\u0629 ACL",
|
||||
"aclid": "ACL",
|
||||
"aclname": "ACL Name",
|
||||
"action": "Action",
|
||||
"activeviewersessions": "Active Sessions",
|
||||
"add-scaleDowncondition": "Add",
|
||||
"add-scaleUpcondition": "Add",
|
||||
"address": "Address",
|
||||
"admin": "Domain Admin",
|
||||
"agentPassword": "Agent Password",
|
||||
"agentPort": "Agent Port",
|
||||
"agentUsername": "Agent Username",
|
||||
"agentstate": "Agent State",
|
||||
"algorithm": "Algorithm",
|
||||
"allocationstate": "Allocation State",
|
||||
"apikey": "API Key",
|
||||
"associatednetworkid": "Associated Network ID",
|
||||
"associatednetworkname": "Network Name",
|
||||
"availability": "Availability",
|
||||
"availabilityZone": "Availability Zone",
|
||||
"balance": "Balance",
|
||||
"baremetalCpu": "\u0648\u062d\u062f\u0629 \u0627\u0644\u0645\u0639\u0627\u0644\u062c\u0629 \u0627\u0644\u0645\u0631\u0643\u0632\u064a\u0629 (\u0628\u0627\u0644\u0645\u064a\u063a\u0627\u0647\u064a\u0631\u062a\u0632)",
|
||||
"baremetalCpuCores": "# of CPU Cores",
|
||||
"baremetalMAC": "Host MAC",
|
||||
"baremetalMemory": "\u0627\u0644\u0630\u0627\u0643\u0631\u0629 ( \u0628\u0627\u0644\u0645\u064a\u062c\u0627\u0628\u0627\u064a\u0628\u062a)",
|
||||
"bcfdeviceid": "ID",
|
||||
"bladeid": "Blade ID",
|
||||
"bootable": "Bootable",
|
||||
"broadcastdomainrange": "Broadcast domain range",
|
||||
"broadcastdomaintype": "Broadcast Domain Type",
|
||||
"broadcasturi": "\u0628\u062b \u0627\u0644\u0631\u0627\u0628\u0637",
|
||||
"bucket": "\u062f\u0644\u0648",
|
||||
"cacheMode": "Write-cache Type",
|
||||
"capacity": "Capacity",
|
||||
"capacityBytes": "Capacity Bytes",
|
||||
"capacityIops": "Capacity IOPS",
|
||||
"capacityiops": "IOPS Total",
|
||||
"chassis": "Chassis",
|
||||
"checksum": "checksum",
|
||||
"cidr": "CIDR",
|
||||
"cidrlist": "\u0642\u0627\u0626\u0645\u0629 CIDR",
|
||||
"cleanup": "\u062a\u0646\u0638\u064a\u0641",
|
||||
"clusterId": "Cluster",
|
||||
"clusterid": "Cluster",
|
||||
"clustername": "Cluster",
|
||||
"clusters": "Clusters",
|
||||
"clustertype": "Cluster Type",
|
||||
"connectiontimeout": "\u0645\u0647\u0644\u0629 \u0627\u0644\u0627\u062a\u0635\u0627\u0644",
|
||||
"conservemode": "Conserve mode",
|
||||
"counterid": "Counter",
|
||||
"cpuCap": "CPU Cap",
|
||||
"cpuLimit": "CPU limits",
|
||||
"cpuNumber": "# of CPU Cores",
|
||||
"cpuSpeed": "\u0648\u062d\u062f\u0629 \u0627\u0644\u0645\u0639\u0627\u0644\u062c\u0629 \u0627\u0644\u0645\u0631\u0643\u0632\u064a\u0629 (\u0628\u0627\u0644\u0645\u064a\u063a\u0627\u0647\u064a\u0631\u062a\u0632)",
|
||||
"cpuallocated": "CPU Allocated for VMs",
|
||||
"cpuallocatedghz": "\u062a\u062e\u0635\u064a\u0635",
|
||||
"cpumaxdeviation": "Deviation",
|
||||
"cpunumber": "# of CPU Cores",
|
||||
"cpusockets": "The Number of CPU Sockets",
|
||||
"cpuspeed": "\u0648\u062d\u062f\u0629 \u0627\u0644\u0645\u0639\u0627\u0644\u062c\u0629 \u0627\u0644\u0645\u0631\u0643\u0632\u064a\u0629 (\u0628\u0627\u0644\u0645\u064a\u063a\u0627\u0647\u064a\u0631\u062a\u0632)",
|
||||
"cputotal": "Total",
|
||||
"cputotalghz": "Total",
|
||||
"cpuused": "CPU Utilized",
|
||||
"cpuusedghz": "Used",
|
||||
"createNfsCache": "Create NFS Secondary Staging Store",
|
||||
"created": "Date",
|
||||
"credit": "Credit",
|
||||
"crossZones": "Cross Zones",
|
||||
"current": "isCurrent",
|
||||
"date": "Date",
|
||||
"dedicated": "Dedicated",
|
||||
"deleteprofile": "Delete Profile",
|
||||
"deploymentPlanner": "Deployment planner",
|
||||
"deploymentplanner": "Deployment planner",
|
||||
"description": "Description",
|
||||
"destinationZoneId": "Destination Zone",
|
||||
"destinationphysicalnetworkid": "Destination physical network ID",
|
||||
"destroyVMgracePeriod": "Destroy VM Grace Period",
|
||||
"details": "Details",
|
||||
"deviceid": "Device ID",
|
||||
"directdownload": "Direct Download",
|
||||
"disconnected": "Last Disconnected",
|
||||
"disk": "Disk",
|
||||
"diskBytesReadRate": "Disk Read Rate (BPS)",
|
||||
"diskBytesWriteRate": "Disk Write Rate (BPS)",
|
||||
"diskIopsReadRate": "Disk Read Rate (IOPS)",
|
||||
"diskIopsWriteRate": "Disk Write Rate (IOPS)",
|
||||
"diskOffering": "Disk Offering",
|
||||
"diskOfferingId": "\u0639\u0631\u0648\u0636 \u0627\u0644\u0642\u0631\u0635",
|
||||
"diskSize": "Disk Size (in GB)",
|
||||
"diskiopstotal": "IOPS",
|
||||
"diskioread": "Disk Read (IO)",
|
||||
"diskiowrite": "Disk Write (IO)",
|
||||
"diskkbsread": "Disk Read (Bytes)",
|
||||
"diskkbswrite": "Disk Write (Bytes)",
|
||||
"diskofferingdisplaytext": "Disk Offering",
|
||||
"disksize": "Disk Size (in GB)",
|
||||
"disksizeallocated": "Disk Allocated",
|
||||
"disksizeallocatedgb": "\u062a\u062e\u0635\u064a\u0635",
|
||||
"disksizetotal": "Disk Total",
|
||||
"disksizetotalgb": "Total",
|
||||
"disksizeunallocatedgb": "Unallocated",
|
||||
"disksizeusedgb": "Used",
|
||||
"displayText": "Description",
|
||||
"displayname": "Display Name",
|
||||
"displaytext": "Description",
|
||||
"distributedvpcrouter": "Distributed VPC Router",
|
||||
"dns1": "DNS 1",
|
||||
"dns2": "DNS 2",
|
||||
"domain": "Domain",
|
||||
"domainId": "Domain",
|
||||
"domainid": "Domain",
|
||||
"domainname": "Domain",
|
||||
"domainpath": "Domain",
|
||||
"dpd": "\u0643\u0634\u0641 \u0627\u0644\u0642\u0631\u064a\u0646 \u0627\u0644\u0645\u0641\u0642\u0648\u062f",
|
||||
"driver": "Driver",
|
||||
"egressdefaultpolicy": "Egress Default Policy",
|
||||
"email": "Email",
|
||||
"enddate": "End Date",
|
||||
"endip": "IPv4 End IP",
|
||||
"endipv4": "IPv4 End IP",
|
||||
"endipv6": "IPv6 End IP",
|
||||
"endpoint": "\u0646\u0642\u0637\u0629 \u0627\u0644\u0646\u0647\u0627\u064a\u0629",
|
||||
"endport": "End Port",
|
||||
"espEncryption": "ESP Encryption",
|
||||
"espHash": "ESP Hash",
|
||||
"esplifetime": "\u0639\u0645\u0631 ESP (\u062b\u0627\u0646\u064a\u0629)",
|
||||
"esppolicy": "\u0633\u064a\u0627\u0633\u0629 ESP",
|
||||
"expunge": "Expunge",
|
||||
"fingerprint": "FingerPrint",
|
||||
"firstname": "First Name",
|
||||
"forced": "Force Stop",
|
||||
"forceencap": "Force UDP Encapsulation of ESP Packets",
|
||||
"format": "Format",
|
||||
"fwdevicecapacity": "Capacity",
|
||||
"fwdeviceid": "ID",
|
||||
"fwdevicename": "Type",
|
||||
"fwdevicestate": "Status",
|
||||
"gateway": "Gateway",
|
||||
"glustervolume": "Volume",
|
||||
"group": "Group",
|
||||
"gslbdomainname": "GSLB Domain Name",
|
||||
"gslblbmethod": "Algorithm",
|
||||
"gslbprovider": "GSLB service",
|
||||
"gslbproviderprivateip": "GSLB service Private IP",
|
||||
"gslbproviderpublicip": "GSLB service Public IP",
|
||||
"gslbservicetype": "Service Type",
|
||||
"guestEndIp": "Guest end IP",
|
||||
"guestGateway": "Guest Gateway",
|
||||
"guestIpType": "\u0646\u0648\u0639 \u0627\u0644\u0636\u064a\u0641",
|
||||
"guestNetmask": "Guest Netmask",
|
||||
"guestStartIp": "Guest start IP",
|
||||
"guestcidraddress": "Guest CIDR",
|
||||
"guestipaddress": "Guest IP Address",
|
||||
"guestiptype": "\u0646\u0648\u0639 \u0627\u0644\u0636\u064a\u0641",
|
||||
"guestnetworkid": "Network ID",
|
||||
"guestnetworkname": "Network Name",
|
||||
"guestosid": "OS Type",
|
||||
"guestvlanrange": "VLAN Range(s)",
|
||||
"haenable": "HA Enabled",
|
||||
"hahost": "HA Enabled",
|
||||
"host": "IP Address",
|
||||
"hostId": "Host",
|
||||
"hostTags": "Host Tags",
|
||||
"hostname": "Host Name",
|
||||
"hosts": "Hosts",
|
||||
"hosttags": "Host Tags",
|
||||
"hypervisor": "Hypervisor",
|
||||
"hypervisorSnapshotReserve": "Hypervisor Snapshot Reserve",
|
||||
"hypervisorsnapshotreserve": "Hypervisor Snapshot Reserve",
|
||||
"hypervisortype": "Hypervisor",
|
||||
"hypervisorversion": "Hypervisor version",
|
||||
"hypervnetworklabel": "HyperV Traffic Label",
|
||||
"icmpcode": "ICMP Code",
|
||||
"icmptype": "ICMP Type",
|
||||
"id": "ID",
|
||||
"ikeDh": "IKE DH",
|
||||
"ikeEncryption": "IKE Encryption",
|
||||
"ikeHash": "IKE Hash",
|
||||
"ikelifetime": "\u0639\u0645\u0631 IKE (\u062b\u0627\u0646\u064a\u0629)",
|
||||
"ikepolicy": "\u0633\u064a\u0627\u0633\u0629 IKE",
|
||||
"insideportprofile": "Inside Port Profile",
|
||||
"instancename": "Internal name",
|
||||
"instanceport": "Instance Port",
|
||||
"instances": "\u0627\u0644\u062d\u0627\u0644\u0627\u062a",
|
||||
"internaldns1": "Internal DNS 1",
|
||||
"internaldns2": "Internal DNS 2",
|
||||
"interval": "Polling Interval (in sec)",
|
||||
"intervaltype": "Interval Type",
|
||||
"ip": "IP Address",
|
||||
"ip4Netmask": "IPv4 Netmask",
|
||||
"ip4dns1": "IPv4 DNS1",
|
||||
"ip4dns2": "IPv4 DNS2",
|
||||
"ip4gateway": "IPv4 Gateway",
|
||||
"ip6address": "IPv6 IP Address",
|
||||
"ip6cidr": "IPv6 CIDR",
|
||||
"ip6dns1": "IPv6 DNS1",
|
||||
"ip6dns2": "IPv6 DNS2",
|
||||
"ip6gateway": "IPv6 Gateway",
|
||||
"ipLimit": "Public IP Limits",
|
||||
"ipaddress": "IP Address",
|
||||
"ipaddress1": "IP Address",
|
||||
"ipaddress2": "IP Address",
|
||||
"ipsecpsk": "\u0645\u0641\u062a\u0627\u062d \u0623\u0645\u0646 \u0628\u0631\u0648\u062a\u0648\u0643\u0648\u0644 \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a \u062a\u0645\u062a \u0645\u0634\u0627\u0631\u0643\u062a\u0647 \u0645\u0633\u0628\u0642\u0627",
|
||||
"iptotal": "Total of IP Addresses",
|
||||
"iqn": "Target IQN",
|
||||
"isAdvanced": "Show advanced settings",
|
||||
"isBootable": "Bootable",
|
||||
"isCustomized": "Custom Disk Size",
|
||||
"isCustomizedIops": "Custom IOPS",
|
||||
"isDedicated": "Dedicate",
|
||||
"isExtractable": "Extractable",
|
||||
"isFeatured": "Featured",
|
||||
"isForced": "Force Remove",
|
||||
"isManaged": "Managed",
|
||||
"isPasswordEnabled": "Password Enabled",
|
||||
"isPersistent": "Persistent ",
|
||||
"isPublic": "Public",
|
||||
"isVolatile": "Volatile",
|
||||
"iscustomized": "Custom Disk Size",
|
||||
"iscustomizediops": "Custom IOPS",
|
||||
"isdedicated": "Dedicated",
|
||||
"isdefault": "Is Default",
|
||||
"isdynamicallyscalable": "Dynamically Scalable",
|
||||
"isextractable": "extractable",
|
||||
"isfeatured": "Featured",
|
||||
"iso": "ISO",
|
||||
"isolatedpvlanId": "Secondary Isolated VLAN ID",
|
||||
"isolationmethods": "Isolation method",
|
||||
"isolationuri": "\u0639\u0632\u0644 \u0627\u0644\u0631\u0627\u0628\u0637",
|
||||
"isoname": "Attached ISO",
|
||||
"ispersistent": "Persistent ",
|
||||
"isportable": "Cross Zones",
|
||||
"ispublic": "Public",
|
||||
"isready": "\u062c\u0627\u0647\u0632",
|
||||
"isredundantrouter": "Redundant Router",
|
||||
"isrouting": "Routing",
|
||||
"issourcenat": "Source NAT",
|
||||
"isstaticnat": "Static NAT",
|
||||
"issystem": "Is System",
|
||||
"isvolatile": "Volatile",
|
||||
"key": "Key",
|
||||
"keyboardType": "\u0646\u0648\u0639 \u0644\u0648\u062d\u0629 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d",
|
||||
"keypair": "SSH Key Pair",
|
||||
"kvmnetworklabel": "KVM traffic label",
|
||||
"l2gatewayserviceuuid": "L2 Gateway Service Uuid",
|
||||
"l3gatewayserviceuuid": "L3 Gateway Service Uuid",
|
||||
"last_updated": "Last Update",
|
||||
"lastname": "Last Name",
|
||||
"lbType": "Load Balancer Type",
|
||||
"lbdevicecapacity": "Capacity",
|
||||
"lbdevicededicated": "Dedicated",
|
||||
"lbdeviceid": "ID",
|
||||
"lbdevicename": "Type",
|
||||
"lbdevicestate": "Status",
|
||||
"level": "Level",
|
||||
"limitcpuuse": "CPU Cap",
|
||||
"linklocalip": "Link Local IP Address",
|
||||
"loadbalancerinstance": "Assigned VMs",
|
||||
"loadbalancerrule": "Load balancing rule",
|
||||
"localstorageenabled": "Enable local storage for User VMs",
|
||||
"localstorageenabledforsystemvm": "Enable local storage for System VMs",
|
||||
"lun": "LUN #",
|
||||
"lxcnetworklabel": "LXC Traffic Label",
|
||||
"makeredundant": "Make redundant",
|
||||
"maxInstance": "Max Instances",
|
||||
"maxIops": "Max IOPS",
|
||||
"maxerrorretry": "\u0623\u0642\u0635\u0649 \u062e\u0637\u0623 \u0641\u064a \u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629",
|
||||
"maxguestslimit": "\u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0627\u0621 \u0644\u0636\u064a\u0641",
|
||||
"maxiops": "Max IOPS",
|
||||
"memallocated": "Mem Allocation",
|
||||
"memory": "\u0627\u0644\u0630\u0627\u0643\u0631\u0629 ( \u0628\u0627\u0644\u0645\u064a\u062c\u0627\u0628\u0627\u064a\u0628\u062a)",
|
||||
"memoryLimit": "Memory limits (MiB)",
|
||||
"memoryallocated": "Memory Allocated",
|
||||
"memoryallocatedgb": "\u062a\u062e\u0635\u064a\u0635",
|
||||
"memorymaxdeviation": "Deviation",
|
||||
"memorytotal": "\u062a\u062e\u0635\u064a\u0635",
|
||||
"memorytotalgb": "Total",
|
||||
"memoryused": "Used",
|
||||
"memoryusedgb": "Used",
|
||||
"memused": "Mem Usage",
|
||||
"minInstance": "Min Instances",
|
||||
"minIops": "Min IOPS",
|
||||
"min_balance": "Min Balance",
|
||||
"miniops": "Min IOPS",
|
||||
"name": "Name",
|
||||
"nat": "BigSwitch BCF NAT Enabled",
|
||||
"netmask": "Netmask",
|
||||
"network": "Network",
|
||||
"networkDomain": "Network Domain",
|
||||
"networkLimit": "Network limits",
|
||||
"networkOfferingId": "Network Offering",
|
||||
"networkRate": "Network Rate (Mb/s)",
|
||||
"networkcidr": "Network CIDR",
|
||||
"networkdevicetype": "Type",
|
||||
"networkdomain": "Network Domain",
|
||||
"networkdomaintext": "Network domain",
|
||||
"networkid": "\u062d\u062f\u062f \u0637\u0628\u0642\u0629",
|
||||
"networkkbsread": "Network Read",
|
||||
"networkkbswrite": "Network Write",
|
||||
"networkname": "Network Name",
|
||||
"networkofferingdisplaytext": "Network Offering",
|
||||
"networkofferingid": "Network Offering",
|
||||
"networkofferingidText": "Network Offering ID",
|
||||
"networkofferingname": "Network Offering",
|
||||
"networkrate": "Network Rate (Mb/s)",
|
||||
"networkread": "Read",
|
||||
"networktype": "Network Type",
|
||||
"networkwrite": "Write",
|
||||
"newDiskOffering": "New Disk Offering",
|
||||
"newdiskoffering": "New Offering",
|
||||
"newsize": "New Size (GB)",
|
||||
"nfsCacheNfsServer": "S3 NFS Server",
|
||||
"nfsCachePath": "S3 NFS Path",
|
||||
"nfsCacheZoneid": "Zone",
|
||||
"nfsServer": "Server",
|
||||
"nicAdapterType": "NIC adapter type",
|
||||
"number": "#Rule",
|
||||
"numberOfRouterRequiresUpgrade": "Total of Virtual Routers that require upgrade",
|
||||
"numretries": "Number of Retries",
|
||||
"nvpdeviceid": "ID",
|
||||
"offerHA": "Offer HA",
|
||||
"offerha": "Offer HA",
|
||||
"osTypeId": "OS Type",
|
||||
"oscategoryid": "OS Preference",
|
||||
"ostypeid": "OS Type",
|
||||
"ostypename": "OS Type",
|
||||
"overrideguesttraffic": "Override Guest-Traffic",
|
||||
"overridepublictraffic": "Override Public-Traffic",
|
||||
"ovm3cluster": "Native Clustering",
|
||||
"ovm3networklabel": "OVM3 traffic label",
|
||||
"ovm3pool": "Native Pooling",
|
||||
"ovm3vip": "Master Vip IP",
|
||||
"ovmnetworklabel": "OVM traffic label",
|
||||
"palp": "Palo Alto Log Profile",
|
||||
"parentName": "Parent",
|
||||
"passive": "Passive",
|
||||
"password": "Password",
|
||||
"password-confirm": "Confirm password",
|
||||
"passwordenabled": "Password Enabled",
|
||||
"path": "Path",
|
||||
"patp": "Palo Alto Threat Profile",
|
||||
"pavr": "Virtual Router",
|
||||
"pciDevice": "\u0648\u0639\u0631",
|
||||
"perfectForwardSecrecy": "Perfect Forward Secrecy",
|
||||
"physicalNetworkId": "Physical Network",
|
||||
"physicalnetworkid": "Physical Network",
|
||||
"physicalsize": "Physical Size",
|
||||
"plannerMode": "Planner mode",
|
||||
"podId": "Pod",
|
||||
"podname": "Pod",
|
||||
"port": "Port",
|
||||
"portableipaddress": "Portable IPs",
|
||||
"powerstate": "Power State",
|
||||
"primaryStorageLimit": "Primary Storage limits (GiB)",
|
||||
"primarystoragetotal": "Primary Storage",
|
||||
"privateinterface": "Private Interface",
|
||||
"privateip": "Private IP Address",
|
||||
"privatekey": "Private Key",
|
||||
"privatenetwork": "Private network",
|
||||
"privateport": "Private Port",
|
||||
"profiledn": "Associated Profile",
|
||||
"profilename": "Profile",
|
||||
"project": "\u0645\u0634\u0631\u0648\u0639",
|
||||
"projectId": "\u0645\u0634\u0631\u0648\u0639",
|
||||
"projectid": "Project ID",
|
||||
"projects": "\u0627\u0644\u0645\u0634\u0627\u0631\u064a\u0639",
|
||||
"property": "Property",
|
||||
"protocol": "Protocol",
|
||||
"protocolnumber": "#Protocol",
|
||||
"provider": "Provider",
|
||||
"providername": "Provider",
|
||||
"provisioningType": "Provisioning Type",
|
||||
"provisioningtype": "Provisioning Type",
|
||||
"publicinterface": "Public Interface",
|
||||
"publicip": "IP Address",
|
||||
"publickey": "Public Key",
|
||||
"publicnetwork": "Public network",
|
||||
"publicport": "Public Port",
|
||||
"purpose": "Purpose",
|
||||
"qosType": "QoS Type",
|
||||
"quiescevm": "Quiesce VM",
|
||||
"quietTime": "Quiet Time (in sec)",
|
||||
"quota": "Quota Value",
|
||||
"quota_enforce": "Enforce Quota",
|
||||
"rbdid": "Cephx user",
|
||||
"rbdmonitor": "Ceph monitor",
|
||||
"rbdpool": "Ceph pool",
|
||||
"rbdsecret": "Cephx secret",
|
||||
"reason": "Reason",
|
||||
"receivedbytes": "Bytes Received",
|
||||
"redundantRouterState": "Redundant state",
|
||||
"redundantrouter": "Redundant Router",
|
||||
"redundantstate": "Redundant state",
|
||||
"redundantvpcrouter": "Redundant VPC",
|
||||
"reenterpassword": "Re-enter Password",
|
||||
"relationaloperator": "Operator",
|
||||
"requireshvm": "HVM",
|
||||
"requiresupgrade": "Requires Upgrade",
|
||||
"reservedSystemEndIp": "End Reserved system IP",
|
||||
"reservedSystemGateway": "Reserved system gateway",
|
||||
"reservedSystemNetmask": "Reserved system netmask",
|
||||
"reservedSystemStartIp": "Start Reserved system IP",
|
||||
"reservediprange": "Reserved IP Range",
|
||||
"resourceid": "Resource ID",
|
||||
"resourcename": "Resource Name",
|
||||
"resourcestate": "Resource state",
|
||||
"restartrequired": "\u0645\u0637\u0644\u0648\u0628 \u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u0634\u063a\u064a\u0644",
|
||||
"role": "Role",
|
||||
"rolename": "Role",
|
||||
"roletype": "Role Type",
|
||||
"rootDiskControllerType": "Root disk controller",
|
||||
"rootDiskControllerTypeKVM": "Root disk controller",
|
||||
"routerCount": "Total of Virtual Routers",
|
||||
"routerRequiresUpgrade": "Upgrade is required",
|
||||
"routerType": "Type",
|
||||
"samlEnable": "Authorize SAML SSO",
|
||||
"samlEntity": "Identity Provider",
|
||||
"scope": "\u0627\u0644\u0645\u062c\u0627\u0644",
|
||||
"secondaryStorageLimit": "Secondary Storage limits (GiB)",
|
||||
"secondaryips": "Secondary IPs",
|
||||
"secretkey": "\u0627\u0644\u0645\u0641\u062a\u0627\u062d \u0627\u0644\u0633\u0631\u064a",
|
||||
"securityGroups": "Security Groups",
|
||||
"securitygroup": "Security Group",
|
||||
"sent": "Date",
|
||||
"sentbytes": "Bytes Sent",
|
||||
"server": "Server",
|
||||
"service.Connectivity.distributedRouterCapabilityCheckbox": "Distributed Router",
|
||||
"service.Connectivity.regionLevelVpcCapabilityCheckbox": "Region Level VPC",
|
||||
"service.Lb.elasticLbCheckbox": "Elastic LB",
|
||||
"service.Lb.inlineModeDropdown": "Mode",
|
||||
"service.Lb.lbIsolationDropdown": "LB isolation",
|
||||
"service.SourceNat.redundantRouterCapabilityCheckbox": "Redundant router capability",
|
||||
"service.SourceNat.sourceNatTypeDropdown": "Supported Source NAT type",
|
||||
"service.StaticNat.associatePublicIP": "Associate Public IP",
|
||||
"service.StaticNat.elasticIpCheckbox": "Elastic IP",
|
||||
"serviceCapabilities": "\u0642\u062f\u0631\u0627\u062a \u0627\u0644\u062e\u062f\u0645\u0629",
|
||||
"serviceOfferingId": "Compute offering",
|
||||
"servicelist": "Services",
|
||||
"serviceofferingid": "Compute offering",
|
||||
"serviceofferingname": "Compute offering",
|
||||
"shrinkok": "Shrink OK",
|
||||
"size": "Size",
|
||||
"sizegb": "Size",
|
||||
"smbDomain": "SMB Domain",
|
||||
"smbPassword": "SMB Password",
|
||||
"smbUsername": "SMB Username",
|
||||
"snapshotLimit": "Snapshot Limits",
|
||||
"snapshotMemory": "Snapshot memory",
|
||||
"snmpCommunity": "SNMP Community",
|
||||
"snmpPort": "SNMP Port",
|
||||
"sockettimeout": "\u0645\u0647\u0644\u0629 \u0627\u0644\u0645\u0642\u0628\u0633",
|
||||
"sourceNat": "Source NAT",
|
||||
"sourceipaddress": "Source IP Address",
|
||||
"sourceport": "Source Port",
|
||||
"specifyVlan": "Specify VLAN",
|
||||
"specifyipranges": "\u062a\u062d\u062f\u064a\u062f \u0646\u0637\u0627\u0642\u0627\u062a IP",
|
||||
"specifyvlan": "Specify VLAN",
|
||||
"sshkeypair": "New SSH Key Pair",
|
||||
"startdate": "Start Date",
|
||||
"startip": "IPv4 Start IP",
|
||||
"startipv4": "IPv4 Start IP",
|
||||
"startipv6": "IPv6 Start IP",
|
||||
"startport": "Start Port",
|
||||
"startquota": "Quota Value",
|
||||
"state": "State",
|
||||
"status": "Status",
|
||||
"storage": "Storage",
|
||||
"storageId": "Primary Storage",
|
||||
"storagePool": "Storage Pool",
|
||||
"storageTags": "Storage Tags",
|
||||
"storageType": "Storage Type",
|
||||
"storagetype": "Storage Type",
|
||||
"subdomainaccess": "Subdomain Access",
|
||||
"supportedServices": "t\u0627\u0644\u062e\u062f\u0645\u0627\u062a \u0627\u0644\u0645\u062f\u0639\u0648\u0645\u0629",
|
||||
"supportspublicaccess": "Supports Public Access",
|
||||
"supportsregionLevelvpc": "Supports Region Level VPC",
|
||||
"supportsstrechedl2subnet": "Supports Streched L2 Subnet",
|
||||
"systemvmtype": "Type",
|
||||
"tags": "Storage Tags",
|
||||
"tariffValue": "Tariff Value",
|
||||
"template": "\u0627\u062e\u062a\u0631 \u0642\u0627\u0644\u0628",
|
||||
"templateFileUpload": "Local file",
|
||||
"templateLimit": "Template Limits",
|
||||
"templateNames": "Template",
|
||||
"templatebody": "Body",
|
||||
"templatedn": "Select Template",
|
||||
"templatename": "Template",
|
||||
"templatesubject": "Subject",
|
||||
"templatetotal": "Template",
|
||||
"templatetype": "Email Template",
|
||||
"tftpdir": "Tftp root directory",
|
||||
"threshold": "Threshold",
|
||||
"tierName": "\u0637\u0628\u0642\u0629",
|
||||
"timeout": "Timeout",
|
||||
"timezone": "Timezone",
|
||||
"token": "Token",
|
||||
"totalCPU": "Total CPU",
|
||||
"traffictype": "Traffic Type",
|
||||
"transportzoneuuid": "Transport Zone Uuid",
|
||||
"type": "Type",
|
||||
"unit": "Usage Unit",
|
||||
"url": "URL",
|
||||
"usageName": "Usage Type",
|
||||
"usageUnit": "Unit",
|
||||
"usageinterface": "Usage Interface",
|
||||
"useNewDiskOffering": "Replace disk offering?",
|
||||
"useVpc": "\u0633\u062d\u0627\u0628\u0629 \u0625\u0641\u062a\u0631\u0627\u0636\u064a\u0629 \u062e\u0627\u0635\u0629 VPC",
|
||||
"usehttps": "\u0627\u0633\u062a\u062e\u062f\u0645 HTTPS",
|
||||
"userDataL2": "User Data",
|
||||
"username": "Username",
|
||||
"utilization": "Utilisation",
|
||||
"uuid": "ID",
|
||||
"vCenterDataCenter": "vCenter Datacenter",
|
||||
"vCenterDataStore": "vCenter Datastore",
|
||||
"vCenterDatacenter": "vCenter Datacenter",
|
||||
"vCenterHost": "vCenter Host",
|
||||
"vCenterPassword": "vCenter Password",
|
||||
"vCenterUsername": "vCenter Username",
|
||||
"vSwitchGuestName": "Guest Traffic vSwitch Name",
|
||||
"vSwitchGuestType": "Guest Traffic vSwitch Type",
|
||||
"vSwitchPublicName": "Public Traffic vSwitch Name",
|
||||
"vSwitchPublicType": "Public Traffic vSwitch Type",
|
||||
"value": "Credits",
|
||||
"vcenter": "VMware datacenter vcenter",
|
||||
"vcenterHost": "ESX/ESXi Host",
|
||||
"vcsdeviceid": "ID",
|
||||
"version": "Version",
|
||||
"vgpu": "VGPU",
|
||||
"vgpuType": "vGPU type",
|
||||
"virtualMachineId": "Instance",
|
||||
"virtualmachinedisplayname": "VM name",
|
||||
"virtualmachineid": "VM ID",
|
||||
"virtualsize": "Virtual Size",
|
||||
"vlan": "VLAN/VNI",
|
||||
"vlanId": "VLAN/VNI ID",
|
||||
"vlanRange": "VLAN/VNI Range",
|
||||
"vlanname": "VLAN",
|
||||
"vlanrange": "VLAN/VNI Range",
|
||||
"vmLimit": "Instance Limits",
|
||||
"vmTotal": "\u0627\u0644\u062d\u0627\u0644\u0627\u062a",
|
||||
"vmdisplayname": "VM display name",
|
||||
"vmipaddress": "VM IP Address",
|
||||
"vmname": "VM Name",
|
||||
"vmstate": "VM state",
|
||||
"vmtotal": "Total of VMs",
|
||||
"vmwaredcId": "VMware datacenter ID",
|
||||
"vmwaredcName": "VMware datacenter Name",
|
||||
"vmwaredcVcenter": "VMware datacenter vcenter",
|
||||
"vmwarenetworklabel": "VMware traffic label",
|
||||
"volume": "Volume",
|
||||
"volumeFileUpload": "Local file",
|
||||
"volumeLimit": "\u062d\u062f\u0648\u062f \u0627\u0644\u0645\u0646\u0637\u0642\u0629",
|
||||
"volumeTotal": "Volumes",
|
||||
"volumegroup": "Volume Group",
|
||||
"volumename": "Volume Name",
|
||||
"volumetotal": "Volume",
|
||||
"vpcLimit": "VPC limits",
|
||||
"vpcid": "\u0647\u0648\u064a\u0629 \u062e\u0627\u0635\u0629 \u0628\u0633\u062d\u0627\u0628\u0629 \u0625\u0641\u062a\u0631\u0627\u0636\u064a\u0629 \u062e\u0627\u0635\u0629",
|
||||
"vpcname": "\u0633\u062d\u0627\u0628\u0629 \u0625\u0641\u062a\u0631\u0627\u0636\u064a\u0629 \u062e\u0627\u0635\u0629 VPC",
|
||||
"vpcoffering": "VPC Offering",
|
||||
"vpncustomergatewayid": "\u0628\u0648\u0627\u0628\u0629 \u0627\u0644\u0634\u0628\u0643\u0629 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629 \u0627\u0644\u0634\u062e\u0635\u064a\u0629 \u0644\u0644\u0639\u0645\u064a\u0644",
|
||||
"vsmctrlvlanid": "Control VLAN ID",
|
||||
"vsmdeviceid": "Name",
|
||||
"vsmdevicestate": "State",
|
||||
"vsmipaddress": "Nexus 1000v IP Address",
|
||||
"vsmipaddress_req": "Nexus 1000v IP Address",
|
||||
"vsmpassword": "Nexus 1000v Password",
|
||||
"vsmpassword_req": "Nexus 1000v Password",
|
||||
"vsmpktvlanid": "Packet VLAN ID",
|
||||
"vsmstoragevlanid": "Storage VLAN ID",
|
||||
"vsmusername": "Nexus 1000v Username",
|
||||
"vsmusername_req": "Nexus 1000v Username",
|
||||
"xennetworklabel": "XenServer traffic label",
|
||||
"xenserverToolsVersion61plus": "Original XS Version is 6.1+",
|
||||
"zone": "Zone",
|
||||
"zoneId": "Zone",
|
||||
"zoneid": "Zone",
|
||||
"zonename": "Zone"
|
||||
}
|
||||
|
|
@ -0,0 +1,638 @@
|
|||
{
|
||||
"Accounts": "Accounts",
|
||||
"Affinity Groups": "Affinity Groups",
|
||||
"Alerts": "Alerts",
|
||||
"CPU Sockets": "CPU Sockets",
|
||||
"Cloudian Storage": "Cloudian Storage",
|
||||
"Clusters": "Clusters",
|
||||
"Compute": "Computaci\u00f3",
|
||||
"Compute Offerings": "Compute Offerings",
|
||||
"Configuration": "Configuraci\u00f3",
|
||||
"Dashboard": "Dashboard",
|
||||
"Disk Offerings": "Disk Offerings",
|
||||
"Domains": "Domains",
|
||||
"Events": "Events",
|
||||
"Global Settings": "Global Settings",
|
||||
"Hosts": "Hosts",
|
||||
"Hypervisor Capabilities": "Hypervisor capabilities",
|
||||
"ISOs": "ISOs",
|
||||
"Identity and Access": "Identity and Access",
|
||||
"Infrastructure": "Infrastructure",
|
||||
"Instances": "Instances",
|
||||
"LDAP Configuration": "LDAP Configuration",
|
||||
"Management Servers": "Management Servers",
|
||||
"Monitor": "Monitor",
|
||||
"Network": "Network",
|
||||
"Network Offerings": "Network Offerings",
|
||||
"Plugins": "Plugins",
|
||||
"Pods": "Racks",
|
||||
"Primary Storage": "Primary Storage",
|
||||
"Projects": "Projectes",
|
||||
"Public IP Addresses": "Public IP Addresses",
|
||||
"Public network": "Xarxa p\u00fablica",
|
||||
"Quota": "Quota",
|
||||
"RESOURCE_NAME": "Resource Name",
|
||||
"Roles": "Roles",
|
||||
"SSH Key Pairs": "SSH Key Pairs",
|
||||
"Secondary Storage": "Secondary Storage",
|
||||
"Security Groups": "Security Groups",
|
||||
"Snapshots": "Snapshots",
|
||||
"Storage": "Storage",
|
||||
"System Offerings": "System Offerings",
|
||||
"System VMs": "System VMs",
|
||||
"Templates": "Templates",
|
||||
"Users": "Users",
|
||||
"VM Snapshots": "VM Snapshots",
|
||||
"VPC": "VPC",
|
||||
"VPC Offerings": "VPC Offerings",
|
||||
"VPN Gateway": "VPN Gateway",
|
||||
"Virtual Routers": "Virtual Routers",
|
||||
"Volumes": "Volumes",
|
||||
"Zones": "Zones",
|
||||
"accesskey": "Access Key",
|
||||
"account": "Account",
|
||||
"accountId": "Account",
|
||||
"accountTotal": "Accounts",
|
||||
"accountlist": "Accounts",
|
||||
"accounts": "Accounts",
|
||||
"accounttype": "Account Type",
|
||||
"aclTotal": "Network ACL Total",
|
||||
"aclid": "ACL",
|
||||
"aclname": "ACL Name",
|
||||
"action": "Action",
|
||||
"activeviewersessions": "Active Sessions",
|
||||
"add-scaleDowncondition": "Add",
|
||||
"add-scaleUpcondition": "Add",
|
||||
"address": "Address",
|
||||
"admin": "Domain Admin",
|
||||
"agentPassword": "Agent Password",
|
||||
"agentPort": "Agent Port",
|
||||
"agentUsername": "Agent Username",
|
||||
"agentstate": "Agent State",
|
||||
"algorithm": "Algorithm",
|
||||
"allocationstate": "Allocation State",
|
||||
"apikey": "API Key",
|
||||
"associatednetworkid": "Associated Network ID",
|
||||
"associatednetworkname": "Network Name",
|
||||
"availability": "Availability",
|
||||
"availabilityZone": "Availability Zone",
|
||||
"balance": "Balance",
|
||||
"baremetalCpu": "CPU (in MHz)",
|
||||
"baremetalCpuCores": "# of CPU Cores",
|
||||
"baremetalMAC": "Host MAC",
|
||||
"baremetalMemory": "Memory (in MB)",
|
||||
"bcfdeviceid": "ID",
|
||||
"bladeid": "Blade ID",
|
||||
"bootable": "Bootable",
|
||||
"broadcastdomainrange": "Rang del domini de broadcast",
|
||||
"broadcastdomaintype": "Broadcast Domain Type",
|
||||
"broadcasturi": "Broadcast URI",
|
||||
"bucket": "Bucket",
|
||||
"cacheMode": "Write-cache Type",
|
||||
"capacity": "Capacitat",
|
||||
"capacityBytes": "Capacity Bytes",
|
||||
"capacityIops": "Capacity IOPS",
|
||||
"capacityiops": "IOPS Total",
|
||||
"chassis": "Chassis",
|
||||
"checksum": "checksum",
|
||||
"cidr": "CIDR",
|
||||
"cidrlist": "CIDR list",
|
||||
"cleanup": "Clean up",
|
||||
"clusterId": "Cluster",
|
||||
"clusterid": "Cluster",
|
||||
"clustername": "Cluster",
|
||||
"clusters": "Clusters",
|
||||
"clustertype": "Cluster Type",
|
||||
"connectiontimeout": "Connection Timeout",
|
||||
"conservemode": "Conserve mode",
|
||||
"counterid": "Counter",
|
||||
"cpuCap": "CPU Cap",
|
||||
"cpuLimit": "CPU limits",
|
||||
"cpuNumber": "# of CPU Cores",
|
||||
"cpuSpeed": "CPU (in MHz)",
|
||||
"cpuallocated": "CPU Allocated for VMs",
|
||||
"cpuallocatedghz": "Allocated",
|
||||
"cpumaxdeviation": "Deviation",
|
||||
"cpunumber": "# of CPU Cores",
|
||||
"cpusockets": "The Number of CPU Sockets",
|
||||
"cpuspeed": "CPU (in MHz)",
|
||||
"cputotal": "Total",
|
||||
"cputotalghz": "Total",
|
||||
"cpuused": "CPU Utilized",
|
||||
"cpuusedghz": "Used",
|
||||
"createNfsCache": "Create NFS Secondary Staging Store",
|
||||
"created": "Date",
|
||||
"credit": "Credit",
|
||||
"crossZones": "Cross Zones",
|
||||
"current": "isCurrent",
|
||||
"date": "Date",
|
||||
"dedicated": "Dedicat",
|
||||
"deleteprofile": "Delete Profile",
|
||||
"deploymentPlanner": "Deployment planner",
|
||||
"deploymentplanner": "Deployment planner",
|
||||
"description": "Description",
|
||||
"destinationZoneId": "Zona de dest\u00ed",
|
||||
"destinationphysicalnetworkid": "ID de xarxa f\u00edsica de dest\u00ed",
|
||||
"destroyVMgracePeriod": "Destroy VM Grace Period",
|
||||
"details": "Details",
|
||||
"deviceid": "Device ID",
|
||||
"directdownload": "Direct Download",
|
||||
"disconnected": "Last Disconnected",
|
||||
"disk": "Disk",
|
||||
"diskBytesReadRate": "Disk Read Rate (BPS)",
|
||||
"diskBytesWriteRate": "Disk Write Rate (BPS)",
|
||||
"diskIopsReadRate": "Disk Read Rate (IOPS)",
|
||||
"diskIopsWriteRate": "Disk Write Rate (IOPS)",
|
||||
"diskOffering": "Disk Offering",
|
||||
"diskOfferingId": "Disk Offerings",
|
||||
"diskSize": "Disk Size (in GB)",
|
||||
"diskiopstotal": "IOPS",
|
||||
"diskioread": "Disk Read (IO)",
|
||||
"diskiowrite": "Disk Write (IO)",
|
||||
"diskkbsread": "Disk Read (Bytes)",
|
||||
"diskkbswrite": "Disk Write (Bytes)",
|
||||
"diskofferingdisplaytext": "Disk Offering",
|
||||
"disksize": "Disk Size (in GB)",
|
||||
"disksizeallocated": "Disk Allocated",
|
||||
"disksizeallocatedgb": "Allocated",
|
||||
"disksizetotal": "Disk Total",
|
||||
"disksizetotalgb": "Total",
|
||||
"disksizeunallocatedgb": "Unallocated",
|
||||
"disksizeusedgb": "Used",
|
||||
"displayText": "Description",
|
||||
"displayname": "Display Name",
|
||||
"displaytext": "Description",
|
||||
"distributedvpcrouter": "Distributed VPC Router",
|
||||
"dns1": "DNS 1",
|
||||
"dns2": "DNS 2",
|
||||
"domain": "Domain",
|
||||
"domainId": "Domain",
|
||||
"domainid": "Domain",
|
||||
"domainname": "Domain",
|
||||
"domainpath": "Domain",
|
||||
"dpd": "Dead Peer Detection",
|
||||
"driver": "Driver",
|
||||
"egressdefaultpolicy": "Egress Default Policy",
|
||||
"email": "Email",
|
||||
"enddate": "End Date",
|
||||
"endip": "IPv4 End IP",
|
||||
"endipv4": "IPv4 End IP",
|
||||
"endipv6": "IPv6 End IP",
|
||||
"endpoint": "Endpoint",
|
||||
"endport": "End Port",
|
||||
"espEncryption": "ESP Encryption",
|
||||
"espHash": "ESP Hash",
|
||||
"esplifetime": "ESP Lifetime (second)",
|
||||
"esppolicy": "ESP policy",
|
||||
"expunge": "Expunge",
|
||||
"fingerprint": "FingerPrint",
|
||||
"firstname": "First Name",
|
||||
"forced": "Force Stop",
|
||||
"forceencap": "Force UDP Encapsulation of ESP Packets",
|
||||
"format": "Format",
|
||||
"fwdevicecapacity": "Capacitat",
|
||||
"fwdeviceid": "ID",
|
||||
"fwdevicename": "Type",
|
||||
"fwdevicestate": "Status",
|
||||
"gateway": "Gateway",
|
||||
"glustervolume": "Volume",
|
||||
"group": "Group",
|
||||
"gslbdomainname": "GSLB Domain Name",
|
||||
"gslblbmethod": "Algorithm",
|
||||
"gslbprovider": "GSLB service",
|
||||
"gslbproviderprivateip": "GSLB service Private IP",
|
||||
"gslbproviderpublicip": "GSLB service Public IP",
|
||||
"gslbservicetype": "Service Type",
|
||||
"guestEndIp": "Fi d'IP per a MV",
|
||||
"guestGateway": "Guest Gateway",
|
||||
"guestIpType": "Guest Type",
|
||||
"guestNetmask": "Guest Netmask",
|
||||
"guestStartIp": "Inici d'IP per a MV",
|
||||
"guestcidraddress": "Guest CIDR",
|
||||
"guestipaddress": "Guest IP Address",
|
||||
"guestiptype": "Guest Type",
|
||||
"guestnetworkid": "Network ID",
|
||||
"guestnetworkname": "Network Name",
|
||||
"guestosid": "OS Type",
|
||||
"guestvlanrange": "VLAN Range(s)",
|
||||
"haenable": "HA Enabled",
|
||||
"hahost": "HA Enabled",
|
||||
"host": "IP Address",
|
||||
"hostId": "Host",
|
||||
"hostTags": "Host Tags",
|
||||
"hostname": "Host Name",
|
||||
"hosts": "Hosts",
|
||||
"hosttags": "Host Tags",
|
||||
"hypervisor": "Hypervisor",
|
||||
"hypervisorSnapshotReserve": "Hypervisor Snapshot Reserve",
|
||||
"hypervisorsnapshotreserve": "Hypervisor Snapshot Reserve",
|
||||
"hypervisortype": "Hypervisor",
|
||||
"hypervisorversion": "Hypervisor version",
|
||||
"hypervnetworklabel": "HyperV Traffic Label",
|
||||
"icmpcode": "ICMP Code",
|
||||
"icmptype": "ICMP Type",
|
||||
"id": "ID",
|
||||
"ikeDh": "IKE DH",
|
||||
"ikeEncryption": "IKE Encryption",
|
||||
"ikeHash": "IKE Hash",
|
||||
"ikelifetime": "IKE lifetime (second)",
|
||||
"ikepolicy": "IKE policy",
|
||||
"insideportprofile": "Inside Port Profile",
|
||||
"instancename": "Internal name",
|
||||
"instanceport": "Instance Port",
|
||||
"instances": "Instances",
|
||||
"internaldns1": "Internal DNS 1",
|
||||
"internaldns2": "Internal DNS 2",
|
||||
"interval": "Polling Interval (in sec)",
|
||||
"intervaltype": "Interval Type",
|
||||
"ip": "IP Address",
|
||||
"ip4Netmask": "IPv4 Netmask",
|
||||
"ip4dns1": "IPv4 DNS1",
|
||||
"ip4dns2": "IPv4 DNS2",
|
||||
"ip4gateway": "IPv4 Gateway",
|
||||
"ip6address": "IPv6 IP Address",
|
||||
"ip6cidr": "IPv6 CIDR",
|
||||
"ip6dns1": "IPv6 DNS1",
|
||||
"ip6dns2": "IPv6 DNS2",
|
||||
"ip6gateway": "IPv6 Gateway",
|
||||
"ipLimit": "Public IP Limits",
|
||||
"ipaddress": "IP Address",
|
||||
"ipaddress1": "IP Address",
|
||||
"ipaddress2": "IP Address",
|
||||
"ipsecpsk": "IPsec Preshared-Key",
|
||||
"iptotal": "Total of IP Addresses",
|
||||
"iqn": "Target IQN",
|
||||
"isAdvanced": "Show advanced settings",
|
||||
"isBootable": "Bootable",
|
||||
"isCustomized": "Custom Disk Size",
|
||||
"isCustomizedIops": "Custom IOPS",
|
||||
"isDedicated": "Dedicate",
|
||||
"isExtractable": "Es pot extreure",
|
||||
"isFeatured": "Featured",
|
||||
"isForced": "Force Remove",
|
||||
"isManaged": "Managed",
|
||||
"isPasswordEnabled": "Password Enabled",
|
||||
"isPersistent": "Persistent ",
|
||||
"isPublic": "Public",
|
||||
"isVolatile": "Volatile",
|
||||
"iscustomized": "Custom Disk Size",
|
||||
"iscustomizediops": "Custom IOPS",
|
||||
"isdedicated": "Dedicat",
|
||||
"isdefault": "Is Default",
|
||||
"isdynamicallyscalable": "Dynamically Scalable",
|
||||
"isextractable": "extractable",
|
||||
"isfeatured": "Featured",
|
||||
"iso": "ISO",
|
||||
"isolatedpvlanId": "Secondary Isolated VLAN ID",
|
||||
"isolationmethods": "Isolation method",
|
||||
"isolationuri": "Isolation URI",
|
||||
"isoname": "Attached ISO",
|
||||
"ispersistent": "Persistent ",
|
||||
"isportable": "Cross Zones",
|
||||
"ispublic": "Public",
|
||||
"isready": "Preparat",
|
||||
"isredundantrouter": "Redundant Router",
|
||||
"isrouting": "Routing",
|
||||
"issourcenat": "Source NAT",
|
||||
"isstaticnat": "Static NAT",
|
||||
"issystem": "Is System",
|
||||
"isvolatile": "Volatile",
|
||||
"key": "Clau",
|
||||
"keyboardType": "Tipus de teclat",
|
||||
"keypair": "SSH Key Pair",
|
||||
"kvmnetworklabel": "KVM traffic label",
|
||||
"l2gatewayserviceuuid": "L2 Gateway Service Uuid",
|
||||
"l3gatewayserviceuuid": "L3 Gateway Service Uuid",
|
||||
"last_updated": "Last Update",
|
||||
"lastname": "Last Name",
|
||||
"lbType": "Load Balancer Type",
|
||||
"lbdevicecapacity": "Capacitat",
|
||||
"lbdevicededicated": "Dedicat",
|
||||
"lbdeviceid": "ID",
|
||||
"lbdevicename": "Type",
|
||||
"lbdevicestate": "Status",
|
||||
"level": "Level",
|
||||
"limitcpuuse": "CPU Cap",
|
||||
"linklocalip": "Link Local IP Address",
|
||||
"loadbalancerinstance": "Assigned VMs",
|
||||
"loadbalancerrule": "Load balancing rule",
|
||||
"localstorageenabled": "Enable local storage for User VMs",
|
||||
"localstorageenabledforsystemvm": "Enable local storage for System VMs",
|
||||
"lun": "LUN #",
|
||||
"lxcnetworklabel": "LXC Traffic Label",
|
||||
"makeredundant": "Make redundant",
|
||||
"maxInstance": "Max Instances",
|
||||
"maxIops": "Max IOPS",
|
||||
"maxerrorretry": "Max Error Retry",
|
||||
"maxguestslimit": "Max guest limit",
|
||||
"maxiops": "Max IOPS",
|
||||
"memallocated": "Mem Allocation",
|
||||
"memory": "Memory (in MB)",
|
||||
"memoryLimit": "Memory limits (MiB)",
|
||||
"memoryallocated": "Memory Allocated",
|
||||
"memoryallocatedgb": "Allocated",
|
||||
"memorymaxdeviation": "Deviation",
|
||||
"memorytotal": "Allocated",
|
||||
"memorytotalgb": "Total",
|
||||
"memoryused": "Used",
|
||||
"memoryusedgb": "Used",
|
||||
"memused": "Mem Usage",
|
||||
"minInstance": "Min Instances",
|
||||
"minIops": "Min IOPS",
|
||||
"min_balance": "Min Balance",
|
||||
"miniops": "Min IOPS",
|
||||
"name": "Name",
|
||||
"nat": "BigSwitch BCF NAT Enabled",
|
||||
"netmask": "Netmask",
|
||||
"network": "Network",
|
||||
"networkDomain": "Network Domain",
|
||||
"networkLimit": "Network limits",
|
||||
"networkOfferingId": "Network Offering",
|
||||
"networkRate": "Velocitat de xarxa",
|
||||
"networkcidr": "Network CIDR",
|
||||
"networkdevicetype": "Type",
|
||||
"networkdomain": "Network Domain",
|
||||
"networkdomaintext": "Network domain",
|
||||
"networkid": "Select Tier",
|
||||
"networkkbsread": "Network Read",
|
||||
"networkkbswrite": "Network Write",
|
||||
"networkname": "Network Name",
|
||||
"networkofferingdisplaytext": "Network Offering",
|
||||
"networkofferingid": "Network Offering",
|
||||
"networkofferingidText": "Network Offering ID",
|
||||
"networkofferingname": "Network Offering",
|
||||
"networkrate": "Velocitat de xarxa",
|
||||
"networkread": "Read",
|
||||
"networktype": "Network Type",
|
||||
"networkwrite": "Write",
|
||||
"newDiskOffering": "New Disk Offering",
|
||||
"newdiskoffering": "New Offering",
|
||||
"newsize": "New Size (GB)",
|
||||
"nfsCacheNfsServer": "S3 NFS Server",
|
||||
"nfsCachePath": "S3 NFS Path",
|
||||
"nfsCacheZoneid": "Zone",
|
||||
"nfsServer": "Server",
|
||||
"nicAdapterType": "Tipus de tarja de xarxa",
|
||||
"number": "#Rule",
|
||||
"numberOfRouterRequiresUpgrade": "Total of Virtual Routers that require upgrade",
|
||||
"numretries": "Number of Retries",
|
||||
"nvpdeviceid": "ID",
|
||||
"offerHA": "Offer HA",
|
||||
"offerha": "Offer HA",
|
||||
"osTypeId": "OS Type",
|
||||
"oscategoryid": "OS Preference",
|
||||
"ostypeid": "OS Type",
|
||||
"ostypename": "OS Type",
|
||||
"overrideguesttraffic": "Override Guest-Traffic",
|
||||
"overridepublictraffic": "Override Public-Traffic",
|
||||
"ovm3cluster": "Native Clustering",
|
||||
"ovm3networklabel": "OVM3 traffic label",
|
||||
"ovm3pool": "Native Pooling",
|
||||
"ovm3vip": "Master Vip IP",
|
||||
"ovmnetworklabel": "OVM traffic label",
|
||||
"palp": "Palo Alto Log Profile",
|
||||
"parentName": "Parent",
|
||||
"passive": "Passive",
|
||||
"password": "Password",
|
||||
"password-confirm": "Confirmar contrasenya",
|
||||
"passwordenabled": "Password Enabled",
|
||||
"path": "Path",
|
||||
"patp": "Palo Alto Threat Profile",
|
||||
"pavr": "Router virtual",
|
||||
"pciDevice": "GPU",
|
||||
"perfectForwardSecrecy": "Perfect Forward Secrecy",
|
||||
"physicalNetworkId": "Physical Network",
|
||||
"physicalnetworkid": "Physical Network",
|
||||
"physicalsize": "Physical Size",
|
||||
"plannerMode": "Planner mode",
|
||||
"podId": "Pod",
|
||||
"podname": "Pod",
|
||||
"port": "Port",
|
||||
"portableipaddress": "Portable IPs",
|
||||
"powerstate": "Power State",
|
||||
"primaryStorageLimit": "Primary Storage limits (GiB)",
|
||||
"primarystoragetotal": "Primary Storage",
|
||||
"privateinterface": "Private Interface",
|
||||
"privateip": "Private IP Address",
|
||||
"privatekey": "Private Key",
|
||||
"privatenetwork": "Xarxa privada",
|
||||
"privateport": "Private Port",
|
||||
"profiledn": "Associated Profile",
|
||||
"profilename": "Profile",
|
||||
"project": "Projecte",
|
||||
"projectId": "Projecte",
|
||||
"projectid": "ID de projecte",
|
||||
"projects": "Projectes",
|
||||
"property": "Property",
|
||||
"protocol": "Protocol",
|
||||
"protocolnumber": "#Protocol",
|
||||
"provider": "Provider",
|
||||
"providername": "Provider",
|
||||
"provisioningType": "Provisioning Type",
|
||||
"provisioningtype": "Provisioning Type",
|
||||
"publicinterface": "Public Interface",
|
||||
"publicip": "IP Address",
|
||||
"publickey": "Public Key",
|
||||
"publicnetwork": "Xarxa p\u00fablica",
|
||||
"publicport": "Public Port",
|
||||
"purpose": "Purpose",
|
||||
"qosType": "QoS Type",
|
||||
"quiescevm": "Quiesce VM",
|
||||
"quietTime": "Quiet Time (in sec)",
|
||||
"quota": "Quota Value",
|
||||
"quota_enforce": "Enforce Quota",
|
||||
"rbdid": "Cephx user",
|
||||
"rbdmonitor": "Ceph monitor",
|
||||
"rbdpool": "Ceph pool",
|
||||
"rbdsecret": "Cephx secret",
|
||||
"reason": "Reason",
|
||||
"receivedbytes": "Bytes Received",
|
||||
"redundantRouterState": "Estat redundant",
|
||||
"redundantrouter": "Redundant Router",
|
||||
"redundantstate": "Estat redundant",
|
||||
"redundantvpcrouter": "Redundant VPC",
|
||||
"reenterpassword": "Re-enter Password",
|
||||
"relationaloperator": "Operator",
|
||||
"requireshvm": "HVM",
|
||||
"requiresupgrade": "Requires Upgrade",
|
||||
"reservedSystemEndIp": "End Reserved system IP",
|
||||
"reservedSystemGateway": "Pasarel\u00b7la reservada del sistema",
|
||||
"reservedSystemNetmask": "M\u00e0scara reservada del sistema",
|
||||
"reservedSystemStartIp": "Start Reserved system IP",
|
||||
"reservediprange": "Reserved IP Range",
|
||||
"resourceid": "Resource ID",
|
||||
"resourcename": "Resource Name",
|
||||
"resourcestate": "Resource state",
|
||||
"restartrequired": "Restart required",
|
||||
"role": "Role",
|
||||
"rolename": "Role",
|
||||
"roletype": "Role Type",
|
||||
"rootDiskControllerType": "Controlador de disc arrel",
|
||||
"rootDiskControllerTypeKVM": "Controlador de disc arrel",
|
||||
"routerCount": "Total of Virtual Routers",
|
||||
"routerRequiresUpgrade": "Upgrade is required",
|
||||
"routerType": "Type",
|
||||
"samlEnable": "Authorize SAML SSO",
|
||||
"samlEntity": "Identity Provider",
|
||||
"scope": "Scope",
|
||||
"secondaryStorageLimit": "Secondary Storage limits (GiB)",
|
||||
"secondaryips": "Secondary IPs",
|
||||
"secretkey": "Secret Key",
|
||||
"securityGroups": "Security Groups",
|
||||
"securitygroup": "Security Group",
|
||||
"sent": "Date",
|
||||
"sentbytes": "Bytes Sent",
|
||||
"server": "Server",
|
||||
"service.Connectivity.distributedRouterCapabilityCheckbox": "Distributed Router",
|
||||
"service.Connectivity.regionLevelVpcCapabilityCheckbox": "Region Level VPC",
|
||||
"service.Lb.elasticLbCheckbox": "Elastic LB",
|
||||
"service.Lb.inlineModeDropdown": "Mode",
|
||||
"service.Lb.lbIsolationDropdown": "LB isolation",
|
||||
"service.SourceNat.redundantRouterCapabilityCheckbox": "Redundant router capability",
|
||||
"service.SourceNat.sourceNatTypeDropdown": "Supported Source NAT type",
|
||||
"service.StaticNat.associatePublicIP": "Associate Public IP",
|
||||
"service.StaticNat.elasticIpCheckbox": "Elastic IP",
|
||||
"serviceCapabilities": "Service Capabilities",
|
||||
"serviceOfferingId": "Compute offering",
|
||||
"servicelist": "Services",
|
||||
"serviceofferingid": "Compute offering",
|
||||
"serviceofferingname": "Compute offering",
|
||||
"shrinkok": "Shrink OK",
|
||||
"size": "Size",
|
||||
"sizegb": "Size",
|
||||
"smbDomain": "SMB Domain",
|
||||
"smbPassword": "SMB Password",
|
||||
"smbUsername": "SMB Username",
|
||||
"snapshotLimit": "Snapshot Limits",
|
||||
"snapshotMemory": "Snapshot memory",
|
||||
"snmpCommunity": "SNMP Community",
|
||||
"snmpPort": "SNMP Port",
|
||||
"sockettimeout": "Socket Timeout",
|
||||
"sourceNat": "Source NAT",
|
||||
"sourceipaddress": "Source IP Address",
|
||||
"sourceport": "Source Port",
|
||||
"specifyVlan": "Specify VLAN",
|
||||
"specifyipranges": "Specify IP ranges",
|
||||
"specifyvlan": "Specify VLAN",
|
||||
"sshkeypair": "New SSH Key Pair",
|
||||
"startdate": "Start Date",
|
||||
"startip": "IPv4 Start IP",
|
||||
"startipv4": "IPv4 Start IP",
|
||||
"startipv6": "IPv6 Start IP",
|
||||
"startport": "Start Port",
|
||||
"startquota": "Quota Value",
|
||||
"state": "State",
|
||||
"status": "Status",
|
||||
"storage": "Storage",
|
||||
"storageId": "Primary Storage",
|
||||
"storagePool": "Storage Pool",
|
||||
"storageTags": "Storage Tags",
|
||||
"storageType": "Storage Type",
|
||||
"storagetype": "Storage Type",
|
||||
"subdomainaccess": "Acc\u00e9s de subdomini",
|
||||
"supportedServices": "Supported Services",
|
||||
"supportspublicaccess": "Supports Public Access",
|
||||
"supportsregionLevelvpc": "Supports Region Level VPC",
|
||||
"supportsstrechedl2subnet": "Supports Streched L2 Subnet",
|
||||
"systemvmtype": "Type",
|
||||
"tags": "Storage Tags",
|
||||
"tariffValue": "Tariff Value",
|
||||
"template": "Sel\u00b7leccioni una plantilla",
|
||||
"templateFileUpload": "Local file",
|
||||
"templateLimit": "Template Limits",
|
||||
"templateNames": "Template",
|
||||
"templatebody": "Body",
|
||||
"templatedn": "Select Template",
|
||||
"templatename": "Template",
|
||||
"templatesubject": "Subject",
|
||||
"templatetotal": "Template",
|
||||
"templatetype": "Email Template",
|
||||
"tftpdir": "Tftp root directory",
|
||||
"threshold": "Threshold",
|
||||
"tierName": "Tier",
|
||||
"timeout": "Timeout",
|
||||
"timezone": "Timezone",
|
||||
"token": "Token",
|
||||
"totalCPU": "Total de CPU",
|
||||
"traffictype": "Traffic Type",
|
||||
"transportzoneuuid": "Transport Zone Uuid",
|
||||
"type": "Type",
|
||||
"unit": "Usage Unit",
|
||||
"url": "URL",
|
||||
"usageName": "Usage Type",
|
||||
"usageUnit": "Unit",
|
||||
"usageinterface": "Usage Interface",
|
||||
"useNewDiskOffering": "Replace disk offering?",
|
||||
"useVpc": "VPC",
|
||||
"usehttps": "Use HTTPS",
|
||||
"userDataL2": "User Data",
|
||||
"username": "Username",
|
||||
"utilization": "Utilisation",
|
||||
"uuid": "ID",
|
||||
"vCenterDataCenter": "vCenter Datacenter",
|
||||
"vCenterDataStore": "vCenter Datastore",
|
||||
"vCenterDatacenter": "vCenter Datacenter",
|
||||
"vCenterHost": "vCenter Host",
|
||||
"vCenterPassword": "vCenter Password",
|
||||
"vCenterUsername": "vCenter Username",
|
||||
"vSwitchGuestName": "Guest Traffic vSwitch Name",
|
||||
"vSwitchGuestType": "Guest Traffic vSwitch Type",
|
||||
"vSwitchPublicName": "Public Traffic vSwitch Name",
|
||||
"vSwitchPublicType": "Public Traffic vSwitch Type",
|
||||
"value": "Credits",
|
||||
"vcenter": "VMware datacenter vcenter",
|
||||
"vcenterHost": "ESX/ESXi Host",
|
||||
"vcsdeviceid": "ID",
|
||||
"version": "Version",
|
||||
"vgpu": "VGPU",
|
||||
"vgpuType": "vGPU type",
|
||||
"virtualMachineId": "Instance",
|
||||
"virtualmachinedisplayname": "VM name",
|
||||
"virtualmachineid": "VM ID",
|
||||
"virtualsize": "Virtual Size",
|
||||
"vlan": "VLAN/VNI",
|
||||
"vlanId": "VLAN/VNI ID",
|
||||
"vlanRange": "VLAN/VNI Range",
|
||||
"vlanname": "VLAN",
|
||||
"vlanrange": "VLAN/VNI Range",
|
||||
"vmLimit": "Instance Limits",
|
||||
"vmTotal": "Instances",
|
||||
"vmdisplayname": "VM display name",
|
||||
"vmipaddress": "VM IP Address",
|
||||
"vmname": "VM Name",
|
||||
"vmstate": "VM state",
|
||||
"vmtotal": "Total of VMs",
|
||||
"vmwaredcId": "VMware datacenter ID",
|
||||
"vmwaredcName": "VMware datacenter Name",
|
||||
"vmwaredcVcenter": "VMware datacenter vcenter",
|
||||
"vmwarenetworklabel": "VMware traffic label",
|
||||
"volume": "Volume",
|
||||
"volumeFileUpload": "Local file",
|
||||
"volumeLimit": "Volume Limits",
|
||||
"volumeTotal": "Volumes",
|
||||
"volumegroup": "Volume Group",
|
||||
"volumename": "Volume Name",
|
||||
"volumetotal": "Volume",
|
||||
"vpcLimit": "VPC limits",
|
||||
"vpcid": "VPC ID",
|
||||
"vpcname": "VPC",
|
||||
"vpcoffering": "VPC Offering",
|
||||
"vpncustomergatewayid": "VPN Customer Gateway",
|
||||
"vsmctrlvlanid": "Control VLAN ID",
|
||||
"vsmdeviceid": "Name",
|
||||
"vsmdevicestate": "State",
|
||||
"vsmipaddress": "Nexus 1000v IP Address",
|
||||
"vsmipaddress_req": "Nexus 1000v IP Address",
|
||||
"vsmpassword": "Nexus 1000v Password",
|
||||
"vsmpassword_req": "Nexus 1000v Password",
|
||||
"vsmpktvlanid": "Packet VLAN ID",
|
||||
"vsmstoragevlanid": "Storage VLAN ID",
|
||||
"vsmusername": "Nexus 1000v Username",
|
||||
"vsmusername_req": "Nexus 1000v Username",
|
||||
"xennetworklabel": "XenServer traffic label",
|
||||
"xenserverToolsVersion61plus": "Original XS Version is 6.1+",
|
||||
"zone": "Zone",
|
||||
"zoneId": "Zone",
|
||||
"zoneid": "Zone",
|
||||
"zonename": "Zone"
|
||||
}
|
||||
|
|
@ -0,0 +1,639 @@
|
|||
{
|
||||
"Accounts": "Benutzerkonten",
|
||||
"Affinity Groups": "Affinit\u00e4tsgruppen",
|
||||
"Alerts": "Alarme",
|
||||
"CPU Sockets": "CPU-Sockets",
|
||||
"Cloudian Storage": "Cloudian Storage",
|
||||
"Clusters": "Cluster",
|
||||
"Compute": "Berechnen",
|
||||
"Compute Offerings": "Berechnungsangebote",
|
||||
"Configuration": "Konfiguration",
|
||||
"Dashboard": "Dashboard",
|
||||
"Disk Offerings": "Festplattenangebote",
|
||||
"Domains": "Domains",
|
||||
"Events": "Events",
|
||||
"Global Settings": "Allgemeine Einstellungen",
|
||||
"Hosts": "Hosts",
|
||||
"Hypervisor Capabilities": "Hypervisorf\u00e4higkeiten",
|
||||
"ISOs": "ISOs",
|
||||
"Identity and Access": "Identity and Access",
|
||||
"Infrastructure": "Infrastruktur",
|
||||
"Instances": "Instanzen",
|
||||
"LDAP Configuration": "LDAP-Konfiguration",
|
||||
"Management Servers": "Management Servers",
|
||||
"Monitor": "Monitor",
|
||||
"Network": "Netzwerk",
|
||||
"Network Offerings": "Netzwerkangebote",
|
||||
"Plugins": "Plugins",
|
||||
"Pods": "Pod",
|
||||
"Primary Storage": "Hauptspeicher",
|
||||
"Projects": "Projekte",
|
||||
"Public IP Addresses": "\u00d6ffentliche IP-Adressen",
|
||||
"Public network": "\u00d6ffentliches Netzwerk",
|
||||
"Quota": "Quota",
|
||||
"RESOURCE_NAME": "Ressourcenname",
|
||||
"Roles": "Rollen",
|
||||
"SSH Key Pairs": "SSH-Schl\u00fcsselpaare",
|
||||
"Secondary Storage": "Sekund\u00e4rspeicher",
|
||||
"Security Groups": "Sicherheitsgruppen",
|
||||
"Snapshots": "Schnappsch\u00fcsse",
|
||||
"Storage": "Speicher",
|
||||
"System Offerings": "Systemangebote",
|
||||
"System VMs": "System-VMs",
|
||||
"Templates": "Vorlagen",
|
||||
"Users": "Benutzer",
|
||||
"VM Snapshots": "VM-Schnappsch\u00fcsse",
|
||||
"VPC": "VPC",
|
||||
"VPC Offerings": "VPC-Angebote",
|
||||
"VPN Gateway": "VPN-Gateway",
|
||||
"Virtual Routers": "Virtuelle Router",
|
||||
"Volumes": "Volumina",
|
||||
"Zones": "Zonen",
|
||||
"accesskey": "Zugriffsschl\u00fcssel",
|
||||
"account": "Benutzerkonto",
|
||||
"accountId": "Benutzerkonto",
|
||||
"accountTotal": "Benutzerkonten",
|
||||
"accountlist": "Benutzerkonten",
|
||||
"accounts": "Benutzerkonten",
|
||||
"accounttype": "Benutzerkontotyp",
|
||||
"aclTotal": "Netzwerk-ACL Total",
|
||||
"aclid": "ACL",
|
||||
"aclname": "ACL-Name",
|
||||
"action": "Aktion",
|
||||
"activeviewersessions": "Aktive Sitzungen",
|
||||
"add-scaleDowncondition": "Hinzuf\u00fcgen",
|
||||
"add-scaleUpcondition": "Hinzuf\u00fcgen",
|
||||
"address": "Adresse",
|
||||
"admin": "Domain Administrator",
|
||||
"agentPassword": "Agent-Passwort",
|
||||
"agentPort": "Agent-Port",
|
||||
"agentUsername": "Agent-Benutzername",
|
||||
"agentstate": "Agent-Status",
|
||||
"algorithm": "Algorithmus",
|
||||
"allocationstate": "Belegungszustand",
|
||||
"apikey": "API Schl\u00fcssel",
|
||||
"associatednetworkid": "Assozierte Netzwerk ID",
|
||||
"associatednetworkname": "Netzwerk Name",
|
||||
"availability": "Verf\u00fcgbarkeit",
|
||||
"availabilityZone": "Verf\u00fcgbare Zone",
|
||||
"balance": "Abgleich",
|
||||
"baremetalCpu": "CPU (in MHz)",
|
||||
"baremetalCpuCores": "Anzahl an CPU-Kernen",
|
||||
"baremetalMAC": "Host-MAC",
|
||||
"baremetalMemory": "Speicher (in MB)",
|
||||
"bcfdeviceid": "Identifikation",
|
||||
"bladeid": "Blade ID",
|
||||
"bootable": "Bootbar",
|
||||
"broadcastdomainrange": "Broadcast-Domain Bereich",
|
||||
"broadcastdomaintype": "Broadcast Domain Typ",
|
||||
"broadcasturi": "Broadcast URI",
|
||||
"bucket": "Bucket",
|
||||
"cacheMode": "Schreib-Cache-Typ",
|
||||
"capacity": "Kapazit\u00e4t",
|
||||
"capacityBytes": "Kapazit\u00e4ts-Bytes",
|
||||
"capacityIops": "Kapazit\u00e4ts-IOPS",
|
||||
"capacityiops": "Gesamte IOPS",
|
||||
"chassis": "Chassis",
|
||||
"checksum": "Pr\u00fcfsumme",
|
||||
"cidr": "CIDR",
|
||||
"cidrlist": "CIDR-Liste",
|
||||
"cleanup": "Bereinigen",
|
||||
"clusterId": "Cluster",
|
||||
"clusterid": "Cluster",
|
||||
"clustername": "Cluster",
|
||||
"clusters": "Cluster",
|
||||
"clustertype": "Cluster-Typ",
|
||||
"connectiontimeout": "Verbindungszeit\u00fcberschreitung",
|
||||
"conservemode": "Konserven-Modus",
|
||||
"counterid": "Z\u00e4hler",
|
||||
"cpuCap": "CPU Obergrenze",
|
||||
"cpuLimit": "CPU-Begrenzungen",
|
||||
"cpuNumber": "Anzahl an CPU-Kernen",
|
||||
"cpuSpeed": "CPU (in MHz)",
|
||||
"cpuallocated": "CPU alloziert f\u00fcr VMs",
|
||||
"cpuallocatedghz": "Zugeteilt",
|
||||
"cpumaxdeviation": "Abweichung",
|
||||
"cpunumber": "Anzahl an CPU-Kernen",
|
||||
"cpusockets": "Die Anzahl der CPU-Sockeln",
|
||||
"cpuspeed": "CPU (in MHz)",
|
||||
"cputotal": "Gesamt",
|
||||
"cputotalghz": "Gesamt",
|
||||
"cpuused": "genutzte CPU",
|
||||
"cpuusedghz": "Gebraucht",
|
||||
"createNfsCache": "NFS sekund\u00e4rer Staging Store erstellen",
|
||||
"created": "Datum",
|
||||
"credit": "Guthaben",
|
||||
"crossZones": "\u00fcberschneidende Zonen",
|
||||
"current": "istAktuell",
|
||||
"date": "Datum",
|
||||
"dedicated": "Dediziert",
|
||||
"deleteprofile": "Profil l\u00f6schen",
|
||||
"deploymentPlanner": "Deployment-Planer",
|
||||
"deploymentplanner": "Deployment-Planer",
|
||||
"description": "Beschreibung",
|
||||
"destinationZoneId": "Zielzone",
|
||||
"destinationphysicalnetworkid": "Physiche Netzwerk-ID des Zielorts",
|
||||
"destroyVMgracePeriod": "Gnadenfrist bis zur Zerst\u00f6rung der VM",
|
||||
"details": "Details",
|
||||
"deviceid": "Ger\u00e4te-ID",
|
||||
"directdownload": "Direct Download",
|
||||
"disconnected": "Zuletzt getrennt",
|
||||
"disk": "Disk",
|
||||
"diskBytesReadRate": "Festplatten-Leserate (BPS)",
|
||||
"diskBytesWriteRate": "Festplatten-Schreibrate (BPS)",
|
||||
"diskIopsReadRate": "Festplatten-Leserate (IOPS)",
|
||||
"diskIopsWriteRate": "Festplatten-Schreibrate (IOPS)",
|
||||
"diskOffering": "Festplattenangebot",
|
||||
"diskOfferingId": "Festplattenangebote",
|
||||
"diskSize": "Festplattengr\u00f6\u00dfe (in GB)",
|
||||
"diskiopstotal": "IOPS",
|
||||
"diskioread": "Festplatte Lesen (EA)",
|
||||
"diskiowrite": "Festplatte Schreiben (EA)",
|
||||
"diskkbsread": "Festplatte Lesen (Bytes)",
|
||||
"diskkbswrite": "Festplatte Schreiben (Bytes)",
|
||||
"diskofferingdisplaytext": "Festplattenangebot",
|
||||
"disksize": "Festplattengr\u00f6\u00dfe (in GB)",
|
||||
"disksizeallocated": "Zugeordnete Festplatte",
|
||||
"disksizeallocatedgb": "Zugeteilt",
|
||||
"disksizetotal": "Gesamtzahl der Festplatten",
|
||||
"disksizetotalgb": "Gesamt",
|
||||
"disksizeunallocatedgb": "Unbelegt",
|
||||
"disksizeusedgb": "Gebraucht",
|
||||
"displayText": "Beschreibung",
|
||||
"displayname": "Anzeigename",
|
||||
"displaytext": "Beschreibung",
|
||||
"distributedvpcrouter": "Verteilter VPC-Router",
|
||||
"dns1": "DNS 1",
|
||||
"dns2": "DNS 2",
|
||||
"domain": "Domain",
|
||||
"domainId": "Domain",
|
||||
"domainid": "Domain",
|
||||
"domainname": "Domain",
|
||||
"domainpath": "Domain",
|
||||
"dpd": "Dead-Peer-Erkennung",
|
||||
"driver": "Treiber",
|
||||
"egressdefaultpolicy": "Egress Standard Richtlinie",
|
||||
"email": "E-Mail",
|
||||
"enddate": "Enddatum",
|
||||
"endip": "IPv4 End-IP",
|
||||
"endipv4": "IPv4 End-IP",
|
||||
"endipv6": "IPv6 End-IP",
|
||||
"endpoint": "Endpunkt",
|
||||
"endport": "Beende Port",
|
||||
"espEncryption": "ESP-Verschl\u00fcsselung",
|
||||
"espHash": "ESP-Pr\u00fcfsumme",
|
||||
"esplifetime": "ESP-Lebensdauer (Sekunde)",
|
||||
"esppolicy": "ESP-Richtlinie",
|
||||
"expunge": "Unwiederbringlich l\u00f6schen",
|
||||
"fingerprint": "FingerAbdruck",
|
||||
"firstname": "Vorname",
|
||||
"forced": "Erzwinge Stopp",
|
||||
"forceencap": "Erzwinge eine Kapselung der UDP- in ESP-Pakete",
|
||||
"format": "Format",
|
||||
"fwdevicecapacity": "Kapazit\u00e4t",
|
||||
"fwdeviceid": "Identifikation",
|
||||
"fwdevicename": "Typ",
|
||||
"fwdevicestate": "Status",
|
||||
"gateway": "Schnittstelle",
|
||||
"glustervolume": "Volume",
|
||||
"group": "Gruppe",
|
||||
"gslbdomainname": "GSLB-Dom\u00e4nenname",
|
||||
"gslblbmethod": "Algorithmus",
|
||||
"gslbprovider": "GSLB-Dienst",
|
||||
"gslbproviderprivateip": "GSLB-Dienst Private IP",
|
||||
"gslbproviderpublicip": "GSLB-Dienst \u00d6ffentliche IP",
|
||||
"gslbservicetype": "Diensttyp",
|
||||
"guestEndIp": "Gast-End-IP",
|
||||
"guestGateway": "Gast-Schnittstelle",
|
||||
"guestIpType": "Gasttyp",
|
||||
"guestNetmask": "Gast Netzmaske",
|
||||
"guestStartIp": "Gast-Start-IP",
|
||||
"guestcidraddress": "Gast CIDR",
|
||||
"guestipaddress": "Gast IP-Adresse",
|
||||
"guestiptype": "Gasttyp",
|
||||
"guestnetworkid": "Netzwerk-ID",
|
||||
"guestnetworkname": "Netzwerk Name",
|
||||
"guestosid": "OS Typ",
|
||||
"guestvlanrange": "VLAN-Bereich(e)",
|
||||
"haenable": "HA aktiviert",
|
||||
"hahost": "HA aktiviert",
|
||||
"host": "IP-Adresse",
|
||||
"hostId": "Host",
|
||||
"hostTags": "Markierungen des Hosts",
|
||||
"hostname": "Host Name",
|
||||
"hosts": "Hosts",
|
||||
"hosttags": "Markierungen des Hosts",
|
||||
"hypervisor": "Hypervisor",
|
||||
"hypervisorSnapshotReserve": "Hypervisor Schnappschuss-Reserve",
|
||||
"hypervisorsnapshotreserve": "Hypervisor Schnappschuss-Reserve",
|
||||
"hypervisortype": "Hypervisor",
|
||||
"hypervisorversion": "Hypervisor-Version",
|
||||
"hypervnetworklabel": "HyperV Datenverkehrs-Bezeichnung",
|
||||
"icmpcode": "ICMP-Code",
|
||||
"icmptype": "ICMP-Typ",
|
||||
"id": "Identifikation",
|
||||
"ikeDh": "IKE DH",
|
||||
"ikeEncryption": "IKE-Verschl\u00fcsselung",
|
||||
"ikeHash": "IKE-Pr\u00fcfsumme",
|
||||
"ikelifetime": "IKE-Lebensdauer (Sekunde)",
|
||||
"ikepolicy": "IKE-Richtlinie",
|
||||
"insideportprofile": "Inside Port Profil",
|
||||
"instancename": "Interner Name",
|
||||
"instanceport": "Instanz-Port",
|
||||
"instances": "Instanzen",
|
||||
"internaldns1": "Interner DNS 1",
|
||||
"internaldns2": "Interner DNS 2",
|
||||
"interval": "Abfrageintervall (in Sekunden)",
|
||||
"intervaltype": "Interval Typ",
|
||||
"ip": "IP-Adresse",
|
||||
"ip4Netmask": "IPv4-Netzmaske",
|
||||
"ip4dns1": "IPv4 DNS1",
|
||||
"ip4dns2": "IPv4 DNS2",
|
||||
"ip4gateway": "IPv4 Gateway",
|
||||
"ip6address": "IPv6-IP-Adresse",
|
||||
"ip6cidr": "IPv6-CIDR",
|
||||
"ip6dns1": "IPv6 DNS1",
|
||||
"ip6dns2": "IPv6 DNS2",
|
||||
"ip6gateway": "IPv6-Gateway",
|
||||
"ipLimit": "\u00d6ffentliche IP-Begrenzungen",
|
||||
"ipaddress": "IP-Adresse",
|
||||
"ipaddress1": "IP-Adresse",
|
||||
"ipaddress2": "IP-Adresse",
|
||||
"ipsecpsk": "IPsec Preshared-Schl\u00fcssel",
|
||||
"iptotal": "Gesamtzahl der IP-Adressen",
|
||||
"iqn": "Ziel-IQN",
|
||||
"isAdvanced": "Erweiterte Einstellungen anzeigen",
|
||||
"isBootable": "Bootbar",
|
||||
"isCustomized": "Benutzerdefinierte Festplattengr\u00f6sse",
|
||||
"isCustomizedIops": "Benutzerspezifische IOPS",
|
||||
"isDedicated": "Dedizieren",
|
||||
"isExtractable": "Extrahierbar",
|
||||
"isFeatured": "Empfohlen",
|
||||
"isForced": "Erzwinge Entfernung",
|
||||
"isManaged": "Verwaltet",
|
||||
"isPasswordEnabled": "Passwort aktiviert",
|
||||
"isPersistent": "Persistent",
|
||||
"isPublic": "\u00d6ffentlich",
|
||||
"isVolatile": "Verg\u00e4nglich",
|
||||
"iscustomized": "Benutzerdefinierte Festplattengr\u00f6sse",
|
||||
"iscustomizediops": "Benutzerspezifische IOPS",
|
||||
"isdedicated": "Dediziert",
|
||||
"isdefault": "Ist vorgegeben",
|
||||
"isdynamicallyscalable": "Dynamisch skalierbar",
|
||||
"isextractable": "extrahierbar",
|
||||
"isfeatured": "Empfohlen",
|
||||
"iso": "ISO",
|
||||
"isolatedpvlanId": "Sekund\u00e4re isolierte VLAN ID",
|
||||
"isolationmethods": "Isolationsmethode",
|
||||
"isolationuri": "Isolations-URI",
|
||||
"isoname": "Angeh\u00e4ngte ISO",
|
||||
"ispersistent": "Persistent",
|
||||
"isportable": "\u00fcberschneidende Zonen",
|
||||
"ispublic": "\u00d6ffentlich",
|
||||
"isready": "Bereit",
|
||||
"isredundantrouter": "Redundanter Router",
|
||||
"isrouting": "Routing",
|
||||
"issourcenat": "Source NAT",
|
||||
"isstaticnat": "Statische NAT",
|
||||
"issystem": "Ist System",
|
||||
"isvolatile": "Verg\u00e4nglich",
|
||||
"key": "Schl\u00fcssel",
|
||||
"keyboardType": "Tastaturtyp",
|
||||
"keypair": "SSH-Schl\u00fcsselpaar",
|
||||
"kvmnetworklabel": "KVM Datenverkehrs-Bezeichnung",
|
||||
"l2gatewayserviceuuid": "L2 Gateway Service Uuid",
|
||||
"l3gatewayserviceuuid": "L3 Gateway Service Uuid",
|
||||
"last_updated": "Letzte Aktualisierung",
|
||||
"lastname": "Nachname",
|
||||
"lbType": "Lastverteilungstyp",
|
||||
"lbdevicecapacity": "Kapazit\u00e4t",
|
||||
"lbdevicededicated": "Dediziert",
|
||||
"lbdeviceid": "Identifikation",
|
||||
"lbdevicename": "Typ",
|
||||
"lbdevicestate": "Status",
|
||||
"level": "Ebene",
|
||||
"limitcpuuse": "CPU Obergrenze",
|
||||
"linklocalip": "Link-Local IP-Adresse",
|
||||
"loadbalancerinstance": "Zugewiesene VMs",
|
||||
"loadbalancerrule": "Lastverteilungsregel",
|
||||
"localstorageenabled": "Erm\u00f6gliche lokalen Speicher f\u00fcr Benutzer VMs",
|
||||
"localstorageenabledforsystemvm": "Aktiviere lokaler Speicher f\u00fcr die System-VMs",
|
||||
"lun": "LUN #",
|
||||
"lxcnetworklabel": "LXC Datenverkehrs-Bezeichnung",
|
||||
"macaddress": "MAC Adresse",
|
||||
"makeredundant": "Redundant machen",
|
||||
"maxInstance": "Max Instanzen",
|
||||
"maxIops": "Max IOPS",
|
||||
"maxerrorretry": "Maximale Fehlerwiederholungen",
|
||||
"maxguestslimit": "Maximales Limit f\u00fcr Anzahl der G\u00e4ste",
|
||||
"maxiops": "Max IOPS",
|
||||
"memallocated": "Speicher Belegung",
|
||||
"memory": "Speicher (in MB)",
|
||||
"memoryLimit": "Speicherbegrenzungen (MiB)",
|
||||
"memoryallocated": "zugeordneter Speicher",
|
||||
"memoryallocatedgb": "Zugeteilt",
|
||||
"memorymaxdeviation": "Abweichung",
|
||||
"memorytotal": "Zugeteilt",
|
||||
"memorytotalgb": "Gesamt",
|
||||
"memoryused": "Gebraucht",
|
||||
"memoryusedgb": "Gebraucht",
|
||||
"memused": "Speichernutzung",
|
||||
"minInstance": "Min Instanzen",
|
||||
"minIops": "Min IOPS",
|
||||
"min_balance": "Min Abrechnung",
|
||||
"miniops": "Min IOPS",
|
||||
"name": "Name",
|
||||
"nat": "BigSwitch BCF NAT aktiviert",
|
||||
"netmask": "Netzmaske",
|
||||
"network": "Netzwerk",
|
||||
"networkDomain": "Netzwerk-Domain",
|
||||
"networkLimit": "Netzwerkbegrenzungen",
|
||||
"networkOfferingId": "Netzwerkangebot",
|
||||
"networkRate": "Netzwerk-Rate",
|
||||
"networkcidr": "Netzwerk-CIDR",
|
||||
"networkdevicetype": "Typ",
|
||||
"networkdomain": "Netzwerk-Domain",
|
||||
"networkdomaintext": "Netzwerkdom\u00e4ne",
|
||||
"networkid": "Ebene ausw\u00e4hlen",
|
||||
"networkkbsread": "Netzwerk Lesen",
|
||||
"networkkbswrite": "Netzwerk Schreiben",
|
||||
"networkname": "Netzwerk Name",
|
||||
"networkofferingdisplaytext": "Netzwerkangebot",
|
||||
"networkofferingid": "Netzwerkangebot",
|
||||
"networkofferingidText": "Netzwerkangebotskennung",
|
||||
"networkofferingname": "Netzwerkangebot",
|
||||
"networkrate": "Netzwerk-Rate",
|
||||
"networkread": "Lesen",
|
||||
"networktype": "Netzwerk-Typ",
|
||||
"networkwrite": "Schreiben",
|
||||
"newDiskOffering": "New Disk Offering",
|
||||
"newdiskoffering": "Neues Angebot",
|
||||
"newsize": "Neue Gr\u00f6\u00dfe (GB)",
|
||||
"nfsCacheNfsServer": "S3 NFS-Server",
|
||||
"nfsCachePath": "S3 NFS-Pfad",
|
||||
"nfsCacheZoneid": "Zone",
|
||||
"nfsServer": "Server",
|
||||
"nicAdapterType": "NIC-Adaptertyp",
|
||||
"number": "#Regel",
|
||||
"numberOfRouterRequiresUpgrade": "Total an virtuellen Routern, welche ein Softwareupgrade ben\u00f6tigen",
|
||||
"numretries": "Anzahl von Wiederholungen",
|
||||
"nvpdeviceid": "Identifikation",
|
||||
"offerHA": "HA anbieten",
|
||||
"offerha": "HA anbieten",
|
||||
"osTypeId": "OS Typ",
|
||||
"oscategoryid": "OS Pr\u00e4ferenz",
|
||||
"ostypeid": "OS Typ",
|
||||
"ostypename": "OS Typ",
|
||||
"overrideguesttraffic": "Gast-Datenverkehr \u00fcberschreiben",
|
||||
"overridepublictraffic": "\u00d6ffentlichen Datenverkehr \u00fcberschreiben",
|
||||
"ovm3cluster": "Natives Clustering",
|
||||
"ovm3networklabel": "OVM3 Datenverkehrs-Bezeichnung",
|
||||
"ovm3pool": "Natives Pooling",
|
||||
"ovm3vip": "Master Vip IP",
|
||||
"ovmnetworklabel": "OVM Datenverkehrs-Bezeichnung",
|
||||
"palp": "Palo Alto-Protokollprofil",
|
||||
"parentName": "\u00dcbergeordnet",
|
||||
"passive": "Passiv",
|
||||
"password": "Passwort",
|
||||
"password-confirm": "Passwort best\u00e4tigen",
|
||||
"passwordenabled": "Passwort aktiviert",
|
||||
"path": "Pfad",
|
||||
"patp": "Palo Alto Threat Profil",
|
||||
"pavr": "Virtueller Router",
|
||||
"pciDevice": "GPU",
|
||||
"perfectForwardSecrecy": "Perfect Forward Secrecy",
|
||||
"physicalNetworkId": "Physikalisches Netzwerk",
|
||||
"physicalnetworkid": "Physikalisches Netzwerk",
|
||||
"physicalsize": "Physical Size",
|
||||
"plannerMode": "Planungs Modus",
|
||||
"podId": "Pod",
|
||||
"podname": "Pod",
|
||||
"port": "Port",
|
||||
"portableipaddress": "Portable IPs",
|
||||
"powerstate": "Betriebszustand",
|
||||
"primaryStorageLimit": "Hauptspeicher-Limits (GiB)",
|
||||
"primarystoragetotal": "Hauptspeicher",
|
||||
"privateinterface": "Privates Interface",
|
||||
"privateip": "Private IP-Adresse",
|
||||
"privatekey": "Privater Schl\u00fcssel",
|
||||
"privatenetwork": "Privates Netzwerk",
|
||||
"privateport": "Privater Port",
|
||||
"profiledn": "Zugeh\u00f6riges Profil",
|
||||
"profilename": "Profil",
|
||||
"project": "Projekt",
|
||||
"projectId": "Projekt",
|
||||
"projectid": "Projektkennung",
|
||||
"projects": "Projekte",
|
||||
"property": "Eigentum",
|
||||
"protocol": "Protokoll",
|
||||
"protocolnumber": "#Protokoll",
|
||||
"provider": "Anbieter",
|
||||
"providername": "Anbieter",
|
||||
"provisioningType": "Provisionierungstyp",
|
||||
"provisioningtype": "Provisionierungstyp",
|
||||
"publicinterface": "\u00d6ffentliches Interface",
|
||||
"publicip": "IP-Adresse",
|
||||
"publickey": "\u00d6ffentlicher Schl\u00fcssel",
|
||||
"publicnetwork": "\u00d6ffentliches Netzwerk",
|
||||
"publicport": "\u00d6ffentlicher Port",
|
||||
"purpose": "Zweck",
|
||||
"qosType": "QoS-Typ",
|
||||
"quiescevm": "VM stilllegen",
|
||||
"quietTime": "Ruhezeit (in Sekunden)",
|
||||
"quota": "Wert der Quota",
|
||||
"quota_enforce": "Erzwinge eine Quota",
|
||||
"rbdid": "Cephx-Benutzer",
|
||||
"rbdmonitor": "Ceph-\u00dcberwachung",
|
||||
"rbdpool": "Ceph-Pool",
|
||||
"rbdsecret": "Cephx-Geheimnis",
|
||||
"reason": "Reason",
|
||||
"receivedbytes": "Empfangene Bytes",
|
||||
"redundantRouterState": "Redundanter Status",
|
||||
"redundantrouter": "Redundanter Router",
|
||||
"redundantstate": "Redundanter Status",
|
||||
"redundantvpcrouter": "Redundante VPC",
|
||||
"reenterpassword": "Passwort erneut eingeben",
|
||||
"relationaloperator": "Betreiber",
|
||||
"requireshvm": "HVM",
|
||||
"requiresupgrade": "Erfordert Aktualisierung",
|
||||
"reservedSystemEndIp": "Reservierte System-End-IP",
|
||||
"reservedSystemGateway": "Reservierter System-Gateway",
|
||||
"reservedSystemNetmask": "Reservierte System-Netzmaske",
|
||||
"reservedSystemStartIp": "Reservierte System-IP starten",
|
||||
"reservediprange": "Reservierter IP-Bereich",
|
||||
"resourceid": "Ressourcenkennung",
|
||||
"resourcename": "Ressourcenname",
|
||||
"resourcestate": "Ressourcenstatus",
|
||||
"restartrequired": "Neustart erforderlich",
|
||||
"role": "Rolle",
|
||||
"rolename": "Rolle",
|
||||
"roletype": "Rollentyp",
|
||||
"rootDiskControllerType": "Root-Festplatten-Controller",
|
||||
"rootDiskControllerTypeKVM": "Root-Festplatten-Controller",
|
||||
"routerCount": "Total an virtuellen Routern",
|
||||
"routerRequiresUpgrade": "Aktualisierung ist erforderlich",
|
||||
"routerType": "Typ",
|
||||
"samlEnable": "Autorisiere SAML SSO",
|
||||
"samlEntity": "Identit\u00e4tsanbieter",
|
||||
"scope": "Geltungsbereich",
|
||||
"secondaryStorageLimit": "Sekund\u00e4rspeicherbegrenzungen (GiB)",
|
||||
"secondaryips": "Sekund\u00e4re IPs",
|
||||
"secretkey": "Secret Key",
|
||||
"securityGroups": "Sicherheitsgruppen",
|
||||
"securitygroup": "Sicherheitsgruppe",
|
||||
"sent": "Datum",
|
||||
"sentbytes": "Gesendete Bytes",
|
||||
"server": "Server",
|
||||
"service.Connectivity.distributedRouterCapabilityCheckbox": "Verteilter Router",
|
||||
"service.Connectivity.regionLevelVpcCapabilityCheckbox": "Region Level VPC",
|
||||
"service.Lb.elasticLbCheckbox": "Elastischer LB",
|
||||
"service.Lb.inlineModeDropdown": "Modus",
|
||||
"service.Lb.lbIsolationDropdown": "LB-Isolation",
|
||||
"service.SourceNat.redundantRouterCapabilityCheckbox": "Redundanter Router Kapazit\u00e4t",
|
||||
"service.SourceNat.sourceNatTypeDropdown": "Unterst\u00fctzter Source-NAT-Typ",
|
||||
"service.StaticNat.associatePublicIP": "\u00d6ffentliche IP assoziieren",
|
||||
"service.StaticNat.elasticIpCheckbox": "Elastische IP Adresse",
|
||||
"serviceCapabilities": "Dienstf\u00e4higkeiten",
|
||||
"serviceOfferingId": "Berechnungsangebot",
|
||||
"servicelist": "Dienste",
|
||||
"serviceofferingid": "Berechnungsangebot",
|
||||
"serviceofferingname": "Berechnungsangebot",
|
||||
"shrinkok": "Verkleinern OK",
|
||||
"size": "Gr\u00f6\u00dfe",
|
||||
"sizegb": "Gr\u00f6\u00dfe",
|
||||
"smbDomain": "SMB-Dom\u00e4ne",
|
||||
"smbPassword": "SMB-Passwort",
|
||||
"smbUsername": "SMB-Benutzername",
|
||||
"snapshotLimit": "Schnappschuss Grenzen",
|
||||
"snapshotMemory": "Schnappschussspeicher",
|
||||
"snmpCommunity": "SNMP Gemeinschaft",
|
||||
"snmpPort": "SNMP-Port",
|
||||
"sockettimeout": "Socket-Zeit\u00fcberschreitung",
|
||||
"sourceNat": "Source NAT",
|
||||
"sourceipaddress": "Quell IP-Adresse",
|
||||
"sourceport": "Port der Quelle",
|
||||
"specifyVlan": "VLAN angeben",
|
||||
"specifyipranges": "IP-Bereiche angeben",
|
||||
"specifyvlan": "VLAN angeben",
|
||||
"sshkeypair": "Neues SSH-Schl\u00fcsselpaar",
|
||||
"startdate": "Startdatum",
|
||||
"startip": "IPv4 Start-IP",
|
||||
"startipv4": "IPv4 Start-IP",
|
||||
"startipv6": "IPv6 Start-IP",
|
||||
"startport": "Startport",
|
||||
"startquota": "Wert der Quota",
|
||||
"state": "Status",
|
||||
"status": "Status",
|
||||
"storage": "Speicher",
|
||||
"storageId": "Hauptspeicher",
|
||||
"storagePool": "Speicher-Pool",
|
||||
"storageTags": "Datenspeicher-Markierung",
|
||||
"storageType": "Speichertyp",
|
||||
"storagetype": "Speichertyp",
|
||||
"subdomainaccess": "Subdomain-Zugriff",
|
||||
"supportedServices": "Unterst\u00fctzte Dienste",
|
||||
"supportspublicaccess": "Unterst\u00fctzt \u00f6ffentlichen Zugriff",
|
||||
"supportsregionLevelvpc": "Unterst\u00fctzt Region Level VPC",
|
||||
"supportsstrechedl2subnet": "Unters\u00fctzt Streched L2 Subnet",
|
||||
"systemvmtype": "Typ",
|
||||
"tags": "Datenspeicher-Markierung",
|
||||
"tariffValue": "Tarif Wert",
|
||||
"template": "Vorlage ausw\u00e4hlen",
|
||||
"templateFileUpload": "Lokale Datei",
|
||||
"templateLimit": "Vorlagenbegrenzungen",
|
||||
"templateNames": "Vorlage",
|
||||
"templatebody": "K\u00f6rper",
|
||||
"templatedn": "Vorlage ausw\u00e4hlen",
|
||||
"templatename": "Vorlage",
|
||||
"templatesubject": "Thema",
|
||||
"templatetotal": "Vorlage",
|
||||
"templatetype": "Email Vorlage",
|
||||
"tftpdir": "Tftp root-Verzeichnis",
|
||||
"threshold": "Schwellenwert",
|
||||
"tierName": "Ebene",
|
||||
"timeout": "Zeit\u00fcberschreitung",
|
||||
"timezone": "Zeitzone",
|
||||
"token": "Token",
|
||||
"totalCPU": "Gesamtanzahl CPU",
|
||||
"traffictype": "Datenverkehrstyp",
|
||||
"transportzoneuuid": "Transportzone Uuid",
|
||||
"type": "Typ",
|
||||
"unit": "Verbrauch der Einheit",
|
||||
"url": "URL",
|
||||
"usageName": "Art der Auslastung",
|
||||
"usageUnit": "Einheit",
|
||||
"usageinterface": "Auslastungsoberfl\u00e4che",
|
||||
"useNewDiskOffering": "Replace disk offering?",
|
||||
"useVpc": "VPC",
|
||||
"usehttps": "HTTPS verwenden",
|
||||
"userDataL2": "Benutzerdaten",
|
||||
"username": "Benutzername",
|
||||
"utilization": "Utilisation",
|
||||
"uuid": "Identifikation",
|
||||
"vCenterDataCenter": "vCenter-Rechenzentrum",
|
||||
"vCenterDataStore": "vCenter-Datenspeicher",
|
||||
"vCenterDatacenter": "vCenter-Rechenzentrum",
|
||||
"vCenterHost": "vCenter-Host",
|
||||
"vCenterPassword": "vCenter-Passwort",
|
||||
"vCenterUsername": "vCenter-Benutzername",
|
||||
"vSwitchGuestName": "Gast Datenverkehr vSwitch Name",
|
||||
"vSwitchGuestType": "Gast Datenverkehr vSwitch Typ",
|
||||
"vSwitchPublicName": "\u00d6ffentlicher Datenverkehr vSwitch Name",
|
||||
"vSwitchPublicType": "\u00d6ffentlicher Datenverkehr vSwitch Typ",
|
||||
"value": "Guthaben",
|
||||
"vcenter": "VMware Rechenzentrum-vCenter",
|
||||
"vcenterHost": "ESX / ESXi-Host",
|
||||
"vcsdeviceid": "Identifikation",
|
||||
"version": "Version",
|
||||
"vgpu": "VGPU",
|
||||
"vgpuType": "vGPU-Typ",
|
||||
"virtualMachineId": "Instanz",
|
||||
"virtualmachinedisplayname": "VM-Name",
|
||||
"virtualmachineid": "VM-Kennung",
|
||||
"virtualsize": "Virtual Size",
|
||||
"vlan": "VLAN/VNI",
|
||||
"vlanId": "VLAN/VNI-Kennung",
|
||||
"vlanRange": "VLAN/VNI-Bereich",
|
||||
"vlanname": "VLAN",
|
||||
"vlanrange": "VLAN/VNI-Bereich",
|
||||
"vmLimit": "Instanz-Limiten",
|
||||
"vmTotal": "Instanzen",
|
||||
"vmdisplayname": "VM-Anzeigename",
|
||||
"vmipaddress": "VM-IP-Adresse",
|
||||
"vmname": "VM Name",
|
||||
"vmstate": "VM-Status",
|
||||
"vmtotal": "Gesamtanzahl VMs",
|
||||
"vmwaredcId": "VMware-Rechenzentrumskennung",
|
||||
"vmwaredcName": "VMware-Rechenzentrumsname",
|
||||
"vmwaredcVcenter": "VMware Rechenzentrum-vCenter",
|
||||
"vmwarenetworklabel": "VMware Datenverkehrs-Bezeichnung",
|
||||
"volume": "Volume",
|
||||
"volumeFileUpload": "Lokale Datei",
|
||||
"volumeLimit": "Volumenbegrenzungen",
|
||||
"volumeTotal": "Volumina",
|
||||
"volumegroup": "Volumengruppe",
|
||||
"volumename": "Volumenname",
|
||||
"volumetotal": "Volume",
|
||||
"vpcLimit": "VPC-Begrenzungen",
|
||||
"vpcid": "VPC-Kennung",
|
||||
"vpcname": "VPC",
|
||||
"vpcoffering": "VPC-Angebot",
|
||||
"vpncustomergatewayid": "VPN Customer Gateway",
|
||||
"vsmctrlvlanid": "Steuerungs-VLAN-Kennung",
|
||||
"vsmdeviceid": "Name",
|
||||
"vsmdevicestate": "Status",
|
||||
"vsmipaddress": "Nexus 1000v-IP-Adresse",
|
||||
"vsmipaddress_req": "Nexus 1000v-IP-Adresse",
|
||||
"vsmpassword": "Nexus 1000v-Passwort",
|
||||
"vsmpassword_req": "Nexus 1000v-Passwort",
|
||||
"vsmpktvlanid": "Paket-VLAN-Kennung",
|
||||
"vsmstoragevlanid": "Speicher-VLAN-Kennung",
|
||||
"vsmusername": "Nexus 1000v-Benutzername",
|
||||
"vsmusername_req": "Nexus 1000v-Benutzername",
|
||||
"xennetworklabel": "XenServer Datenverkehrs-Bezeichnung",
|
||||
"xenserverToolsVersion61plus": "Originale XS-Version ist 6.1+",
|
||||
"zone": "Zone",
|
||||
"zoneId": "Zone",
|
||||
"zoneid": "Zone",
|
||||
"zonename": "Zone"
|
||||
}
|
||||
|
|
@ -0,0 +1,669 @@
|
|||
{
|
||||
"Accounts": "Accounts",
|
||||
"Affinity Groups": "Affinity Groups",
|
||||
"Alerts": "Alerts",
|
||||
"CPU Sockets": "CPU Sockets",
|
||||
"Cloudian Storage": "Cloudian Storage",
|
||||
"Clusters": "Clusters",
|
||||
"Compute": "Compute",
|
||||
"Compute Offerings": "Compute Offerings",
|
||||
"Configuration": "Configuration",
|
||||
"Dashboard": "Dashboard",
|
||||
"Disk Offerings": "Disk Offerings",
|
||||
"Domains": "Domains",
|
||||
"Events": "Events",
|
||||
"Global Settings": "Global Settings",
|
||||
"Hosts": "Hosts",
|
||||
"Hypervisor Capabilities": "Hypervisor capabilities",
|
||||
"ISOs": "ISOs",
|
||||
"Identity and Access": "Identity and Access",
|
||||
"Infrastructure": "Infrastructure",
|
||||
"Instances": "Instances",
|
||||
"LDAP Configuration": "LDAP Configuration",
|
||||
"Management Servers": "Management Servers",
|
||||
"Monitor": "Monitor",
|
||||
"Network": "Network",
|
||||
"Network Offerings": "Network Offerings",
|
||||
"Plugins": "Plugins",
|
||||
"Pods": "Pods",
|
||||
"Primary Storage": "Primary Storage",
|
||||
"Projects": "Projects",
|
||||
"Public IP Addresses": "Public IP Addresses",
|
||||
"Public network": "Public network",
|
||||
"Quota": "Quota",
|
||||
"RESOURCE_NAME": "Resource Name",
|
||||
"Roles": "Roles",
|
||||
"SSH Key Pairs": "SSH Key Pairs",
|
||||
"Secondary Storage": "Secondary Storage",
|
||||
"Security Groups": "Security Groups",
|
||||
"Snapshots": "Snapshots",
|
||||
"Storage": "Storage",
|
||||
"System Offerings": "System Offerings",
|
||||
"System VMs": "System VMs",
|
||||
"Templates": "Templates",
|
||||
"Users": "Users",
|
||||
"VM Snapshots": "VM Snapshots",
|
||||
"VPC": "VPC",
|
||||
"VPC Offerings": "VPC Offerings",
|
||||
"VPN Gateway": "VPN Gateway",
|
||||
"Virtual Routers": "Virtual Routers",
|
||||
"Volumes": "Volumes",
|
||||
"Zones": "Zones",
|
||||
"accesskey": "Access Key",
|
||||
"account": "Account",
|
||||
"accountId": "Account",
|
||||
"accountTotal": "Accounts",
|
||||
"accountlist": "Accounts",
|
||||
"accounts": "Accounts",
|
||||
"accounttype": "Account Type",
|
||||
"aclTotal": "Network ACL Total",
|
||||
"aclid": "ACL",
|
||||
"aclname": "ACL Name",
|
||||
"action": "Action",
|
||||
"activeviewersessions": "Active Sessions",
|
||||
"add-scaleDowncondition": "Add",
|
||||
"add-scaleUpcondition": "Add",
|
||||
"address": "Address",
|
||||
"admin": "Domain Admin",
|
||||
"agentPassword": "Agent Password",
|
||||
"agentPort": "Agent Port",
|
||||
"agentUsername": "Agent Username",
|
||||
"agentstate": "Agent State",
|
||||
"algorithm": "Algorithm",
|
||||
"allocatediops": "IOPS Allocated",
|
||||
"allocationstate": "Allocation State",
|
||||
"annotation": "Annotation",
|
||||
"apikey": "API Key",
|
||||
"associatednetworkid": "Associated Network ID",
|
||||
"associatednetworkname": "Network Name",
|
||||
"asyncBackup": "Async Backup",
|
||||
"availability": "Availability",
|
||||
"availabilityZone": "Availability Zone",
|
||||
"balance": "Balance",
|
||||
"baremetalCpu": "CPU (in MHz)",
|
||||
"baremetalCpuCores": "# of CPU Cores",
|
||||
"baremetalMAC": "Host MAC",
|
||||
"baremetalMemory": "Memory (in MB)",
|
||||
"bcfdeviceid": "ID",
|
||||
"bladeid": "Blade ID",
|
||||
"bootable": "Bootable",
|
||||
"broadcastdomainrange": "Broadcast domain range",
|
||||
"broadcastdomaintype": "Broadcast Domain Type",
|
||||
"broadcasturi": "Broadcast URI",
|
||||
"bucket": "Bucket",
|
||||
"bypassVlanOverlapCheck": "Bypass VLAN id/range overlap",
|
||||
"cacheMode": "Write-cache Type",
|
||||
"capacity": "Capacity",
|
||||
"capacityBytes": "Capacity Bytes",
|
||||
"capacityIops": "Capacity IOPS",
|
||||
"capacityiops": "IOPS Total",
|
||||
"certchain": "Chain",
|
||||
"certificate": "Certificate",
|
||||
"chassis": "Chassis",
|
||||
"checksum": "checksum",
|
||||
"cidr": "CIDR",
|
||||
"cidrlist": "CIDR list",
|
||||
"cleanup": "Clean up",
|
||||
"clusterId": "Cluster",
|
||||
"clusterid": "Cluster",
|
||||
"clustername": "Cluster",
|
||||
"clusters": "Clusters",
|
||||
"clustertype": "Cluster Type",
|
||||
"connectiontimeout": "Connection Timeout",
|
||||
"conservemode": "Conserve mode",
|
||||
"counterid": "Counter",
|
||||
"cpuCap": "CPU Cap",
|
||||
"cpuLimit": "CPU limits",
|
||||
"cpuNumber": "# of CPU Cores",
|
||||
"cpuSpeed": "CPU (in MHz)",
|
||||
"cpuallocated": "CPU Allocated for VMs",
|
||||
"cpuallocatedghz": "Allocated",
|
||||
"cpumaxdeviation": "Deviation",
|
||||
"cpunumber": "# of CPU Cores",
|
||||
"cpusockets": "The Number of CPU Sockets",
|
||||
"cpuspeed": "CPU (in MHz)",
|
||||
"cputotal": "Total",
|
||||
"cputotalghz": "Total",
|
||||
"cpuused": "CPU Utilized",
|
||||
"cpuusedghz": "Used",
|
||||
"createNfsCache": "Create NFS Secondary Staging Store",
|
||||
"created": "Date",
|
||||
"credit": "Credit",
|
||||
"crossZones": "Cross Zones",
|
||||
"current": "isCurrent",
|
||||
"date": "Date",
|
||||
"dedicated": "Dedicated",
|
||||
"deleteprofile": "Delete Profile",
|
||||
"deploymentPlanner": "Deployment planner",
|
||||
"deploymentplanner": "Deployment planner",
|
||||
"description": "Description",
|
||||
"destination": "Destination",
|
||||
"destinationZoneId": "Destination Zone",
|
||||
"destinationphysicalnetworkid": "Destination physical network ID",
|
||||
"destroyVMgracePeriod": "Destroy VM Grace Period",
|
||||
"details": "Details",
|
||||
"deviceid": "Device ID",
|
||||
"directdownload": "Direct Download",
|
||||
"disconnected": "Last Disconnected",
|
||||
"disk": "Disk",
|
||||
"diskBytesReadRate": "Disk Read Rate (BPS)",
|
||||
"diskBytesWriteRate": "Disk Write Rate (BPS)",
|
||||
"diskIopsReadRate": "Disk Read Rate (IOPS)",
|
||||
"diskIopsWriteRate": "Disk Write Rate (IOPS)",
|
||||
"diskOffering": "Disk Offering",
|
||||
"diskOfferingId": "Disk Offerings",
|
||||
"diskSize": "Disk Size (in GB)",
|
||||
"diskiopstotal": "IOPS",
|
||||
"diskioread": "Disk Read (IO)",
|
||||
"diskiowrite": "Disk Write (IO)",
|
||||
"diskkbsread": "Disk Read (Bytes)",
|
||||
"diskkbswrite": "Disk Write (Bytes)",
|
||||
"diskofferingdisplaytext": "Disk Offering",
|
||||
"disksize": "Disk Size (in GB)",
|
||||
"disksizeallocated": "Disk Allocated",
|
||||
"disksizeallocatedgb": "Allocated",
|
||||
"disksizetotal": "Disk Total",
|
||||
"disksizetotalgb": "Total",
|
||||
"disksizeunallocatedgb": "Unallocated",
|
||||
"disksizeusedgb": "Used",
|
||||
"displayText": "Description",
|
||||
"displayname": "Display Name",
|
||||
"displaytext": "Description",
|
||||
"distributedvpcrouter": "Distributed VPC Router",
|
||||
"dns1": "DNS 1",
|
||||
"dns2": "DNS 2",
|
||||
"domain": "Domain",
|
||||
"domainId": "Domain",
|
||||
"domainid": "Domain",
|
||||
"domainname": "Domain",
|
||||
"domainpath": "Domain",
|
||||
"dpd": "Dead Peer Detection",
|
||||
"driver": "Driver",
|
||||
"egressdefaultpolicy": "Egress Default Policy",
|
||||
"email": "Email",
|
||||
"enddate": "End Date",
|
||||
"endip": "IPv4 End IP",
|
||||
"endipv4": "IPv4 End IP",
|
||||
"endipv6": "IPv6 End IP",
|
||||
"endpoint": "Endpoint",
|
||||
"endport": "End Port",
|
||||
"espEncryption": "ESP Encryption",
|
||||
"espHash": "ESP Hash",
|
||||
"esplifetime": "ESP Lifetime (second)",
|
||||
"esppolicy": "ESP policy",
|
||||
"expunge": "Expunge",
|
||||
"externalId": "External Id",
|
||||
"extra": "Extra Arguments",
|
||||
"fingerprint": "FingerPrint",
|
||||
"firstname": "First Name",
|
||||
"forced": "Force Stop",
|
||||
"forceencap": "Force UDP Encapsulation of ESP Packets",
|
||||
"forgedTransmits": "Forged Transmits",
|
||||
"format": "Format",
|
||||
"fwdevicecapacity": "Capacity",
|
||||
"fwdeviceid": "ID",
|
||||
"fwdevicename": "Type",
|
||||
"fwdevicestate": "Status",
|
||||
"gateway": "Gateway",
|
||||
"glustervolume": "Volume",
|
||||
"group": "Group",
|
||||
"gslbdomainname": "GSLB Domain Name",
|
||||
"gslblbmethod": "Algorithm",
|
||||
"gslbprovider": "GSLB service",
|
||||
"gslbproviderprivateip": "GSLB service Private IP",
|
||||
"gslbproviderpublicip": "GSLB service Public IP",
|
||||
"gslbservicetype": "Service Type",
|
||||
"guestEndIp": "Guest end IP",
|
||||
"guestGateway": "Guest Gateway",
|
||||
"guestIpType": "Guest Type",
|
||||
"guestNetmask": "Guest Netmask",
|
||||
"guestStartIp": "Guest start IP",
|
||||
"guestcidraddress": "Guest CIDR",
|
||||
"guestipaddress": "Guest IP Address",
|
||||
"guestiptype": "Guest Type",
|
||||
"guestnetworkid": "Network ID",
|
||||
"guestnetworkname": "Network Name",
|
||||
"guestosid": "OS Type",
|
||||
"guestvlanrange": "VLAN Range(s)",
|
||||
"haenable": "HA Enabled",
|
||||
"hahost": "HA Enabled",
|
||||
"haprovider": "HA Provider",
|
||||
"hastate": "HA State",
|
||||
"hideipaddressusage": "Hide IP Address Usage",
|
||||
"host": "IP Address",
|
||||
"hostId": "Host",
|
||||
"hostTags": "Host Tags",
|
||||
"hostname": "Host Name",
|
||||
"hosts": "Hosts",
|
||||
"hosttags": "Host Tags",
|
||||
"hypervisor": "Hypervisor",
|
||||
"hypervisorSnapshotReserve": "Hypervisor Snapshot Reserve",
|
||||
"hypervisorsnapshotreserve": "Hypervisor Snapshot Reserve",
|
||||
"hypervisortype": "Hypervisor",
|
||||
"hypervisorversion": "Hypervisor version",
|
||||
"hypervnetworklabel": "HyperV Traffic Label",
|
||||
"icmpcode": "ICMP Code",
|
||||
"icmptype": "ICMP Type",
|
||||
"id": "ID",
|
||||
"ikeDh": "IKE DH",
|
||||
"ikeEncryption": "IKE Encryption",
|
||||
"ikeHash": "IKE Hash",
|
||||
"ikelifetime": "IKE lifetime (second)",
|
||||
"ikepolicy": "IKE policy",
|
||||
"insideportprofile": "Inside Port Profile",
|
||||
"instancename": "Internal name",
|
||||
"instanceport": "Instance Port",
|
||||
"instances": "Instances",
|
||||
"internaldns1": "Internal DNS 1",
|
||||
"internaldns2": "Internal DNS 2",
|
||||
"interval": "Polling Interval (in sec)",
|
||||
"intervaltype": "Interval Type",
|
||||
"ip": "IP Address",
|
||||
"ip4Netmask": "IPv4 Netmask",
|
||||
"ip4dns1": "IPv4 DNS1",
|
||||
"ip4dns2": "IPv4 DNS2",
|
||||
"ip4gateway": "IPv4 Gateway",
|
||||
"ip6address": "IPv6 IP Address",
|
||||
"ip6cidr": "IPv6 CIDR",
|
||||
"ip6dns1": "IPv6 DNS1",
|
||||
"ip6dns2": "IPv6 DNS2",
|
||||
"ip6gateway": "IPv6 Gateway",
|
||||
"ipLimit": "Public IP Limits",
|
||||
"ipaddress": "IP Address",
|
||||
"ipaddress1": "IP Address",
|
||||
"ipaddress2": "IP Address",
|
||||
"ipsecpsk": "IPsec Preshared-Key",
|
||||
"iptotal": "Total of IP Addresses",
|
||||
"iqn": "Target IQN",
|
||||
"isAdvanced": "Show advanced settings",
|
||||
"isBootable": "Bootable",
|
||||
"isCustomized": "Custom Disk Size",
|
||||
"isCustomizedIops": "Custom IOPS",
|
||||
"isDedicated": "Dedicate",
|
||||
"isExtractable": "Extractable",
|
||||
"isFeatured": "Featured",
|
||||
"isForced": "Force Remove",
|
||||
"isManaged": "Managed",
|
||||
"isPasswordEnabled": "Password Enabled",
|
||||
"isPersistent": "Persistent ",
|
||||
"isPublic": "Public",
|
||||
"isVolatile": "Volatile",
|
||||
"iscustomized": "Custom Disk Size",
|
||||
"iscustomizediops": "Custom IOPS",
|
||||
"isdedicated": "Dedicated",
|
||||
"isdefault": "Is Default",
|
||||
"isdynamicallyscalable": "Dynamically Scalable",
|
||||
"isextractable": "extractable",
|
||||
"isfeatured": "Featured",
|
||||
"iso": "ISO",
|
||||
"isolatedpvlanId": "Secondary Isolated VLAN ID",
|
||||
"isolationmethods": "Isolation method",
|
||||
"isolationuri": "Isolation URI",
|
||||
"isoname": "Attached ISO",
|
||||
"ispersistent": "Persistent ",
|
||||
"isportable": "Cross Zones",
|
||||
"ispublic": "Public",
|
||||
"isready": "Ready",
|
||||
"isredundantrouter": "Redundant Router",
|
||||
"isrouting": "Routing",
|
||||
"issourcenat": "Source NAT",
|
||||
"isstaticnat": "Static NAT",
|
||||
"issystem": "Is System",
|
||||
"isvolatile": "Volatile",
|
||||
"key": "Key",
|
||||
"keyboardType": "Keyboard type",
|
||||
"keypair": "SSH Key Pair",
|
||||
"kvmnetworklabel": "KVM traffic label",
|
||||
"l2gatewayserviceuuid": "L2 Gateway Service Uuid",
|
||||
"l3gatewayserviceuuid": "L3 Gateway Service Uuid",
|
||||
"last_updated": "Last Update",
|
||||
"lastannotated": "Last annotation date",
|
||||
"lastname": "Last Name",
|
||||
"lbType": "Load Balancer Type",
|
||||
"lbdevicecapacity": "Capacity",
|
||||
"lbdevicededicated": "Dedicated",
|
||||
"lbdeviceid": "ID",
|
||||
"lbdevicename": "Type",
|
||||
"lbdevicestate": "Status",
|
||||
"level": "Level",
|
||||
"limitcpuuse": "CPU Cap",
|
||||
"linklocalip": "Link Local IP Address",
|
||||
"loadbalancerinstance": "Assigned VMs",
|
||||
"loadbalancerrule": "Load balancing rule",
|
||||
"localstorageenabled": "Enable local storage for User VMs",
|
||||
"localstorageenabledforsystemvm": "Enable local storage for System VMs",
|
||||
"lun": "LUN #",
|
||||
"lxcnetworklabel": "LXC Traffic Label",
|
||||
"macAddressChanges": "MAC Address Changes",
|
||||
"macaddress": "MAC Address",
|
||||
"makeredundant": "Make redundant",
|
||||
"managedstate": "Managed State",
|
||||
"managementServers": "Number of Management Servers",
|
||||
"maxCPUNumber": "Max CPU Cores",
|
||||
"maxInstance": "Max Instances",
|
||||
"maxIops": "Max IOPS",
|
||||
"maxMemory": "Max Memory (in MB)",
|
||||
"maxerrorretry": "Max Error Retry",
|
||||
"maxguestslimit": "Max guest limit",
|
||||
"maxiops": "Max IOPS",
|
||||
"memallocated": "Mem Allocation",
|
||||
"memory": "Memory (in MB)",
|
||||
"memoryLimit": "Memory limits (MiB)",
|
||||
"memoryallocated": "Memory Allocated",
|
||||
"memoryallocatedgb": "Allocated",
|
||||
"memorymaxdeviation": "Deviation",
|
||||
"memorytotal": "Allocated",
|
||||
"memorytotalgb": "Total",
|
||||
"memoryused": "Used",
|
||||
"memoryusedgb": "Used",
|
||||
"memused": "Mem Usage",
|
||||
"minCPUNumber": "Min CPU Cores",
|
||||
"minInstance": "Min Instances",
|
||||
"minIops": "Min IOPS",
|
||||
"minMemory": "Min Memory (in MB)",
|
||||
"min_balance": "Min Balance",
|
||||
"miniops": "Min IOPS",
|
||||
"name": "Name",
|
||||
"nat": "BigSwitch BCF NAT Enabled",
|
||||
"netmask": "Netmask",
|
||||
"network": "Network",
|
||||
"networkDomain": "Network Domain",
|
||||
"networkLimit": "Network limits",
|
||||
"networkOfferingId": "Network Offering",
|
||||
"networkRate": "Network Rate (Mb/s)",
|
||||
"networkcidr": "Network CIDR",
|
||||
"networkdevicetype": "Type",
|
||||
"networkdomain": "Network Domain",
|
||||
"networkdomaintext": "Network domain",
|
||||
"networkid": "Select Tier",
|
||||
"networkkbsread": "Network Read",
|
||||
"networkkbswrite": "Network Write",
|
||||
"networkname": "Network Name",
|
||||
"networkofferingdisplaytext": "Network Offering",
|
||||
"networkofferingid": "Network Offering",
|
||||
"networkofferingidText": "Network Offering ID",
|
||||
"networkofferingname": "Network Offering",
|
||||
"networkrate": "Network Rate (Mb/s)",
|
||||
"networkread": "Read",
|
||||
"networktype": "Network Type",
|
||||
"networkwrite": "Write",
|
||||
"newDiskOffering": "New Disk Offering",
|
||||
"newdiskoffering": "New Offering",
|
||||
"newsize": "New Size (GB)",
|
||||
"nfsCacheNfsServer": "S3 NFS Server",
|
||||
"nfsCachePath": "S3 NFS Path",
|
||||
"nfsCacheZoneid": "Zone",
|
||||
"nfsServer": "Server",
|
||||
"nicAdapterType": "NIC adapter type",
|
||||
"number": "#Rule",
|
||||
"numberOfRouterRequiresUpgrade": "Total of Virtual Routers that require upgrade",
|
||||
"numretries": "Number of Retries",
|
||||
"nvpdeviceid": "ID",
|
||||
"offerHA": "Offer HA",
|
||||
"offerha": "Offer HA",
|
||||
"offeringType": "Compute offering type",
|
||||
"operation": "Operation",
|
||||
"osTypeId": "OS Type",
|
||||
"oscategoryid": "OS Preference",
|
||||
"ostypeid": "OS Type",
|
||||
"ostypename": "OS Type",
|
||||
"overrideguesttraffic": "Override Guest-Traffic",
|
||||
"overridepublictraffic": "Override Public-Traffic",
|
||||
"ovm3cluster": "Native Clustering",
|
||||
"ovm3networklabel": "OVM3 traffic label",
|
||||
"ovm3pool": "Native Pooling",
|
||||
"ovm3vip": "Master Vip IP",
|
||||
"ovmnetworklabel": "OVM traffic label",
|
||||
"palp": "Palo Alto Log Profile",
|
||||
"parentName": "Parent",
|
||||
"passive": "Passive",
|
||||
"password": "Password",
|
||||
"password-confirm": "Confirm password",
|
||||
"passwordenabled": "Password Enabled",
|
||||
"path": "Path",
|
||||
"patp": "Palo Alto Threat Profile",
|
||||
"pavr": "Virtual Router",
|
||||
"pciDevice": "GPU",
|
||||
"perfectForwardSecrecy": "Perfect Forward Secrecy",
|
||||
"physicalNetworkId": "Physical Network",
|
||||
"physicalnetworkid": "Physical Network",
|
||||
"physicalsize": "Physical Size",
|
||||
"plannerMode": "Planner mode",
|
||||
"podId": "Pod",
|
||||
"podname": "Pod",
|
||||
"port": "Port",
|
||||
"portableipaddress": "Portable IPs",
|
||||
"powerstate": "Power State",
|
||||
"primaryStorageLimit": "Primary Storage limits (GiB)",
|
||||
"primarystoragetotal": "Primary Storage",
|
||||
"privateinterface": "Private Interface",
|
||||
"privateip": "Private IP Address",
|
||||
"privatekey": "Private Key",
|
||||
"privatenetwork": "Private network",
|
||||
"privateport": "Private Port",
|
||||
"profiledn": "Associated Profile",
|
||||
"profilename": "Profile",
|
||||
"project": "Project",
|
||||
"projectId": "Project",
|
||||
"projectid": "Project ID",
|
||||
"projects": "Projects",
|
||||
"promiscuousMode": "Promiscuous Mode",
|
||||
"property": "Property",
|
||||
"protocol": "Protocol",
|
||||
"protocolnumber": "#Protocol",
|
||||
"provider": "Provider",
|
||||
"providername": "Provider",
|
||||
"provisioningType": "Provisioning Type",
|
||||
"provisioningtype": "Provisioning Type",
|
||||
"publicinterface": "Public Interface",
|
||||
"publicip": "IP Address",
|
||||
"publickey": "Public Key",
|
||||
"publicnetwork": "Public network",
|
||||
"publicport": "Public Port",
|
||||
"purpose": "Purpose",
|
||||
"qosType": "QoS Type",
|
||||
"quiescevm": "Quiesce VM",
|
||||
"quietTime": "Quiet Time (in sec)",
|
||||
"quota": "Quota Value",
|
||||
"quota_enforce": "Enforce Quota",
|
||||
"rbdid": "Cephx user",
|
||||
"rbdmonitor": "Ceph monitor",
|
||||
"rbdpool": "Ceph pool",
|
||||
"rbdsecret": "Cephx secret",
|
||||
"reason": "Reason",
|
||||
"receivedbytes": "Bytes Received",
|
||||
"redundantRouterState": "Redundant state",
|
||||
"redundantrouter": "Redundant Router",
|
||||
"redundantstate": "Redundant state",
|
||||
"redundantvpcrouter": "Redundant VPC",
|
||||
"reenterpassword": "Re-enter Password",
|
||||
"relationaloperator": "Operator",
|
||||
"requireshvm": "HVM",
|
||||
"requiresupgrade": "Requires Upgrade",
|
||||
"reservedSystemEndIp": "End Reserved system IP",
|
||||
"reservedSystemGateway": "Reserved system gateway",
|
||||
"reservedSystemNetmask": "Reserved system netmask",
|
||||
"reservedSystemStartIp": "Start Reserved system IP",
|
||||
"reservediprange": "Reserved IP Range",
|
||||
"resourceid": "Resource ID",
|
||||
"resourcename": "Resource Name",
|
||||
"resourcestate": "Resource state",
|
||||
"restartrequired": "Restart required",
|
||||
"role": "Role",
|
||||
"rolename": "Role",
|
||||
"roletype": "Role Type",
|
||||
"rootDiskControllerType": "Root disk controller",
|
||||
"rootDiskControllerTypeKVM": "Root disk controller",
|
||||
"routerCount": "Total of Virtual Routers",
|
||||
"routerRequiresUpgrade": "Upgrade is required",
|
||||
"routerType": "Type",
|
||||
"samlEnable": "Authorize SAML SSO",
|
||||
"samlEntity": "Identity Provider",
|
||||
"scope": "Scope",
|
||||
"secondaryStorageLimit": "Secondary Storage limits (GiB)",
|
||||
"secondaryips": "Secondary IPs",
|
||||
"secretkey": "Secret Key",
|
||||
"securityGroups": "Security Groups",
|
||||
"securitygroup": "Security Group",
|
||||
"sent": "Date",
|
||||
"sentbytes": "Bytes Sent",
|
||||
"server": "Server",
|
||||
"service.Connectivity.distributedRouterCapabilityCheckbox": "Distributed Router",
|
||||
"service.Connectivity.regionLevelVpcCapabilityCheckbox": "Region Level VPC",
|
||||
"service.Lb.Netscaler.servicePackages": "Netscaler Service Packages",
|
||||
"service.Lb.Netscaler.servicePackages.description": "Service Package Description",
|
||||
"service.Lb.elasticLbCheckbox": "Elastic LB",
|
||||
"service.Lb.inlineModeDropdown": "Mode",
|
||||
"service.Lb.lbIsolationDropdown": "LB isolation",
|
||||
"service.SourceNat.redundantRouterCapabilityCheckbox": "Redundant router capability",
|
||||
"service.SourceNat.sourceNatTypeDropdown": "Supported Source NAT type",
|
||||
"service.StaticNat.associatePublicIP": "Associate Public IP",
|
||||
"service.StaticNat.elasticIpCheckbox": "Elastic IP",
|
||||
"serviceCapabilities": "Service Capabilities",
|
||||
"serviceOfferingId": "Compute offering",
|
||||
"servicelist": "Services",
|
||||
"serviceofferingid": "Compute offering",
|
||||
"serviceofferingname": "Compute offering",
|
||||
"shareWith": "Share With",
|
||||
"shrinkok": "Shrink OK",
|
||||
"size": "Size",
|
||||
"sizegb": "Size",
|
||||
"smbDomain": "SMB Domain",
|
||||
"smbPassword": "SMB Password",
|
||||
"smbUsername": "SMB Username",
|
||||
"snapshotLimit": "Snapshot Limits",
|
||||
"snapshotMemory": "Snapshot memory",
|
||||
"snmpCommunity": "SNMP Community",
|
||||
"snmpPort": "SNMP Port",
|
||||
"sockettimeout": "Socket Timeout",
|
||||
"sourceNat": "Source NAT",
|
||||
"sourceipaddress": "Source IP Address",
|
||||
"sourceport": "Source Port",
|
||||
"specifyVlan": "Specify VLAN",
|
||||
"specifyipranges": "Specify IP ranges",
|
||||
"specifyvlan": "Specify VLAN",
|
||||
"sshkeypair": "New SSH Key Pair",
|
||||
"startdate": "Start Date",
|
||||
"startip": "IPv4 Start IP",
|
||||
"startipv4": "IPv4 Start IP",
|
||||
"startipv6": "IPv6 Start IP",
|
||||
"startport": "Start Port",
|
||||
"startquota": "Quota Value",
|
||||
"state": "State",
|
||||
"status": "Status",
|
||||
"storage": "Storage",
|
||||
"storageId": "Primary Storage",
|
||||
"storagePool": "Storage Pool",
|
||||
"storageTags": "Storage Tags",
|
||||
"storageType": "Storage Type",
|
||||
"storagepolicy": "Storage policy",
|
||||
"storagetype": "Storage Type",
|
||||
"subdomainaccess": "Subdomain Access",
|
||||
"supportedServices": "Supported Services",
|
||||
"supportspublicaccess": "Supports Public Access",
|
||||
"supportsregionLevelvpc": "Supports Region Level VPC",
|
||||
"supportsstrechedl2subnet": "Supports Streched L2 Subnet",
|
||||
"systemvmtype": "Type",
|
||||
"tags": "Storage Tags",
|
||||
"tariffValue": "Tariff Value",
|
||||
"template": "Select a template",
|
||||
"templateFileUpload": "Local file",
|
||||
"templateLimit": "Template Limits",
|
||||
"templateNames": "Template",
|
||||
"templatebody": "Body",
|
||||
"templatedn": "Select Template",
|
||||
"templatename": "Template",
|
||||
"templatesubject": "Subject",
|
||||
"templatetotal": "Template",
|
||||
"templatetype": "Email Template",
|
||||
"tftpdir": "Tftp root directory",
|
||||
"threshold": "Threshold",
|
||||
"tierName": "Tier",
|
||||
"timeout": "Timeout",
|
||||
"timezone": "Timezone",
|
||||
"token": "Token",
|
||||
"totalCPU": "Total CPU",
|
||||
"traffictype": "Traffic Type",
|
||||
"transportzoneuuid": "Transport Zone Uuid",
|
||||
"type": "Type",
|
||||
"unit": "Usage Unit",
|
||||
"url": "URL",
|
||||
"usageName": "Usage Type",
|
||||
"usageUnit": "Unit",
|
||||
"usageinterface": "Usage Interface",
|
||||
"useNewDiskOffering": "Replace disk offering?",
|
||||
"useVpc": "VPC",
|
||||
"usehttps": "Use HTTPS",
|
||||
"userDataL2": "User Data",
|
||||
"username": "Username",
|
||||
"utilization": "Utilisation",
|
||||
"uuid": "ID",
|
||||
"vCenterDataCenter": "vCenter Datacenter",
|
||||
"vCenterDataStore": "vCenter Datastore",
|
||||
"vCenterDatacenter": "vCenter Datacenter",
|
||||
"vCenterHost": "vCenter Host",
|
||||
"vCenterPassword": "vCenter Password",
|
||||
"vCenterUsername": "vCenter Username",
|
||||
"vSwitchGuestName": "Guest Traffic vSwitch Name",
|
||||
"vSwitchGuestType": "Guest Traffic vSwitch Type",
|
||||
"vSwitchPublicName": "Public Traffic vSwitch Name",
|
||||
"vSwitchPublicType": "Public Traffic vSwitch Type",
|
||||
"value": "Credits",
|
||||
"vcenter": "VMware datacenter vcenter",
|
||||
"vcenterHost": "ESX/ESXi Host",
|
||||
"vcsdeviceid": "ID",
|
||||
"version": "Version",
|
||||
"vgpu": "VGPU",
|
||||
"vgpuType": "vGPU type",
|
||||
"virtualMachineId": "Instance",
|
||||
"virtualmachinedisplayname": "VM name",
|
||||
"virtualmachineid": "VM ID",
|
||||
"virtualsize": "Virtual Size",
|
||||
"vlan": "VLAN/VNI",
|
||||
"vlanId": "VLAN/VNI ID",
|
||||
"vlanRange": "VLAN/VNI Range",
|
||||
"vlanname": "VLAN",
|
||||
"vlanrange": "VLAN/VNI Range",
|
||||
"vmLimit": "Instance Limits",
|
||||
"vmTotal": "Instances",
|
||||
"vmdisplayname": "VM display name",
|
||||
"vmipaddress": "VM IP Address",
|
||||
"vmname": "VM Name",
|
||||
"vmstate": "VM state",
|
||||
"vmtotal": "Total of VMs",
|
||||
"vmwaredcId": "VMware datacenter ID",
|
||||
"vmwaredcName": "VMware datacenter Name",
|
||||
"vmwaredcVcenter": "VMware datacenter vcenter",
|
||||
"vmwarenetworklabel": "VMware traffic label",
|
||||
"volume": "Volume",
|
||||
"volumeFileUpload": "Local file",
|
||||
"volumeLimit": "Volume Limits",
|
||||
"volumeTotal": "Volumes",
|
||||
"volumegroup": "Volume Group",
|
||||
"volumeids": "Volumes to be deleted",
|
||||
"volumename": "Volume Name",
|
||||
"volumes": "Volumes to be deleted",
|
||||
"volumetotal": "Volume",
|
||||
"vpcLimit": "VPC limits",
|
||||
"vpcid": "VPC ID",
|
||||
"vpcname": "VPC",
|
||||
"vpcoffering": "VPC Offering",
|
||||
"vpncustomergatewayid": "VPN Customer Gateway",
|
||||
"vsmctrlvlanid": "Control VLAN ID",
|
||||
"vsmdeviceid": "Name",
|
||||
"vsmdevicestate": "State",
|
||||
"vsmipaddress": "Nexus 1000v IP Address",
|
||||
"vsmipaddress_req": "Nexus 1000v IP Address",
|
||||
"vsmpassword": "Nexus 1000v Password",
|
||||
"vsmpassword_req": "Nexus 1000v Password",
|
||||
"vsmpktvlanid": "Packet VLAN ID",
|
||||
"vsmstoragevlanid": "Storage VLAN ID",
|
||||
"vsmusername": "Nexus 1000v Username",
|
||||
"vsmusername_req": "Nexus 1000v Username",
|
||||
"xennetworklabel": "XenServer traffic label",
|
||||
"xenserverToolsVersion61plus": "Original XS Version is 6.1+",
|
||||
"zone": "Zone",
|
||||
"zoneId": "Zone",
|
||||
"zoneid": "Zone",
|
||||
"zonename": "Zone"
|
||||
}
|
||||
|
|
@ -0,0 +1,638 @@
|
|||
{
|
||||
"Accounts": "Cuentas",
|
||||
"Affinity Groups": "Grupos de Afinidad",
|
||||
"Alerts": "Alertas",
|
||||
"CPU Sockets": "Sockets",
|
||||
"Cloudian Storage": "Cloudian Storage",
|
||||
"Clusters": "Cl\u00fasters",
|
||||
"Compute": "Computo",
|
||||
"Compute Offerings": "Ofertas de Computo",
|
||||
"Configuration": "Configuraci\u00f3n",
|
||||
"Dashboard": "Panel de Control",
|
||||
"Disk Offerings": "Ofertas de Disco",
|
||||
"Domains": "Domains",
|
||||
"Events": "Eventos",
|
||||
"Global Settings": "Configuraci\u00f3n global",
|
||||
"Hosts": "Anfitriones",
|
||||
"Hypervisor Capabilities": "Capacidades del Hipervisor",
|
||||
"ISOs": "ISOs",
|
||||
"Identity and Access": "Identity and Access",
|
||||
"Infrastructure": "Infraestructura",
|
||||
"Instances": "Instancias",
|
||||
"LDAP Configuration": "Configuraci\u00f3n de LDAP",
|
||||
"Management Servers": "Management Servers",
|
||||
"Monitor": "Monitor",
|
||||
"Network": "Red",
|
||||
"Network Offerings": "Ofertas de Red",
|
||||
"Plugins": "Plugins",
|
||||
"Pods": "Pod",
|
||||
"Primary Storage": "Almacenamiento Primario",
|
||||
"Projects": "Proyectos",
|
||||
"Public IP Addresses": "direcciones IP p\u00fablicas",
|
||||
"Public network": "Red P\u00fablica",
|
||||
"Quota": "Quota",
|
||||
"RESOURCE_NAME": "Nombre del Recurso",
|
||||
"Roles": "Roles",
|
||||
"SSH Key Pairs": "Par de Claves SSH",
|
||||
"Secondary Storage": "Almacenamiento Secundario",
|
||||
"Security Groups": "Grupos de Seguridad",
|
||||
"Snapshots": "instant\u00e1neas",
|
||||
"Storage": "Almacenamiento",
|
||||
"System Offerings": "Ofertas de Servicio de VM de Sistema",
|
||||
"System VMs": "MVs de Sistema",
|
||||
"Templates": "Plantillas",
|
||||
"Users": "Usuarios",
|
||||
"VM Snapshots": "Instant\u00e1neas de MV",
|
||||
"VPC": "VPC",
|
||||
"VPC Offerings": "Ofertas de VPC",
|
||||
"VPN Gateway": "Gateway VPN",
|
||||
"Virtual Routers": "Routers Virtuales",
|
||||
"Volumes": "Vol\u00famenes",
|
||||
"Zones": "Zona",
|
||||
"accesskey": "Clave de Acceso",
|
||||
"account": "Cuenta",
|
||||
"accountId": "Cuenta",
|
||||
"accountTotal": "Cuentas",
|
||||
"accountlist": "Cuentas",
|
||||
"accounts": "Cuentas",
|
||||
"accounttype": "Tipo de Cuenta",
|
||||
"aclTotal": "ACL Total de la Red",
|
||||
"aclid": "ACL",
|
||||
"aclname": "Nombre de ACL",
|
||||
"action": "Acci\u00f3n",
|
||||
"activeviewersessions": "Sesiones activas",
|
||||
"add-scaleDowncondition": "Agregar",
|
||||
"add-scaleUpcondition": "Agregar",
|
||||
"address": "Direcci\u00f3n",
|
||||
"admin": "Administrador de dominio",
|
||||
"agentPassword": "Contrase\u00f1a de Agente",
|
||||
"agentPort": "Puerto del Agente",
|
||||
"agentUsername": "Nombre de usuario del agente",
|
||||
"agentstate": "Estado del Agente",
|
||||
"algorithm": "Algoritmo",
|
||||
"allocationstate": "Estado de la Asignaci\u00f3n",
|
||||
"apikey": "clave de API",
|
||||
"associatednetworkid": "ID de red asociados",
|
||||
"associatednetworkname": "Nombre de red",
|
||||
"availability": "Disponibilidad",
|
||||
"availabilityZone": "Disponibilidad de la zona",
|
||||
"balance": "Balance",
|
||||
"baremetalCpu": "CPU(MHz)",
|
||||
"baremetalCpuCores": "# cores de CPU",
|
||||
"baremetalMAC": "MAC del Anfitri\u00f3n",
|
||||
"baremetalMemory": "Memoria(MB)",
|
||||
"bcfdeviceid": "ID",
|
||||
"bladeid": "ID de Hoja",
|
||||
"bootable": "Arrancable",
|
||||
"broadcastdomainrange": "Rango del dominio de Broadcast",
|
||||
"broadcastdomaintype": "Tipo de dominio de difusi\u00f3n",
|
||||
"broadcasturi": "URI de Broadcast",
|
||||
"bucket": "Bucket",
|
||||
"cacheMode": "Tipo de cache de escritura",
|
||||
"capacity": "Capacidad",
|
||||
"capacityBytes": "Capacidad en Bytes",
|
||||
"capacityIops": "Capacidad en IOPS",
|
||||
"capacityiops": "Total de IOPS",
|
||||
"chassis": "Chasis",
|
||||
"checksum": "checksum",
|
||||
"cidr": "CIDR",
|
||||
"cidrlist": "Lista CIDR",
|
||||
"cleanup": "Limpiar",
|
||||
"clusterId": "Cl\u00faster",
|
||||
"clusterid": "Cl\u00faster",
|
||||
"clustername": "Cl\u00faster",
|
||||
"clusters": "Cl\u00fasteres",
|
||||
"clustertype": "Tipo de Cl\u00faster",
|
||||
"connectiontimeout": "Timeout Conexi\u00f3n",
|
||||
"conservemode": "Modo Conservativo",
|
||||
"counterid": "Contador",
|
||||
"cpuCap": "CPU Cap",
|
||||
"cpuLimit": "L\u00edmites de CPU",
|
||||
"cpuNumber": "# cores de CPU",
|
||||
"cpuSpeed": "CPU(MHz)",
|
||||
"cpuallocated": "CPU asignada para MVs",
|
||||
"cpuallocatedghz": "Asignados",
|
||||
"cpumaxdeviation": "Desviaci\u00f3n",
|
||||
"cpunumber": "# cores de CPU",
|
||||
"cpusockets": "N\u00famero de Sockets de CPU",
|
||||
"cpuspeed": "CPU(MHz)",
|
||||
"cputotal": "Total",
|
||||
"cputotalghz": "Total",
|
||||
"cpuused": "CPU Utilizada",
|
||||
"cpuusedghz": "Usado",
|
||||
"createNfsCache": "Crear almac\u00e9n Temporal Secundario NFS",
|
||||
"created": "Fecha",
|
||||
"credit": "Cr\u00e9dito",
|
||||
"crossZones": "Zonas transversales",
|
||||
"current": "esLaActual",
|
||||
"date": "Fecha",
|
||||
"dedicated": "Dedicado",
|
||||
"deleteprofile": "Borrar Perfil",
|
||||
"deploymentPlanner": "Planificador de Despliegue",
|
||||
"deploymentplanner": "Planificador de Despliegue",
|
||||
"description": "Descripci\u00f3n",
|
||||
"destinationZoneId": "Zona de destino",
|
||||
"destinationphysicalnetworkid": "ID de la red f\u00edsica destino",
|
||||
"destroyVMgracePeriod": "Per\u00edodo de Gracia para Destruir MV",
|
||||
"details": "Detalles",
|
||||
"deviceid": "ID de dispositivo",
|
||||
"directdownload": "Direct Download",
|
||||
"disconnected": "\u00daltima Desconexi\u00f3n",
|
||||
"disk": "Disco",
|
||||
"diskBytesReadRate": "Tasa Lectura Disco (BPS)",
|
||||
"diskBytesWriteRate": "Tasa Escritura Disco (BPS)",
|
||||
"diskIopsReadRate": "Tasa Lectura Disco (IOPS)",
|
||||
"diskIopsWriteRate": "Tasa Escritura de Disco (IOPS)",
|
||||
"diskOffering": "Oferta de Disco",
|
||||
"diskOfferingId": "Ofertas de Disco",
|
||||
"diskSize": "tama\u00f1o de disco (en GB)",
|
||||
"diskiopstotal": "IOPS",
|
||||
"diskioread": "Lectura Disco (IO)",
|
||||
"diskiowrite": "Escritura Disco (IO)",
|
||||
"diskkbsread": "Lectura Disco (Bytes)",
|
||||
"diskkbswrite": "Escritura Disco (Bytes)",
|
||||
"diskofferingdisplaytext": "Oferta de Disco",
|
||||
"disksize": "tama\u00f1o de disco (en GB)",
|
||||
"disksizeallocated": "Disco asignado",
|
||||
"disksizeallocatedgb": "Asignados",
|
||||
"disksizetotal": "disco Total",
|
||||
"disksizetotalgb": "Total",
|
||||
"disksizeunallocatedgb": "Sin asignar",
|
||||
"disksizeusedgb": "Usado",
|
||||
"displayText": "Descripci\u00f3n",
|
||||
"displayname": "Nombre a Mostrar",
|
||||
"displaytext": "Descripci\u00f3n",
|
||||
"distributedvpcrouter": "Router Distribuido VPC",
|
||||
"dns1": "DNS 1",
|
||||
"dns2": "DNS 2",
|
||||
"domain": "Dominio",
|
||||
"domainId": "Dominio",
|
||||
"domainid": "Dominio",
|
||||
"domainname": "Dominio",
|
||||
"domainpath": "Dominio",
|
||||
"dpd": "Detecci\u00f3n de Dead Peer",
|
||||
"driver": "Controlador",
|
||||
"egressdefaultpolicy": "Pol\u00edtica de salida por defecto",
|
||||
"email": "correo electr\u00f3nico",
|
||||
"enddate": "Fecha de F\u00edn",
|
||||
"endip": "IP Final IPv4",
|
||||
"endipv4": "IP Final IPv4",
|
||||
"endipv6": "IP Final IPv6",
|
||||
"endpoint": "Endpoint",
|
||||
"endport": "Puerto final",
|
||||
"espEncryption": "Encriptaci\u00f3n ESP",
|
||||
"espHash": "Hash ESP",
|
||||
"esplifetime": "Tiempo de vida ESP (en segundos)",
|
||||
"esppolicy": "Pol\u00edtica ESP",
|
||||
"expunge": "Purgar",
|
||||
"fingerprint": "Huella Digital",
|
||||
"firstname": "Nombre",
|
||||
"forced": "Forzar Parar",
|
||||
"forceencap": "Forzar la encapsulaci\u00f3n UDP de los paquetes ESP",
|
||||
"format": "Formato",
|
||||
"fwdevicecapacity": "Capacidad",
|
||||
"fwdeviceid": "ID",
|
||||
"fwdevicename": "Tipo",
|
||||
"fwdevicestate": "Estado",
|
||||
"gateway": "puerta de enlace",
|
||||
"glustervolume": "Vol\u00famen",
|
||||
"group": "Grupo",
|
||||
"gslbdomainname": "Nombre de Dominio GSLB",
|
||||
"gslblbmethod": "Algoritmo",
|
||||
"gslbprovider": "Servicio GSLB",
|
||||
"gslbproviderprivateip": "IP Privada del Servicio GSLB",
|
||||
"gslbproviderpublicip": "IP P\u00fablica del Servicio GSLB",
|
||||
"gslbservicetype": "Tipo de Servicio",
|
||||
"guestEndIp": "IP final de Invitado",
|
||||
"guestGateway": "Gateway de Invitado",
|
||||
"guestIpType": "Tipo de Invitado",
|
||||
"guestNetmask": "M\u00e1scara de red de Invitado",
|
||||
"guestStartIp": "IP inicial de Invitado",
|
||||
"guestcidraddress": "CIDR Invitado",
|
||||
"guestipaddress": "Direcci\u00f3n IP de Invitado",
|
||||
"guestiptype": "Tipo de Invitado",
|
||||
"guestnetworkid": "ID de red",
|
||||
"guestnetworkname": "Nombre de red",
|
||||
"guestosid": "Tipo de Sistema Operativo",
|
||||
"guestvlanrange": "Rango(s) de VLAN",
|
||||
"haenable": "HA Activado",
|
||||
"hahost": "HA Activado",
|
||||
"host": "Direcci\u00f3n IP",
|
||||
"hostId": "Anfitri\u00f3n",
|
||||
"hostTags": "Etiquetas de Anfitri\u00f3n",
|
||||
"hostname": "nombre de host",
|
||||
"hosts": "Anfitriones",
|
||||
"hosttags": "Etiquetas de Anfitri\u00f3n",
|
||||
"hypervisor": "Hypervisor",
|
||||
"hypervisorSnapshotReserve": "Reserva de instant\u00e1neas de hipervisores",
|
||||
"hypervisorsnapshotreserve": "Reserva de instant\u00e1neas de hipervisores",
|
||||
"hypervisortype": "Hypervisor",
|
||||
"hypervisorversion": "Versi\u00f3n del Hipervisor",
|
||||
"hypervnetworklabel": "Etiqueta de tr\u00e1fico HyperV",
|
||||
"icmpcode": "C\u00f3digo ICMP",
|
||||
"icmptype": "Tipo ICMP",
|
||||
"id": "ID",
|
||||
"ikeDh": "IKE DH",
|
||||
"ikeEncryption": "Encriptaci\u00f3n IKE",
|
||||
"ikeHash": "Hash IKE",
|
||||
"ikelifetime": "Tiempo de vida IKE (segundos)",
|
||||
"ikepolicy": "Pol\u00edtica IKE",
|
||||
"insideportprofile": "Dentro del Perfil de Puerto",
|
||||
"instancename": "Nombre interno",
|
||||
"instanceport": "Puerto de Instancia",
|
||||
"instances": "Instancias",
|
||||
"internaldns1": "DNS interno una",
|
||||
"internaldns2": "DNS interno 2",
|
||||
"interval": "Intervalo de Polling (en seg)",
|
||||
"intervaltype": "Tipo de intervalo",
|
||||
"ip": "Direcci\u00f3n IP",
|
||||
"ip4Netmask": "M\u00e1scara IPv4",
|
||||
"ip4dns1": "DNS1 IPv4 ",
|
||||
"ip4dns2": "DNS2 IPv4",
|
||||
"ip4gateway": "Puerta de enlace IPv4",
|
||||
"ip6address": "Direcci\u00f3n IP IPv6",
|
||||
"ip6cidr": "CIDR IPv6",
|
||||
"ip6dns1": "DNS1 IPv6",
|
||||
"ip6dns2": "DNS2 IPv6",
|
||||
"ip6gateway": "Puerta de enlace IPv6",
|
||||
"ipLimit": "L\u00edmites IP p\u00fablica",
|
||||
"ipaddress": "Direcci\u00f3n IP",
|
||||
"ipaddress1": "Direcci\u00f3n IP",
|
||||
"ipaddress2": "Direcci\u00f3n IP",
|
||||
"ipsecpsk": "Clave precompartida IPsec",
|
||||
"iptotal": "Direcciones IP totales",
|
||||
"iqn": "IQN Objetivo",
|
||||
"isAdvanced": "Mostrar configuraci\u00f3n avanzada",
|
||||
"isBootable": "Arrancable",
|
||||
"isCustomized": "Personal Disk Size",
|
||||
"isCustomizedIops": "IOPS personalizadas",
|
||||
"isDedicated": "Dedicar",
|
||||
"isExtractable": "Descargable",
|
||||
"isFeatured": "Destacados",
|
||||
"isForced": "Forzar el retiro",
|
||||
"isManaged": "Gestionado",
|
||||
"isPasswordEnabled": "Habilitado por Contrase\u00f1a",
|
||||
"isPersistent": "Persistente",
|
||||
"isPublic": "P\u00fablica",
|
||||
"isVolatile": "Vol\u00e1til",
|
||||
"iscustomized": "Personal Disk Size",
|
||||
"iscustomizediops": "IOPS personalizadas",
|
||||
"isdedicated": "Dedicado",
|
||||
"isdefault": "Es por defecto",
|
||||
"isdynamicallyscalable": "Escalable Dinamicamente",
|
||||
"isextractable": "Descargable",
|
||||
"isfeatured": "Destacados",
|
||||
"iso": "ISO",
|
||||
"isolatedpvlanId": "ID de VLAN Aislada Secundaria",
|
||||
"isolationmethods": "M\u00e9todo de aislamiento",
|
||||
"isolationuri": "URI de aislamiento",
|
||||
"isoname": "ISO Conectada",
|
||||
"ispersistent": "Persistente",
|
||||
"isportable": "Zonas transversales",
|
||||
"ispublic": "P\u00fablica",
|
||||
"isready": "Listo",
|
||||
"isredundantrouter": "Router Redundante",
|
||||
"isrouting": "Enrutamiento",
|
||||
"issourcenat": "NAT Or\u00edgen",
|
||||
"isstaticnat": "NAT est\u00e1tica",
|
||||
"issystem": "es Sistema",
|
||||
"isvolatile": "Vol\u00e1til",
|
||||
"key": "Llave",
|
||||
"keyboardType": "Tipo de teclado",
|
||||
"keypair": "Par de Claves SSH",
|
||||
"kvmnetworklabel": "Etiqueta de tr\u00e1fico KVM",
|
||||
"l2gatewayserviceuuid": "UUID del Servicio Gateway L2",
|
||||
"l3gatewayserviceuuid": "UUID del Servicio Gateway L3",
|
||||
"last_updated": "\u00daltima Modificaci\u00f3n",
|
||||
"lastname": "Apellido",
|
||||
"lbType": "Tipo de Balanceador de Carga",
|
||||
"lbdevicecapacity": "Capacidad",
|
||||
"lbdevicededicated": "Dedicado",
|
||||
"lbdeviceid": "ID",
|
||||
"lbdevicename": "Tipo",
|
||||
"lbdevicestate": "Estado",
|
||||
"level": "Nivel",
|
||||
"limitcpuuse": "CPU Cap",
|
||||
"linklocalip": "Direcci\u00f3n IP de Enlace Local",
|
||||
"loadbalancerinstance": "MVs Asignadas",
|
||||
"loadbalancerrule": "Regla de balanceo de carga",
|
||||
"localstorageenabled": "Habilitar almacenamiento local para MVs de Usuarios",
|
||||
"localstorageenabledforsystemvm": "Habilitar almacenamiento local para MVs de Sistema",
|
||||
"lun": "LUN #",
|
||||
"lxcnetworklabel": "Etiqueta de tr\u00e1fico LXC",
|
||||
"makeredundant": "Hacer redundante",
|
||||
"maxInstance": "Instancias M\u00e1x.",
|
||||
"maxIops": "IOPS m\u00e1ximas",
|
||||
"maxerrorretry": "Max Error Reintento ",
|
||||
"maxguestslimit": "L\u00edmite M\u00e1x. Invitados",
|
||||
"maxiops": "IOPS m\u00e1ximas",
|
||||
"memallocated": "Asignaci\u00f3n de Memoria",
|
||||
"memory": "Memoria(MB)",
|
||||
"memoryLimit": "L\u00edmites Memoria (MiB)",
|
||||
"memoryallocated": "Memoria Asignada",
|
||||
"memoryallocatedgb": "Asignados",
|
||||
"memorymaxdeviation": "Desviaci\u00f3n",
|
||||
"memorytotal": "Asignados",
|
||||
"memorytotalgb": "Total",
|
||||
"memoryused": "Usado",
|
||||
"memoryusedgb": "Usado",
|
||||
"memused": "Uso de Memoria",
|
||||
"minInstance": "Instancias M\u00ednimas",
|
||||
"minIops": "IOPS m\u00ednimas",
|
||||
"min_balance": "Balance M\u00ednimo",
|
||||
"miniops": "IOPS m\u00ednimas",
|
||||
"name": "Nombre",
|
||||
"nat": "BigSwitch BCF con NAT habilitado",
|
||||
"netmask": "m\u00e1scara de red",
|
||||
"network": "Red",
|
||||
"networkDomain": "Dominio de Red",
|
||||
"networkLimit": "L\u00edmites de la Red",
|
||||
"networkOfferingId": "Oferta de Red",
|
||||
"networkRate": "Tasa de Red (Mb/s)",
|
||||
"networkcidr": "CIDR de Red",
|
||||
"networkdevicetype": "Tipo",
|
||||
"networkdomain": "Dominio de Red",
|
||||
"networkdomaintext": "Dominio de Red",
|
||||
"networkid": "Elija Tier",
|
||||
"networkkbsread": "Lectura Red",
|
||||
"networkkbswrite": "Escritura Red",
|
||||
"networkname": "Nombre de red",
|
||||
"networkofferingdisplaytext": "Oferta de Red",
|
||||
"networkofferingid": "Oferta de Red",
|
||||
"networkofferingidText": "ID Oferta de Red",
|
||||
"networkofferingname": "Oferta de Red",
|
||||
"networkrate": "Tasa de Red (Mb/s)",
|
||||
"networkread": "Lectura",
|
||||
"networktype": "Tipo de red",
|
||||
"networkwrite": "Escritura",
|
||||
"newDiskOffering": "New Disk Offering",
|
||||
"newdiskoffering": "Nueva Oferta",
|
||||
"newsize": "Nuevo Tama\u00f1o (GB)",
|
||||
"nfsCacheNfsServer": "Servidor NFS S3",
|
||||
"nfsCachePath": "Ruta NFS S3",
|
||||
"nfsCacheZoneid": "Zona",
|
||||
"nfsServer": "Servidor",
|
||||
"nicAdapterType": "Tipo de adaptador NIC",
|
||||
"number": "#Regla",
|
||||
"numberOfRouterRequiresUpgrade": "Virtual Routers totales que requieren actualizaci\u00f3n",
|
||||
"numretries": "N\u00famero de reintentos",
|
||||
"nvpdeviceid": "ID",
|
||||
"offerHA": "Oferta HA",
|
||||
"offerha": "Oferta HA",
|
||||
"osTypeId": "Tipo de Sistema Operativo",
|
||||
"oscategoryid": "Preferencia S.O. ",
|
||||
"ostypeid": "Tipo de Sistema Operativo",
|
||||
"ostypename": "Tipo de Sistema Operativo",
|
||||
"overrideguesttraffic": "Sobreescribir Tr\u00e1fico Invitado",
|
||||
"overridepublictraffic": "Sobreescribir Tr\u00e1fico P\u00fablico",
|
||||
"ovm3cluster": "Clustering Nativo",
|
||||
"ovm3networklabel": "Etiqueta de tr\u00e1fico OVM3",
|
||||
"ovm3pool": "Pooling Nativo",
|
||||
"ovm3vip": "IP del VIP Master",
|
||||
"ovmnetworklabel": "Etiqueta de tr\u00e1fico OVM",
|
||||
"palp": "Perfil de Log Palo Alto",
|
||||
"parentName": "Padre",
|
||||
"passive": "Pasivo",
|
||||
"password": "Contrase\u00f1a",
|
||||
"password-confirm": "Confirmar Contrase\u00f1a",
|
||||
"passwordenabled": "Habilitado por Contrase\u00f1a",
|
||||
"path": "Ruta",
|
||||
"patp": "Perf\u00edl de Amenazas Palo Alto",
|
||||
"pavr": "Router Virtual",
|
||||
"pciDevice": "GPU",
|
||||
"perfectForwardSecrecy": "Perfect Forward Secrecy",
|
||||
"physicalNetworkId": "Red F\u00edsica",
|
||||
"physicalnetworkid": "Red F\u00edsica",
|
||||
"physicalsize": "Physical Size",
|
||||
"plannerMode": "Modo planificaci\u00f3n",
|
||||
"podId": "Pod",
|
||||
"podname": "Pod",
|
||||
"port": "Puerto",
|
||||
"portableipaddress": "IPs Port\u00e1tiles",
|
||||
"powerstate": "Estado de la Alimentaci\u00f3n",
|
||||
"primaryStorageLimit": "L\u00edmite del Almacenamiento Primario (GiB)",
|
||||
"primarystoragetotal": "Almacenamiento Primario",
|
||||
"privateinterface": "Interfaz privada",
|
||||
"privateip": "direcci\u00f3n IP privada",
|
||||
"privatekey": "Clave Privada",
|
||||
"privatenetwork": "Red privada",
|
||||
"privateport": "Puerto privado",
|
||||
"profiledn": "Perfil Asociado",
|
||||
"profilename": "Perfil",
|
||||
"project": "Proyecto",
|
||||
"projectId": "Proyecto",
|
||||
"projectid": "ID proyecto",
|
||||
"projects": "Proyectos",
|
||||
"property": "Propiedad",
|
||||
"protocol": "Protocolo",
|
||||
"protocolnumber": "#Protocolo",
|
||||
"provider": "Proveedor",
|
||||
"providername": "Proveedor",
|
||||
"provisioningType": "Tipo de Aprovisionamiento",
|
||||
"provisioningtype": "Tipo de Aprovisionamiento",
|
||||
"publicinterface": "interfaz p\u00fablica",
|
||||
"publicip": "Direcci\u00f3n IP",
|
||||
"publickey": "Clave P\u00fablica",
|
||||
"publicnetwork": "Red P\u00fablica",
|
||||
"publicport": "Puerto P\u00fablico",
|
||||
"purpose": "Prop\u00f3sito",
|
||||
"qosType": "Tipo de QoS",
|
||||
"quiescevm": "Colocar en estado consistente a la MV",
|
||||
"quietTime": "Tiempo en Silencio (en seg)",
|
||||
"quota": "Valor de Cuota",
|
||||
"quota_enforce": "Forzar cuota",
|
||||
"rbdid": "Usuario Cephx",
|
||||
"rbdmonitor": "Monitor CEPH",
|
||||
"rbdpool": "Pool CEPH",
|
||||
"rbdsecret": "Secreto Cephx",
|
||||
"reason": "Reason",
|
||||
"receivedbytes": "Bytes recibidos",
|
||||
"redundantRouterState": "Estado redundante",
|
||||
"redundantrouter": "Router Redundante",
|
||||
"redundantstate": "Estado redundante",
|
||||
"redundantvpcrouter": "VPC redundante",
|
||||
"reenterpassword": "Reintroducir contrase\u00f1a",
|
||||
"relationaloperator": "Operador",
|
||||
"requireshvm": "HVM",
|
||||
"requiresupgrade": "Requiere Actualizaci\u00f3n",
|
||||
"reservedSystemEndIp": "\u00daltima IP de sistema Reservada",
|
||||
"reservedSystemGateway": "Gateway de sistema reservado",
|
||||
"reservedSystemNetmask": "M\u00e1scara de sistema Reservada",
|
||||
"reservedSystemStartIp": "IP inicial reservada para el sistema",
|
||||
"reservediprange": "Rango IP Reservado",
|
||||
"resourceid": "ID del Recurso",
|
||||
"resourcename": "Nombre del Recurso",
|
||||
"resourcestate": "Estado del recurso",
|
||||
"restartrequired": "Reinicio requerido",
|
||||
"role": "Rol",
|
||||
"rolename": "Rol",
|
||||
"roletype": "Tipo de Rol",
|
||||
"rootDiskControllerType": "Controladora de disco Root",
|
||||
"rootDiskControllerTypeKVM": "Controladora de disco Root",
|
||||
"routerCount": "Virtual Routers Totales",
|
||||
"routerRequiresUpgrade": "Requerida Actualizaci\u00f3n",
|
||||
"routerType": "Tipo",
|
||||
"samlEnable": "Autorizar SAML SSO",
|
||||
"samlEntity": "Proveedor de Identidad",
|
||||
"scope": "Alcance",
|
||||
"secondaryStorageLimit": "L\u00edmite del Almacenamiento Secundario (GiB)",
|
||||
"secondaryips": "IPs secundarias",
|
||||
"secretkey": "clave secreta",
|
||||
"securityGroups": "Grupos de seguridad",
|
||||
"securitygroup": "Grupo de Seguridad",
|
||||
"sent": "Fecha",
|
||||
"sentbytes": "Bytes enviados",
|
||||
"server": "Servidor",
|
||||
"service.Connectivity.distributedRouterCapabilityCheckbox": "Router Distribuido",
|
||||
"service.Connectivity.regionLevelVpcCapabilityCheckbox": "VPC a Nivel de Regi\u00f3n",
|
||||
"service.Lb.elasticLbCheckbox": "LB El\u00e1stico",
|
||||
"service.Lb.inlineModeDropdown": "modo",
|
||||
"service.Lb.lbIsolationDropdown": "Aislamiento de LB",
|
||||
"service.SourceNat.redundantRouterCapabilityCheckbox": "Capacidades del router redundante",
|
||||
"service.SourceNat.sourceNatTypeDropdown": "Tipo de Source NAT soportado",
|
||||
"service.StaticNat.associatePublicIP": "Asociar IP P\u00fablica",
|
||||
"service.StaticNat.elasticIpCheckbox": "IP El\u00e1stica",
|
||||
"serviceCapabilities": "Capacidades del Servicio",
|
||||
"serviceOfferingId": "Oferta de Computo",
|
||||
"servicelist": "Servicios",
|
||||
"serviceofferingid": "Oferta de Computo",
|
||||
"serviceofferingname": "Oferta de Computo",
|
||||
"shrinkok": "Reducci\u00f3n OK",
|
||||
"size": "Tama\u00f1o",
|
||||
"sizegb": "Tama\u00f1o",
|
||||
"smbDomain": "Dominio SMB",
|
||||
"smbPassword": "Contrase\u00f1a SMB",
|
||||
"smbUsername": "Nombre de usuario SMB",
|
||||
"snapshotLimit": "L\u00edmites Instant\u00e1nea",
|
||||
"snapshotMemory": "Instant\u00e1nea de la memoria",
|
||||
"snmpCommunity": "Comunidad SNMP",
|
||||
"snmpPort": "Puerto SNMP",
|
||||
"sockettimeout": "Timeout Socket",
|
||||
"sourceNat": "NAT Or\u00edgen",
|
||||
"sourceipaddress": "Direcci\u00f3n IP Origen",
|
||||
"sourceport": "Puerto Origen",
|
||||
"specifyVlan": "Especifique VLAN",
|
||||
"specifyipranges": "Especificar rangos IP",
|
||||
"specifyvlan": "Especifique VLAN",
|
||||
"sshkeypair": "Nuevo Par de Claves SSH",
|
||||
"startdate": "Fecha de Inicio",
|
||||
"startip": "IP Inicial IPv4",
|
||||
"startipv4": "IP Inicial IPv4",
|
||||
"startipv6": "IP Inicial IPv6",
|
||||
"startport": "Puerto inicial",
|
||||
"startquota": "Valor de Cuota",
|
||||
"state": "Estado",
|
||||
"status": "Estado",
|
||||
"storage": "Almacenamiento",
|
||||
"storageId": "Almacenamiento Primario",
|
||||
"storagePool": "Pool de Almacenamiento",
|
||||
"storageTags": "Etiquetas de almacenamiento",
|
||||
"storageType": "Tipo de almacenamiento",
|
||||
"storagetype": "Tipo de almacenamiento",
|
||||
"subdomainaccess": "Acceso al Subdominio",
|
||||
"supportedServices": "Servicios Soportados",
|
||||
"supportspublicaccess": "Soporta Acceso P\u00fablico",
|
||||
"supportsregionLevelvpc": "Soporte de VPC a Nivel de Regi\u00f3n",
|
||||
"supportsstrechedl2subnet": "Soporta Subred Streched L2",
|
||||
"systemvmtype": "Tipo",
|
||||
"tags": "Etiquetas de almacenamiento",
|
||||
"tariffValue": "Valor Tarifario",
|
||||
"template": "Seleccione Plantilla",
|
||||
"templateFileUpload": "Archivo local",
|
||||
"templateLimit": "L\u00edmites Plantilla",
|
||||
"templateNames": "Plantilla",
|
||||
"templatebody": "Cuerpo",
|
||||
"templatedn": "Elegir Plantilla",
|
||||
"templatename": "Plantilla",
|
||||
"templatesubject": "Tema",
|
||||
"templatetotal": "Plantilla",
|
||||
"templatetype": "Plantilla de E-Mail",
|
||||
"tftpdir": "Directorio ra\u00edz de TFTP",
|
||||
"threshold": "Umbral",
|
||||
"tierName": "Tier",
|
||||
"timeout": "Tiempo de espera",
|
||||
"timezone": "Zona horaria",
|
||||
"token": "Token",
|
||||
"totalCPU": "Total CPU",
|
||||
"traffictype": "Tipo de Tr\u00e1fico",
|
||||
"transportzoneuuid": "UUID de la Zona de Transporte",
|
||||
"type": "Tipo",
|
||||
"unit": "Unidad de Uso",
|
||||
"url": "URL",
|
||||
"usageName": "Tipo de Uso",
|
||||
"usageUnit": "Unidad",
|
||||
"usageinterface": "Interfaz de uso",
|
||||
"useNewDiskOffering": "Replace disk offering?",
|
||||
"useVpc": "VPC",
|
||||
"usehttps": "Use HTTPS",
|
||||
"userDataL2": "Datos de Usuario",
|
||||
"username": "Nombre de usuario",
|
||||
"utilization": "Utilisation",
|
||||
"uuid": "ID",
|
||||
"vCenterDataCenter": "Centros de datos vCenter ",
|
||||
"vCenterDataStore": "Almac\u00e9n de datos vCenter",
|
||||
"vCenterDatacenter": "Centros de datos vCenter ",
|
||||
"vCenterHost": "Anfitri\u00f3n vCenter",
|
||||
"vCenterPassword": "Contrase\u00f1a vCenter",
|
||||
"vCenterUsername": "Nombre de usuario vCenter",
|
||||
"vSwitchGuestName": "Nombre del vSwitch para Tr\u00e1fico Invitado",
|
||||
"vSwitchGuestType": "Tipo de vSwitch para Tr\u00e1fico Invitado",
|
||||
"vSwitchPublicName": "Nombre de vSwitch para Tr\u00e1fico P\u00fablico",
|
||||
"vSwitchPublicType": "Tipo de vSwitch para Tr\u00e1fico P\u00fablico",
|
||||
"value": "Cr\u00e9ditos",
|
||||
"vcenter": "vcenter del datacenter VMware",
|
||||
"vcenterHost": "ESX / ESXi anfitri\u00f3n",
|
||||
"vcsdeviceid": "ID",
|
||||
"version": "Versi\u00f3n",
|
||||
"vgpu": "VGPU",
|
||||
"vgpuType": "Tipo de vGPU",
|
||||
"virtualMachineId": "Instancia",
|
||||
"virtualmachinedisplayname": "Nombre MV",
|
||||
"virtualmachineid": "ID de MV",
|
||||
"virtualsize": "Virtual Size",
|
||||
"vlan": "VLAN",
|
||||
"vlanId": "ID de VLAN/VNI",
|
||||
"vlanRange": "Rango VLAN/VNI",
|
||||
"vlanname": "VLAN",
|
||||
"vlanrange": "Rango VLAN/VNI",
|
||||
"vmLimit": "L\u00edmites de Instancia ",
|
||||
"vmTotal": "Instancias",
|
||||
"vmdisplayname": "Nombra a mostrar de la MV",
|
||||
"vmipaddress": "Direcci\u00f3n IP de la MV",
|
||||
"vmname": "Nombre de la MV",
|
||||
"vmstate": "Estado de la MV",
|
||||
"vmtotal": "MVs totales",
|
||||
"vmwaredcId": "ID datacenter VMware",
|
||||
"vmwaredcName": "Nombre del datacenter VMware",
|
||||
"vmwaredcVcenter": "vcenter del datacenter VMware",
|
||||
"vmwarenetworklabel": "Etiqueta de tr\u00e1fico VMware",
|
||||
"volume": "Vol\u00famen",
|
||||
"volumeFileUpload": "Archivo local",
|
||||
"volumeLimit": "L\u00edmites Vol\u00famen",
|
||||
"volumeTotal": "Vol\u00famenes",
|
||||
"volumegroup": "Group de Vol\u00famen",
|
||||
"volumename": "Nombre de Volumen",
|
||||
"volumetotal": "Vol\u00famen",
|
||||
"vpcLimit": "L\u00edmites de VPC",
|
||||
"vpcid": "ID VPC",
|
||||
"vpcname": "VPC",
|
||||
"vpcoffering": "Oferta de VPC",
|
||||
"vpncustomergatewayid": "Gateway Usuario de VPN",
|
||||
"vsmctrlvlanid": "VLAN ID de Control",
|
||||
"vsmdeviceid": "Nombre",
|
||||
"vsmdevicestate": "Estado",
|
||||
"vsmipaddress": "Direcci\u00f3n IP del Nexus 1000v",
|
||||
"vsmipaddress_req": "Direcci\u00f3n IP del Nexus 1000v",
|
||||
"vsmpassword": "Contrase\u00f1a del Nexus 1000v",
|
||||
"vsmpassword_req": "Contrase\u00f1a del Nexus 1000v",
|
||||
"vsmpktvlanid": "Packet VLAN ID",
|
||||
"vsmstoragevlanid": "VLAN ID del Almacenamiento",
|
||||
"vsmusername": "Usuario del Nexus 1000v",
|
||||
"vsmusername_req": "Usuario del Nexus 1000v",
|
||||
"xennetworklabel": "Etiqueta de tr\u00e1fico XenServer",
|
||||
"xenserverToolsVersion61plus": "Versi\u00f3n Original XS es 6.1+",
|
||||
"zone": "Zona",
|
||||
"zoneId": "Zona",
|
||||
"zoneid": "Zona",
|
||||
"zonename": "Zona"
|
||||
}
|
||||
|
|
@ -0,0 +1,639 @@
|
|||
{
|
||||
"Accounts": "Comptes",
|
||||
"Affinity Groups": "Groupes d'Affinit\u00e9",
|
||||
"Alerts": "Alertes",
|
||||
"CPU Sockets": "Sockets CPU",
|
||||
"Cloudian Storage": "Cloudian Storage",
|
||||
"Clusters": "Clusters",
|
||||
"Compute": "Processeur",
|
||||
"Compute Offerings": "Offres de Calcul",
|
||||
"Configuration": "Configuration",
|
||||
"Dashboard": "Tableau de bord",
|
||||
"Disk Offerings": "Offres de Disque",
|
||||
"Domains": "Domains",
|
||||
"Events": "\u00c9v\u00e9nements",
|
||||
"Global Settings": "Param\u00e8tres globaux",
|
||||
"Hosts": "H\u00f4tes",
|
||||
"Hypervisor Capabilities": "Fonctions hyperviseur",
|
||||
"ISOs": "ISOs",
|
||||
"Identity and Access": "Identity and Access",
|
||||
"Infrastructure": "Infrastructure",
|
||||
"Instances": "Instances",
|
||||
"LDAP Configuration": "Configuration LDAP",
|
||||
"Management Servers": "Serveurs de gestion",
|
||||
"Monitor": "Monitor",
|
||||
"Network": "R\u00e9seau",
|
||||
"Network Offerings": "Offres de R\u00e9seau",
|
||||
"Plugins": "Extensions",
|
||||
"Pods": "Pods",
|
||||
"Primary Storage": "Stockages primaires",
|
||||
"Projects": "Projets",
|
||||
"Public IP Addresses": "Adresses IP publiques",
|
||||
"Public network": "R\u00e9seau public",
|
||||
"Quota": "Quota",
|
||||
"RESOURCE_NAME": "Nom Ressource",
|
||||
"Roles": "R\u00f4les",
|
||||
"SSH Key Pairs": "Bi-cl\u00e9s SSH",
|
||||
"Secondary Storage": "Stockages secondaires",
|
||||
"Security Groups": "Groupes de s\u00e9curit\u00e9",
|
||||
"Snapshots": "Instantan\u00e9s",
|
||||
"Storage": "Stockage",
|
||||
"System Offerings": "Offres de Syst\u00e8me",
|
||||
"System VMs": " VMs Syst\u00e8mes",
|
||||
"Templates": "Mod\u00e8les",
|
||||
"Users": "Utilisateurs",
|
||||
"VM Snapshots": "Instantan\u00e9s VM",
|
||||
"VPC": "VPC",
|
||||
"VPC Offerings": "Offres de VPC",
|
||||
"VPN Gateway": "Passerelle VPN",
|
||||
"Virtual Routers": "Routeurs virtuels",
|
||||
"Volumes": "Volumes",
|
||||
"Zones": "Zones",
|
||||
"accesskey": "Cl\u00e9 d'Acc\u00e8s",
|
||||
"account": "Compte",
|
||||
"accountId": "Compte",
|
||||
"accountTotal": "Comptes",
|
||||
"accountlist": "Comptes",
|
||||
"accounts": "Comptes",
|
||||
"accounttype": "Type Compte",
|
||||
"aclTotal": "Total R\u00e8gles d'acc\u00e8s r\u00e9seau",
|
||||
"aclid": "ACL",
|
||||
"aclname": "Nom ACL",
|
||||
"action": "Action",
|
||||
"activeviewersessions": "Sessions actives",
|
||||
"add-scaleDowncondition": "Ajouter",
|
||||
"add-scaleUpcondition": "Ajouter",
|
||||
"address": "Adresse",
|
||||
"admin": "Administrateur du domaine",
|
||||
"agentPassword": "Mot de passe Agent",
|
||||
"agentPort": "Port Agent",
|
||||
"agentUsername": "Identifiant Agent",
|
||||
"agentstate": "Statut Agent",
|
||||
"algorithm": "Algorithme",
|
||||
"allocationstate": "\u00c9tat",
|
||||
"apikey": "Cl\u00e9 d'API",
|
||||
"associatednetworkid": "ID du r\u00e9seau associ\u00e9",
|
||||
"associatednetworkname": "Nom du r\u00e9seau",
|
||||
"availability": "Disponibilit\u00e9",
|
||||
"availabilityZone": "Zone de disponibilit\u00e9",
|
||||
"balance": "Balance",
|
||||
"baremetalCpu": "CPU (en MHz)",
|
||||
"baremetalCpuCores": "Nombre de c\u0153urs",
|
||||
"baremetalMAC": "Adresse MAC h\u00f4te",
|
||||
"baremetalMemory": "M\u00e9moire (en MB)",
|
||||
"bcfdeviceid": "ID",
|
||||
"bladeid": "ID Lame",
|
||||
"bootable": "Amor\u00e7able",
|
||||
"broadcastdomainrange": "Plage du domaine multi-diffusion",
|
||||
"broadcastdomaintype": "Type de domaine de multi-diffusion",
|
||||
"broadcasturi": "URI multi-diffusion",
|
||||
"bucket": "Seau",
|
||||
"cacheMode": "Type Write-cache",
|
||||
"capacity": "Capacit\u00e9",
|
||||
"capacityBytes": "Capacit\u00e9 Octets",
|
||||
"capacityIops": "Capacit\u00e9 IOPS",
|
||||
"capacityiops": "IOPS Total",
|
||||
"chassis": "Ch\u00e2ssis",
|
||||
"checksum": "checksum",
|
||||
"cidr": "CIDR",
|
||||
"cidrlist": "Liste CIDR",
|
||||
"cleanup": "Nettoyage",
|
||||
"clusterId": "Cluster",
|
||||
"clusterid": "Cluster",
|
||||
"clustername": "Cluster",
|
||||
"clusters": "Clusters",
|
||||
"clustertype": "Type de Cluster",
|
||||
"connectiontimeout": "D\u00e9lai d'expiration de connexion",
|
||||
"conservemode": "Conserver le mode",
|
||||
"counterid": "Compteur",
|
||||
"cpuCap": "Limitation CPU",
|
||||
"cpuLimit": "Limites CPU",
|
||||
"cpuNumber": "Nombre de c\u0153urs",
|
||||
"cpuSpeed": "CPU (en MHz)",
|
||||
"cpuallocated": "CPU allou\u00e9e aux VMs",
|
||||
"cpuallocatedghz": "Allou\u00e9",
|
||||
"cpumaxdeviation": "\u00c9cart",
|
||||
"cpunumber": "Nombre de c\u0153urs",
|
||||
"cpusockets": "Le nombre de sockets CPU",
|
||||
"cpuspeed": "CPU (en MHz)",
|
||||
"cputotal": "Total",
|
||||
"cputotalghz": "Total",
|
||||
"cpuused": "CPU utilis\u00e9e",
|
||||
"cpuusedghz": "Utilis\u00e9",
|
||||
"createNfsCache": "Cr\u00e9er le Stockage Secondaire Interm\u00e9diaire NFS",
|
||||
"created": "Date",
|
||||
"credit": "Cr\u00e9dit",
|
||||
"crossZones": "Multi Zones",
|
||||
"current": "estCourant",
|
||||
"date": "Date",
|
||||
"dedicated": "D\u00e9di\u00e9",
|
||||
"deleteprofile": "Supprimer Profil",
|
||||
"deploymentPlanner": "Planning d\u00e9ploiement",
|
||||
"deploymentplanner": "Planning d\u00e9ploiement",
|
||||
"description": "Description",
|
||||
"destinationZoneId": "Zone de destination",
|
||||
"destinationphysicalnetworkid": "Identifiant du r\u00e9seau physique de destination",
|
||||
"destroyVMgracePeriod": "D\u00e9truire P\u00e9riode de gr\u00e2ce VM",
|
||||
"details": "D\u00e9tails",
|
||||
"deviceid": "ID du p\u00e9riph\u00e9rique",
|
||||
"directdownload": "Direct Download",
|
||||
"disconnected": "Derni\u00e8re D\u00e9connexion",
|
||||
"disk": "Disque",
|
||||
"diskBytesReadRate": "D\u00e9bit lecture disque (BPS)",
|
||||
"diskBytesWriteRate": "D\u00e9bit \u00e9criture disque (BPS)",
|
||||
"diskIopsReadRate": "D\u00e9bit lecture disque (IOPS)",
|
||||
"diskIopsWriteRate": "D\u00e9bit \u00e9criture disque (IOPS)",
|
||||
"diskOffering": "Offre de Disque",
|
||||
"diskOfferingId": "Offres de Disque",
|
||||
"diskSize": "Capacit\u00e9 disque (Go)",
|
||||
"diskiopstotal": "IOPS",
|
||||
"diskioread": "Lecture Disque (IO)",
|
||||
"diskiowrite": "\u00c9criture Disque (IO)",
|
||||
"diskkbsread": "Lecture Disque (Octets)",
|
||||
"diskkbswrite": "\u00c9criture Disque (Octets)",
|
||||
"diskofferingdisplaytext": "Offre de Disque",
|
||||
"disksize": "Capacit\u00e9 disque (Go)",
|
||||
"disksizeallocated": "Disque Allou\u00e9",
|
||||
"disksizeallocatedgb": "Allou\u00e9",
|
||||
"disksizetotal": "Espace disque total",
|
||||
"disksizetotalgb": "Total",
|
||||
"disksizeunallocatedgb": "Non allou\u00e9",
|
||||
"disksizeusedgb": "Utilis\u00e9",
|
||||
"displayText": "Description",
|
||||
"displayname": "Nom d'affichage",
|
||||
"displaytext": "Description",
|
||||
"distributedvpcrouter": "Routeur VPC Distribu\u00e9",
|
||||
"dns1": "DNS 1",
|
||||
"dns2": "DNS 2",
|
||||
"domain": "Domaine",
|
||||
"domainId": "Domaine",
|
||||
"domainid": "Domaine",
|
||||
"domainname": "Domaine",
|
||||
"domainpath": "Domaine",
|
||||
"dpd": "D\u00e9tection de pair mort",
|
||||
"driver": "Pilote",
|
||||
"egressdefaultpolicy": "Politique par d\u00e9faut Egress",
|
||||
"email": "Email",
|
||||
"enddate": "Date fin",
|
||||
"endip": "IP fin IPv4",
|
||||
"endipv4": "IP fin IPv4",
|
||||
"endipv6": "IP fin IPv6",
|
||||
"endpoint": "Terminaison",
|
||||
"endport": "Port de fin",
|
||||
"espEncryption": "Chiffrement ESP",
|
||||
"espHash": "Empreinte ESP",
|
||||
"esplifetime": "Dur\u00e9e de vie ESP (secondes)",
|
||||
"esppolicy": "Mode ESP",
|
||||
"expunge": "Purger",
|
||||
"fingerprint": "Empreinte",
|
||||
"firstname": "Pr\u00e9nom",
|
||||
"forced": "Forcer l'arr\u00eat",
|
||||
"forceencap": "Force l'encapsulation UDP des paquets ESP",
|
||||
"format": "Format",
|
||||
"fwdevicecapacity": "Capacit\u00e9",
|
||||
"fwdeviceid": "ID",
|
||||
"fwdevicename": "Type",
|
||||
"fwdevicestate": "Statut",
|
||||
"gateway": "Passerelle",
|
||||
"glustervolume": "Volume",
|
||||
"group": "Groupe",
|
||||
"gslbdomainname": "Nom de domaine GSLB",
|
||||
"gslblbmethod": "Algorithme",
|
||||
"gslbprovider": "Service GSLB",
|
||||
"gslbproviderprivateip": "IP priv\u00e9e service GSLB",
|
||||
"gslbproviderpublicip": "IP publique service GSLB",
|
||||
"gslbservicetype": "Type service",
|
||||
"guestEndIp": "Adresse IP de fin pour les invit\u00e9s",
|
||||
"guestGateway": "Passerelle pour les invit\u00e9s",
|
||||
"guestIpType": "Type d'invit\u00e9",
|
||||
"guestNetmask": "Masque de r\u00e9seau des invit\u00e9s",
|
||||
"guestStartIp": "Adresse IP de d\u00e9but pour les invit\u00e9s",
|
||||
"guestcidraddress": "CIDR invit\u00e9",
|
||||
"guestipaddress": "Adresse IP des invit\u00e9s",
|
||||
"guestiptype": "Type d'invit\u00e9",
|
||||
"guestnetworkid": "ID r\u00e9seau",
|
||||
"guestnetworkname": "Nom du r\u00e9seau",
|
||||
"guestosid": "Type du OS",
|
||||
"guestvlanrange": "Plage(s) VLAN",
|
||||
"haenable": "Haute disponibilit\u00e9 activ\u00e9e",
|
||||
"hahost": "Haute disponibilit\u00e9 activ\u00e9e",
|
||||
"host": "Adresse IP",
|
||||
"hostId": "H\u00f4te",
|
||||
"hostTags": "\u00c9tiquettes d'h\u00f4te",
|
||||
"hostname": "Nom d'h\u00f4te",
|
||||
"hosts": "H\u00f4tes",
|
||||
"hosttags": "\u00c9tiquettes d'h\u00f4te",
|
||||
"hypervisor": "Hyperviseur",
|
||||
"hypervisorSnapshotReserve": "R\u00e9serve d'instantan\u00e9e de l'Hyperviseur",
|
||||
"hypervisorsnapshotreserve": "R\u00e9serve d'instantan\u00e9e de l'Hyperviseur",
|
||||
"hypervisortype": "Hyperviseur",
|
||||
"hypervisorversion": "Version hyperviseur",
|
||||
"hypervnetworklabel": "Libell\u00e9 trafic HyperV",
|
||||
"icmpcode": "Code ICMP",
|
||||
"icmptype": "Type ICMP",
|
||||
"id": "ID",
|
||||
"ikeDh": "DH IKE",
|
||||
"ikeEncryption": "Chiffrement IKE",
|
||||
"ikeHash": "Empreinte IKE",
|
||||
"ikelifetime": "Dur\u00e9e de vie IKE (secondes)",
|
||||
"ikepolicy": "Mode IKE",
|
||||
"insideportprofile": "Profil Port entrant",
|
||||
"instancename": "Nom interne",
|
||||
"instanceport": "Port Instance",
|
||||
"instances": "Instances",
|
||||
"internaldns1": "DNS interne 1",
|
||||
"internaldns2": "DNS interne 2",
|
||||
"interval": "Intervalle d'appel (en sec)",
|
||||
"intervaltype": "Type d'intervalle",
|
||||
"ip": "Adresse IP",
|
||||
"ip4Netmask": "Masque de r\u00e9seau IPv4",
|
||||
"ip4dns1": "DNS1 IPv4",
|
||||
"ip4dns2": "DNS2 IPv4",
|
||||
"ip4gateway": "Passerelle IPv4",
|
||||
"ip6address": "Adresse IPv6",
|
||||
"ip6cidr": "CIDR IPv6",
|
||||
"ip6dns1": "DNS1 IPv6",
|
||||
"ip6dns2": "DNS2 IPv6",
|
||||
"ip6gateway": "Passerelle IPv6",
|
||||
"ipLimit": "Limite de IPs publiques",
|
||||
"ipaddress": "Adresse IP",
|
||||
"ipaddress1": "Adresse IP",
|
||||
"ipaddress2": "Adresse IP",
|
||||
"ipsecpsk": "Cl\u00e9 partag\u00e9e IPsec",
|
||||
"iptotal": "Total adresses IP",
|
||||
"iqn": "Cible IQN",
|
||||
"isAdvanced": "Voir param\u00e8tres avanc\u00e9s",
|
||||
"isBootable": "Amor\u00e7able",
|
||||
"isCustomized": "Personalisable",
|
||||
"isCustomizedIops": "IOPS personnalis\u00e9",
|
||||
"isDedicated": "D\u00e9dier",
|
||||
"isExtractable": "T\u00e9l\u00e9chargeable",
|
||||
"isFeatured": "Sponsoris\u00e9",
|
||||
"isForced": "Suppression forc\u00e9e",
|
||||
"isManaged": "G\u00e9r\u00e9",
|
||||
"isPasswordEnabled": "Mot de passe activ\u00e9",
|
||||
"isPersistent": "Persistant",
|
||||
"isPublic": "Publique",
|
||||
"isVolatile": "Volatile",
|
||||
"iscustomized": "Personalisable",
|
||||
"iscustomizediops": "IOPS personnalis\u00e9",
|
||||
"isdedicated": "D\u00e9di\u00e9",
|
||||
"isdefault": "Est par d\u00e9faut",
|
||||
"isdynamicallyscalable": "Dimensionnement dynamique",
|
||||
"isextractable": "T\u00e9l\u00e9chargeable",
|
||||
"isfeatured": "Sponsoris\u00e9",
|
||||
"iso": "ISO",
|
||||
"isolatedpvlanId": "VLAN ID isol\u00e9 secondaire",
|
||||
"isolationmethods": "Isolation",
|
||||
"isolationuri": "URI d'isolation",
|
||||
"isoname": "Image ISO attach\u00e9e",
|
||||
"ispersistent": "Persistant",
|
||||
"isportable": "Multi Zones",
|
||||
"ispublic": "Publique",
|
||||
"isready": "Pr\u00eat",
|
||||
"isredundantrouter": "Routeur redondant",
|
||||
"isrouting": "Routage",
|
||||
"issourcenat": "NAT Source",
|
||||
"isstaticnat": "NAT Statique",
|
||||
"issystem": "Est Syst\u00e8me",
|
||||
"isvolatile": "Volatile",
|
||||
"key": "Clef",
|
||||
"keyboardType": "Type de clavier",
|
||||
"keypair": "Bi-cl\u00e9 SSH",
|
||||
"kvmnetworklabel": "Libell\u00e9 trafic KVM",
|
||||
"l2gatewayserviceuuid": "Uuid du service passerelle L2",
|
||||
"l3gatewayserviceuuid": "Uuid du service passerelle L3",
|
||||
"last_updated": "Derni\u00e8re mise \u00e0 jour",
|
||||
"lastname": "Nom",
|
||||
"lbType": "Type R\u00e9partiteur de charge",
|
||||
"lbdevicecapacity": "Capacit\u00e9",
|
||||
"lbdevicededicated": "D\u00e9di\u00e9",
|
||||
"lbdeviceid": "ID",
|
||||
"lbdevicename": "Type",
|
||||
"lbdevicestate": "Statut",
|
||||
"level": "Niveau",
|
||||
"limitcpuuse": "Limitation CPU",
|
||||
"linklocalip": "Adresse IP lien local",
|
||||
"loadbalancerinstance": "VMs Assign\u00e9es",
|
||||
"loadbalancerrule": "R\u00e8gle de r\u00e9partition de charge",
|
||||
"localstorageenabled": "Activer le stockage local pour les VMs Utilisateurs",
|
||||
"localstorageenabledforsystemvm": "Activer le stockage local pour les VMs Syst\u00e8mes",
|
||||
"lun": "N\u00b0 LUN",
|
||||
"lxcnetworklabel": "Libell\u00e9 trafic LXC",
|
||||
"makeredundant": "Rendre redondant",
|
||||
"managementServers": "Nombre de serveurs de gestion",
|
||||
"maxInstance": "Instance Max.",
|
||||
"maxIops": "IOPS maximum",
|
||||
"maxerrorretry": "Nombre d'essai en erreur max.",
|
||||
"maxguestslimit": "Nombre maximum d'invit\u00e9s",
|
||||
"maxiops": "IOPS maximum",
|
||||
"memallocated": "Allocation M\u00e9m.",
|
||||
"memory": "M\u00e9moire (en MB)",
|
||||
"memoryLimit": "Limites m\u00e9moire (Mo)",
|
||||
"memoryallocated": "M\u00e9moire allou\u00e9e",
|
||||
"memoryallocatedgb": "Allou\u00e9",
|
||||
"memorymaxdeviation": "\u00c9cart",
|
||||
"memorytotal": "Allou\u00e9",
|
||||
"memorytotalgb": "Total",
|
||||
"memoryused": "Utilis\u00e9",
|
||||
"memoryusedgb": "Utilis\u00e9",
|
||||
"memused": "Util. M\u00e9m.",
|
||||
"minInstance": "Instances Min.",
|
||||
"minIops": "IOPS minimum",
|
||||
"min_balance": "Balance Min.",
|
||||
"miniops": "IOPS minimum",
|
||||
"name": "Nom",
|
||||
"nat": "NAT activ\u00e9 BigSwitch BCF",
|
||||
"netmask": "Masque de r\u00e9seau",
|
||||
"network": "R\u00e9seau",
|
||||
"networkDomain": "Nom de domaine",
|
||||
"networkLimit": "Limites r\u00e9seau",
|
||||
"networkOfferingId": "Offre de R\u00e9seau",
|
||||
"networkRate": "D\u00e9bit R\u00e9seau",
|
||||
"networkcidr": "CIDR r\u00e9seau",
|
||||
"networkdevicetype": "Type",
|
||||
"networkdomain": "Nom de domaine",
|
||||
"networkdomaintext": "Domaine r\u00e9seau",
|
||||
"networkid": "S\u00e9lectionner le tiers",
|
||||
"networkkbsread": "Lecture r\u00e9seau",
|
||||
"networkkbswrite": "\u00c9criture r\u00e9seau",
|
||||
"networkname": "Nom du r\u00e9seau",
|
||||
"networkofferingdisplaytext": "Offre de R\u00e9seau",
|
||||
"networkofferingid": "Offre de R\u00e9seau",
|
||||
"networkofferingidText": "ID Offre R\u00e9seau",
|
||||
"networkofferingname": "Offre de R\u00e9seau",
|
||||
"networkrate": "D\u00e9bit R\u00e9seau",
|
||||
"networkread": "Lecture",
|
||||
"networktype": "Type de r\u00e9seau",
|
||||
"networkwrite": "\u00c9criture",
|
||||
"newDiskOffering": "New Disk Offering",
|
||||
"newdiskoffering": "Nouvelle Offre",
|
||||
"newsize": "Nouvelle Taille (Go)",
|
||||
"nfsCacheNfsServer": "Serveur NFS S3",
|
||||
"nfsCachePath": "Chemin NFS S3",
|
||||
"nfsCacheZoneid": "Zone",
|
||||
"nfsServer": "Serveur",
|
||||
"nicAdapterType": "Type de carte r\u00e9seau",
|
||||
"number": "#R\u00e8gle",
|
||||
"numberOfRouterRequiresUpgrade": "Total des routeurs virtuels avec mise \u00e0 niveau n\u00e9cessaire",
|
||||
"numretries": "Nombre de tentatives",
|
||||
"nvpdeviceid": "ID",
|
||||
"offerHA": "Offrir la haute disponibilit\u00e9",
|
||||
"offerha": "Offrir la haute disponibilit\u00e9",
|
||||
"osTypeId": "Type du OS",
|
||||
"oscategoryid": "Pr\u00e9f\u00e9rence OS",
|
||||
"ostypeid": "Type du OS",
|
||||
"ostypename": "Type du OS",
|
||||
"overrideguesttraffic": "Remplacer Trafic-invit\u00e9",
|
||||
"overridepublictraffic": "Remplacer Trafic-public",
|
||||
"ovm3cluster": "Cluster natif",
|
||||
"ovm3networklabel": "Libell\u00e9 trafic OVM3",
|
||||
"ovm3pool": "Pool natif",
|
||||
"ovm3vip": "IP Ma\u00eetre Vip",
|
||||
"ovmnetworklabel": "Libell\u00e9 trafic OVM",
|
||||
"palp": "Profil Journal Palo Alto",
|
||||
"parentName": "Parent",
|
||||
"passive": "Passif",
|
||||
"password": "Mot de passe",
|
||||
"password-confirm": "Confirmer le mot de passe",
|
||||
"passwordenabled": "Mot de passe activ\u00e9",
|
||||
"path": "Chemin",
|
||||
"patp": "Profil menace Palo Alto",
|
||||
"pavr": "Routeur Virtuel",
|
||||
"pciDevice": "GPU",
|
||||
"perfectForwardSecrecy": "Confidentialit\u00e9 persistante",
|
||||
"physicalNetworkId": "R\u00e9seau physique",
|
||||
"physicalnetworkid": "R\u00e9seau physique",
|
||||
"physicalsize": "Physical Size",
|
||||
"plannerMode": "Mode planification",
|
||||
"podId": "Pod",
|
||||
"podname": "Pod",
|
||||
"port": "Port",
|
||||
"portableipaddress": "IPs portables",
|
||||
"powerstate": "Status Alimentation",
|
||||
"primaryStorageLimit": "Limites stockage primaire (Go)",
|
||||
"primarystoragetotal": "Stockages primaires",
|
||||
"privateinterface": "Interface priv\u00e9e",
|
||||
"privateip": "Adresse IP Priv\u00e9e",
|
||||
"privatekey": "Cl\u00e9 priv\u00e9e",
|
||||
"privatenetwork": "R\u00e9seau priv\u00e9",
|
||||
"privateport": "Port priv\u00e9",
|
||||
"profiledn": "Profil associ\u00e9",
|
||||
"profilename": "Profil",
|
||||
"project": "Projet",
|
||||
"projectId": "Projet",
|
||||
"projectid": "ID projet",
|
||||
"projects": "Projets",
|
||||
"property": "Propri\u00e9t\u00e9",
|
||||
"protocol": "Protocole",
|
||||
"protocolnumber": "#Protocole",
|
||||
"provider": "Fournisseur",
|
||||
"providername": "Fournisseur",
|
||||
"provisioningType": "Type de provisionnement",
|
||||
"provisioningtype": "Type de provisionnement",
|
||||
"publicinterface": "Interface publique",
|
||||
"publicip": "Adresse IP",
|
||||
"publickey": "Cl\u00e9 publique",
|
||||
"publicnetwork": "R\u00e9seau public",
|
||||
"publicport": "Port public",
|
||||
"purpose": "R\u00f4le",
|
||||
"qosType": "Type de QoS",
|
||||
"quiescevm": "Mettre en veille VM",
|
||||
"quietTime": "Quiet Time (en sec)",
|
||||
"quota": "Valeur Quota",
|
||||
"quota_enforce": "Forcer Quota",
|
||||
"rbdid": "Utilisateur Cephx",
|
||||
"rbdmonitor": "Superviseur Ceph",
|
||||
"rbdpool": "Pool Ceph",
|
||||
"rbdsecret": "Secret Cephx",
|
||||
"reason": "Reason",
|
||||
"receivedbytes": "Octets re\u00e7us",
|
||||
"redundantRouterState": "\u00c9tat de la redondance",
|
||||
"redundantrouter": "Routeur redondant",
|
||||
"redundantstate": "\u00c9tat de la redondance",
|
||||
"redundantvpcrouter": "VPC Redondant",
|
||||
"reenterpassword": "Re-saisir Mot de passe",
|
||||
"relationaloperator": "Op\u00e9rateur",
|
||||
"requireshvm": "HVM",
|
||||
"requiresupgrade": "Mise \u00e0 jour n\u00e9cessaire",
|
||||
"reservedSystemEndIp": "Adresse IP de fin r\u00e9serv\u00e9e Syst\u00e8me",
|
||||
"reservedSystemGateway": "Passerelle r\u00e9serv\u00e9e Syst\u00e8me",
|
||||
"reservedSystemNetmask": "Masque de sous-r\u00e9seau r\u00e9serv\u00e9 Syst\u00e8me",
|
||||
"reservedSystemStartIp": "Adresse IP de d\u00e9but r\u00e9serv\u00e9e Syst\u00e8me",
|
||||
"reservediprange": "Plage IP r\u00e9serv\u00e9e",
|
||||
"resourceid": "ID Ressource",
|
||||
"resourcename": "Nom Ressource",
|
||||
"resourcestate": "\u00c9tat des ressources",
|
||||
"restartrequired": "Red\u00e9marrage n\u00e9cessaire",
|
||||
"role": "R\u00f4le",
|
||||
"rolename": "R\u00f4le",
|
||||
"roletype": "Type R\u00f4le",
|
||||
"rootDiskControllerType": "Contr\u00f4leur de disque racine",
|
||||
"rootDiskControllerTypeKVM": "Contr\u00f4leur de disque racine",
|
||||
"routerCount": "Total des Routeurs virtuels",
|
||||
"routerRequiresUpgrade": "Une mise \u00e0 jour est n\u00e9cessaire",
|
||||
"routerType": "Type",
|
||||
"samlEnable": "Autoriser SAML SSO",
|
||||
"samlEntity": "Fournisseur d'identit\u00e9",
|
||||
"scope": "Port\u00e9e",
|
||||
"secondaryStorageLimit": "Limites stockage secondaire (Go)",
|
||||
"secondaryips": "IPs secondaires",
|
||||
"secretkey": "Cl\u00e9 priv\u00e9e",
|
||||
"securityGroups": "Groupes de s\u00e9curit\u00e9",
|
||||
"securitygroup": "Groupe de s\u00e9curit\u00e9",
|
||||
"sent": "Date",
|
||||
"sentbytes": "Octets envoy\u00e9s",
|
||||
"server": "Serveur",
|
||||
"service.Connectivity.distributedRouterCapabilityCheckbox": "Routeur Distribu\u00e9",
|
||||
"service.Connectivity.regionLevelVpcCapabilityCheckbox": "VPC niveau r\u00e9gion",
|
||||
"service.Lb.elasticLbCheckbox": "R\u00e9partition de charge extensible",
|
||||
"service.Lb.inlineModeDropdown": "Mode",
|
||||
"service.Lb.lbIsolationDropdown": "R\u00e9partition de charge isol\u00e9e",
|
||||
"service.SourceNat.redundantRouterCapabilityCheckbox": "Router redondant",
|
||||
"service.SourceNat.sourceNatTypeDropdown": "Type de NAT support\u00e9",
|
||||
"service.StaticNat.associatePublicIP": "Associer IP Publique",
|
||||
"service.StaticNat.elasticIpCheckbox": "IP extensible",
|
||||
"serviceCapabilities": "Fonctions disponibles",
|
||||
"serviceOfferingId": "Offre de calcul",
|
||||
"servicelist": "Services",
|
||||
"serviceofferingid": "Offre de calcul",
|
||||
"serviceofferingname": "Offre de calcul",
|
||||
"shrinkok": "R\u00e9duction OK",
|
||||
"size": "Capacit\u00e9",
|
||||
"sizegb": "Capacit\u00e9",
|
||||
"smbDomain": "Domaine SMB",
|
||||
"smbPassword": "Mot de passe SMB",
|
||||
"smbUsername": "Identifiant SMB",
|
||||
"snapshotLimit": "Limites d'instantan\u00e9s",
|
||||
"snapshotMemory": "M\u00e9more instantan\u00e9",
|
||||
"snmpCommunity": "Communaut\u00e9 SNMP",
|
||||
"snmpPort": "Port SNMP",
|
||||
"sockettimeout": "D\u00e9lai d'expiration de la socket",
|
||||
"sourceNat": "NAT Source",
|
||||
"sourceipaddress": "Adresse IP source",
|
||||
"sourceport": "Port Source",
|
||||
"specifyVlan": "Pr\u00e9ciser le VLAN",
|
||||
"specifyipranges": "Sp\u00e9cifier des plages IP",
|
||||
"specifyvlan": "Pr\u00e9ciser le VLAN",
|
||||
"sshkeypair": "Nouvelle bi-cl\u00e9 SSH",
|
||||
"startdate": "Date d\u00e9but",
|
||||
"startip": "IP d\u00e9but IPv4",
|
||||
"startipv4": "IP d\u00e9but IPv4",
|
||||
"startipv6": "IP d\u00e9but IPv6",
|
||||
"startport": "Port de d\u00e9but",
|
||||
"startquota": "Valeur Quota",
|
||||
"state": "\u00c9tat",
|
||||
"status": "Statut",
|
||||
"storage": "Stockage",
|
||||
"storageId": "Stockages primaires",
|
||||
"storagePool": "Pool de stockage",
|
||||
"storageTags": "\u00c9tiquettes de stockage",
|
||||
"storageType": "Type de stockage",
|
||||
"storagetype": "Type de stockage",
|
||||
"subdomainaccess": "Acc\u00e8s sous-domaine",
|
||||
"supportedServices": "Services support\u00e9s",
|
||||
"supportspublicaccess": "Acc\u00e8s publiques activ\u00e9s",
|
||||
"supportsregionLevelvpc": "VPC niveau R\u00e9gion support\u00e9",
|
||||
"supportsstrechedl2subnet": "Sous-r\u00e9seau Streched L2 support\u00e9",
|
||||
"systemvmtype": "Type",
|
||||
"tags": "\u00c9tiquettes de stockage",
|
||||
"tariffValue": "Valeur Tarif",
|
||||
"template": "S\u00e9lectionner un mod\u00e8le",
|
||||
"templateFileUpload": "Fichier local",
|
||||
"templateLimit": "Limites de mod\u00e8le",
|
||||
"templateNames": "Mod\u00e8le",
|
||||
"templatebody": "Corps de message",
|
||||
"templatedn": "S\u00e9lectionner Mod\u00e8le",
|
||||
"templatename": "Mod\u00e8le",
|
||||
"templatesubject": "Sujet",
|
||||
"templatetotal": "Mod\u00e8le",
|
||||
"templatetype": "Mod\u00e8le d'email",
|
||||
"tftpdir": "R\u00e9pertoire racine TFTP",
|
||||
"threshold": "Seuil",
|
||||
"tierName": "Tiers",
|
||||
"timeout": "D\u00e9lai d'expiration",
|
||||
"timezone": "Fuseau horaire",
|
||||
"token": "Jeton unique",
|
||||
"totalCPU": "Capacit\u00e9 totale en CPU",
|
||||
"traffictype": "Type Trafic",
|
||||
"transportzoneuuid": "Uuid de la Zone Transport",
|
||||
"type": "Type",
|
||||
"unit": "Unit\u00e9 d'usage",
|
||||
"url": "URL",
|
||||
"usageName": "Type Usage",
|
||||
"usageUnit": "Unit\u00e9",
|
||||
"usageinterface": "Interface Utilisation",
|
||||
"useNewDiskOffering": "Replace disk offering?",
|
||||
"useVpc": "VPC",
|
||||
"usehttps": "Utiliser HTTPS",
|
||||
"userDataL2": "Donn\u00e9es utilisateur",
|
||||
"username": "Identifiant",
|
||||
"utilization": "Utilisation",
|
||||
"uuid": "ID",
|
||||
"vCenterDataCenter": "Datacenter vCenter",
|
||||
"vCenterDataStore": "Datastore vCenter",
|
||||
"vCenterDatacenter": "Datacenter vCenter",
|
||||
"vCenterHost": "H\u00f4te vCenter",
|
||||
"vCenterPassword": "Mot de passe vCenter",
|
||||
"vCenterUsername": "Identifiant vCenter",
|
||||
"vSwitchGuestName": "Nom Trafic Invit\u00e9 vSwitch",
|
||||
"vSwitchGuestType": "Type Trafic Invit\u00e9 vSwitch",
|
||||
"vSwitchPublicName": "Nom Trafic Public vSwitch",
|
||||
"vSwitchPublicType": "Type Trafic Public vSwitch",
|
||||
"value": "Cr\u00e9dits",
|
||||
"vcenter": "vcenter datacenter VMware",
|
||||
"vcenterHost": "H\u00f4te ESX/ESXi",
|
||||
"vcsdeviceid": "ID",
|
||||
"version": "Version",
|
||||
"vgpu": "VGPU",
|
||||
"vgpuType": "vGPU type",
|
||||
"virtualMachineId": "Instance",
|
||||
"virtualmachinedisplayname": "Nom VM",
|
||||
"virtualmachineid": "ID VM",
|
||||
"virtualsize": "Virtual Size",
|
||||
"vlan": "VLAN/VNI",
|
||||
"vlanId": "ID VLAN/VNI",
|
||||
"vlanRange": "Plage du VLAN",
|
||||
"vlanname": "VLAN",
|
||||
"vlanrange": "Plage du VLAN",
|
||||
"vmLimit": "Limites des instances",
|
||||
"vmTotal": "Instances",
|
||||
"vmdisplayname": "Nom commun VM",
|
||||
"vmipaddress": "Adresse IP VM",
|
||||
"vmname": "Nom VM",
|
||||
"vmstate": "\u00c9tat VM",
|
||||
"vmtotal": "Total VMs",
|
||||
"vmwaredcId": "ID datacenter VMware",
|
||||
"vmwaredcName": "Nom datacenter VMware",
|
||||
"vmwaredcVcenter": "vcenter datacenter VMware",
|
||||
"vmwarenetworklabel": "Libell\u00e9 trafic VMware",
|
||||
"volume": "Volume",
|
||||
"volumeFileUpload": "Fichier local",
|
||||
"volumeLimit": "Limites des volumes",
|
||||
"volumeTotal": "Volumes",
|
||||
"volumegroup": "Groupe de Volume",
|
||||
"volumename": "Nom du volume",
|
||||
"volumetotal": "Volume",
|
||||
"vpcLimit": "Limites VPC",
|
||||
"vpcid": "ID VPC",
|
||||
"vpcname": "VPC",
|
||||
"vpcoffering": "Offre de VPC",
|
||||
"vpncustomergatewayid": "Passerelle VPN client",
|
||||
"vsmctrlvlanid": " ID VLAN Contr\u00f4le",
|
||||
"vsmdeviceid": "Nom",
|
||||
"vsmdevicestate": "\u00c9tat",
|
||||
"vsmipaddress": "Adresse IP Nexus 1000v",
|
||||
"vsmipaddress_req": "Adresse IP Nexus 1000v",
|
||||
"vsmpassword": "Mot de passe Nexus 1000v",
|
||||
"vsmpassword_req": "Mot de passe Nexus 1000v",
|
||||
"vsmpktvlanid": "ID VLAN Paquet",
|
||||
"vsmstoragevlanid": "VLAN ID Stockage",
|
||||
"vsmusername": "Identifiant Nexus 1000v",
|
||||
"vsmusername_req": "Identifiant Nexus 1000v",
|
||||
"xennetworklabel": "Libell\u00e9 trafic XenServer",
|
||||
"xenserverToolsVersion61plus": "XenServer Tools Version 6.1+",
|
||||
"zone": "Zone",
|
||||
"zoneId": "Zone",
|
||||
"zoneid": "Zone",
|
||||
"zonename": "Zone"
|
||||
}
|
||||
|
|
@ -0,0 +1,638 @@
|
|||
{
|
||||
"Accounts": "Sz\u00e1ml\u00e1k",
|
||||
"Affinity Groups": "Affin\u00edt\u00e1si csoportok",
|
||||
"Alerts": "Riaszt\u00e1sok",
|
||||
"CPU Sockets": "CPU aljzatok",
|
||||
"Cloudian Storage": "Cloudian Storage",
|
||||
"Clusters": "F\u00fcrt",
|
||||
"Compute": "Sz\u00e1m\u00edt\u00e1s",
|
||||
"Compute Offerings": "Sz\u00e1m\u00edt\u00e1si aj\u00e1nlatok",
|
||||
"Configuration": "Konfigur\u00e1ci\u00f3",
|
||||
"Dashboard": "M\u0171szert\u00e1bla",
|
||||
"Disk Offerings": "Merevlemez aj\u00e1nlatok",
|
||||
"Domains": "Domains",
|
||||
"Events": "Esem\u00e9nyek",
|
||||
"Global Settings": "Glob\u00e1lis be\u00e1ll\u00edt\u00e1sok",
|
||||
"Hosts": "Kiszolg\u00e1l\u00f3k",
|
||||
"Hypervisor Capabilities": "Hipervizor k\u00e9pess\u00e9gek",
|
||||
"ISOs": "ISO-k",
|
||||
"Identity and Access": "Identity and Access",
|
||||
"Infrastructure": "Infrastrukt\u00fara",
|
||||
"Instances": "P\u00e9ld\u00e1nyok",
|
||||
"LDAP Configuration": "LDAP konfigur\u00e1ci\u00f3",
|
||||
"Management Servers": "Management Servers",
|
||||
"Monitor": "Monitor",
|
||||
"Network": "H\u00e1l\u00f3zatok",
|
||||
"Network Offerings": "H\u00e1l\u00f3zati aj\u00e1nlatok",
|
||||
"Plugins": "Plugin-ek",
|
||||
"Pods": "Pod-ok",
|
||||
"Primary Storage": "Els\u0151dleges t\u00e1r",
|
||||
"Projects": "Projektek",
|
||||
"Public IP Addresses": "Publikus IP c\u00edmek",
|
||||
"Public network": "Publikus h\u00e1l\u00f3zat",
|
||||
"Quota": "Quota",
|
||||
"RESOURCE_NAME": "Er\u0151forr\u00e1s n\u00e9v",
|
||||
"Roles": "Roles",
|
||||
"SSH Key Pairs": "SSH kulcsp\u00e1rok",
|
||||
"Secondary Storage": "M\u00e1sodlagos t\u00e1r",
|
||||
"Security Groups": "Biztons\u00e1gi csoportok",
|
||||
"Snapshots": "Pillanatfelv\u00e9telek",
|
||||
"Storage": "T\u00e1r",
|
||||
"System Offerings": "Rendszer aj\u00e1nlatok",
|
||||
"System VMs": "Rendszer VM-ek",
|
||||
"Templates": "Sablonok",
|
||||
"Users": "Felhaszn\u00e1l\u00f3k",
|
||||
"VM Snapshots": "VM pillanatfelv\u00e9telek",
|
||||
"VPC": "VPC",
|
||||
"VPC Offerings": "VPC aj\u00e1nlatok",
|
||||
"VPN Gateway": "VPN \u00e1tj\u00e1r\u00f3",
|
||||
"Virtual Routers": "Virtu\u00e1lis routerek",
|
||||
"Volumes": "K\u00f6tetek",
|
||||
"Zones": "Z\u00f3n\u00e1k",
|
||||
"accesskey": "Hozz\u00e1f\u00e9r\u00e9si kulcs",
|
||||
"account": "Sz\u00e1mla",
|
||||
"accountId": "Sz\u00e1mla",
|
||||
"accountTotal": "Sz\u00e1ml\u00e1k",
|
||||
"accountlist": "Sz\u00e1ml\u00e1k",
|
||||
"accounts": "Sz\u00e1ml\u00e1k",
|
||||
"accounttype": "Sz\u00e1mla t\u00edpus",
|
||||
"aclTotal": "H\u00e1l\u00f3zati ACL \u00f6sszesen",
|
||||
"aclid": "ACL",
|
||||
"aclname": "ACL n\u00e9v",
|
||||
"action": "M\u0171velet",
|
||||
"activeviewersessions": "Akt\u00edv munkamenetek",
|
||||
"add-scaleDowncondition": "Felv\u00e9tel",
|
||||
"add-scaleUpcondition": "Felv\u00e9tel",
|
||||
"address": "Address",
|
||||
"admin": "Tartom\u00e1ny adminisztr\u00e1tor",
|
||||
"agentPassword": "\u00dcgyn\u00f6k jelsz\u00f3",
|
||||
"agentPort": "\u00dcgyn\u00f6k port",
|
||||
"agentUsername": "\u00dcgyn\u00f6k felhaszn\u00e1l\u00f3n\u00e9v",
|
||||
"agentstate": "\u00dcgyn\u00f6k \u00e1llapot",
|
||||
"algorithm": "Algoritmus",
|
||||
"allocationstate": "Lefoglal\u00e1s \u00e1llapota",
|
||||
"apikey": "API kulcs",
|
||||
"associatednetworkid": "Kapcsolt h\u00e1l\u00f3zat ID",
|
||||
"associatednetworkname": "H\u00e1l\u00f3zat n\u00e9v",
|
||||
"availability": "El\u00e9rhet\u0151s\u00e9g",
|
||||
"availabilityZone": "El\u00e9rhet\u0151s\u00e9gi z\u00f3na",
|
||||
"balance": "Balance",
|
||||
"baremetalCpu": "CPU (MHz)",
|
||||
"baremetalCpuCores": "CPU magok sz\u00e1ma",
|
||||
"baremetalMAC": "Kiszolg\u00e1l\u00f3 MAC",
|
||||
"baremetalMemory": "Mem\u00f3ria (MB)",
|
||||
"bcfdeviceid": "ID",
|
||||
"bladeid": "Blade ID",
|
||||
"bootable": "Ind\u00edthat\u00f3",
|
||||
"broadcastdomainrange": "Broadcast domain range",
|
||||
"broadcastdomaintype": "Broadcast Domain Type",
|
||||
"broadcasturi": "Broadcast URI",
|
||||
"bucket": "Kos\u00e1r",
|
||||
"cacheMode": "Write-cache Type",
|
||||
"capacity": "Kapac\u00edt\u00e1s",
|
||||
"capacityBytes": "Byte kapac\u00edt\u00e1s",
|
||||
"capacityIops": "IOPS kapac\u00edt\u00e1s",
|
||||
"capacityiops": "IOPS \u00f6sszesen",
|
||||
"chassis": "H\u00e1z",
|
||||
"checksum": "ellen\u00f6rz\u0151 \u00f6sszeg",
|
||||
"cidr": "CIDR",
|
||||
"cidrlist": "CIDR lista",
|
||||
"cleanup": "Takar\u00edt\u00e1s",
|
||||
"clusterId": "F\u00fcrt",
|
||||
"clusterid": "F\u00fcrt",
|
||||
"clustername": "F\u00fcrt",
|
||||
"clusters": "F\u00fcrt",
|
||||
"clustertype": "F\u00fcrt t\u00edpus",
|
||||
"connectiontimeout": "Kapcsol\u00f3d\u00e1si id\u0151t\u00fall\u00e9p\u00e9s",
|
||||
"conservemode": "Conserve mode",
|
||||
"counterid": "Sz\u00e1ml\u00e1l\u00f3",
|
||||
"cpuCap": "CPU Cap",
|
||||
"cpuLimit": "CPU korl\u00e1tok",
|
||||
"cpuNumber": "CPU magok sz\u00e1ma",
|
||||
"cpuSpeed": "CPU (MHz)",
|
||||
"cpuallocated": "CPU lefoglalva a VM-ek r\u00e9sz\u00e9re",
|
||||
"cpuallocatedghz": "Lek\u00f6t\u00f6ve",
|
||||
"cpumaxdeviation": "Deviation",
|
||||
"cpunumber": "CPU magok sz\u00e1ma",
|
||||
"cpusockets": "CPU-aljzatok sz\u00e1ma",
|
||||
"cpuspeed": "CPU (MHz)",
|
||||
"cputotal": "\u00d6sszes",
|
||||
"cputotalghz": "\u00d6sszes",
|
||||
"cpuused": "CPU haszn\u00e1lat",
|
||||
"cpuusedghz": "Haszn\u00e1lt",
|
||||
"createNfsCache": "Create NFS Secondary Staging Store",
|
||||
"created": "D\u00e1tum",
|
||||
"credit": "Credit",
|
||||
"crossZones": "Cross Zones",
|
||||
"current": "Jelnlegi",
|
||||
"date": "D\u00e1tum",
|
||||
"dedicated": "Dedik\u00e1lt",
|
||||
"deleteprofile": "Profil t\u00f6rl\u00e9se",
|
||||
"deploymentPlanner": "Felhaszn\u00e1l\u00e1s tervez\u0151",
|
||||
"deploymentplanner": "Felhaszn\u00e1l\u00e1s tervez\u0151",
|
||||
"description": "Le\u00edr\u00e1s",
|
||||
"destinationZoneId": "C\u00e9l z\u00f3na",
|
||||
"destinationphysicalnetworkid": "C\u00e9l fizikai h\u00e1l\u00f3zat ID",
|
||||
"destroyVMgracePeriod": "VM elpuszt\u00edt\u00e1s t\u00fcrelmi id\u0151",
|
||||
"details": "R\u00e9szletek",
|
||||
"deviceid": "Eszk\u00f6z ID",
|
||||
"directdownload": "Direct Download",
|
||||
"disconnected": "Utolj\u00e1ra lecsatlakozott",
|
||||
"disk": "Merevlemez",
|
||||
"diskBytesReadRate": "Olvas\u00e1si r\u00e1ta (BPS)",
|
||||
"diskBytesWriteRate": "\u00cdr\u00e1si r\u00e1ta (BPS)",
|
||||
"diskIopsReadRate": "Olvas\u00e1si r\u00e1ta (IOPS)",
|
||||
"diskIopsWriteRate": "\u00cdr\u00e1si r\u00e1ta (IOPS)",
|
||||
"diskOffering": "Merevlemez aj\u00e1nlat",
|
||||
"diskOfferingId": "Merevlemez aj\u00e1nlatok",
|
||||
"diskSize": "Merevlemez m\u00e9ret (GB)",
|
||||
"diskiopstotal": "IOPS",
|
||||
"diskioread": "Merevlemez \u00edr\u00e1s (IO)",
|
||||
"diskiowrite": "Merevlemez \u00edr\u00e1s (IO)",
|
||||
"diskkbsread": "Merevlemez olvas\u00e1s (Byte)",
|
||||
"diskkbswrite": "Merevlemez \u00edr\u00e1s (byte)",
|
||||
"diskofferingdisplaytext": "Merevlemez aj\u00e1nlat",
|
||||
"disksize": "Merevlemez m\u00e9ret (GB)",
|
||||
"disksizeallocated": "Merevlemez lefoglalva",
|
||||
"disksizeallocatedgb": "Lek\u00f6t\u00f6ve",
|
||||
"disksizetotal": "Merevlemez \u00f6sszes",
|
||||
"disksizetotalgb": "\u00d6sszes",
|
||||
"disksizeunallocatedgb": "Lefoglalatlan",
|
||||
"disksizeusedgb": "Haszn\u00e1lt",
|
||||
"displayText": "Le\u00edr\u00e1s",
|
||||
"displayname": "Megjelen\u00edtend\u0151 n\u00e9v",
|
||||
"displaytext": "Le\u00edr\u00e1s",
|
||||
"distributedvpcrouter": "Elosztott VPC Router",
|
||||
"dns1": "1. DNS",
|
||||
"dns2": "2. DNS",
|
||||
"domain": "Dom\u00e9n",
|
||||
"domainId": "Dom\u00e9n",
|
||||
"domainid": "Dom\u00e9n",
|
||||
"domainname": "Dom\u00e9n",
|
||||
"domainpath": "Dom\u00e9n",
|
||||
"dpd": "Dead Peer Detection",
|
||||
"driver": "Driver",
|
||||
"egressdefaultpolicy": "Alap\u00e9rtelmezett egress szab\u00e1lyzat",
|
||||
"email": "Email",
|
||||
"enddate": "V\u00e9g d\u00e1tum",
|
||||
"endip": "IPv4 utols\u00f3 IP",
|
||||
"endipv4": "IPv4 utols\u00f3 IP",
|
||||
"endipv6": "IPv6 utols\u00f3 IP",
|
||||
"endpoint": "V\u00e9gpont",
|
||||
"endport": "Utols\u00f3 Port",
|
||||
"espEncryption": "ESP titkos\u00edt\u00e1s",
|
||||
"espHash": "ESP Hash",
|
||||
"esplifetime": "ESP \u00e9lettartam (mp)",
|
||||
"esppolicy": "ESP szab\u00e1lyzat",
|
||||
"expunge": "T\u00f6rl\u00e9s",
|
||||
"fingerprint": "\u00dajlenyomat",
|
||||
"firstname": "Keresztn\u00e9v",
|
||||
"forced": "Le\u00e1ll\u00e1s kik\u00e9nyszer\u00edt\u00e9se",
|
||||
"forceencap": "Force UDP Encapsulation of ESP Packets",
|
||||
"format": "Form\u00e1tum",
|
||||
"fwdevicecapacity": "Kapac\u00edt\u00e1s",
|
||||
"fwdeviceid": "ID",
|
||||
"fwdevicename": "T\u00edpus",
|
||||
"fwdevicestate": "\u00c1llapot",
|
||||
"gateway": "\u00c1tj\u00e1r\u00f3",
|
||||
"glustervolume": "K\u00f6tet",
|
||||
"group": "Csoport",
|
||||
"gslbdomainname": "GSLB dom\u00e9n n\u00e9v",
|
||||
"gslblbmethod": "Algoritmus",
|
||||
"gslbprovider": "GSLB szolg\u00e1ltat\u00e1s",
|
||||
"gslbproviderprivateip": "GSLB szolg\u00e1ltat\u00e1s priv\u00e1t IP",
|
||||
"gslbproviderpublicip": "GSLB szolg\u00e1ltat\u00e1s publikus IP",
|
||||
"gslbservicetype": "Szolg\u00e1ltat\u00e1s t\u00edpus",
|
||||
"guestEndIp": "Utols\u00f3 veng\u00e9g IP",
|
||||
"guestGateway": "Vend\u00e9g \u00e1tj\u00e1r\u00f3",
|
||||
"guestIpType": "Vend\u00e9g t\u00edpus",
|
||||
"guestNetmask": "Vend\u00e9g h\u00e1l\u00f3zati maszk",
|
||||
"guestStartIp": "Kezd\u0151 vend\u00e9g IP",
|
||||
"guestcidraddress": "Vend\u00e9g CIDR",
|
||||
"guestipaddress": "Vend\u00e9g IP c\u00edm",
|
||||
"guestiptype": "Vend\u00e9g t\u00edpus",
|
||||
"guestnetworkid": "H\u00e1l\u00f3zat ID",
|
||||
"guestnetworkname": "H\u00e1l\u00f3zat n\u00e9v",
|
||||
"guestosid": "OS t\u00edpus",
|
||||
"guestvlanrange": "VLAN tartom\u00e1ny(ok)",
|
||||
"haenable": "HA bekapcsolva",
|
||||
"hahost": "HA bekapcsolva",
|
||||
"host": "IP c\u00edm",
|
||||
"hostId": "Kiszolg\u00e1l\u00f3",
|
||||
"hostTags": "Kiszolg\u00e1l\u00f3 c\u00edmk\u00e9k",
|
||||
"hostname": "Kiszolg\u00e1l\u00f3 n\u00e9v",
|
||||
"hosts": "Kiszolg\u00e1l\u00f3k",
|
||||
"hosttags": "Kiszolg\u00e1l\u00f3 c\u00edmk\u00e9k",
|
||||
"hypervisor": "Hipervizor",
|
||||
"hypervisorSnapshotReserve": "Hipervizor Snapshot Reserve",
|
||||
"hypervisorsnapshotreserve": "Hipervizor Snapshot Reserve",
|
||||
"hypervisortype": "Hipervizor",
|
||||
"hypervisorversion": "Hipervizor verzi\u00f3",
|
||||
"hypervnetworklabel": "HyperV Traffic Label",
|
||||
"icmpcode": "ICMP k\u00f3d",
|
||||
"icmptype": "ICMP t\u00edpus",
|
||||
"id": "ID",
|
||||
"ikeDh": "IKE DH",
|
||||
"ikeEncryption": "IKE titkos\u00edt\u00e1s",
|
||||
"ikeHash": "IKE Hash",
|
||||
"ikelifetime": "IKE \u00e9lettartam (mp)",
|
||||
"ikepolicy": "IKE szab\u00e1lyzat",
|
||||
"insideportprofile": "Inside Port Profile",
|
||||
"instancename": "Bels\u0151 n\u00e9v",
|
||||
"instanceport": "P\u00e9ld\u00e1ny port",
|
||||
"instances": "P\u00e9ld\u00e1nyok",
|
||||
"internaldns1": "1. bels\u0151 DNS",
|
||||
"internaldns2": "2. bels\u0151 DNS",
|
||||
"interval": "Lek\u00e9rdez\u00e9s id\u0151k\u00f6ze (mp)",
|
||||
"intervaltype": "Id\u0151k\u00f6z t\u00edpus",
|
||||
"ip": "IP c\u00edm",
|
||||
"ip4Netmask": "IPv4 h\u00e1l\u00f3zati maszk",
|
||||
"ip4dns1": "IPv4 1. DNS",
|
||||
"ip4dns2": "IPv4 2. DNS",
|
||||
"ip4gateway": "IPv4 \u00e1tj\u00e1r\u00f3",
|
||||
"ip6address": "IPv6 IP c\u00edm",
|
||||
"ip6cidr": "IPv6 CIDR",
|
||||
"ip6dns1": "IPv6 1. DNS",
|
||||
"ip6dns2": "IPv6 2. DNS",
|
||||
"ip6gateway": "IPv6 \u00e1tj\u00e1r\u00f3",
|
||||
"ipLimit": "Publikus IP korl\u00e1tok",
|
||||
"ipaddress": "IP c\u00edm",
|
||||
"ipaddress1": "IP c\u00edm",
|
||||
"ipaddress2": "IP c\u00edm",
|
||||
"ipsecpsk": "IPsec Preshared-Key",
|
||||
"iptotal": "IP c\u00edmek \u00f6sszesen",
|
||||
"iqn": "C\u00e9l IQN",
|
||||
"isAdvanced": "Halad\u00f3 szint\u0171 be\u00e1ll\u00edt\u00e1sok",
|
||||
"isBootable": "Ind\u00edthat\u00f3",
|
||||
"isCustomized": "Egyedi merevlemez m\u00e9ret",
|
||||
"isCustomizedIops": "Egyedi IOPS",
|
||||
"isDedicated": "Dedik\u00e1l\u00e1s",
|
||||
"isExtractable": "Kicsomagolhat\u00f3",
|
||||
"isFeatured": "Kiemelt",
|
||||
"isForced": "Elt\u00e1vol\u00edt\u00e1s kik\u00e9nyszer\u00edt\u00e9se",
|
||||
"isManaged": "Vez\u00e9relt",
|
||||
"isPasswordEnabled": "Jelsz\u00f3 bekapcsolva",
|
||||
"isPersistent": "Perzisztens",
|
||||
"isPublic": "Publikus",
|
||||
"isVolatile": "Ill\u00e9kony",
|
||||
"iscustomized": "Egyedi merevlemez m\u00e9ret",
|
||||
"iscustomizediops": "Egyedi IOPS",
|
||||
"isdedicated": "Dedik\u00e1lt",
|
||||
"isdefault": "Alap\u00e9rtelmezett",
|
||||
"isdynamicallyscalable": "Dinakikusan sk\u00e1l\u00e1zhat\u00f3",
|
||||
"isextractable": "kicsomagolhat\u00f3",
|
||||
"isfeatured": "Kiemelt",
|
||||
"iso": "ISO",
|
||||
"isolatedpvlanId": "M\u00e1sodlagos izol\u00e1lt VLAN ID",
|
||||
"isolationmethods": "Izol\u00e1ci\u00f3 m\u00f3dszer",
|
||||
"isolationuri": "Izol\u00e1ci\u00f3 URI",
|
||||
"isoname": "Kapcsolt ISO",
|
||||
"ispersistent": "Perzisztens",
|
||||
"isportable": "Cross Zones",
|
||||
"ispublic": "Publikus",
|
||||
"isready": "K\u00e9szen \u00e1ll",
|
||||
"isredundantrouter": "Redund\u00e1ns router",
|
||||
"isrouting": "\u00datvonalv\u00e1laszt\u00e1s",
|
||||
"issourcenat": "Forr\u00e1s NAT",
|
||||
"isstaticnat": "Statikus NAT",
|
||||
"issystem": "Rendszer",
|
||||
"isvolatile": "Ill\u00e9kony",
|
||||
"key": "Kulcs",
|
||||
"keyboardType": "Billenty\u0171zet t\u00edpus",
|
||||
"keypair": "SSH kulcsp\u00e1r",
|
||||
"kvmnetworklabel": "KVM traffic label",
|
||||
"l2gatewayserviceuuid": "L2 Gateway Service Uuid",
|
||||
"l3gatewayserviceuuid": "L3 Gateway Service Uuid",
|
||||
"last_updated": "Last Update",
|
||||
"lastname": "Csal\u00e1dn\u00e9v",
|
||||
"lbType": "Terhel\u00e9seloszt\u00f3 t\u00edpus",
|
||||
"lbdevicecapacity": "Kapac\u00edt\u00e1s",
|
||||
"lbdevicededicated": "Dedik\u00e1lt",
|
||||
"lbdeviceid": "ID",
|
||||
"lbdevicename": "T\u00edpus",
|
||||
"lbdevicestate": "\u00c1llapot",
|
||||
"level": "Szint",
|
||||
"limitcpuuse": "CPU Cap",
|
||||
"linklocalip": "Link Local IP Address",
|
||||
"loadbalancerinstance": "Hozz\u00e1rendelt VM-ek",
|
||||
"loadbalancerrule": "Terhel\u00e9seloszt\u00f3 szab\u00e1ly",
|
||||
"localstorageenabled": "Helyi t\u00e1r bekapcsol\u00e1sa felhaszn\u00e1l\u00f3i VM-ek r\u00e9sz\u00e9re",
|
||||
"localstorageenabledforsystemvm": "Helyi t\u00e1r bekapcsol\u00e1sa a rendszer VM sz\u00e1m\u00e1ra",
|
||||
"lun": "LUN #",
|
||||
"lxcnetworklabel": "LXC Traffic Label",
|
||||
"makeredundant": "Redund\u00e1nss\u00e1 t\u00e9tel",
|
||||
"maxInstance": "P\u00e9ld\u00e1nyok maxim\u00e1lis sz\u00e1ma",
|
||||
"maxIops": "IOPS maximum",
|
||||
"maxerrorretry": "\u00dajrapr\u00f3b\u00e1lkoz\u00e1s max.",
|
||||
"maxguestslimit": "Max guest limit",
|
||||
"maxiops": "IOPS maximum",
|
||||
"memallocated": "Mem\u00f3ria foglal\u00e1s",
|
||||
"memory": "Mem\u00f3ria (MB)",
|
||||
"memoryLimit": "Mem\u00f3ria korl\u00e1tok (MiB)",
|
||||
"memoryallocated": "Allok\u00e1lt mem\u00f3ria",
|
||||
"memoryallocatedgb": "Lek\u00f6t\u00f6ve",
|
||||
"memorymaxdeviation": "Deviation",
|
||||
"memorytotal": "Lek\u00f6t\u00f6ve",
|
||||
"memorytotalgb": "\u00d6sszes",
|
||||
"memoryused": "Haszn\u00e1lt",
|
||||
"memoryusedgb": "Haszn\u00e1lt",
|
||||
"memused": "Mem\u00f3ria haszn\u00e1lat",
|
||||
"minInstance": "P\u00e9ld\u00e1nyok minim\u00e1lis sz\u00e1ma",
|
||||
"minIops": "IOPS minimum",
|
||||
"min_balance": "Min Balance",
|
||||
"miniops": "IOPS minimum",
|
||||
"name": "N\u00e9v",
|
||||
"nat": "BigSwitch BCF NAT bekapcsolva",
|
||||
"netmask": "H\u00e1l\u00f3zati maszk",
|
||||
"network": "H\u00e1l\u00f3zatok",
|
||||
"networkDomain": "Network Domain",
|
||||
"networkLimit": "H\u00e1l\u00f3zat korl\u00e1tok",
|
||||
"networkOfferingId": "H\u00e1l\u00f3zat aj\u00e1nlat",
|
||||
"networkRate": "H\u00e1l\u00f3zati r\u00e1ta (Mb/mp)",
|
||||
"networkcidr": "H\u00e1l\u00f3zat CIDR",
|
||||
"networkdevicetype": "T\u00edpus",
|
||||
"networkdomain": "Network Domain",
|
||||
"networkdomaintext": "Network domain",
|
||||
"networkid": "V\u00e1lassz r\u00e9teget!",
|
||||
"networkkbsread": "H\u00e1l\u00f3zat olvas\u00e1s",
|
||||
"networkkbswrite": "H\u00e1l\u00f3zat \u00edr\u00e1s",
|
||||
"networkname": "H\u00e1l\u00f3zat n\u00e9v",
|
||||
"networkofferingdisplaytext": "H\u00e1l\u00f3zat aj\u00e1nlat",
|
||||
"networkofferingid": "H\u00e1l\u00f3zat aj\u00e1nlat",
|
||||
"networkofferingidText": "H\u00e1l\u00f3zat aj\u00e1nlat ID",
|
||||
"networkofferingname": "H\u00e1l\u00f3zat aj\u00e1nlat",
|
||||
"networkrate": "H\u00e1l\u00f3zati r\u00e1ta (Mb/mp)",
|
||||
"networkread": "Olvas\u00e1s",
|
||||
"networktype": "H\u00e1l\u00f3zat t\u00edpus",
|
||||
"networkwrite": "\u00cdr\u00e1s",
|
||||
"newDiskOffering": "New Disk Offering",
|
||||
"newdiskoffering": "\u00daj aj\u00e1nlat",
|
||||
"newsize": "\u00daj m\u00e9ret (GB)",
|
||||
"nfsCacheNfsServer": "S3 NFS kiszolg\u00e1l\u00f3",
|
||||
"nfsCachePath": "S3 NFS \u00fatvonal",
|
||||
"nfsCacheZoneid": "Z\u00f3na",
|
||||
"nfsServer": "Szerver",
|
||||
"nicAdapterType": "NIC adapter t\u00edpus",
|
||||
"number": "#Rule",
|
||||
"numberOfRouterRequiresUpgrade": "Total of Virtual Routers that require upgrade",
|
||||
"numretries": "\u00dajrapr\u00f3b\u00e1lkoz\u00e1sok sz\u00e1ma",
|
||||
"nvpdeviceid": "ID",
|
||||
"offerHA": "Offer HA",
|
||||
"offerha": "Offer HA",
|
||||
"osTypeId": "OS t\u00edpus",
|
||||
"oscategoryid": "OS preferencia",
|
||||
"ostypeid": "OS t\u00edpus",
|
||||
"ostypename": "OS t\u00edpus",
|
||||
"overrideguesttraffic": "Vend\u00e9g forgalom fel\u00fclb\u00edr\u00e1l\u00e1sa",
|
||||
"overridepublictraffic": "Publikus forgalom fel\u00fclb\u00edr\u00e1l\u00e1sa",
|
||||
"ovm3cluster": "Nat\u00edv f\u00fcrt\u00f6z\u00e9s",
|
||||
"ovm3networklabel": "OVM3 traffic label",
|
||||
"ovm3pool": "Native Pooling",
|
||||
"ovm3vip": "Master Vip IP",
|
||||
"ovmnetworklabel": "OVM traffic label",
|
||||
"palp": "Palo Alto log profil",
|
||||
"parentName": "Sz\u00fcl\u0151",
|
||||
"passive": "Passz\u00edv",
|
||||
"password": "Jelsz\u00f3",
|
||||
"password-confirm": "Jelsz\u00f3 meger\u0151s\u00edt\u00e9s",
|
||||
"passwordenabled": "Jelsz\u00f3 bekapcsolva",
|
||||
"path": "\u00datvonal",
|
||||
"patp": "Palo Alto fenyeget\u00e9s profil",
|
||||
"pavr": "Virtu\u00e1lis router",
|
||||
"pciDevice": "GPU",
|
||||
"perfectForwardSecrecy": "Perfect Forward Secrecy",
|
||||
"physicalNetworkId": "Fizikai h\u00e1l\u00f3zat",
|
||||
"physicalnetworkid": "Fizikai h\u00e1l\u00f3zat",
|
||||
"physicalsize": "Physical Size",
|
||||
"plannerMode": "Tervez\u0151 m\u00f3d",
|
||||
"podId": "Pod",
|
||||
"podname": "Pod",
|
||||
"port": "Port",
|
||||
"portableipaddress": "Hordozhat\u00f3 IP c\u00edmek",
|
||||
"powerstate": "Power State",
|
||||
"primaryStorageLimit": "Els\u0151dleges t\u00e1r korl\u00e1tok (GiB)",
|
||||
"primarystoragetotal": "Els\u0151dleges t\u00e1r",
|
||||
"privateinterface": "Private Interface",
|
||||
"privateip": "Priv\u00e1t IP c\u00edm",
|
||||
"privatekey": "Priv\u00e1t kulcs",
|
||||
"privatenetwork": "Priv\u00e1t h\u00e1l\u00f3zat",
|
||||
"privateport": "Priv\u00e1t port",
|
||||
"profiledn": "Kapacsolt profil",
|
||||
"profilename": "Profil",
|
||||
"project": "Projekt",
|
||||
"projectId": "Projekt",
|
||||
"projectid": "Projekt ID",
|
||||
"projects": "Projektek",
|
||||
"property": "Property",
|
||||
"protocol": "Protokol",
|
||||
"protocolnumber": "#Protocol",
|
||||
"provider": "Szolg\u00e1ltat\u00f3",
|
||||
"providername": "Szolg\u00e1ltat\u00f3",
|
||||
"provisioningType": "L\u00e9trehoz\u00e1s t\u00edpusa",
|
||||
"provisioningtype": "L\u00e9trehoz\u00e1s t\u00edpusa",
|
||||
"publicinterface": "Public Interface",
|
||||
"publicip": "IP c\u00edm",
|
||||
"publickey": "Publikus kulcs",
|
||||
"publicnetwork": "Publikus h\u00e1l\u00f3zat",
|
||||
"publicport": "Publikus port",
|
||||
"purpose": "Rendeltet\u00e9s",
|
||||
"qosType": "QoS t\u00edpus",
|
||||
"quiescevm": "VM felf\u00fcggeszt\u00e9se",
|
||||
"quietTime": "V\u00e1rakoz\u00e1s (mp)",
|
||||
"quota": "Quota Value",
|
||||
"quota_enforce": "Enforce Quota",
|
||||
"rbdid": "Cephx felhaszn\u00e1l\u00f3",
|
||||
"rbdmonitor": "Ceph monitor",
|
||||
"rbdpool": "Ceph pool",
|
||||
"rbdsecret": "Cephx secret",
|
||||
"reason": "Reason",
|
||||
"receivedbytes": "Fogadott byte-ok",
|
||||
"redundantRouterState": "Redund\u00e1ns \u00e1llapot",
|
||||
"redundantrouter": "Redund\u00e1ns router",
|
||||
"redundantstate": "Redund\u00e1ns \u00e1llapot",
|
||||
"redundantvpcrouter": "Redund\u00e1ns VPC",
|
||||
"reenterpassword": "Re-enter Password",
|
||||
"relationaloperator": "Oper\u00e1tor",
|
||||
"requireshvm": "HVM",
|
||||
"requiresupgrade": "Friss\u00edt\u00e9st ig\u00e9nyel",
|
||||
"reservedSystemEndIp": "Utols\u00f3 elk\u00fcl\u00f6n\u00edtett rendszer IP",
|
||||
"reservedSystemGateway": "Reserved system gateway",
|
||||
"reservedSystemNetmask": "Elk\u00fcl\u00f6n\u00edtett rendszer h\u00e1l\u00f3zati maszk",
|
||||
"reservedSystemStartIp": "Kezd\u0151 elk\u00fcl\u00f6n\u00edtett rendszer IP",
|
||||
"reservediprange": "Elk\u00fcl\u00f6n\u00edtett IP c\u00edmtartom\u00e1ny",
|
||||
"resourceid": "Er\u0151forr\u00e1s ID",
|
||||
"resourcename": "Er\u0151forr\u00e1s n\u00e9v",
|
||||
"resourcestate": "Er\u0151forr\u00e1s \u00e1llapot",
|
||||
"restartrequired": "\u00dajraind\u00edt\u00e1s sz\u00fcks\u00e9ges",
|
||||
"role": "Szerep",
|
||||
"rolename": "Szerep",
|
||||
"roletype": "Role Type",
|
||||
"rootDiskControllerType": "Root disk controller",
|
||||
"rootDiskControllerTypeKVM": "Root disk controller",
|
||||
"routerCount": "Total of Virtual Routers",
|
||||
"routerRequiresUpgrade": "Frissit\u00e9sre van sz\u00fcks\u00e9g",
|
||||
"routerType": "T\u00edpus",
|
||||
"samlEnable": "Authorize SAML SSO",
|
||||
"samlEntity": "Identity Provider",
|
||||
"scope": "Hat\u00e1ly",
|
||||
"secondaryStorageLimit": "Secondary Storage limits (GiB)",
|
||||
"secondaryips": "M\u00e1sodlagos IP c\u00edmek",
|
||||
"secretkey": "Titkos kulcs",
|
||||
"securityGroups": "Biztons\u00e1gi csoportok",
|
||||
"securitygroup": "Biztons\u00e1gi csoport",
|
||||
"sent": "D\u00e1tum",
|
||||
"sentbytes": "K\u00fcld\u00f6tt byte-ok",
|
||||
"server": "Szerver",
|
||||
"service.Connectivity.distributedRouterCapabilityCheckbox": "Elosztott router",
|
||||
"service.Connectivity.regionLevelVpcCapabilityCheckbox": "R\u00e9gi\u00f3 szint\u0171 VPC",
|
||||
"service.Lb.elasticLbCheckbox": "Elasztikus LB",
|
||||
"service.Lb.inlineModeDropdown": "M\u00f3d",
|
||||
"service.Lb.lbIsolationDropdown": "Terhel\u00e9seloszt\u00f3 izol\u00e1ci\u00f3",
|
||||
"service.SourceNat.redundantRouterCapabilityCheckbox": "Redund\u00e1ns router k\u00e9pess\u00e9g",
|
||||
"service.SourceNat.sourceNatTypeDropdown": "T\u00e1mogatott forr\u00e1s NAT t\u00edpus",
|
||||
"service.StaticNat.associatePublicIP": "Publikus IP c\u00edm hozz\u00e1rendel\u00e9se",
|
||||
"service.StaticNat.elasticIpCheckbox": "Elasztikus IP",
|
||||
"serviceCapabilities": "Szolg\u00e1ltat\u00e1s k\u00e9pess\u00e9gek",
|
||||
"serviceOfferingId": "CPU aj\u00e1nlat",
|
||||
"servicelist": "Szolg\u00e1ltat\u00e1sok",
|
||||
"serviceofferingid": "CPU aj\u00e1nlat",
|
||||
"serviceofferingname": "CPU aj\u00e1nlat",
|
||||
"shrinkok": "Cs\u00f6kkent\u00e9s OK",
|
||||
"size": "M\u00e9ret",
|
||||
"sizegb": "M\u00e9ret",
|
||||
"smbDomain": "SMB dom\u00e9n",
|
||||
"smbPassword": "SMB jelsz\u00f3",
|
||||
"smbUsername": "SMB felhaszn\u00e1l\u00f3n\u00e9v",
|
||||
"snapshotLimit": "Pillanatfelv\u00e9tel korl\u00e1tok",
|
||||
"snapshotMemory": "Pillanatfelv\u00e9tel mem\u00f3ria",
|
||||
"snmpCommunity": "SNMP Community",
|
||||
"snmpPort": "SNMP Port",
|
||||
"sockettimeout": "Kapcsolat id\u0151t\u00fall\u00e9p\u00e9s",
|
||||
"sourceNat": "Forr\u00e1s NAT",
|
||||
"sourceipaddress": "Forr\u00e1s IP c\u00edm",
|
||||
"sourceport": "Forr\u00e1s port",
|
||||
"specifyVlan": "VLAN megad\u00e1sa",
|
||||
"specifyipranges": "Add meg az IP tartom\u00e1nyokat!",
|
||||
"specifyvlan": "VLAN megad\u00e1sa",
|
||||
"sshkeypair": "\u00daj SSH kulcsp\u00e1r",
|
||||
"startdate": "Kezd\u0151 d\u00e1tum",
|
||||
"startip": "IPv4 kezd\u0151 IP",
|
||||
"startipv4": "IPv4 kezd\u0151 IP",
|
||||
"startipv6": "IPv6 kezd\u0151 IP",
|
||||
"startport": "Kezd\u0151 port",
|
||||
"startquota": "Quota Value",
|
||||
"state": "\u00c1llapot",
|
||||
"status": "\u00c1llapot",
|
||||
"storage": "T\u00e1r",
|
||||
"storageId": "Els\u0151dleges t\u00e1r",
|
||||
"storagePool": "Storage Pool",
|
||||
"storageTags": "T\u00e1r c\u00edmk\u00e9k",
|
||||
"storageType": "T\u00e1r t\u00edpus",
|
||||
"storagetype": "T\u00e1r t\u00edpus",
|
||||
"subdomainaccess": "Subdomain Access",
|
||||
"supportedServices": "T\u00e1mogatott szolg\u00e1ltat\u00e1sok",
|
||||
"supportspublicaccess": "Supports Public Access",
|
||||
"supportsregionLevelvpc": "R\u00e9gi\u00f3-szint\u0171 VPC-t t\u00e1mogat",
|
||||
"supportsstrechedl2subnet": "Supports Streched L2 Subnet",
|
||||
"systemvmtype": "T\u00edpus",
|
||||
"tags": "T\u00e1r c\u00edmk\u00e9k",
|
||||
"tariffValue": "Tariff Value",
|
||||
"template": "V\u00e1lassz egy sablont!",
|
||||
"templateFileUpload": "Helyi file",
|
||||
"templateLimit": "Sablon korl\u00e1tok",
|
||||
"templateNames": "Sablon",
|
||||
"templatebody": "Body",
|
||||
"templatedn": "Sablon kiv\u00e1laszt\u00e1sa",
|
||||
"templatename": "Sablon",
|
||||
"templatesubject": "Subject",
|
||||
"templatetotal": "Sablon",
|
||||
"templatetype": "Email Template",
|
||||
"tftpdir": "Tftp root directory",
|
||||
"threshold": "K\u00fcsz\u00f6b\u00e9rt\u00e9k",
|
||||
"tierName": "R\u00e9teg",
|
||||
"timeout": "Id\u0151t\u00fall\u00e9p\u00e9s",
|
||||
"timezone": "Id\u0151z\u00f3na",
|
||||
"token": "Token",
|
||||
"totalCPU": "\u00d6sszes CPU",
|
||||
"traffictype": "Forgalom t\u00edpus",
|
||||
"transportzoneuuid": "Transport Zone Uuid",
|
||||
"type": "T\u00edpus",
|
||||
"unit": "Usage Unit",
|
||||
"url": "URL",
|
||||
"usageName": "Usage Type",
|
||||
"usageUnit": "Unit",
|
||||
"usageinterface": "Usage Interface",
|
||||
"useNewDiskOffering": "Replace disk offering?",
|
||||
"useVpc": "VPC",
|
||||
"usehttps": "HTTPS haszn\u00e1lata",
|
||||
"userDataL2": "Felhaszn\u00e1l\u00f3i adat",
|
||||
"username": "Felhaszn\u00e1l\u00f3n\u00e9v",
|
||||
"utilization": "Utilisation",
|
||||
"uuid": "ID",
|
||||
"vCenterDataCenter": "vCenter adatk\u00f6zpont",
|
||||
"vCenterDataStore": "vCenter t\u00e1r",
|
||||
"vCenterDatacenter": "vCenter adatk\u00f6zpont",
|
||||
"vCenterHost": "vCenter kiszolg\u00e1l\u00f3k",
|
||||
"vCenterPassword": "vCenter jelsz\u00f3",
|
||||
"vCenterUsername": "vCenter felhaszn\u00e1l\u00f3n\u00e9v",
|
||||
"vSwitchGuestName": "Vend\u00e9g forgalom vSwitch n\u00e9v",
|
||||
"vSwitchGuestType": "Vend\u00e9g forgalom vSwitch t\u00edpus",
|
||||
"vSwitchPublicName": "Publikus forgalom vSwitch n\u00e9v",
|
||||
"vSwitchPublicType": "Publikus forgalom vSwitch t\u00edpus",
|
||||
"value": "Credits",
|
||||
"vcenter": "VMware datacenter vcenter",
|
||||
"vcenterHost": "ESX/ESXi kiszolg\u00e1l\u00f3",
|
||||
"vcsdeviceid": "ID",
|
||||
"version": "Verzi\u00f3",
|
||||
"vgpu": "VGPU",
|
||||
"vgpuType": "vGPU t\u00edpus",
|
||||
"virtualMachineId": "P\u00e9ld\u00e1ny",
|
||||
"virtualmachinedisplayname": "VM n\u00e9v",
|
||||
"virtualmachineid": "VM ID",
|
||||
"virtualsize": "Virtual Size",
|
||||
"vlan": "VLAN/VNI",
|
||||
"vlanId": "VLAN/VNI ID",
|
||||
"vlanRange": "VLAN/VNI tartom\u00e1ny",
|
||||
"vlanname": "VLAN",
|
||||
"vlanrange": "VLAN/VNI tartom\u00e1ny",
|
||||
"vmLimit": "P\u00e9ld\u00e1ny korl\u00e1tok",
|
||||
"vmTotal": "P\u00e9ld\u00e1nyok",
|
||||
"vmdisplayname": "VM megjelen\u00edtend\u0151 n\u00e9v",
|
||||
"vmipaddress": "VM IP c\u00edm",
|
||||
"vmname": "VM n\u00e9v",
|
||||
"vmstate": "VM \u00e1llapot",
|
||||
"vmtotal": "\u00d6sszes VM",
|
||||
"vmwaredcId": "VMware adatk\u00f6zpont ID",
|
||||
"vmwaredcName": "VMware adatk\u00f6zpont n\u00e9v",
|
||||
"vmwaredcVcenter": "VMware datacenter vcenter",
|
||||
"vmwarenetworklabel": "VMware traffic label",
|
||||
"volume": "K\u00f6tet",
|
||||
"volumeFileUpload": "Helyi file",
|
||||
"volumeLimit": "K\u00f6teg korl\u00e1tok",
|
||||
"volumeTotal": "K\u00f6tetek",
|
||||
"volumegroup": "K\u00f6tet csoport",
|
||||
"volumename": "K\u00f6tet n\u00e9v",
|
||||
"volumetotal": "K\u00f6tet",
|
||||
"vpcLimit": "VPC korl\u00e1tok",
|
||||
"vpcid": "VPC ID",
|
||||
"vpcname": "VPC",
|
||||
"vpcoffering": "VPC aj\u00e1nlat",
|
||||
"vpncustomergatewayid": "VPN \u00fcgyf\u00e9lkapu",
|
||||
"vsmctrlvlanid": "Vez\u00e9rl\u0151 VLAN ID",
|
||||
"vsmdeviceid": "N\u00e9v",
|
||||
"vsmdevicestate": "\u00c1llapot",
|
||||
"vsmipaddress": "Nexus 1000v IP c\u00edm",
|
||||
"vsmipaddress_req": "Nexus 1000v IP c\u00edm",
|
||||
"vsmpassword": "Nexus 1000v jelsz\u00f3",
|
||||
"vsmpassword_req": "Nexus 1000v jelsz\u00f3",
|
||||
"vsmpktvlanid": "Csomag VLAN ID",
|
||||
"vsmstoragevlanid": "T\u00e1r VLAN ID",
|
||||
"vsmusername": "Nexus 1000v felhaszn\u00e1l\u00f3n\u00e9v",
|
||||
"vsmusername_req": "Nexus 1000v felhaszn\u00e1l\u00f3n\u00e9v",
|
||||
"xennetworklabel": "XenServer traffic label",
|
||||
"xenserverToolsVersion61plus": "Original XS Version is 6.1+",
|
||||
"zone": "Z\u00f3na",
|
||||
"zoneId": "Z\u00f3na",
|
||||
"zoneid": "Z\u00f3na",
|
||||
"zonename": "Z\u00f3na"
|
||||
}
|
||||
|
|
@ -0,0 +1,638 @@
|
|||
{
|
||||
"Accounts": "Utenti",
|
||||
"Affinity Groups": "Gruppi di Affinit\u00e0",
|
||||
"Alerts": "Alerts",
|
||||
"CPU Sockets": "CPU Socket",
|
||||
"Cloudian Storage": "Cloudian Storage",
|
||||
"Clusters": "Cluster",
|
||||
"Compute": "Computazionale",
|
||||
"Compute Offerings": "Compute Offerings",
|
||||
"Configuration": "Configurazione",
|
||||
"Dashboard": "Dashboard",
|
||||
"Disk Offerings": "Disk Offerings",
|
||||
"Domains": "Domains",
|
||||
"Events": "Events",
|
||||
"Global Settings": "Global Settings",
|
||||
"Hosts": "Hosts",
|
||||
"Hypervisor Capabilities": "Funzionalit\u00e0 del Hypervisor",
|
||||
"ISOs": "ISOs",
|
||||
"Identity and Access": "Identity and Access",
|
||||
"Infrastructure": "Infrastruttura",
|
||||
"Instances": "Istanze",
|
||||
"LDAP Configuration": "Configurazione LDAP",
|
||||
"Management Servers": "Management Servers",
|
||||
"Monitor": "Monitor",
|
||||
"Network": "Network",
|
||||
"Network Offerings": "Network Offerings",
|
||||
"Plugins": "Plugins",
|
||||
"Pods": "Pod",
|
||||
"Primary Storage": "Storage Primario",
|
||||
"Projects": "Progetti",
|
||||
"Public IP Addresses": "Public IP Addresses",
|
||||
"Public network": "Rete pubblica",
|
||||
"Quota": "Quota",
|
||||
"RESOURCE_NAME": "Resource Name",
|
||||
"Roles": "Ruoli",
|
||||
"SSH Key Pairs": "SSH Key Pairs",
|
||||
"Secondary Storage": "Storage Secondario",
|
||||
"Security Groups": "Security Groups",
|
||||
"Snapshots": "Snapshots",
|
||||
"Storage": "Storage",
|
||||
"System Offerings": "Offerte di Sistema",
|
||||
"System VMs": "System VMs",
|
||||
"Templates": "Template",
|
||||
"Users": "Users",
|
||||
"VM Snapshots": "VM Snapshots",
|
||||
"VPC": "VPC",
|
||||
"VPC Offerings": "VPC Offerings",
|
||||
"VPN Gateway": "Gateway VPN",
|
||||
"Virtual Routers": "Router Virtuali",
|
||||
"Volumes": "Volumes",
|
||||
"Zones": "Zone",
|
||||
"accesskey": "Access Key",
|
||||
"account": "Account",
|
||||
"accountId": "Account",
|
||||
"accountTotal": "Utenti",
|
||||
"accountlist": "Utenti",
|
||||
"accounts": "Utenti",
|
||||
"accounttype": "Account Type",
|
||||
"aclTotal": "Totale ACL di rete",
|
||||
"aclid": "ACL",
|
||||
"aclname": "ACL Name",
|
||||
"action": "Action",
|
||||
"activeviewersessions": "Sessioni Attive",
|
||||
"add-scaleDowncondition": "Add",
|
||||
"add-scaleUpcondition": "Add",
|
||||
"address": "Address",
|
||||
"admin": "Amministratore di Dominio",
|
||||
"agentPassword": "Password per l'Agent",
|
||||
"agentPort": "Agent Port",
|
||||
"agentUsername": "Username per l'Agent",
|
||||
"agentstate": "Agent State",
|
||||
"algorithm": "Algoritmo",
|
||||
"allocationstate": "Allocation State",
|
||||
"apikey": "Chiave API",
|
||||
"associatednetworkid": "Associated Network ID",
|
||||
"associatednetworkname": "Network Name",
|
||||
"availability": "Availability",
|
||||
"availabilityZone": "Availability Zone",
|
||||
"balance": "Balance",
|
||||
"baremetalCpu": "CPU (in MHz)",
|
||||
"baremetalCpuCores": "# of CPU Cores",
|
||||
"baremetalMAC": "MAC del sistema host",
|
||||
"baremetalMemory": "Memoria (in MB)",
|
||||
"bcfdeviceid": "ID",
|
||||
"bladeid": "Blade ID",
|
||||
"bootable": "Avviabile",
|
||||
"broadcastdomainrange": "Broadcast domain range",
|
||||
"broadcastdomaintype": "Broadcast Domain Type",
|
||||
"broadcasturi": "URI di Broadcast",
|
||||
"bucket": "Bucket",
|
||||
"cacheMode": "Write-cache Type",
|
||||
"capacity": "Capacit\u00e0",
|
||||
"capacityBytes": "Capacit\u00e0 Byte",
|
||||
"capacityIops": "Capacit\u00e0 IOPS",
|
||||
"capacityiops": "IOPS Totali",
|
||||
"chassis": "Chassis",
|
||||
"checksum": "checksum",
|
||||
"cidr": "CIDR",
|
||||
"cidrlist": "Lista CIDR",
|
||||
"cleanup": "Clean up",
|
||||
"clusterId": "Cluster",
|
||||
"clusterid": "Cluster",
|
||||
"clustername": "Cluster",
|
||||
"clusters": "Cluster",
|
||||
"clustertype": "Tipo di Cluster",
|
||||
"connectiontimeout": "Tempo di scadenza connessione",
|
||||
"conservemode": "Conserve mode",
|
||||
"counterid": "Counter",
|
||||
"cpuCap": "Limite CPU",
|
||||
"cpuLimit": "Limiti CPU",
|
||||
"cpuNumber": "# of CPU Cores",
|
||||
"cpuSpeed": "CPU (in MHz)",
|
||||
"cpuallocated": "CPU Allocate per VM",
|
||||
"cpuallocatedghz": "Allocato",
|
||||
"cpumaxdeviation": "Deviation",
|
||||
"cpunumber": "# of CPU Cores",
|
||||
"cpusockets": "The Number of CPU Sockets",
|
||||
"cpuspeed": "CPU (in MHz)",
|
||||
"cputotal": "Total",
|
||||
"cputotalghz": "Total",
|
||||
"cpuused": "CPU Utilizzata",
|
||||
"cpuusedghz": "Used",
|
||||
"createNfsCache": "Create NFS Secondary Staging Store",
|
||||
"created": "Data",
|
||||
"credit": "Credit",
|
||||
"crossZones": "Cross Zones",
|
||||
"current": "isCurrent",
|
||||
"date": "Data",
|
||||
"dedicated": "Dedicato",
|
||||
"deleteprofile": "Delete Profile",
|
||||
"deploymentPlanner": "Deployment planner",
|
||||
"deploymentplanner": "Deployment planner",
|
||||
"description": "Descrizione",
|
||||
"destinationZoneId": "Zona di destinazione",
|
||||
"destinationphysicalnetworkid": "ID della rete fisica di destinazione",
|
||||
"destroyVMgracePeriod": "Destroy VM Grace Period",
|
||||
"details": "Dettagli",
|
||||
"deviceid": "ID Dispositivo",
|
||||
"directdownload": "Direct Download",
|
||||
"disconnected": "Last Disconnected",
|
||||
"disk": "Disk",
|
||||
"diskBytesReadRate": "Disk Read Rate (BPS)",
|
||||
"diskBytesWriteRate": "Disk Write Rate (BPS)",
|
||||
"diskIopsReadRate": "Disk Read Rate (IOPS)",
|
||||
"diskIopsWriteRate": "Disk Write Rate (IOPS)",
|
||||
"diskOffering": "Offerta Disco",
|
||||
"diskOfferingId": "Disk Offerings",
|
||||
"diskSize": "Disk Size (in GB)",
|
||||
"diskiopstotal": "IOPS",
|
||||
"diskioread": "Disk Read (IO)",
|
||||
"diskiowrite": "Disk Write (IO)",
|
||||
"diskkbsread": "Disk Read (Bytes)",
|
||||
"diskkbswrite": "Disk Write (Bytes)",
|
||||
"diskofferingdisplaytext": "Offerta Disco",
|
||||
"disksize": "Disk Size (in GB)",
|
||||
"disksizeallocated": "Disk Allocated",
|
||||
"disksizeallocatedgb": "Allocato",
|
||||
"disksizetotal": "Disk Total",
|
||||
"disksizetotalgb": "Total",
|
||||
"disksizeunallocatedgb": "Unallocated",
|
||||
"disksizeusedgb": "Used",
|
||||
"displayText": "Descrizione",
|
||||
"displayname": "Display Name",
|
||||
"displaytext": "Descrizione",
|
||||
"distributedvpcrouter": "Distributed VPC Router",
|
||||
"dns1": "DNS 1",
|
||||
"dns2": "DNS 2",
|
||||
"domain": "Dominio",
|
||||
"domainId": "Dominio",
|
||||
"domainid": "Dominio",
|
||||
"domainname": "Dominio",
|
||||
"domainpath": "Dominio",
|
||||
"dpd": "Dead Peer Detection",
|
||||
"driver": "Driver",
|
||||
"egressdefaultpolicy": "Egress Default Policy",
|
||||
"email": "Email",
|
||||
"enddate": "End Date",
|
||||
"endip": "IPv4 End IP",
|
||||
"endipv4": "IPv4 End IP",
|
||||
"endipv6": "IPv6 End IP",
|
||||
"endpoint": "Dispositivo",
|
||||
"endport": "End Port",
|
||||
"espEncryption": "Encryption di ESP",
|
||||
"espHash": "Hash di ESP",
|
||||
"esplifetime": "ESP Lifetime (second)",
|
||||
"esppolicy": "Policy di ESP",
|
||||
"expunge": "Expunge",
|
||||
"fingerprint": "FingerPrint",
|
||||
"firstname": "Nome",
|
||||
"forced": "Forza l'Arresto",
|
||||
"forceencap": "Force UDP Encapsulation of ESP Packets",
|
||||
"format": "Formato",
|
||||
"fwdevicecapacity": "Capacit\u00e0",
|
||||
"fwdeviceid": "ID",
|
||||
"fwdevicename": "Type",
|
||||
"fwdevicestate": "Status",
|
||||
"gateway": "Gateway",
|
||||
"glustervolume": "Volume",
|
||||
"group": "Group",
|
||||
"gslbdomainname": "GSLB Domain Name",
|
||||
"gslblbmethod": "Algoritmo",
|
||||
"gslbprovider": "GSLB service",
|
||||
"gslbproviderprivateip": "GSLB service Private IP",
|
||||
"gslbproviderpublicip": "GSLB service Public IP",
|
||||
"gslbservicetype": "Service Type",
|
||||
"guestEndIp": "Indirizzo IP guest finale",
|
||||
"guestGateway": "Guest Gateway",
|
||||
"guestIpType": "Tipo di Guest",
|
||||
"guestNetmask": "Guest Netmask",
|
||||
"guestStartIp": "Indirizzo IP guest iniziale",
|
||||
"guestcidraddress": "Guest CIDR",
|
||||
"guestipaddress": "Guest IP Address",
|
||||
"guestiptype": "Tipo di Guest",
|
||||
"guestnetworkid": "Network ID",
|
||||
"guestnetworkname": "Network Name",
|
||||
"guestosid": "OS Type",
|
||||
"guestvlanrange": "VLAN Range(s)",
|
||||
"haenable": "HA Enabled",
|
||||
"hahost": "HA Enabled",
|
||||
"host": "Indirizzo IP",
|
||||
"hostId": "Host",
|
||||
"hostTags": "Host Tags",
|
||||
"hostname": "Host Name",
|
||||
"hosts": "Hosts",
|
||||
"hosttags": "Host Tags",
|
||||
"hypervisor": "Hypervisor",
|
||||
"hypervisorSnapshotReserve": "Hypervisor Snapshot Reserve",
|
||||
"hypervisorsnapshotreserve": "Hypervisor Snapshot Reserve",
|
||||
"hypervisortype": "Hypervisor",
|
||||
"hypervisorversion": "Versione hypervisor",
|
||||
"hypervnetworklabel": "HyperV Traffic Label",
|
||||
"icmpcode": "Codice ICMP",
|
||||
"icmptype": "Tipo ICMP",
|
||||
"id": "ID",
|
||||
"ikeDh": "DH di IKE",
|
||||
"ikeEncryption": "Encryption di IKE",
|
||||
"ikeHash": "Hash di IKE",
|
||||
"ikelifetime": "IKE lifetime (second)",
|
||||
"ikepolicy": "Policy di IKE",
|
||||
"insideportprofile": "Inside Port Profile",
|
||||
"instancename": "Nome Interno",
|
||||
"instanceport": "Instance Port",
|
||||
"instances": "Istanze",
|
||||
"internaldns1": "DNS 1 Interno",
|
||||
"internaldns2": "DNS2 Interno",
|
||||
"interval": "Polling Interval (in sec)",
|
||||
"intervaltype": "Interval Type",
|
||||
"ip": "Indirizzo IP",
|
||||
"ip4Netmask": "IPv4 Netmask",
|
||||
"ip4dns1": "IPv4 DNS1",
|
||||
"ip4dns2": "IPv4 DNS2",
|
||||
"ip4gateway": "IPv4 Gateway",
|
||||
"ip6address": "IPv6 IP Address",
|
||||
"ip6cidr": "IPv6 CIDR",
|
||||
"ip6dns1": "IPv6 DNS1",
|
||||
"ip6dns2": "IPv6 DNS2",
|
||||
"ip6gateway": "IPv6 Gateway",
|
||||
"ipLimit": "Public IP Limits",
|
||||
"ipaddress": "Indirizzo IP",
|
||||
"ipaddress1": "Indirizzo IP",
|
||||
"ipaddress2": "Indirizzo IP",
|
||||
"ipsecpsk": "Preshared-Key di IPsec",
|
||||
"iptotal": "Total of IP Addresses",
|
||||
"iqn": "Target IQN",
|
||||
"isAdvanced": "Show advanced settings",
|
||||
"isBootable": "Avviabile",
|
||||
"isCustomized": "Dimensione Disco Personalizzata",
|
||||
"isCustomizedIops": "Custom IOPS",
|
||||
"isDedicated": "Dedicate",
|
||||
"isExtractable": "Estraibile",
|
||||
"isFeatured": "Featured",
|
||||
"isForced": "Forza la Rimozione",
|
||||
"isManaged": "Managed",
|
||||
"isPasswordEnabled": "Password Enabled",
|
||||
"isPersistent": "Persistent ",
|
||||
"isPublic": "Public",
|
||||
"isVolatile": "Volatile",
|
||||
"iscustomized": "Dimensione Disco Personalizzata",
|
||||
"iscustomizediops": "Custom IOPS",
|
||||
"isdedicated": "Dedicato",
|
||||
"isdefault": "E' Default",
|
||||
"isdynamicallyscalable": "Dynamically Scalable",
|
||||
"isextractable": "extractable",
|
||||
"isfeatured": "Featured",
|
||||
"iso": "ISO",
|
||||
"isolatedpvlanId": "Secondary Isolated VLAN ID",
|
||||
"isolationmethods": "Metodo di isolamento",
|
||||
"isolationuri": "URI di isolamento",
|
||||
"isoname": "ISO Collegata",
|
||||
"ispersistent": "Persistent ",
|
||||
"isportable": "Cross Zones",
|
||||
"ispublic": "Public",
|
||||
"isready": "Pronto",
|
||||
"isredundantrouter": "Redundant Router",
|
||||
"isrouting": "Routing",
|
||||
"issourcenat": "Source NAT",
|
||||
"isstaticnat": "Static NAT",
|
||||
"issystem": "Is System",
|
||||
"isvolatile": "Volatile",
|
||||
"key": "Key",
|
||||
"keyboardType": "Tipo di tastiera",
|
||||
"keypair": "SSH Key Pair",
|
||||
"kvmnetworklabel": "Etichetta del traffico via KVM",
|
||||
"l2gatewayserviceuuid": "L2 Gateway Service Uuid",
|
||||
"l3gatewayserviceuuid": "L3 Gateway Service Uuid",
|
||||
"last_updated": "Last Update",
|
||||
"lastname": "Last Name",
|
||||
"lbType": "Load Balancer Type",
|
||||
"lbdevicecapacity": "Capacit\u00e0",
|
||||
"lbdevicededicated": "Dedicato",
|
||||
"lbdeviceid": "ID",
|
||||
"lbdevicename": "Type",
|
||||
"lbdevicestate": "Status",
|
||||
"level": "Livello",
|
||||
"limitcpuuse": "Limite CPU",
|
||||
"linklocalip": "Link Local IP Address",
|
||||
"loadbalancerinstance": "Assigned VMs",
|
||||
"loadbalancerrule": "Load balancing rule",
|
||||
"localstorageenabled": "Enable local storage for User VMs",
|
||||
"localstorageenabledforsystemvm": "Enable local storage for System VMs",
|
||||
"lun": "LUN #",
|
||||
"lxcnetworklabel": "LXC Traffic Label",
|
||||
"makeredundant": "Rendi ridondante",
|
||||
"maxInstance": "Max Instances",
|
||||
"maxIops": "Max IOPS",
|
||||
"maxerrorretry": "Numero massimo di tentativi a seguito di errore",
|
||||
"maxguestslimit": "Limite max di guest",
|
||||
"maxiops": "Max IOPS",
|
||||
"memallocated": "Mem Allocation",
|
||||
"memory": "Memoria (in MB)",
|
||||
"memoryLimit": "Memory limits (MiB)",
|
||||
"memoryallocated": "Memory Allocated",
|
||||
"memoryallocatedgb": "Allocato",
|
||||
"memorymaxdeviation": "Deviation",
|
||||
"memorytotal": "Allocato",
|
||||
"memorytotalgb": "Total",
|
||||
"memoryused": "Used",
|
||||
"memoryusedgb": "Used",
|
||||
"memused": "Mem Usage",
|
||||
"minInstance": "Min Instances",
|
||||
"minIops": "Min IOPS",
|
||||
"min_balance": "Min Balance",
|
||||
"miniops": "Min IOPS",
|
||||
"name": "Name",
|
||||
"nat": "BigSwitch BCF NAT Enabled",
|
||||
"netmask": "Netmask",
|
||||
"network": "Network",
|
||||
"networkDomain": "Network Domain",
|
||||
"networkLimit": "Network limits",
|
||||
"networkOfferingId": "Network Offering",
|
||||
"networkRate": "Network Rate (Mb/s)",
|
||||
"networkcidr": "Network CIDR",
|
||||
"networkdevicetype": "Type",
|
||||
"networkdomain": "Network Domain",
|
||||
"networkdomaintext": "Dominio di Rete",
|
||||
"networkid": "Selezionare il Livello",
|
||||
"networkkbsread": "Network Read",
|
||||
"networkkbswrite": "Network Write",
|
||||
"networkname": "Network Name",
|
||||
"networkofferingdisplaytext": "Network Offering",
|
||||
"networkofferingid": "Network Offering",
|
||||
"networkofferingidText": "Network Offering ID",
|
||||
"networkofferingname": "Network Offering",
|
||||
"networkrate": "Network Rate (Mb/s)",
|
||||
"networkread": "Read",
|
||||
"networktype": "Network Type",
|
||||
"networkwrite": "Write",
|
||||
"newDiskOffering": "New Disk Offering",
|
||||
"newdiskoffering": "New Offering",
|
||||
"newsize": "New Size (GB)",
|
||||
"nfsCacheNfsServer": "S3 NFS Server",
|
||||
"nfsCachePath": "Percorso S3 NFS",
|
||||
"nfsCacheZoneid": "Zone",
|
||||
"nfsServer": "Server",
|
||||
"nicAdapterType": "Tipo di scheda NIC",
|
||||
"number": "#Rule",
|
||||
"numberOfRouterRequiresUpgrade": "Total of Virtual Routers that require upgrade",
|
||||
"numretries": "Number of Retries",
|
||||
"nvpdeviceid": "ID",
|
||||
"offerHA": "Offer HA",
|
||||
"offerha": "Offer HA",
|
||||
"osTypeId": "OS Type",
|
||||
"oscategoryid": "OS Preference",
|
||||
"ostypeid": "OS Type",
|
||||
"ostypename": "OS Type",
|
||||
"overrideguesttraffic": "Override Guest-Traffic",
|
||||
"overridepublictraffic": "Override Public-Traffic",
|
||||
"ovm3cluster": "Native Clustering",
|
||||
"ovm3networklabel": "OVM3 traffic label",
|
||||
"ovm3pool": "Native Pooling",
|
||||
"ovm3vip": "Master Vip IP",
|
||||
"ovmnetworklabel": "OVM traffic label",
|
||||
"palp": "Palo Alto Log Profile",
|
||||
"parentName": "Parent",
|
||||
"passive": "Passive",
|
||||
"password": "Password",
|
||||
"password-confirm": "Confermare la password",
|
||||
"passwordenabled": "Password Enabled",
|
||||
"path": "Path",
|
||||
"patp": "Palo Alto Threat Profile",
|
||||
"pavr": "Virtual Router",
|
||||
"pciDevice": "GPU",
|
||||
"perfectForwardSecrecy": "Segretezza di Forward perfetta",
|
||||
"physicalNetworkId": "Physical Network",
|
||||
"physicalnetworkid": "Physical Network",
|
||||
"physicalsize": "Physical Size",
|
||||
"plannerMode": "Planner mode",
|
||||
"podId": "Pod",
|
||||
"podname": "Pod",
|
||||
"port": "Porta",
|
||||
"portableipaddress": "Portable IPs",
|
||||
"powerstate": "Power State",
|
||||
"primaryStorageLimit": "Primary Storage limits (GiB)",
|
||||
"primarystoragetotal": "Storage Primario",
|
||||
"privateinterface": "Private Interface",
|
||||
"privateip": "Private IP Address",
|
||||
"privatekey": "Private Key",
|
||||
"privatenetwork": "Rete privata",
|
||||
"privateport": "Private Port",
|
||||
"profiledn": "Associated Profile",
|
||||
"profilename": "Profile",
|
||||
"project": "Project",
|
||||
"projectId": "Project",
|
||||
"projectid": "Project ID",
|
||||
"projects": "Progetti",
|
||||
"property": "Property",
|
||||
"protocol": "Protocol",
|
||||
"protocolnumber": "#Protocol",
|
||||
"provider": "Provider",
|
||||
"providername": "Provider",
|
||||
"provisioningType": "Tipo di Provisioning",
|
||||
"provisioningtype": "Tipo di Provisioning",
|
||||
"publicinterface": "Public Interface",
|
||||
"publicip": "Indirizzo IP",
|
||||
"publickey": "Public Key",
|
||||
"publicnetwork": "Rete pubblica",
|
||||
"publicport": "Public Port",
|
||||
"purpose": "Scopo",
|
||||
"qosType": "QoS Type",
|
||||
"quiescevm": "Quiesce VM",
|
||||
"quietTime": "Quiet Time (in sec)",
|
||||
"quota": "Quota Value",
|
||||
"quota_enforce": "Enforce Quota",
|
||||
"rbdid": "Cephx user",
|
||||
"rbdmonitor": "Ceph monitor",
|
||||
"rbdpool": "Ceph pool",
|
||||
"rbdsecret": "Cephx secret",
|
||||
"reason": "Reason",
|
||||
"receivedbytes": "Byte Ricevuti",
|
||||
"redundantRouterState": "Redundant state",
|
||||
"redundantrouter": "Redundant Router",
|
||||
"redundantstate": "Redundant state",
|
||||
"redundantvpcrouter": "Redundant VPC",
|
||||
"reenterpassword": "Re-enter Password",
|
||||
"relationaloperator": "Operator",
|
||||
"requireshvm": "HVM",
|
||||
"requiresupgrade": "Requires Upgrade",
|
||||
"reservedSystemEndIp": "Indirizzo IP finale riservato di sistema",
|
||||
"reservedSystemGateway": "Gateway di sistema riservato",
|
||||
"reservedSystemNetmask": "Netmask di sistema riservata",
|
||||
"reservedSystemStartIp": "Indirizzo IP iniziale riservato di sistema",
|
||||
"reservediprange": "Reserved IP Range",
|
||||
"resourceid": "Resource ID",
|
||||
"resourcename": "Resource Name",
|
||||
"resourcestate": "Stato della risorsa",
|
||||
"restartrequired": "E' necessario un riavvio",
|
||||
"role": "Role",
|
||||
"rolename": "Role",
|
||||
"roletype": "Role Type",
|
||||
"rootDiskControllerType": "Controller del disco root",
|
||||
"rootDiskControllerTypeKVM": "Controller del disco root",
|
||||
"routerCount": "Total of Virtual Routers",
|
||||
"routerRequiresUpgrade": "Upgrade is required",
|
||||
"routerType": "Type",
|
||||
"samlEnable": "Authorize SAML SSO",
|
||||
"samlEntity": "Identity Provider",
|
||||
"scope": "Scope",
|
||||
"secondaryStorageLimit": "Secondary Storage limits (GiB)",
|
||||
"secondaryips": "IP Secondari",
|
||||
"secretkey": "Secret Key",
|
||||
"securityGroups": "Security Groups",
|
||||
"securitygroup": "Security Group",
|
||||
"sent": "Data",
|
||||
"sentbytes": "Byte Inviati",
|
||||
"server": "Server",
|
||||
"service.Connectivity.distributedRouterCapabilityCheckbox": "Distributed Router",
|
||||
"service.Connectivity.regionLevelVpcCapabilityCheckbox": "Region Level VPC",
|
||||
"service.Lb.elasticLbCheckbox": "Elastic LB",
|
||||
"service.Lb.inlineModeDropdown": "Modalit\u00e0",
|
||||
"service.Lb.lbIsolationDropdown": "Isolamento di LB",
|
||||
"service.SourceNat.redundantRouterCapabilityCheckbox": "Capacit\u00e0 di ridondanza del router",
|
||||
"service.SourceNat.sourceNatTypeDropdown": "Tipo di Source NAT supportato",
|
||||
"service.StaticNat.associatePublicIP": "Associate Public IP",
|
||||
"service.StaticNat.elasticIpCheckbox": "Elastic IP",
|
||||
"serviceCapabilities": "Capacit\u00e0 di Servizio",
|
||||
"serviceOfferingId": "Offerta computazionale",
|
||||
"servicelist": "Services",
|
||||
"serviceofferingid": "Offerta computazionale",
|
||||
"serviceofferingname": "Offerta computazionale",
|
||||
"shrinkok": "Shrink OK",
|
||||
"size": "Size",
|
||||
"sizegb": "Size",
|
||||
"smbDomain": "Dominio SMB",
|
||||
"smbPassword": "Password SMB",
|
||||
"smbUsername": "Username SMB",
|
||||
"snapshotLimit": "Snapshot Limits",
|
||||
"snapshotMemory": "Snapshot memory",
|
||||
"snmpCommunity": "SNMP Community",
|
||||
"snmpPort": "SNMP Port",
|
||||
"sockettimeout": "Tempo di scadenza del Socket",
|
||||
"sourceNat": "Source NAT",
|
||||
"sourceipaddress": "Source IP Address",
|
||||
"sourceport": "Source Port",
|
||||
"specifyVlan": "Specify VLAN",
|
||||
"specifyipranges": "Specificare intervallo di indirizzi IP",
|
||||
"specifyvlan": "Specify VLAN",
|
||||
"sshkeypair": "New SSH Key Pair",
|
||||
"startdate": "Start Date",
|
||||
"startip": "IPv4 Start IP",
|
||||
"startipv4": "IPv4 Start IP",
|
||||
"startipv6": "IPv6 Start IP",
|
||||
"startport": "Start Port",
|
||||
"startquota": "Quota Value",
|
||||
"state": "State",
|
||||
"status": "Status",
|
||||
"storage": "Storage",
|
||||
"storageId": "Storage Primario",
|
||||
"storagePool": "Storage Pool",
|
||||
"storageTags": "Storage Tags",
|
||||
"storageType": "Storage Type",
|
||||
"storagetype": "Storage Type",
|
||||
"subdomainaccess": "Subdomain Access",
|
||||
"supportedServices": "Servizi Supportati",
|
||||
"supportspublicaccess": "Supports Public Access",
|
||||
"supportsregionLevelvpc": "Supports Region Level VPC",
|
||||
"supportsstrechedl2subnet": "Supports Streched L2 Subnet",
|
||||
"systemvmtype": "Type",
|
||||
"tags": "Storage Tags",
|
||||
"tariffValue": "Tariff Value",
|
||||
"template": "Selezionare un template",
|
||||
"templateFileUpload": "Local file",
|
||||
"templateLimit": "Template Limits",
|
||||
"templateNames": "Template",
|
||||
"templatebody": "Body",
|
||||
"templatedn": "Select Template",
|
||||
"templatename": "Template",
|
||||
"templatesubject": "Subject",
|
||||
"templatetotal": "Template",
|
||||
"templatetype": "Email Template",
|
||||
"tftpdir": "Tftp root directory",
|
||||
"threshold": "Threshold",
|
||||
"tierName": "Livello",
|
||||
"timeout": "Timeout",
|
||||
"timezone": "Timezone",
|
||||
"token": "Token",
|
||||
"totalCPU": "CPU Totali",
|
||||
"traffictype": "Traffic Type",
|
||||
"transportzoneuuid": "Transport Zone Uuid",
|
||||
"type": "Type",
|
||||
"unit": "Usage Unit",
|
||||
"url": "URL",
|
||||
"usageName": "Usage Type",
|
||||
"usageUnit": "Unit",
|
||||
"usageinterface": "Usage Interface",
|
||||
"useNewDiskOffering": "Replace disk offering?",
|
||||
"useVpc": "VPC",
|
||||
"usehttps": "Utilizzare HTTPS",
|
||||
"userDataL2": "User Data",
|
||||
"username": "Username",
|
||||
"utilization": "Utilisation",
|
||||
"uuid": "ID",
|
||||
"vCenterDataCenter": "vCenter Datacenter",
|
||||
"vCenterDataStore": "vCenter Datastore",
|
||||
"vCenterDatacenter": "vCenter Datacenter",
|
||||
"vCenterHost": "vCenter Host",
|
||||
"vCenterPassword": "vCenter Password",
|
||||
"vCenterUsername": "vCenter Username",
|
||||
"vSwitchGuestName": "Guest Traffic vSwitch Name",
|
||||
"vSwitchGuestType": "Guest Traffic vSwitch Type",
|
||||
"vSwitchPublicName": "Public Traffic vSwitch Name",
|
||||
"vSwitchPublicType": "Public Traffic vSwitch Type",
|
||||
"value": "Credits",
|
||||
"vcenter": "VMware datacenter vcenter",
|
||||
"vcenterHost": "ESX/ESXi Host",
|
||||
"vcsdeviceid": "ID",
|
||||
"version": "Version",
|
||||
"vgpu": "VGPU",
|
||||
"vgpuType": "vGPU type",
|
||||
"virtualMachineId": "Istanza",
|
||||
"virtualmachinedisplayname": "Nome VM",
|
||||
"virtualmachineid": "VM ID",
|
||||
"virtualsize": "Virtual Size",
|
||||
"vlan": "VLAN",
|
||||
"vlanId": "VLAN/VNI ID",
|
||||
"vlanRange": "VLAN/VNI Range",
|
||||
"vlanname": "VLAN",
|
||||
"vlanrange": "VLAN/VNI Range",
|
||||
"vmLimit": "Limiti dell'Istanza",
|
||||
"vmTotal": "Istanze",
|
||||
"vmdisplayname": "Nome visualizzato della VM",
|
||||
"vmipaddress": "Indirizzo IP della VM",
|
||||
"vmname": "VM Name",
|
||||
"vmstate": "Stato VM",
|
||||
"vmtotal": "Total of VMs",
|
||||
"vmwaredcId": "VMware datacenter ID",
|
||||
"vmwaredcName": "VMware datacenter Name",
|
||||
"vmwaredcVcenter": "VMware datacenter vcenter",
|
||||
"vmwarenetworklabel": "Etichetta del traffico via VMware",
|
||||
"volume": "Volume",
|
||||
"volumeFileUpload": "Local file",
|
||||
"volumeLimit": "Volume Limits",
|
||||
"volumeTotal": "Volumes",
|
||||
"volumegroup": "Volume Group",
|
||||
"volumename": "Volume Name",
|
||||
"volumetotal": "Volume",
|
||||
"vpcLimit": "VPC limits",
|
||||
"vpcid": "ID del VPC",
|
||||
"vpcname": "VPC",
|
||||
"vpcoffering": "VPC Offering",
|
||||
"vpncustomergatewayid": "Gateway VPN del Cliente",
|
||||
"vsmctrlvlanid": "VLAN ID di Controllo",
|
||||
"vsmdeviceid": "Name",
|
||||
"vsmdevicestate": "State",
|
||||
"vsmipaddress": "Nexus 1000v IP Address",
|
||||
"vsmipaddress_req": "Nexus 1000v IP Address",
|
||||
"vsmpassword": "Nexus 1000v Password",
|
||||
"vsmpassword_req": "Nexus 1000v Password",
|
||||
"vsmpktvlanid": "VLAN ID del Pacchetto",
|
||||
"vsmstoragevlanid": "VLAN ID di Storage",
|
||||
"vsmusername": "Nexus 1000v Username",
|
||||
"vsmusername_req": "Nexus 1000v Username",
|
||||
"xennetworklabel": "Etichetta del traffico via XenServer",
|
||||
"xenserverToolsVersion61plus": "Original XS Version is 6.1+",
|
||||
"zone": "Zone",
|
||||
"zoneId": "Zone",
|
||||
"zoneid": "Zone",
|
||||
"zonename": "Zone"
|
||||
}
|
||||
|
|
@ -0,0 +1,638 @@
|
|||
{
|
||||
"Accounts": "\u30a2\u30ab\u30a6\u30f3\u30c8",
|
||||
"Affinity Groups": "\u30a2\u30d5\u30a3\u30cb\u30c6\u30a3 \u30b0\u30eb\u30fc\u30d7",
|
||||
"Alerts": "\u30a2\u30e9\u30fc\u30c8",
|
||||
"CPU Sockets": "CPU \u30bd\u30b1\u30c3\u30c8",
|
||||
"Cloudian Storage": "Cloudian Storage",
|
||||
"Clusters": "\u30af\u30e9\u30b9\u30bf\u30fc",
|
||||
"Compute": "\u30b3\u30f3\u30d4\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0",
|
||||
"Compute Offerings": "\u30b3\u30f3\u30d4\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0 \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"Configuration": "\u69cb\u6210",
|
||||
"Dashboard": "\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9",
|
||||
"Disk Offerings": "\u30c7\u30a3\u30b9\u30af \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"Domains": "Domains",
|
||||
"Events": "\u30a4\u30d9\u30f3\u30c8",
|
||||
"Global Settings": "\u30b0\u30ed\u30fc\u30d0\u30eb\u8a2d\u5b9a",
|
||||
"Hosts": "\u30db\u30b9\u30c8",
|
||||
"Hypervisor Capabilities": "\u30cf\u30a4\u30d1\u30fc\u30d0\u30a4\u30b6\u30fc\u306e\u6a5f\u80fd",
|
||||
"ISOs": "ISO",
|
||||
"Identity and Access": "Identity and Access",
|
||||
"Infrastructure": "\u30a4\u30f3\u30d5\u30e9\u30b9\u30c8\u30e9\u30af\u30c1\u30e3",
|
||||
"Instances": "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9",
|
||||
"LDAP Configuration": "LDAP \u69cb\u6210",
|
||||
"Management Servers": "Management Servers",
|
||||
"Monitor": "Monitor",
|
||||
"Network": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af",
|
||||
"Network Offerings": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"Plugins": "\u30d7\u30e9\u30b0\u30a4\u30f3",
|
||||
"Pods": "\u30dd\u30c3\u30c9",
|
||||
"Primary Storage": "\u30d7\u30e9\u30a4\u30de\u30ea \u30b9\u30c8\u30ec\u30fc\u30b8",
|
||||
"Projects": "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8",
|
||||
"Public IP Addresses": "\u30d1\u30d6\u30ea\u30c3\u30af IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"Public network": "\u30d1\u30d6\u30ea\u30c3\u30af \u30cd\u30c3\u30c8\u30ef\u30fc\u30af",
|
||||
"Quota": "Quota",
|
||||
"RESOURCE_NAME": "\u30ea\u30bd\u30fc\u30b9\u540d",
|
||||
"Roles": "\u30ed\u30fc\u30eb",
|
||||
"SSH Key Pairs": "SSH \u30ad\u30fc\u30da\u30a2",
|
||||
"Secondary Storage": "\u30bb\u30ab\u30f3\u30c0\u30ea \u30b9\u30c8\u30ec\u30fc\u30b8",
|
||||
"Security Groups": "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3 \u30b0\u30eb\u30fc\u30d7",
|
||||
"Snapshots": "\u30b9\u30ca\u30c3\u30d7\u30b7\u30e7\u30c3\u30c8",
|
||||
"Storage": "\u30b9\u30c8\u30ec\u30fc\u30b8",
|
||||
"System Offerings": "\u30b7\u30b9\u30c6\u30e0 \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"System VMs": "\u30b7\u30b9\u30c6\u30e0 VM",
|
||||
"Templates": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8",
|
||||
"Users": "\u30e6\u30fc\u30b6\u30fc",
|
||||
"VM Snapshots": "VM \u30b9\u30ca\u30c3\u30d7\u30b7\u30e7\u30c3\u30c8",
|
||||
"VPC": "VPC",
|
||||
"VPC Offerings": "VPC \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"VPN Gateway": "VPN \u30b2\u30fc\u30c8\u30a6\u30a7\u30a4",
|
||||
"Virtual Routers": "\u4eee\u60f3\u30eb\u30fc\u30bf\u30fc",
|
||||
"Volumes": "\u30dc\u30ea\u30e5\u30fc\u30e0",
|
||||
"Zones": "\u30be\u30fc\u30f3",
|
||||
"accesskey": "\u30a2\u30af\u30bb\u30b9 \u30ad\u30fc",
|
||||
"account": "\u30a2\u30ab\u30a6\u30f3\u30c8",
|
||||
"accountId": "\u30a2\u30ab\u30a6\u30f3\u30c8",
|
||||
"accountTotal": "\u30a2\u30ab\u30a6\u30f3\u30c8",
|
||||
"accountlist": "\u30a2\u30ab\u30a6\u30f3\u30c8",
|
||||
"accounts": "\u30a2\u30ab\u30a6\u30f3\u30c8",
|
||||
"accounttype": "\u30a2\u30ab\u30a6\u30f3\u30c8\u30bf\u30a4\u30d7",
|
||||
"aclTotal": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af ACL \u5408\u8a08",
|
||||
"aclid": "ACL",
|
||||
"aclname": "ACL \u540d",
|
||||
"action": "\u64cd\u4f5c",
|
||||
"activeviewersessions": "\u30a2\u30af\u30c6\u30a3\u30d6\u306a\u30bb\u30c3\u30b7\u30e7\u30f3",
|
||||
"add-scaleDowncondition": "\u8ffd\u52a0",
|
||||
"add-scaleUpcondition": "\u8ffd\u52a0",
|
||||
"address": "Address",
|
||||
"admin": "\u30c9\u30e1\u30a4\u30f3\u7ba1\u7406\u8005",
|
||||
"agentPassword": "\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8 \u30d1\u30b9\u30ef\u30fc\u30c9",
|
||||
"agentPort": "\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u30dd\u30fc\u30c8",
|
||||
"agentUsername": "\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8 \u30e6\u30fc\u30b6\u30fc\u540d",
|
||||
"agentstate": "\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u306e\u72b6\u614b",
|
||||
"algorithm": "\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0",
|
||||
"allocationstate": "\u5272\u308a\u5f53\u3066\u72b6\u614b",
|
||||
"apikey": "API \u30ad\u30fc",
|
||||
"associatednetworkid": "\u95a2\u9023\u4ed8\u3051\u3089\u308c\u305f\u30cd\u30c3\u30c8\u30ef\u30fc\u30af ID",
|
||||
"associatednetworkname": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u540d",
|
||||
"availability": "\u53ef\u7528\u6027",
|
||||
"availabilityZone": "\u30a2\u30d9\u30a4\u30e9\u30d3\u30ea\u30c6\u30a3 \u30be\u30fc\u30f3",
|
||||
"balance": "Balance",
|
||||
"baremetalCpu": "CPU (MHz)",
|
||||
"baremetalCpuCores": "CPU \u30b3\u30a2\u6570",
|
||||
"baremetalMAC": "\u30db\u30b9\u30c8\u306e MAC",
|
||||
"baremetalMemory": "\u30e1\u30e2\u30ea (MB)",
|
||||
"bcfdeviceid": "ID",
|
||||
"bladeid": "\u30d6\u30ec\u30fc\u30c9 ID",
|
||||
"bootable": "\u8d77\u52d5\u53ef\u80fd",
|
||||
"broadcastdomainrange": "\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8 \u30c9\u30e1\u30a4\u30f3\u306e\u7bc4\u56f2",
|
||||
"broadcastdomaintype": "\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8 \u30c9\u30e1\u30a4\u30f3\u306e\u7a2e\u985e",
|
||||
"broadcasturi": "\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8 URI",
|
||||
"bucket": "\u30d0\u30b1\u30c3\u30c8",
|
||||
"cacheMode": "\u66f8\u304d\u8fbc\u307f\u30ad\u30e3\u30c3\u30b7\u30e5\u306e\u7a2e\u985e",
|
||||
"capacity": "\u51e6\u7406\u80fd\u529b",
|
||||
"capacityBytes": "\u51e6\u7406\u80fd\u529b (\u30d0\u30a4\u30c8)",
|
||||
"capacityIops": "\u51e6\u7406\u80fd\u529b (IOPS)",
|
||||
"capacityiops": "IOPS \u5408\u8a08",
|
||||
"chassis": "\u30b7\u30e3\u30fc\u30b7",
|
||||
"checksum": "\u30c1\u30a7\u30c3\u30af\u30b5\u30e0",
|
||||
"cidr": "CIDR",
|
||||
"cidrlist": "CIDR \u4e00\u89a7",
|
||||
"cleanup": "\u30af\u30ea\u30fc\u30f3 \u30a2\u30c3\u30d7\u3059\u308b",
|
||||
"clusterId": "\u30af\u30e9\u30b9\u30bf\u30fc",
|
||||
"clusterid": "\u30af\u30e9\u30b9\u30bf\u30fc",
|
||||
"clustername": "\u30af\u30e9\u30b9\u30bf\u30fc",
|
||||
"clusters": "\u30af\u30e9\u30b9\u30bf\u30fc",
|
||||
"clustertype": "\u30af\u30e9\u30b9\u30bf\u30fc\u306e\u7a2e\u985e",
|
||||
"connectiontimeout": "\u63a5\u7d9a\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8",
|
||||
"conservemode": "\u7bc0\u7d04\u30e2\u30fc\u30c9",
|
||||
"counterid": "\u30ab\u30a6\u30f3\u30bf\u30fc",
|
||||
"cpuCap": "CPU \u30ad\u30e3\u30c3\u30d7",
|
||||
"cpuLimit": "CPU \u5236\u9650",
|
||||
"cpuNumber": "CPU \u30b3\u30a2\u6570",
|
||||
"cpuSpeed": "CPU (MHz)",
|
||||
"cpuallocated": "VM \u306b\u5272\u308a\u5f53\u3066\u6e08\u307f\u306e CPU",
|
||||
"cpuallocatedghz": "\u5272\u308a\u5f53\u3066\u6e08\u307f",
|
||||
"cpumaxdeviation": "Deviation",
|
||||
"cpunumber": "CPU \u30b3\u30a2\u6570",
|
||||
"cpusockets": "CPU \u30bd\u30b1\u30c3\u30c8\u6570",
|
||||
"cpuspeed": "CPU (MHz)",
|
||||
"cputotal": "Total",
|
||||
"cputotalghz": "Total",
|
||||
"cpuused": "CPU \u4f7f\u7528\u7387",
|
||||
"cpuusedghz": "\u4f7f\u7528\u4e2d",
|
||||
"createNfsCache": "NFS \u30bb\u30ab\u30f3\u30c0\u30ea \u30b9\u30c6\u30fc\u30b8\u30f3\u30b0 \u30b9\u30c8\u30a2\u3092\u4f5c\u6210\u3059\u308b",
|
||||
"created": "\u65e5\u6642",
|
||||
"credit": "Credit",
|
||||
"crossZones": "\u30af\u30ed\u30b9 \u30be\u30fc\u30f3",
|
||||
"current": "\u4f7f\u7528\u4e2d",
|
||||
"date": "\u65e5\u6642",
|
||||
"dedicated": "\u5c02\u7528",
|
||||
"deleteprofile": "\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u306e\u524a\u9664",
|
||||
"deploymentPlanner": "\u5c55\u958b\u30d7\u30e9\u30f3\u30ca\u30fc",
|
||||
"deploymentplanner": "\u5c55\u958b\u30d7\u30e9\u30f3\u30ca\u30fc",
|
||||
"description": "\u8aac\u660e",
|
||||
"destinationZoneId": "\u30b3\u30d4\u30fc\u5148\u30be\u30fc\u30f3",
|
||||
"destinationphysicalnetworkid": "\u30d6\u30ea\u30c3\u30b8\u5148\u7269\u7406\u30cd\u30c3\u30c8\u30ef\u30fc\u30af ID",
|
||||
"destroyVMgracePeriod": "VM \u7834\u68c4\u306e\u7336\u4e88\u671f\u9593",
|
||||
"details": "\u8a73\u7d30",
|
||||
"deviceid": "\u30c7\u30d0\u30a4\u30b9 ID",
|
||||
"directdownload": "Direct Download",
|
||||
"disconnected": "\u6700\u7d42\u5207\u65ad\u65e5\u6642",
|
||||
"disk": "Disk",
|
||||
"diskBytesReadRate": "\u30c7\u30a3\u30b9\u30af\u8aad\u307f\u53d6\u308a\u901f\u5ea6 (BPS)",
|
||||
"diskBytesWriteRate": "\u30c7\u30a3\u30b9\u30af\u66f8\u304d\u8fbc\u307f\u901f\u5ea6 (BPS)",
|
||||
"diskIopsReadRate": "\u30c7\u30a3\u30b9\u30af\u8aad\u307f\u53d6\u308a\u901f\u5ea6 (IOPS)",
|
||||
"diskIopsWriteRate": "\u30c7\u30a3\u30b9\u30af\u66f8\u304d\u8fbc\u307f\u901f\u5ea6 (IOPS)",
|
||||
"diskOffering": "\u30c7\u30a3\u30b9\u30af \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"diskOfferingId": "\u30c7\u30a3\u30b9\u30af \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"diskSize": "\u30c7\u30a3\u30b9\u30af \u30b5\u30a4\u30ba (GB)",
|
||||
"diskiopstotal": "IOPS",
|
||||
"diskioread": "\u30c7\u30a3\u30b9\u30af\u8aad\u307f\u53d6\u308a (IO)",
|
||||
"diskiowrite": "\u30c7\u30a3\u30b9\u30af\u66f8\u304d\u8fbc\u307f (IO)",
|
||||
"diskkbsread": "\u30c7\u30a3\u30b9\u30af\u8aad\u307f\u53d6\u308a (\u30d0\u30a4\u30c8)",
|
||||
"diskkbswrite": "\u30c7\u30a3\u30b9\u30af\u66f8\u304d\u8fbc\u307f (\u30d0\u30a4\u30c8)",
|
||||
"diskofferingdisplaytext": "\u30c7\u30a3\u30b9\u30af \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"disksize": "\u30c7\u30a3\u30b9\u30af \u30b5\u30a4\u30ba (GB)",
|
||||
"disksizeallocated": "\u5272\u308a\u5f53\u3066\u6e08\u307f\u306e\u30c7\u30a3\u30b9\u30af",
|
||||
"disksizeallocatedgb": "\u5272\u308a\u5f53\u3066\u6e08\u307f",
|
||||
"disksizetotal": "\u30c7\u30a3\u30b9\u30af\u5408\u8a08",
|
||||
"disksizetotalgb": "Total",
|
||||
"disksizeunallocatedgb": "Unallocated",
|
||||
"disksizeusedgb": "\u4f7f\u7528\u4e2d",
|
||||
"displayText": "\u8aac\u660e",
|
||||
"displayname": "\u8868\u793a\u540d",
|
||||
"displaytext": "\u8aac\u660e",
|
||||
"distributedvpcrouter": "\u5206\u6563 VPC \u30eb\u30fc\u30bf\u30fc",
|
||||
"dns1": "DNS 1",
|
||||
"dns2": "DNS 2",
|
||||
"domain": "\u30c9\u30e1\u30a4\u30f3",
|
||||
"domainId": "\u30c9\u30e1\u30a4\u30f3",
|
||||
"domainid": "\u30c9\u30e1\u30a4\u30f3",
|
||||
"domainname": "\u30c9\u30e1\u30a4\u30f3",
|
||||
"domainpath": "\u30c9\u30e1\u30a4\u30f3",
|
||||
"dpd": "\u505c\u6b62\u30d4\u30a2\u3092\u691c\u51fa\u3059\u308b",
|
||||
"driver": "Driver",
|
||||
"egressdefaultpolicy": "\u9001\u4fe1\u306e\u30c7\u30d5\u30a9\u30eb\u30c8 \u30dd\u30ea\u30b7\u30fc",
|
||||
"email": "\u96fb\u5b50\u30e1\u30fc\u30eb",
|
||||
"enddate": "End Date",
|
||||
"endip": "IPv4 \u7d42\u4e86 IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"endipv4": "IPv4 \u7d42\u4e86 IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"endipv6": "IPv6 \u7d42\u4e86 IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"endpoint": "\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8",
|
||||
"endport": "\u7d42\u4e86\u30dd\u30fc\u30c8",
|
||||
"espEncryption": "ESP \u6697\u53f7\u5316",
|
||||
"espHash": "ESP \u30cf\u30c3\u30b7\u30e5",
|
||||
"esplifetime": "ESP \u6709\u52b9\u671f\u9593 (\u79d2)",
|
||||
"esppolicy": "ESP \u30dd\u30ea\u30b7\u30fc",
|
||||
"expunge": "\u62b9\u6d88",
|
||||
"fingerprint": "\u30d5\u30a3\u30f3\u30ac\u30fc\u30d7\u30ea\u30f3\u30c8",
|
||||
"firstname": "\u540d",
|
||||
"forced": "\u5f37\u5236\u7684\u306b\u505c\u6b62\u3059\u308b",
|
||||
"forceencap": "Force UDP Encapsulation of ESP Packets",
|
||||
"format": "\u5f62\u5f0f",
|
||||
"fwdevicecapacity": "\u51e6\u7406\u80fd\u529b",
|
||||
"fwdeviceid": "ID",
|
||||
"fwdevicename": "\u7a2e\u985e",
|
||||
"fwdevicestate": "\u72b6\u6cc1",
|
||||
"gateway": "\u30b2\u30fc\u30c8\u30a6\u30a7\u30a4",
|
||||
"glustervolume": "\u30dc\u30ea\u30e5\u30fc\u30e0",
|
||||
"group": "\u30b0\u30eb\u30fc\u30d7",
|
||||
"gslbdomainname": "GSLB \u30c9\u30e1\u30a4\u30f3\u540d",
|
||||
"gslblbmethod": "\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0",
|
||||
"gslbprovider": "GSLB \u30b5\u30fc\u30d3\u30b9",
|
||||
"gslbproviderprivateip": "GSLB \u30b5\u30fc\u30d3\u30b9\u306e\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8 IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"gslbproviderpublicip": "GSLB \u30b5\u30fc\u30d3\u30b9\u306e\u30d1\u30d6\u30ea\u30c3\u30af IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"gslbservicetype": "\u30b5\u30fc\u30d3\u30b9\u306e\u7a2e\u985e",
|
||||
"guestEndIp": "\u30b2\u30b9\u30c8\u306e\u7d42\u4e86 IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"guestGateway": "\u30b2\u30b9\u30c8 \u30b2\u30fc\u30c8\u30a6\u30a7\u30a4",
|
||||
"guestIpType": "\u30b2\u30b9\u30c8\u306e\u7a2e\u985e",
|
||||
"guestNetmask": "\u30b2\u30b9\u30c8 \u30cd\u30c3\u30c8\u30de\u30b9\u30af",
|
||||
"guestStartIp": "\u30b2\u30b9\u30c8\u306e\u958b\u59cb IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"guestcidraddress": "\u30b2\u30b9\u30c8 CIDR",
|
||||
"guestipaddress": "\u30b2\u30b9\u30c8 IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"guestiptype": "\u30b2\u30b9\u30c8\u306e\u7a2e\u985e",
|
||||
"guestnetworkid": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af ID",
|
||||
"guestnetworkname": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u540d",
|
||||
"guestosid": "OS \u306e\u7a2e\u985e",
|
||||
"guestvlanrange": "VLAN \u306e\u7bc4\u56f2",
|
||||
"haenable": "\u9ad8\u53ef\u7528\u6027\u6709\u52b9",
|
||||
"hahost": "\u9ad8\u53ef\u7528\u6027\u6709\u52b9",
|
||||
"host": "IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"hostId": "\u30db\u30b9\u30c8",
|
||||
"hostTags": "\u30db\u30b9\u30c8 \u30bf\u30b0",
|
||||
"hostname": "\u30db\u30b9\u30c8\u540d",
|
||||
"hosts": "\u30db\u30b9\u30c8",
|
||||
"hosttags": "\u30db\u30b9\u30c8 \u30bf\u30b0",
|
||||
"hypervisor": "\u30cf\u30a4\u30d1\u30fc\u30d0\u30a4\u30b6\u30fc",
|
||||
"hypervisorSnapshotReserve": "\u30cf\u30a4\u30d1\u30fc\u30d0\u30a4\u30b6\u30fc \u30b9\u30ca\u30c3\u30d7\u30b7\u30e7\u30c3\u30c8\u4e88\u7d04",
|
||||
"hypervisorsnapshotreserve": "\u30cf\u30a4\u30d1\u30fc\u30d0\u30a4\u30b6\u30fc \u30b9\u30ca\u30c3\u30d7\u30b7\u30e7\u30c3\u30c8\u4e88\u7d04",
|
||||
"hypervisortype": "\u30cf\u30a4\u30d1\u30fc\u30d0\u30a4\u30b6\u30fc",
|
||||
"hypervisorversion": "\u30cf\u30a4\u30d1\u30fc\u30d0\u30a4\u30b6\u30fc\u306e\u30d0\u30fc\u30b8\u30e7\u30f3",
|
||||
"hypervnetworklabel": "Hyper-V \u306e\u30c8\u30e9\u30d5\u30a3\u30c3\u30af \u30e9\u30d9\u30eb",
|
||||
"icmpcode": "ICMP \u30b3\u30fc\u30c9",
|
||||
"icmptype": "ICMP \u306e\u7a2e\u985e",
|
||||
"id": "ID",
|
||||
"ikeDh": "IKE DH",
|
||||
"ikeEncryption": "IKE \u6697\u53f7\u5316",
|
||||
"ikeHash": "IKE \u30cf\u30c3\u30b7\u30e5",
|
||||
"ikelifetime": "IKE \u6709\u52b9\u671f\u9593 (\u79d2)",
|
||||
"ikepolicy": "IKE \u30dd\u30ea\u30b7\u30fc",
|
||||
"insideportprofile": "\u5185\u90e8\u30dd\u30fc\u30c8 \u30d7\u30ed\u30d5\u30a1\u30a4\u30eb",
|
||||
"instancename": "\u5185\u90e8\u540d",
|
||||
"instanceport": "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9 \u30dd\u30fc\u30c8",
|
||||
"instances": "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9",
|
||||
"internaldns1": "\u5185\u90e8 DNS 1",
|
||||
"internaldns2": "\u5185\u90e8 DNS 2",
|
||||
"interval": "\u30dd\u30fc\u30ea\u30f3\u30b0\u9593\u9694 (\u79d2)",
|
||||
"intervaltype": "\u9593\u9694\u306e\u7a2e\u985e",
|
||||
"ip": "IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"ip4Netmask": "IPv4 \u30cd\u30c3\u30c8\u30de\u30b9\u30af",
|
||||
"ip4dns1": "IPv4 DNS1",
|
||||
"ip4dns2": "IPv4 DNS2",
|
||||
"ip4gateway": "IPv4 \u30b2\u30fc\u30c8\u30a6\u30a7\u30a4",
|
||||
"ip6address": "IPv6 IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"ip6cidr": "IPv6 CIDR",
|
||||
"ip6dns1": "IPv6 DNS 1",
|
||||
"ip6dns2": "IPv6 DNS 2",
|
||||
"ip6gateway": "IPv6 \u30b2\u30fc\u30c8\u30a6\u30a7\u30a4",
|
||||
"ipLimit": "\u30d1\u30d6\u30ea\u30c3\u30af IP \u30a2\u30c9\u30ec\u30b9\u306e\u5236\u9650",
|
||||
"ipaddress": "IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"ipaddress1": "IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"ipaddress2": "IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"ipsecpsk": "IPsec \u4e8b\u524d\u5171\u6709\u30ad\u30fc",
|
||||
"iptotal": "\u5168 IP \u30a2\u30c9\u30ec\u30b9\u6570",
|
||||
"iqn": "\u30bf\u30fc\u30b2\u30c3\u30c8 IQN",
|
||||
"isAdvanced": "\u8a73\u7d30\u8a2d\u5b9a\u306e\u8868\u793a",
|
||||
"isBootable": "\u8d77\u52d5\u53ef\u80fd",
|
||||
"isCustomized": "\u30ab\u30b9\u30bf\u30e0 \u30c7\u30a3\u30b9\u30af \u30b5\u30a4\u30ba",
|
||||
"isCustomizedIops": "\u30ab\u30b9\u30bf\u30e0 IOPS",
|
||||
"isDedicated": "\u5c02\u7528\u306b\u8a2d\u5b9a",
|
||||
"isExtractable": "\u62bd\u51fa\u53ef\u80fd",
|
||||
"isFeatured": "\u304a\u3059\u3059\u3081",
|
||||
"isForced": "\u5f37\u5236\u7684\u306b\u89e3\u9664\u3059\u308b",
|
||||
"isManaged": "\u7ba1\u7406\u5bfe\u8c61",
|
||||
"isPasswordEnabled": "\u30d1\u30b9\u30ef\u30fc\u30c9\u7ba1\u7406\u6709\u52b9",
|
||||
"isPersistent": "\u6c38\u7d9a",
|
||||
"isPublic": "\u30d1\u30d6\u30ea\u30c3\u30af",
|
||||
"isVolatile": "\u63ee\u767a\u6027",
|
||||
"iscustomized": "\u30ab\u30b9\u30bf\u30e0 \u30c7\u30a3\u30b9\u30af \u30b5\u30a4\u30ba",
|
||||
"iscustomizediops": "\u30ab\u30b9\u30bf\u30e0 IOPS",
|
||||
"isdedicated": "\u5c02\u7528",
|
||||
"isdefault": "\u30c7\u30d5\u30a9\u30eb\u30c8",
|
||||
"isdynamicallyscalable": "\u52d5\u7684\u306b\u30b5\u30a4\u30ba\u8a2d\u5b9a\u3059\u308b",
|
||||
"isextractable": "\u5c55\u958b",
|
||||
"isfeatured": "\u304a\u3059\u3059\u3081",
|
||||
"iso": "ISO",
|
||||
"isolatedpvlanId": "\u5206\u96e2\u3055\u308c\u305f\u30bb\u30ab\u30f3\u30c0\u30ea VLAN ID",
|
||||
"isolationmethods": "\u5206\u96e2\u65b9\u6cd5",
|
||||
"isolationuri": "\u5206\u96e2 URI",
|
||||
"isoname": "\u30a2\u30bf\u30c3\u30c1\u3055\u308c\u305f ISO",
|
||||
"ispersistent": "\u6c38\u7d9a",
|
||||
"isportable": "\u30af\u30ed\u30b9 \u30be\u30fc\u30f3",
|
||||
"ispublic": "\u30d1\u30d6\u30ea\u30c3\u30af",
|
||||
"isready": "\u6e96\u5099\u5b8c\u4e86",
|
||||
"isredundantrouter": "\u5197\u9577\u30eb\u30fc\u30bf\u30fc",
|
||||
"isrouting": "\u30eb\u30fc\u30c6\u30a3\u30f3\u30b0",
|
||||
"issourcenat": "\u9001\u4fe1\u5143 NAT",
|
||||
"isstaticnat": "\u9759\u7684 NAT",
|
||||
"issystem": "\u30b7\u30b9\u30c6\u30e0",
|
||||
"isvolatile": "\u63ee\u767a\u6027",
|
||||
"key": "\u30ad\u30fc",
|
||||
"keyboardType": "\u30ad\u30fc\u30dc\u30fc\u30c9\u306e\u7a2e\u985e",
|
||||
"keypair": "SSH \u30ad\u30fc\u30da\u30a2",
|
||||
"kvmnetworklabel": "KVM \u306e\u30c8\u30e9\u30d5\u30a3\u30c3\u30af \u30e9\u30d9\u30eb",
|
||||
"l2gatewayserviceuuid": "L2 Gateway Service Uuid",
|
||||
"l3gatewayserviceuuid": "L3 \u30b2\u30fc\u30c8\u30a6\u30a7\u30a4 \u30b5\u30fc\u30d3\u30b9\u306e UUID",
|
||||
"last_updated": "Last Update",
|
||||
"lastname": "\u59d3",
|
||||
"lbType": "\u30ed\u30fc\u30c9 \u30d0\u30e9\u30f3\u30b5\u30fc\u306e\u7a2e\u985e",
|
||||
"lbdevicecapacity": "\u51e6\u7406\u80fd\u529b",
|
||||
"lbdevicededicated": "\u5c02\u7528",
|
||||
"lbdeviceid": "ID",
|
||||
"lbdevicename": "\u7a2e\u985e",
|
||||
"lbdevicestate": "\u72b6\u6cc1",
|
||||
"level": "\u30ec\u30d9\u30eb",
|
||||
"limitcpuuse": "CPU \u30ad\u30e3\u30c3\u30d7",
|
||||
"linklocalip": "\u30ea\u30f3\u30af \u30ed\u30fc\u30ab\u30eb IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"loadbalancerinstance": "\u5272\u308a\u5f53\u3066\u6e08\u307f VM",
|
||||
"loadbalancerrule": "\u8ca0\u8377\u5206\u6563\u898f\u5247",
|
||||
"localstorageenabled": "\u30e6\u30fc\u30b6\u30fc VM \u306b\u5bfe\u3057\u30ed\u30fc\u30ab\u30eb\u30b9\u30c8\u30ec\u30fc\u30b8\u3092\u6709\u52b9\u5316\u3059\u308b",
|
||||
"localstorageenabledforsystemvm": "\u30b7\u30b9\u30c6\u30e0 VM \u306b\u5bfe\u3057\u30ed\u30fc\u30ab\u30eb\u30b9\u30c8\u30ec\u30fc\u30b8\u3092\u6709\u52b9\u5316\u3059\u308b",
|
||||
"lun": "LUN \u756a\u53f7",
|
||||
"lxcnetworklabel": "LXC \u306e\u30c8\u30e9\u30d5\u30a3\u30c3\u30af \u30e9\u30d9\u30eb",
|
||||
"makeredundant": "\u5197\u9577\u5316\u69cb\u6210\u3092\u3068\u308b",
|
||||
"maxInstance": "\u6700\u5927\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u6570",
|
||||
"maxIops": "\u6700\u5927 IOPS",
|
||||
"maxerrorretry": "\u6700\u5927\u30a8\u30e9\u30fc\u518d\u8a66\u884c\u6570",
|
||||
"maxguestslimit": "\u6700\u5927\u30b2\u30b9\u30c8\u5236\u9650",
|
||||
"maxiops": "\u6700\u5927 IOPS",
|
||||
"memallocated": "Mem Allocation",
|
||||
"memory": "\u30e1\u30e2\u30ea (MB)",
|
||||
"memoryLimit": "\u30e1\u30e2\u30ea\u5236\u9650 (MiB)",
|
||||
"memoryallocated": "\u5272\u308a\u5f53\u3066\u6e08\u307f\u306e\u30e1\u30e2\u30ea",
|
||||
"memoryallocatedgb": "\u5272\u308a\u5f53\u3066\u6e08\u307f",
|
||||
"memorymaxdeviation": "Deviation",
|
||||
"memorytotal": "\u5272\u308a\u5f53\u3066\u6e08\u307f",
|
||||
"memorytotalgb": "Total",
|
||||
"memoryused": "\u4f7f\u7528\u4e2d",
|
||||
"memoryusedgb": "\u4f7f\u7528\u4e2d",
|
||||
"memused": "Mem Usage",
|
||||
"minInstance": "\u6700\u5c0f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u6570",
|
||||
"minIops": "\u6700\u5c0f IOPS",
|
||||
"min_balance": "Min Balance",
|
||||
"miniops": "\u6700\u5c0f IOPS",
|
||||
"name": "\u540d\u524d",
|
||||
"nat": "BigSwitch BCF \u306e NAT \u3092\u6709\u52b9\u5316\u3057\u307e\u3057\u305f",
|
||||
"netmask": "\u30cd\u30c3\u30c8\u30de\u30b9\u30af",
|
||||
"network": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af",
|
||||
"networkDomain": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af \u30c9\u30e1\u30a4\u30f3",
|
||||
"networkLimit": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u5236\u9650",
|
||||
"networkOfferingId": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"networkRate": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u901f\u5ea6 (MB/\u79d2)",
|
||||
"networkcidr": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af CIDR",
|
||||
"networkdevicetype": "\u7a2e\u985e",
|
||||
"networkdomain": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af \u30c9\u30e1\u30a4\u30f3",
|
||||
"networkdomaintext": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af \u30c9\u30e1\u30a4\u30f3",
|
||||
"networkid": "\u968e\u5c64\u306e\u9078\u629e",
|
||||
"networkkbsread": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u8aad\u307f\u53d6\u308a",
|
||||
"networkkbswrite": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u66f8\u304d\u8fbc\u307f",
|
||||
"networkname": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u540d",
|
||||
"networkofferingdisplaytext": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"networkofferingid": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"networkofferingidText": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0 ID",
|
||||
"networkofferingname": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"networkrate": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u901f\u5ea6 (MB/\u79d2)",
|
||||
"networkread": "Read",
|
||||
"networktype": "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u306e\u7a2e\u985e",
|
||||
"networkwrite": "Write",
|
||||
"newDiskOffering": "New Disk Offering",
|
||||
"newdiskoffering": "\u65b0\u3057\u3044\u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"newsize": "\u65b0\u3057\u3044\u30b5\u30a4\u30ba(GB)",
|
||||
"nfsCacheNfsServer": "S3 NFS \u30b5\u30fc\u30d0\u30fc",
|
||||
"nfsCachePath": "S3 NFS \u30d1\u30b9",
|
||||
"nfsCacheZoneid": "\u30be\u30fc\u30f3",
|
||||
"nfsServer": "\u30b5\u30fc\u30d0\u30fc",
|
||||
"nicAdapterType": "NIC \u30a2\u30c0\u30d7\u30bf\u30fc\u306e\u7a2e\u985e",
|
||||
"number": "#Rule",
|
||||
"numberOfRouterRequiresUpgrade": "\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u304c\u5fc5\u8981\u306a\u4eee\u60f3\u30eb\u30fc\u30bf\u30fc\u5408\u8a08",
|
||||
"numretries": "\u518d\u8a66\u884c\u56de\u6570",
|
||||
"nvpdeviceid": "ID",
|
||||
"offerHA": "\u9ad8\u53ef\u7528\u6027\u3092\u63d0\u4f9b\u3059\u308b",
|
||||
"offerha": "\u9ad8\u53ef\u7528\u6027\u3092\u63d0\u4f9b\u3059\u308b",
|
||||
"osTypeId": "OS \u306e\u7a2e\u985e",
|
||||
"oscategoryid": "OS \u57fa\u672c\u8a2d\u5b9a",
|
||||
"ostypeid": "OS \u306e\u7a2e\u985e",
|
||||
"ostypename": "OS \u306e\u7a2e\u985e",
|
||||
"overrideguesttraffic": "\u30b2\u30b9\u30c8 \u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u3092\u30aa\u30fc\u30d0\u30fc\u30e9\u30a4\u30c9\u3059\u308b",
|
||||
"overridepublictraffic": "\u30d1\u30d6\u30ea\u30c3\u30af \u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u3092\u30aa\u30fc\u30d0\u30fc\u30e9\u30a4\u30c9\u3059\u308b",
|
||||
"ovm3cluster": "\u30cd\u30a4\u30c6\u30a3\u30d6\u30af\u30e9\u30b9\u30bf\u30fc",
|
||||
"ovm3networklabel": "OVM3 traffic label",
|
||||
"ovm3pool": "\u30cd\u30a4\u30c6\u30a3\u30d6\u30d7\u30fc\u30eb",
|
||||
"ovm3vip": "\u30de\u30b9\u30bf\u30fc VIP IP",
|
||||
"ovmnetworklabel": "OVM \u306e\u30c8\u30e9\u30d5\u30a3\u30c3\u30af \u30e9\u30d9\u30eb",
|
||||
"palp": "Palo Alto \u30ed\u30b0 \u30d7\u30ed\u30d5\u30a1\u30a4\u30eb",
|
||||
"parentName": "\u89aa",
|
||||
"passive": "\u30d1\u30c3\u30b7\u30d6",
|
||||
"password": "\u30d1\u30b9\u30ef\u30fc\u30c9",
|
||||
"password-confirm": "\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u78ba\u8a8d\u5165\u529b",
|
||||
"passwordenabled": "\u30d1\u30b9\u30ef\u30fc\u30c9\u7ba1\u7406\u6709\u52b9",
|
||||
"path": "\u30d1\u30b9",
|
||||
"patp": "Palo Alto \u8105\u5a01\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb",
|
||||
"pavr": "\u4eee\u60f3\u30eb\u30fc\u30bf\u30fc",
|
||||
"pciDevice": "GPU",
|
||||
"perfectForwardSecrecy": "Perfect Forward Secrecy",
|
||||
"physicalNetworkId": "\u7269\u7406\u30cd\u30c3\u30c8\u30ef\u30fc\u30af",
|
||||
"physicalnetworkid": "\u7269\u7406\u30cd\u30c3\u30c8\u30ef\u30fc\u30af",
|
||||
"physicalsize": "Physical Size",
|
||||
"plannerMode": "\u30d7\u30e9\u30f3\u30ca\u30fc \u30e2\u30fc\u30c9",
|
||||
"podId": "\u30dd\u30c3\u30c9",
|
||||
"podname": "\u30dd\u30c3\u30c9",
|
||||
"port": "\u30dd\u30fc\u30c8",
|
||||
"portableipaddress": "\u30dd\u30fc\u30bf\u30d6\u30eb IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"powerstate": "Power State",
|
||||
"primaryStorageLimit": "\u30d7\u30e9\u30a4\u30de\u30ea \u30b9\u30c8\u30ec\u30fc\u30b8\u5236\u9650 (GiB)",
|
||||
"primarystoragetotal": "\u30d7\u30e9\u30a4\u30de\u30ea \u30b9\u30c8\u30ec\u30fc\u30b8",
|
||||
"privateinterface": "\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8 \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9",
|
||||
"privateip": "\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8 IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"privatekey": "\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8\u30ad\u30fc",
|
||||
"privatenetwork": "\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8 \u30cd\u30c3\u30c8\u30ef\u30fc\u30af",
|
||||
"privateport": "\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8 \u30dd\u30fc\u30c8",
|
||||
"profiledn": "\u95a2\u9023\u4ed8\u3051\u3089\u308c\u305f\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb",
|
||||
"profilename": "\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb",
|
||||
"project": "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8",
|
||||
"projectId": "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8",
|
||||
"projectid": "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 ID",
|
||||
"projects": "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8",
|
||||
"property": "Property",
|
||||
"protocol": "\u30d7\u30ed\u30c8\u30b3\u30eb",
|
||||
"protocolnumber": "#Protocol",
|
||||
"provider": "\u30d7\u30ed\u30d0\u30a4\u30c0\u30fc",
|
||||
"providername": "\u30d7\u30ed\u30d0\u30a4\u30c0\u30fc",
|
||||
"provisioningType": "\u30d7\u30ed\u30d3\u30b8\u30e7\u30cb\u30f3\u30b0\u306e\u7a2e\u985e",
|
||||
"provisioningtype": "\u30d7\u30ed\u30d3\u30b8\u30e7\u30cb\u30f3\u30b0\u306e\u7a2e\u985e",
|
||||
"publicinterface": "\u30d1\u30d6\u30ea\u30c3\u30af \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9",
|
||||
"publicip": "IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"publickey": "\u516c\u958b\u9375",
|
||||
"publicnetwork": "\u30d1\u30d6\u30ea\u30c3\u30af \u30cd\u30c3\u30c8\u30ef\u30fc\u30af",
|
||||
"publicport": "\u30d1\u30d6\u30ea\u30c3\u30af \u30dd\u30fc\u30c8",
|
||||
"purpose": "\u76ee\u7684",
|
||||
"qosType": "QoS \u306e\u7a2e\u985e",
|
||||
"quiescevm": "VM \u3092\u4f11\u6b62\u3059\u308b",
|
||||
"quietTime": "\u5f85\u3061\u6642\u9593 (\u79d2)",
|
||||
"quota": "Quota Value",
|
||||
"quota_enforce": "Enforce Quota",
|
||||
"rbdid": "Cephx \u30e6\u30fc\u30b6\u30fc",
|
||||
"rbdmonitor": "Ceph \u30e2\u30cb\u30bf\u30fc",
|
||||
"rbdpool": "Ceph \u30d7\u30fc\u30eb",
|
||||
"rbdsecret": "Cephx \u30b7\u30fc\u30af\u30ec\u30c3\u30c8",
|
||||
"reason": "Reason",
|
||||
"receivedbytes": "\u53d7\u4fe1\u30d0\u30a4\u30c8",
|
||||
"redundantRouterState": "\u5197\u9577\u72b6\u614b",
|
||||
"redundantrouter": "\u5197\u9577\u30eb\u30fc\u30bf\u30fc",
|
||||
"redundantstate": "\u5197\u9577\u72b6\u614b",
|
||||
"redundantvpcrouter": "\u5197\u9577 VPC",
|
||||
"reenterpassword": "Re-enter Password",
|
||||
"relationaloperator": "\u6f14\u7b97\u5b50",
|
||||
"requireshvm": "HVM",
|
||||
"requiresupgrade": "\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u304c\u5fc5\u8981",
|
||||
"reservedSystemEndIp": "\u4e88\u7d04\u6e08\u307f\u7d42\u4e86\u30b7\u30b9\u30c6\u30e0 IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"reservedSystemGateway": "\u4e88\u7d04\u6e08\u307f\u30b7\u30b9\u30c6\u30e0 \u30b2\u30fc\u30c8\u30a6\u30a7\u30a4",
|
||||
"reservedSystemNetmask": "\u4e88\u7d04\u6e08\u307f\u30b7\u30b9\u30c6\u30e0 \u30cd\u30c3\u30c8\u30de\u30b9\u30af",
|
||||
"reservedSystemStartIp": "\u4e88\u7d04\u6e08\u307f\u958b\u59cb\u30b7\u30b9\u30c6\u30e0 IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"reservediprange": "\u4e88\u7d04\u6e08\u307f IP \u30a2\u30c9\u30ec\u30b9\u306e\u7bc4\u56f2",
|
||||
"resourceid": "\u30ea\u30bd\u30fc\u30b9 ID",
|
||||
"resourcename": "\u30ea\u30bd\u30fc\u30b9\u540d",
|
||||
"resourcestate": "\u30ea\u30bd\u30fc\u30b9\u306e\u72b6\u614b",
|
||||
"restartrequired": "\u518d\u8d77\u52d5\u304c\u5fc5\u8981",
|
||||
"role": "\u5f79\u5272",
|
||||
"rolename": "\u5f79\u5272",
|
||||
"roletype": "Role Type",
|
||||
"rootDiskControllerType": "\u30eb\u30fc\u30c8 \u30c7\u30a3\u30b9\u30af \u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u30fc",
|
||||
"rootDiskControllerTypeKVM": "\u30eb\u30fc\u30c8 \u30c7\u30a3\u30b9\u30af \u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u30fc",
|
||||
"routerCount": "\u4eee\u60f3\u30eb\u30fc\u30bf\u30fc\u5408\u8a08",
|
||||
"routerRequiresUpgrade": "\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u304c\u5fc5\u8981\u3067\u3059",
|
||||
"routerType": "\u7a2e\u985e",
|
||||
"samlEnable": "SAML SSO \u8a8d\u8a3c",
|
||||
"samlEntity": "\u8a8d\u8a3c\u30d7\u30ed\u30d0\u30a4\u30c0\u30fc",
|
||||
"scope": "\u30b9\u30b3\u30fc\u30d7",
|
||||
"secondaryStorageLimit": "\u30bb\u30ab\u30f3\u30c0\u30ea \u30b9\u30c8\u30ec\u30fc\u30b8\u5236\u9650 (GiB)",
|
||||
"secondaryips": "\u30bb\u30ab\u30f3\u30c0\u30ea IP",
|
||||
"secretkey": "\u79d8\u5bc6\u30ad\u30fc",
|
||||
"securityGroups": "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3 \u30b0\u30eb\u30fc\u30d7",
|
||||
"securitygroup": "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3 \u30b0\u30eb\u30fc\u30d7",
|
||||
"sent": "\u65e5\u6642",
|
||||
"sentbytes": "\u9001\u4fe1\u30d0\u30a4\u30c8",
|
||||
"server": "\u30b5\u30fc\u30d0\u30fc",
|
||||
"service.Connectivity.distributedRouterCapabilityCheckbox": "\u5206\u6563\u30eb\u30fc\u30bf\u30fc",
|
||||
"service.Connectivity.regionLevelVpcCapabilityCheckbox": "\u30ea\u30fc\u30b8\u30e7\u30f3\u30ec\u30d9\u30eb\u306e VPC",
|
||||
"service.Lb.elasticLbCheckbox": "\u30a8\u30e9\u30b9\u30c6\u30a3\u30c3\u30af LB",
|
||||
"service.Lb.inlineModeDropdown": "\u30e2\u30fc\u30c9",
|
||||
"service.Lb.lbIsolationDropdown": "LB \u5206\u96e2",
|
||||
"service.SourceNat.redundantRouterCapabilityCheckbox": "\u5197\u9577\u30eb\u30fc\u30bf\u30fc\u6a5f\u80fd",
|
||||
"service.SourceNat.sourceNatTypeDropdown": "\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u308b\u9001\u4fe1\u5143 NAT \u306e\u7a2e\u985e",
|
||||
"service.StaticNat.associatePublicIP": "\u30d1\u30d6\u30ea\u30c3\u30af IP \u30a2\u30c9\u30ec\u30b9\u306e\u95a2\u9023\u4ed8\u3051",
|
||||
"service.StaticNat.elasticIpCheckbox": "\u30a8\u30e9\u30b9\u30c6\u30a3\u30c3\u30af IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"serviceCapabilities": "\u30b5\u30fc\u30d3\u30b9\u306e\u6a5f\u80fd",
|
||||
"serviceOfferingId": "\u30b3\u30f3\u30d4\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0 \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"servicelist": "\u30b5\u30fc\u30d3\u30b9",
|
||||
"serviceofferingid": "\u30b3\u30f3\u30d4\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0 \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"serviceofferingname": "\u30b3\u30f3\u30d4\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0 \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"shrinkok": "\u7e2e\u5c0f\u53ef\u80fd\u306b\u3059\u308b",
|
||||
"size": "\u30b5\u30a4\u30ba",
|
||||
"sizegb": "\u30b5\u30a4\u30ba",
|
||||
"smbDomain": "SMB \u30c9\u30e1\u30a4\u30f3",
|
||||
"smbPassword": "SMB \u30d1\u30b9\u30ef\u30fc\u30c9",
|
||||
"smbUsername": "SMB \u30e6\u30fc\u30b6\u30fc\u540d",
|
||||
"snapshotLimit": "\u30b9\u30ca\u30c3\u30d7\u30b7\u30e7\u30c3\u30c8\u5236\u9650",
|
||||
"snapshotMemory": "\u30e1\u30e2\u30ea\u3082\u542b\u3081\u308b",
|
||||
"snmpCommunity": "SNMP \u30b3\u30df\u30e5\u30cb\u30c6\u30a3",
|
||||
"snmpPort": "SNMP \u30dd\u30fc\u30c8",
|
||||
"sockettimeout": "\u30bd\u30b1\u30c3\u30c8 \u30bf\u30a4\u30e0\u30a2\u30a6\u30c8",
|
||||
"sourceNat": "\u9001\u4fe1\u5143 NAT",
|
||||
"sourceipaddress": "\u9001\u4fe1\u5143 IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"sourceport": "\u9001\u4fe1\u5143\u30dd\u30fc\u30c8",
|
||||
"specifyVlan": "VLAN \u3092\u6307\u5b9a\u3059\u308b",
|
||||
"specifyipranges": "IP \u30a2\u30c9\u30ec\u30b9\u306e\u7bc4\u56f2\u306e\u6307\u5b9a",
|
||||
"specifyvlan": "VLAN \u3092\u6307\u5b9a\u3059\u308b",
|
||||
"sshkeypair": "\u65b0\u3057\u3044 SSH \u30ad\u30fc\u30da\u30a2",
|
||||
"startdate": "Start Date",
|
||||
"startip": "IPv4 \u958b\u59cb IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"startipv4": "IPv4 \u958b\u59cb IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"startipv6": "IPv6 \u958b\u59cb IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"startport": "\u958b\u59cb\u30dd\u30fc\u30c8",
|
||||
"startquota": "Quota Value",
|
||||
"state": "\u72b6\u614b",
|
||||
"status": "\u72b6\u6cc1",
|
||||
"storage": "\u30b9\u30c8\u30ec\u30fc\u30b8",
|
||||
"storageId": "\u30d7\u30e9\u30a4\u30de\u30ea \u30b9\u30c8\u30ec\u30fc\u30b8",
|
||||
"storagePool": "\u30b9\u30c8\u30ec\u30fc\u30b8 \u30d7\u30fc\u30eb",
|
||||
"storageTags": "\u30b9\u30c8\u30ec\u30fc\u30b8 \u30bf\u30b0",
|
||||
"storageType": "\u30b9\u30c8\u30ec\u30fc\u30b8\u306e\u7a2e\u985e",
|
||||
"storagetype": "\u30b9\u30c8\u30ec\u30fc\u30b8\u306e\u7a2e\u985e",
|
||||
"subdomainaccess": "\u30b5\u30d6\u30c9\u30e1\u30a4\u30f3 \u30a2\u30af\u30bb\u30b9",
|
||||
"supportedServices": "\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u308b\u30b5\u30fc\u30d3\u30b9",
|
||||
"supportspublicaccess": "Supports Public Access",
|
||||
"supportsregionLevelvpc": "\u30ea\u30fc\u30b8\u30e7\u30f3\u30ec\u30d9\u30eb\u306e VPC \u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b",
|
||||
"supportsstrechedl2subnet": "\u30b9\u30c8\u30ec\u30c3\u30c1 L2 \u30b5\u30d6\u30cd\u30c3\u30c8\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b",
|
||||
"systemvmtype": "\u7a2e\u985e",
|
||||
"tags": "\u30b9\u30c8\u30ec\u30fc\u30b8 \u30bf\u30b0",
|
||||
"tariffValue": "Tariff Value",
|
||||
"template": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u9078\u629e",
|
||||
"templateFileUpload": "\u30ed\u30fc\u30ab\u30eb\u30d5\u30a1\u30a4\u30eb",
|
||||
"templateLimit": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u5236\u9650",
|
||||
"templateNames": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8",
|
||||
"templatebody": "Body",
|
||||
"templatedn": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u9078\u629e",
|
||||
"templatename": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8",
|
||||
"templatesubject": "Subject",
|
||||
"templatetotal": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8",
|
||||
"templatetype": "Email Template",
|
||||
"tftpdir": "TFTP \u30eb\u30fc\u30c8 \u30c7\u30a3\u30ec\u30af\u30c8\u30ea",
|
||||
"threshold": "\u3057\u304d\u3044\u5024",
|
||||
"tierName": "\u968e\u5c64",
|
||||
"timeout": "\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8",
|
||||
"timezone": "\u30bf\u30a4\u30e0\u30be\u30fc\u30f3",
|
||||
"token": "\u30c8\u30fc\u30af\u30f3",
|
||||
"totalCPU": "CPU \u5408\u8a08",
|
||||
"traffictype": "\u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u306e\u7a2e\u985e",
|
||||
"transportzoneuuid": "\u30c8\u30e9\u30f3\u30b9\u30dd\u30fc\u30c8 \u30be\u30fc\u30f3\u306e UUID",
|
||||
"type": "\u7a2e\u985e",
|
||||
"unit": "Usage Unit",
|
||||
"url": "URL",
|
||||
"usageName": "Usage Type",
|
||||
"usageUnit": "Unit",
|
||||
"usageinterface": "\u4f7f\u7528\u72b6\u6cc1\u6e2c\u5b9a\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9",
|
||||
"useNewDiskOffering": "Replace disk offering?",
|
||||
"useVpc": "VPC",
|
||||
"usehttps": "HTTPS \u3092\u4f7f\u7528\u3059\u308b",
|
||||
"userDataL2": "\u30e6\u30fc\u30b6\u30fc \u30c7\u30fc\u30bf",
|
||||
"username": "\u30e6\u30fc\u30b6\u30fc\u540d",
|
||||
"utilization": "Utilisation",
|
||||
"uuid": "ID",
|
||||
"vCenterDataCenter": "vCenter \u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc",
|
||||
"vCenterDataStore": "vCenter \u30c7\u30fc\u30bf\u30b9\u30c8\u30a2",
|
||||
"vCenterDatacenter": "vCenter \u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc",
|
||||
"vCenterHost": "vCenter \u30db\u30b9\u30c8",
|
||||
"vCenterPassword": "vCenter \u30d1\u30b9\u30ef\u30fc\u30c9",
|
||||
"vCenterUsername": "vCenter \u30e6\u30fc\u30b6\u30fc\u540d",
|
||||
"vSwitchGuestName": "\u30b2\u30b9\u30c8 \u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u306e vSwitch \u540d",
|
||||
"vSwitchGuestType": "\u30b2\u30b9\u30c8 \u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u306e vSwitch \u306e\u7a2e\u985e",
|
||||
"vSwitchPublicName": "\u30d1\u30d6\u30ea\u30c3\u30af \u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u306e vSwitch \u540d",
|
||||
"vSwitchPublicType": "\u30d1\u30d6\u30ea\u30c3\u30af \u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u306e vSwitch \u306e\u7a2e\u985e",
|
||||
"value": "Credits",
|
||||
"vcenter": "VMware \u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc\u306e vCenter",
|
||||
"vcenterHost": "ESX/ESXi \u30db\u30b9\u30c8",
|
||||
"vcsdeviceid": "ID",
|
||||
"version": "\u30d0\u30fc\u30b8\u30e7\u30f3",
|
||||
"vgpu": "VGPU",
|
||||
"vgpuType": "vGPU \u306e\u7a2e\u985e",
|
||||
"virtualMachineId": "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9",
|
||||
"virtualmachinedisplayname": "VM \u540d",
|
||||
"virtualmachineid": "VM ID",
|
||||
"virtualsize": "Virtual Size",
|
||||
"vlan": "VLAN",
|
||||
"vlanId": "VLAN/VNI ID",
|
||||
"vlanRange": "VLAN/VNI \u306e\u7bc4\u56f2",
|
||||
"vlanname": "VLAN",
|
||||
"vlanrange": "VLAN/VNI \u306e\u7bc4\u56f2",
|
||||
"vmLimit": "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5236\u9650",
|
||||
"vmTotal": "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9",
|
||||
"vmdisplayname": "VM \u8868\u793a\u540d",
|
||||
"vmipaddress": "VM IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"vmname": "VM Name",
|
||||
"vmstate": "VM \u306e\u72b6\u614b",
|
||||
"vmtotal": "VM \u5408\u8a08",
|
||||
"vmwaredcId": "VMware \u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc ID",
|
||||
"vmwaredcName": "VMware \u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc\u540d",
|
||||
"vmwaredcVcenter": "VMware \u30c7\u30fc\u30bf\u30bb\u30f3\u30bf\u30fc\u306e vCenter",
|
||||
"vmwarenetworklabel": "VMware \u306e\u30c8\u30e9\u30d5\u30a3\u30c3\u30af \u30e9\u30d9\u30eb",
|
||||
"volume": "\u30dc\u30ea\u30e5\u30fc\u30e0",
|
||||
"volumeFileUpload": "\u30ed\u30fc\u30ab\u30eb\u30d5\u30a1\u30a4\u30eb",
|
||||
"volumeLimit": "\u30dc\u30ea\u30e5\u30fc\u30e0\u5236\u9650",
|
||||
"volumeTotal": "\u30dc\u30ea\u30e5\u30fc\u30e0",
|
||||
"volumegroup": "\u30dc\u30ea\u30e5\u30fc\u30e0 \u30b0\u30eb\u30fc\u30d7",
|
||||
"volumename": "\u30dc\u30ea\u30e5\u30fc\u30e0\u540d",
|
||||
"volumetotal": "\u30dc\u30ea\u30e5\u30fc\u30e0",
|
||||
"vpcLimit": "VPC \u5236\u9650",
|
||||
"vpcid": "VPC ID",
|
||||
"vpcname": "VPC",
|
||||
"vpcoffering": "VPC \u30aa\u30d5\u30a1\u30ea\u30f3\u30b0",
|
||||
"vpncustomergatewayid": "VPN \u30ab\u30b9\u30bf\u30de\u30fc \u30b2\u30fc\u30c8\u30a6\u30a7\u30a4",
|
||||
"vsmctrlvlanid": "\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb VLAN ID",
|
||||
"vsmdeviceid": "\u540d\u524d",
|
||||
"vsmdevicestate": "\u72b6\u614b",
|
||||
"vsmipaddress": "Nexus 1000V \u306e IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"vsmipaddress_req": "Nexus 1000V \u306e IP \u30a2\u30c9\u30ec\u30b9",
|
||||
"vsmpassword": "Nexus 1000V \u306e\u30d1\u30b9\u30ef\u30fc\u30c9",
|
||||
"vsmpassword_req": "Nexus 1000V \u306e\u30d1\u30b9\u30ef\u30fc\u30c9",
|
||||
"vsmpktvlanid": "\u30d1\u30b1\u30c3\u30c8 VLAN ID",
|
||||
"vsmstoragevlanid": "\u30b9\u30c8\u30ec\u30fc\u30b8 VLAN ID",
|
||||
"vsmusername": "Nexus 1000V \u306e\u30e6\u30fc\u30b6\u30fc\u540d",
|
||||
"vsmusername_req": "Nexus 1000V \u306e\u30e6\u30fc\u30b6\u30fc\u540d",
|
||||
"xennetworklabel": "XenServer \u306e\u30c8\u30e9\u30d5\u30a3\u30c3\u30af \u30e9\u30d9\u30eb",
|
||||
"xenserverToolsVersion61plus": "\u5143\u306e XS \u30d0\u30fc\u30b8\u30e7\u30f3\u306f 6.1 \u4ee5\u964d",
|
||||
"zone": "\u30be\u30fc\u30f3",
|
||||
"zoneId": "\u30be\u30fc\u30f3",
|
||||
"zoneid": "\u30be\u30fc\u30f3",
|
||||
"zonename": "\u30be\u30fc\u30f3"
|
||||
}
|
||||
|
|
@ -0,0 +1,638 @@
|
|||
{
|
||||
"Accounts": "\uacc4\uc815 \uc815\ubcf4",
|
||||
"Affinity Groups": "Affinity Groups",
|
||||
"Alerts": "\uc54c\ub9bc \uccb4\uacc4",
|
||||
"CPU Sockets": "CPU Sockets",
|
||||
"Cloudian Storage": "Cloudian Storage",
|
||||
"Clusters": "\ud074\ub7ec\uc2a4\ud130",
|
||||
"Compute": "\ucef4\ud4e8\ud305",
|
||||
"Compute Offerings": "Compute Offerings",
|
||||
"Configuration": "\uad6c\uc131",
|
||||
"Dashboard": "\ub300\uc2dc \ubcf4\ub4dc",
|
||||
"Disk Offerings": "\ub514\uc2a4\ud06c\uc81c\uacf5",
|
||||
"Domains": "Domains",
|
||||
"Events": "\uc774\ubca4\ud2b8",
|
||||
"Global Settings": "\uae00\ub85c\ubc8c \uc124\uc815",
|
||||
"Hosts": "\ud638\uc2a4\ud2b8",
|
||||
"Hypervisor Capabilities": "\ud558\uc774\ud37c \ubc14\uc774\uc800 \uae30\ub2a5",
|
||||
"ISOs": "ISO",
|
||||
"Identity and Access": "Identity and Access",
|
||||
"Infrastructure": "\uc778\ud504\ub77c\uc2a4\ud2b8\ub7ed\uccd0",
|
||||
"Instances": "\uc778\uc2a4\ud134\uc2a4",
|
||||
"LDAP Configuration": "LDAP Configuration",
|
||||
"Management Servers": "Management Servers",
|
||||
"Monitor": "Monitor",
|
||||
"Network": "\ub124\ud2b8\uc6cc\ud06c",
|
||||
"Network Offerings": "\ub124\ud2b8\uc6cc\ud06c \uc81c\uacf5",
|
||||
"Plugins": "Plugins",
|
||||
"Pods": "Pod",
|
||||
"Primary Storage": "\uae30\ubcf8 \uc2a4\ud1a0\ub9ac\uc9c0",
|
||||
"Projects": "\ud504\ub85c\uc81d\ud2b8",
|
||||
"Public IP Addresses": "\uacf5\uac1c IP \uc8fc\uc18c",
|
||||
"Public network": "\uacf5\uac1c \ub124\ud2b8\uc6cc\ud06c",
|
||||
"Quota": "Quota",
|
||||
"RESOURCE_NAME": "Resource Name",
|
||||
"Roles": "Roles",
|
||||
"SSH Key Pairs": "SSH Key Pairs",
|
||||
"Secondary Storage": "2\ucc28 \uc2a4\ud1a0\ub9ac\uc9c0",
|
||||
"Security Groups": "\ubcf4\uc548 \uadf8\ub8f9",
|
||||
"Snapshots": "\uc2a4\ub0c5\uc0f7",
|
||||
"Storage": "\uc2a4\ud1a0\ub9ac\uc9c0",
|
||||
"System Offerings": "\uc2dc\uc2a4\ud15c \uc81c\uacf5",
|
||||
"System VMs": "\uc2dc\uc2a4\ud15c VM",
|
||||
"Templates": "\ud15c\ud50c\ub9bf",
|
||||
"Users": "\uc0ac\uc6a9\uc790",
|
||||
"VM Snapshots": "VM Snapshots",
|
||||
"VPC": "VPC",
|
||||
"VPC Offerings": "VPC Offerings",
|
||||
"VPN Gateway": "VPN \uac8c\uc774\ud2b8\uc6e8\uc774",
|
||||
"Virtual Routers": "\uac00\uc0c1 \ub77c\uc6b0\ud130",
|
||||
"Volumes": "\ubcfc\ub968",
|
||||
"Zones": "Zone",
|
||||
"accesskey": "Access Key",
|
||||
"account": "\uacc4\uc815 \uc815\ubcf4",
|
||||
"accountId": "\uacc4\uc815 \uc815\ubcf4",
|
||||
"accountTotal": "\uacc4\uc815 \uc815\ubcf4",
|
||||
"accountlist": "\uacc4\uc815 \uc815\ubcf4",
|
||||
"accounts": "\uacc4\uc815 \uc815\ubcf4",
|
||||
"accounttype": "Account Type",
|
||||
"aclTotal": "\ub124\ud2b8\uc6cc\ud06c \uad8c\ud55c \uad00\ub9ac(ACL) \ud569\uacc4",
|
||||
"aclid": "ACL",
|
||||
"aclname": "ACL Name",
|
||||
"action": "Action",
|
||||
"activeviewersessions": "\ud65c\uc131 \uc138\uc158",
|
||||
"add-scaleDowncondition": "\ucd94\uac00",
|
||||
"add-scaleUpcondition": "\ucd94\uac00",
|
||||
"address": "Address",
|
||||
"admin": "\ub3c4\uba54\uc778 \uad00\ub9ac\uc790",
|
||||
"agentPassword": "\uc5d0\uc774\uc804\ud2b8 \uc554\ud638",
|
||||
"agentPort": "Agent Port",
|
||||
"agentUsername": "\uc5d0\uc774\uc804\ud2b8 \uc0ac\uc6a9\uc790\uba85",
|
||||
"agentstate": "Agent State",
|
||||
"algorithm": "\uc54c\uace0\ub9ac\uc998",
|
||||
"allocationstate": "\ud560\ub2f9 \uc0c1\ud0dc",
|
||||
"apikey": "API \ud0a4",
|
||||
"associatednetworkid": "\uad00\ub828 \ub124\ud2b8\uc6cc\ud06c ID",
|
||||
"associatednetworkname": "\ub124\ud2b8\uc6cc\ud06c\uba85",
|
||||
"availability": "\uac00\uc6a9\uc131",
|
||||
"availabilityZone": "\uc774\uc6a9 \uac00\ub2a5 Zone",
|
||||
"balance": "Balance",
|
||||
"baremetalCpu": "CPU (MHz)",
|
||||
"baremetalCpuCores": "CPU \ucf54\uc5b4\uc218",
|
||||
"baremetalMAC": "\ud638\uc2a4\ud2b8 MAC",
|
||||
"baremetalMemory": "\uba54\ubaa8\ub9ac (MB)",
|
||||
"bcfdeviceid": "ID",
|
||||
"bladeid": "Blade ID",
|
||||
"bootable": "\ubd80\ud305 \uac00\ub2a5",
|
||||
"broadcastdomainrange": "\ube0c\ub85c\ub4dc\uce90\uc2a4\ud2b8 \ub3c4\uba54\uc778 \ubc94\uc704",
|
||||
"broadcastdomaintype": "\ube0c\ub85c\ub4dc\uce90\uc2a4\ud2b8 \ub3c4\uba54\uc778 \uc885\ub958",
|
||||
"broadcasturi": "Broadcast URI",
|
||||
"bucket": "Bucket",
|
||||
"cacheMode": "Write-cache Type",
|
||||
"capacity": "\ucc98\ub9ac \ub2a5\ub825",
|
||||
"capacityBytes": "Capacity Bytes",
|
||||
"capacityIops": "Capacity IOPS",
|
||||
"capacityiops": "IOPS Total",
|
||||
"chassis": "Chassis",
|
||||
"checksum": "checksum",
|
||||
"cidr": "CIDR",
|
||||
"cidrlist": "CIDR \ubaa9\ub85d",
|
||||
"cleanup": "\uc0ad\uc81c\ud558\uae30",
|
||||
"clusterId": "\ud074\ub7ec\uc2a4\ud130",
|
||||
"clusterid": "\ud074\ub7ec\uc2a4\ud130",
|
||||
"clustername": "\ud074\ub7ec\uc2a4\ud130",
|
||||
"clusters": "\ud074\ub7ec\uc2a4\ud130",
|
||||
"clustertype": "\ud074\ub7ec\uc2a4\ud130 \uc885\ub958",
|
||||
"connectiontimeout": "Connection Timeout",
|
||||
"conservemode": "\uc808\uc57d \ubaa8\ub4dc",
|
||||
"counterid": "Counter",
|
||||
"cpuCap": "CPU \uc81c\ud55c",
|
||||
"cpuLimit": "CPU limits",
|
||||
"cpuNumber": "CPU \ucf54\uc5b4\uc218",
|
||||
"cpuSpeed": "CPU (MHz)",
|
||||
"cpuallocated": "VM\uc5d0 \ud560\ub2f9 \uc644\ub8cc CPU",
|
||||
"cpuallocatedghz": "\ud560\ub2f9 \uc644\ub8cc \uc0c1\ud0dc",
|
||||
"cpumaxdeviation": "Deviation",
|
||||
"cpunumber": "CPU \ucf54\uc5b4\uc218",
|
||||
"cpusockets": "The Number of CPU Sockets",
|
||||
"cpuspeed": "CPU (MHz)",
|
||||
"cputotal": "Total",
|
||||
"cputotalghz": "Total",
|
||||
"cpuused": "CPU \uc0ac\uc6a9\uc728",
|
||||
"cpuusedghz": "\uc0ac\uc6a9 \uc911",
|
||||
"createNfsCache": "Create NFS Secondary Staging Store",
|
||||
"created": "\ub0a0\uc9dc",
|
||||
"credit": "Credit",
|
||||
"crossZones": "\ud06c\ub85c\uc2a4 \uc874",
|
||||
"current": "isCurrent",
|
||||
"date": "\ub0a0\uc9dc",
|
||||
"dedicated": "\uc804\uc6a9",
|
||||
"deleteprofile": "Delete Profile",
|
||||
"deploymentPlanner": "Deployment planner",
|
||||
"deploymentplanner": "Deployment planner",
|
||||
"description": "\uc124\uba85",
|
||||
"destinationZoneId": "\ubcf5\uc0ac\ud560 Zone",
|
||||
"destinationphysicalnetworkid": "\ubaa9\uc801 \ubb3c\ub9ac \ub124\ud2b8\uc6cc\ud06c ID",
|
||||
"destroyVMgracePeriod": "Destroy VM Grace Period",
|
||||
"details": "\uc0c1\uc138",
|
||||
"deviceid": "\uae30\uae30 ID",
|
||||
"directdownload": "Direct Download",
|
||||
"disconnected": "\ub9c8\uc9c0\ub9c9 \uc885\ub8cc \uc2dc\uc810",
|
||||
"disk": "Disk",
|
||||
"diskBytesReadRate": "Disk Read Rate (BPS)",
|
||||
"diskBytesWriteRate": "Disk Write Rate (BPS)",
|
||||
"diskIopsReadRate": "Disk Read Rate (IOPS)",
|
||||
"diskIopsWriteRate": "Disk Write Rate (IOPS)",
|
||||
"diskOffering": "\ub514\uc2a4\ud06c \uc81c\uacf5",
|
||||
"diskOfferingId": "\ub514\uc2a4\ud06c\uc81c\uacf5",
|
||||
"diskSize": "\ub514\uc2a4\ud06c \ud06c\uae30(GB \ub2e8\uc704)",
|
||||
"diskiopstotal": "IOPS",
|
||||
"diskioread": "Disk Read (IO)",
|
||||
"diskiowrite": "Disk Write (IO)",
|
||||
"diskkbsread": "Disk Read (Bytes)",
|
||||
"diskkbswrite": "Disk Write (Bytes)",
|
||||
"diskofferingdisplaytext": "\ub514\uc2a4\ud06c \uc81c\uacf5",
|
||||
"disksize": "\ub514\uc2a4\ud06c \ud06c\uae30(GB \ub2e8\uc704)",
|
||||
"disksizeallocated": "\ud560\ub2f9 \uc644\ub8cc \ub514\uc2a4\ud06c",
|
||||
"disksizeallocatedgb": "\ud560\ub2f9 \uc644\ub8cc \uc0c1\ud0dc",
|
||||
"disksizetotal": "\ub514\uc2a4\ud06c \ud569\uacc4",
|
||||
"disksizetotalgb": "Total",
|
||||
"disksizeunallocatedgb": "Unallocated",
|
||||
"disksizeusedgb": "\uc0ac\uc6a9 \uc911",
|
||||
"displayText": "\uc124\uba85",
|
||||
"displayname": "Display Name",
|
||||
"displaytext": "\uc124\uba85",
|
||||
"distributedvpcrouter": "Distributed VPC Router",
|
||||
"dns1": "DNS 1",
|
||||
"dns2": "DNS 2",
|
||||
"domain": "\ub3c4\uba54\uc778",
|
||||
"domainId": "\ub3c4\uba54\uc778",
|
||||
"domainid": "\ub3c4\uba54\uc778",
|
||||
"domainname": "\ub3c4\uba54\uc778",
|
||||
"domainpath": "\ub3c4\uba54\uc778",
|
||||
"dpd": "\uc815\uc9c0 \ud53c\uc5b4 \uac10\uc9c0",
|
||||
"driver": "Driver",
|
||||
"egressdefaultpolicy": "Egress \uae30\ubcf8",
|
||||
"email": "\uc804\uc790 \uba54\uc77c",
|
||||
"enddate": "End Date",
|
||||
"endip": "IPv4 End IP",
|
||||
"endipv4": "IPv4 End IP",
|
||||
"endipv6": "IPv6 End IP",
|
||||
"endpoint": "Endpoint",
|
||||
"endport": "\uc885\ub8cc \ud3ec\ud1a0",
|
||||
"espEncryption": "ESP \uc554\ud638\ud654",
|
||||
"espHash": "ESP \ud574\uc2dc",
|
||||
"esplifetime": "ESP \uc720\ud6a8\uae30\uac04(\ucd08)",
|
||||
"esppolicy": "ESP \uc815\ucc45",
|
||||
"expunge": "Expunge",
|
||||
"fingerprint": "FingerPrint",
|
||||
"firstname": "\uc774\ub984",
|
||||
"forced": "\uac15\uc81c \uc815\uc9c0",
|
||||
"forceencap": "Force UDP Encapsulation of ESP Packets",
|
||||
"format": "\ud615\uc2dd",
|
||||
"fwdevicecapacity": "\ucc98\ub9ac \ub2a5\ub825",
|
||||
"fwdeviceid": "ID",
|
||||
"fwdevicename": "\uc885\ub958",
|
||||
"fwdevicestate": "\uc0c1\ud0dc",
|
||||
"gateway": "\uac8c\uc774\ud2b8\uc6e8\uc774",
|
||||
"glustervolume": "\ubcfc\ub968",
|
||||
"group": "\uadf8\ub8f9",
|
||||
"gslbdomainname": "GSLB Domain Name",
|
||||
"gslblbmethod": "\uc54c\uace0\ub9ac\uc998",
|
||||
"gslbprovider": "GSLB service",
|
||||
"gslbproviderprivateip": "GSLB service Private IP",
|
||||
"gslbproviderpublicip": "GSLB service Public IP",
|
||||
"gslbservicetype": "Service Type",
|
||||
"guestEndIp": "\uac8c\uc2a4\ud2b8 \uc885\ub8cc IP \uc8fc\uc18c",
|
||||
"guestGateway": "\uac8c\uc2a4\ud2b8 \uac8c\uc774\ud2b8\uc6e8\uc774",
|
||||
"guestIpType": "\uac8c\uc2a4\ud2b8 \uc885\ub958",
|
||||
"guestNetmask": "\uac8c\uc2a4\ud2b8 \ub137 \ub9c8\uc2a4\ud06c",
|
||||
"guestStartIp": "\uac8c\uc2a4\ud2b8 \uc2dc\uc791 IP \uc8fc\uc18c",
|
||||
"guestcidraddress": "\uac8c\uc2a4\ud2b8 CIDR",
|
||||
"guestipaddress": "\uac8c\uc2a4\ud2b8 IP \uc8fc\uc18c",
|
||||
"guestiptype": "\uac8c\uc2a4\ud2b8 \uc885\ub958",
|
||||
"guestnetworkid": "\ub124\ud2b8\uc6cc\ud06c ID",
|
||||
"guestnetworkname": "\ub124\ud2b8\uc6cc\ud06c\uba85",
|
||||
"guestosid": "OS \uc885\ub958",
|
||||
"guestvlanrange": "VLAN Range(s)",
|
||||
"haenable": "\uace0\uac00\uc6a9\uc131 \uc0ac\uc6a9\ud568",
|
||||
"hahost": "\uace0\uac00\uc6a9\uc131 \uc0ac\uc6a9\ud568",
|
||||
"host": "IP \uc8fc\uc18c",
|
||||
"hostId": "\ud638\uc2a4\ud2b8",
|
||||
"hostTags": "\ud638\uc2a4\ud2b8 \ud0dc\uadf8",
|
||||
"hostname": "\ud638\uc2a4\ud2b8\uba85",
|
||||
"hosts": "\ud638\uc2a4\ud2b8",
|
||||
"hosttags": "\ud638\uc2a4\ud2b8 \ud0dc\uadf8",
|
||||
"hypervisor": "\ud558\uc774\ud37c \ubc14\uc774\uc800",
|
||||
"hypervisorSnapshotReserve": "Hypervisor Snapshot Reserve",
|
||||
"hypervisorsnapshotreserve": "Hypervisor Snapshot Reserve",
|
||||
"hypervisortype": "\ud558\uc774\ud37c \ubc14\uc774\uc800",
|
||||
"hypervisorversion": "\ud558\uc774\ud37c \ubc14\uc774\uc800 \ubc84\uc804",
|
||||
"hypervnetworklabel": "HyperV Traffic Label",
|
||||
"icmpcode": "ICMP \ucf54\ub4dc",
|
||||
"icmptype": "ICMP \uc885\ub958",
|
||||
"id": "ID",
|
||||
"ikeDh": "IKE DH",
|
||||
"ikeEncryption": "IKE \uc554\ud638\ud654",
|
||||
"ikeHash": "IKE \ud574\uc2dc",
|
||||
"ikelifetime": "IKE \uc720\ud6a8\uae30\uac04(\ucd08)",
|
||||
"ikepolicy": "IKE \uc815\ucc45",
|
||||
"insideportprofile": "Inside Port Profile",
|
||||
"instancename": "\ub0b4\ubd80\uba85",
|
||||
"instanceport": "Instance Port",
|
||||
"instances": "\uc778\uc2a4\ud134\uc2a4",
|
||||
"internaldns1": "\ub0b4\ubd80 DNS 1",
|
||||
"internaldns2": "\ub0b4\ubd80 DNS 2",
|
||||
"interval": "Polling Interval (in sec)",
|
||||
"intervaltype": "\uac04\uaca9 \uc885\ub958",
|
||||
"ip": "IP \uc8fc\uc18c",
|
||||
"ip4Netmask": "IPv4 Netmask",
|
||||
"ip4dns1": "IPv4 DNS1",
|
||||
"ip4dns2": "IPv4 DNS2",
|
||||
"ip4gateway": "IPv4 Gateway",
|
||||
"ip6address": "IPv6 IP Address",
|
||||
"ip6cidr": "IPv6 CIDR",
|
||||
"ip6dns1": "IPv6 DNS1",
|
||||
"ip6dns2": "IPv6 DNS2",
|
||||
"ip6gateway": "IPv6 Gateway",
|
||||
"ipLimit": "\uacf5\uac1c IP \uc8fc\uc18c \uc81c\ud55c",
|
||||
"ipaddress": "IP \uc8fc\uc18c",
|
||||
"ipaddress1": "IP \uc8fc\uc18c",
|
||||
"ipaddress2": "IP \uc8fc\uc18c",
|
||||
"ipsecpsk": "IPsec \uc0ac\uc804 \uacf5\uc720 \ud0a4",
|
||||
"iptotal": "Total of IP Addresses",
|
||||
"iqn": "\ud0c0\uac9f IQN",
|
||||
"isAdvanced": "Show advanced settings",
|
||||
"isBootable": "\ubd80\ud305 \uac00\ub2a5",
|
||||
"isCustomized": "\ub9de\ucda4 \ub514\uc2a4\ud06c \ud06c\uae30",
|
||||
"isCustomizedIops": "Custom IOPS",
|
||||
"isDedicated": "Dedicate",
|
||||
"isExtractable": "\ucd94\ucd9c \uac00\ub2a5",
|
||||
"isFeatured": "\ucd94\ucc9c",
|
||||
"isForced": "\uac15\uc81c \ud574\uc81c",
|
||||
"isManaged": "Managed",
|
||||
"isPasswordEnabled": "\uc554\ud638 \uad00\ub9ac \uc0ac\uc6a9",
|
||||
"isPersistent": "Persistent ",
|
||||
"isPublic": "\uacf5\uac1c",
|
||||
"isVolatile": "Volatile",
|
||||
"iscustomized": "\ub9de\ucda4 \ub514\uc2a4\ud06c \ud06c\uae30",
|
||||
"iscustomizediops": "Custom IOPS",
|
||||
"isdedicated": "\uc804\uc6a9",
|
||||
"isdefault": "\uae30\ubcf8",
|
||||
"isdynamicallyscalable": "Dynamically Scalable",
|
||||
"isextractable": "extractable",
|
||||
"isfeatured": "\ucd94\ucc9c",
|
||||
"iso": "ISO",
|
||||
"isolatedpvlanId": "Secondary Isolated VLAN ID",
|
||||
"isolationmethods": "\ubd84\ub9ac \ubc29\ubc95",
|
||||
"isolationuri": "Isolation URI",
|
||||
"isoname": "\uc5f0\uacb0 ISO",
|
||||
"ispersistent": "Persistent ",
|
||||
"isportable": "\ud06c\ub85c\uc2a4 \uc874",
|
||||
"ispublic": "\uacf5\uac1c",
|
||||
"isready": "\uc900\ube44 \uc644\ub8cc",
|
||||
"isredundantrouter": "\uc911\ubcf5 \ub77c\uc6b0\ud130",
|
||||
"isrouting": "\ub77c\uc6b0\ud305",
|
||||
"issourcenat": "\uc804\uc1a1\uc6d0 NAT",
|
||||
"isstaticnat": "\uc815\uc801 NAT",
|
||||
"issystem": "\uc2dc\uc2a4\ud15c",
|
||||
"isvolatile": "Volatile",
|
||||
"key": "\ud0a4",
|
||||
"keyboardType": "\ud0a4\ubcf4\ub4dc \uc885\ub958",
|
||||
"keypair": "SSH Key Pair",
|
||||
"kvmnetworklabel": "KVM \ud2b8\ub798\ud53d \ub77c\ubca8",
|
||||
"l2gatewayserviceuuid": "L2 Gateway Service Uuid",
|
||||
"l3gatewayserviceuuid": "L3 Gateway Service Uuid",
|
||||
"last_updated": "Last Update",
|
||||
"lastname": "\uc131",
|
||||
"lbType": "Load Balancer Type",
|
||||
"lbdevicecapacity": "\ucc98\ub9ac \ub2a5\ub825",
|
||||
"lbdevicededicated": "\uc804\uc6a9",
|
||||
"lbdeviceid": "ID",
|
||||
"lbdevicename": "\uc885\ub958",
|
||||
"lbdevicestate": "\uc0c1\ud0dc",
|
||||
"level": "\ub808\ubca8",
|
||||
"limitcpuuse": "CPU \uc81c\ud55c",
|
||||
"linklocalip": "Link Local IP Address",
|
||||
"loadbalancerinstance": "Assigned VMs",
|
||||
"loadbalancerrule": "Load balancing rule",
|
||||
"localstorageenabled": "Enable local storage for User VMs",
|
||||
"localstorageenabledforsystemvm": "Enable local storage for System VMs",
|
||||
"lun": "LUN \ubc88\ud638",
|
||||
"lxcnetworklabel": "LXC Traffic Label",
|
||||
"makeredundant": "Make redundant",
|
||||
"maxInstance": "Max Instances",
|
||||
"maxIops": "Max IOPS",
|
||||
"maxerrorretry": "Max Error Retry",
|
||||
"maxguestslimit": "\ucd5c\ub300 \uac8c\uc2a4\ud2b8 \uc81c\ud55c",
|
||||
"maxiops": "Max IOPS",
|
||||
"memallocated": "Mem Allocation",
|
||||
"memory": "\uba54\ubaa8\ub9ac (MB)",
|
||||
"memoryLimit": "Memory limits (MiB)",
|
||||
"memoryallocated": "\ud560\ub2f9\uc644\ub8cc \uba54\ubaa8\ub9ac",
|
||||
"memoryallocatedgb": "\ud560\ub2f9 \uc644\ub8cc \uc0c1\ud0dc",
|
||||
"memorymaxdeviation": "Deviation",
|
||||
"memorytotal": "\ud560\ub2f9 \uc644\ub8cc \uc0c1\ud0dc",
|
||||
"memorytotalgb": "Total",
|
||||
"memoryused": "\uc0ac\uc6a9 \uc911",
|
||||
"memoryusedgb": "\uc0ac\uc6a9 \uc911",
|
||||
"memused": "Mem Usage",
|
||||
"minInstance": "Min Instances",
|
||||
"minIops": "Min IOPS",
|
||||
"min_balance": "Min Balance",
|
||||
"miniops": "Min IOPS",
|
||||
"name": "\uc774\ub984",
|
||||
"nat": "BigSwitch BCF NAT Enabled",
|
||||
"netmask": "\ub137 \ub9c8\uc2a4\ud06c",
|
||||
"network": "\ub124\ud2b8\uc6cc\ud06c",
|
||||
"networkDomain": "\ub124\ud2b8\uc6cc\ud06c \ub3c4\uba54\uc778",
|
||||
"networkLimit": "Network limits",
|
||||
"networkOfferingId": "\ub124\ud2b8\uc6cc\ud06c \uc81c\uacf5",
|
||||
"networkRate": "\ub124\ud2b8\uc6cc\ud06c \uc18d\ub3c4",
|
||||
"networkcidr": "Network CIDR",
|
||||
"networkdevicetype": "\uc885\ub958",
|
||||
"networkdomain": "\ub124\ud2b8\uc6cc\ud06c \ub3c4\uba54\uc778",
|
||||
"networkdomaintext": "\ub124\ud2b8\uc6cc\ud06c \ub3c4\uba54\uc778",
|
||||
"networkid": "\uacc4\uce35 \uc120\ud0dd",
|
||||
"networkkbsread": "\ub124\ud2b8\uc6cc\ud06c \uc77d\uae30",
|
||||
"networkkbswrite": "\ub124\ud2b8\uc6cc\ud06c \uae30\uc785",
|
||||
"networkname": "\ub124\ud2b8\uc6cc\ud06c\uba85",
|
||||
"networkofferingdisplaytext": "\ub124\ud2b8\uc6cc\ud06c \uc81c\uacf5",
|
||||
"networkofferingid": "\ub124\ud2b8\uc6cc\ud06c \uc81c\uacf5",
|
||||
"networkofferingidText": "\ub124\ud2b8\uc6cc\ud06c \uc81c\uacf5 ID",
|
||||
"networkofferingname": "\ub124\ud2b8\uc6cc\ud06c \uc81c\uacf5",
|
||||
"networkrate": "\ub124\ud2b8\uc6cc\ud06c \uc18d\ub3c4",
|
||||
"networkread": "Read",
|
||||
"networktype": "\ub124\ud2b8\uc6cc\ud06c \uc885\ub958",
|
||||
"networkwrite": "Write",
|
||||
"newDiskOffering": "New Disk Offering",
|
||||
"newdiskoffering": "\uc0c8\ub85c \uc81c\uacf5",
|
||||
"newsize": "New Size (GB)",
|
||||
"nfsCacheNfsServer": "S3 NFS",
|
||||
"nfsCachePath": "S3 NFS",
|
||||
"nfsCacheZoneid": "Zone",
|
||||
"nfsServer": "\uc11c\ubc84",
|
||||
"nicAdapterType": "NIC \uc544\ub2f5\ud130 \uc885\ub958",
|
||||
"number": "#Rule",
|
||||
"numberOfRouterRequiresUpgrade": "Total of Virtual Routers that require upgrade",
|
||||
"numretries": "\uc7ac\uc2dc\ud589 \ud68c\uc218",
|
||||
"nvpdeviceid": "ID",
|
||||
"offerHA": "\uace0\uac00\uc6a9\uc131 \uc81c\uacf5",
|
||||
"offerha": "\uace0\uac00\uc6a9\uc131 \uc81c\uacf5",
|
||||
"osTypeId": "OS \uc885\ub958",
|
||||
"oscategoryid": "OS \uae30\ubcf8 \uc124\uc815",
|
||||
"ostypeid": "OS \uc885\ub958",
|
||||
"ostypename": "OS \uc885\ub958",
|
||||
"overrideguesttraffic": "Override Guest-Traffic",
|
||||
"overridepublictraffic": "Override Public-Traffic",
|
||||
"ovm3cluster": "Native Clustering",
|
||||
"ovm3networklabel": "OVM3 traffic label",
|
||||
"ovm3pool": "Native Pooling",
|
||||
"ovm3vip": "Master Vip IP",
|
||||
"ovmnetworklabel": "OVM traffic label",
|
||||
"palp": "Palo Alto Log Profile",
|
||||
"parentName": "Parent",
|
||||
"passive": "Passive",
|
||||
"password": "\uc554\ud638",
|
||||
"password-confirm": "\uc554\ud638 \ud655\uc778 \uc785\ub825",
|
||||
"passwordenabled": "\uc554\ud638 \uad00\ub9ac \uc0ac\uc6a9",
|
||||
"path": "\uacbd\ub85c",
|
||||
"patp": "Palo Alto Threat Profile",
|
||||
"pavr": "\uac00\uc0c1 \ub77c\uc6b0\ud130",
|
||||
"pciDevice": "GPU",
|
||||
"perfectForwardSecrecy": "Perfect Forward Secrecy",
|
||||
"physicalNetworkId": "\ubb3c\ub9ac \ub124\ud2b8\uc6cc\ud06c",
|
||||
"physicalnetworkid": "\ubb3c\ub9ac \ub124\ud2b8\uc6cc\ud06c",
|
||||
"physicalsize": "Physical Size",
|
||||
"plannerMode": "Planner mode",
|
||||
"podId": "Pod",
|
||||
"podname": "Pod",
|
||||
"port": "Port",
|
||||
"portableipaddress": "Portable IPs",
|
||||
"powerstate": "Power State",
|
||||
"primaryStorageLimit": "Primary Storage limits (GiB)",
|
||||
"primarystoragetotal": "\uae30\ubcf8 \uc2a4\ud1a0\ub9ac\uc9c0",
|
||||
"privateinterface": "\uc0ac\uc124 \uc778\ud130\ud398\uc774\uc2a4",
|
||||
"privateip": "\uc0ac\uc124 IP \uc8fc\uc18c",
|
||||
"privatekey": "Private Key",
|
||||
"privatenetwork": "\uc0ac\uc124 \ub124\ud2b8\uc6cc\ud06c",
|
||||
"privateport": "\uc0ac\uc124 \ud3ec\ud2b8",
|
||||
"profiledn": "Associated Profile",
|
||||
"profilename": "Profile",
|
||||
"project": "\ud504\ub85c\uc81d\ud2b8",
|
||||
"projectId": "\ud504\ub85c\uc81d\ud2b8",
|
||||
"projectid": "\ud504\ub85c\uc81d\ud2b8 ID",
|
||||
"projects": "\ud504\ub85c\uc81d\ud2b8",
|
||||
"property": "Property",
|
||||
"protocol": "\ud504\ub85c\ud1a0\ucf5c",
|
||||
"protocolnumber": "#Protocol",
|
||||
"provider": "Provider",
|
||||
"providername": "Provider",
|
||||
"provisioningType": "Provisioning Type",
|
||||
"provisioningtype": "Provisioning Type",
|
||||
"publicinterface": "\uacf5\uac1c \uc778\ud130\ud398\uc774\uc2a4",
|
||||
"publicip": "IP \uc8fc\uc18c",
|
||||
"publickey": "Public Key",
|
||||
"publicnetwork": "\uacf5\uac1c \ub124\ud2b8\uc6cc\ud06c",
|
||||
"publicport": "\uacf5\uac1c \ud3ec\ud2b8",
|
||||
"purpose": "\ubaa9\uc801",
|
||||
"qosType": "QoS Type",
|
||||
"quiescevm": "Quiesce VM",
|
||||
"quietTime": "Quiet Time (in sec)",
|
||||
"quota": "Quota Value",
|
||||
"quota_enforce": "Enforce Quota",
|
||||
"rbdid": "Cephx user",
|
||||
"rbdmonitor": "Ceph monitor",
|
||||
"rbdpool": "Ceph pool",
|
||||
"rbdsecret": "Cephx secret",
|
||||
"reason": "Reason",
|
||||
"receivedbytes": "\uc218\uc2e0 \ubc14\uc774\ud2b8",
|
||||
"redundantRouterState": "\uc911\ubcf5 \uc0c1\ud0dc",
|
||||
"redundantrouter": "\uc911\ubcf5 \ub77c\uc6b0\ud130",
|
||||
"redundantstate": "\uc911\ubcf5 \uc0c1\ud0dc",
|
||||
"redundantvpcrouter": "Redundant VPC",
|
||||
"reenterpassword": "Re-enter Password",
|
||||
"relationaloperator": "Operator",
|
||||
"requireshvm": "HVM",
|
||||
"requiresupgrade": "Requires Upgrade",
|
||||
"reservedSystemEndIp": "\uc608\uc57d\ub41c \uc885\ub8cc \uc2dc\uc2a4\ud15c IP \uc8fc\uc18c",
|
||||
"reservedSystemGateway": "\uc608\uc57d\ub41c \uc2dc\uc2a4\ud15c \uac8c\uc774\ud2b8\uc6e8\uc774",
|
||||
"reservedSystemNetmask": "\uc608\uc57d\ub41c \uc2dc\uc2a4\ud15c \ub137 \ub9c8\uc2a4\ud06c",
|
||||
"reservedSystemStartIp": "\uc608\uc57d\ub41c \uc2dc\uc791 \uc2dc\uc2a4\ud15c IP \uc8fc\uc18c",
|
||||
"reservediprange": "Reserved IP Range",
|
||||
"resourceid": "Resource ID",
|
||||
"resourcename": "Resource Name",
|
||||
"resourcestate": "\uc790\uc6d0 \uc0c1\ud0dc",
|
||||
"restartrequired": "\uc7ac\uc2dc\uc791 \ud544\uc694",
|
||||
"role": "\uc5ed\ud560",
|
||||
"rolename": "\uc5ed\ud560",
|
||||
"roletype": "Role Type",
|
||||
"rootDiskControllerType": "\ub8e8\ud2b8 \ub514\uc2a4\ud06c \ucf58\ud2b8\ub864\ub7ec",
|
||||
"rootDiskControllerTypeKVM": "\ub8e8\ud2b8 \ub514\uc2a4\ud06c \ucf58\ud2b8\ub864\ub7ec",
|
||||
"routerCount": "Total of Virtual Routers",
|
||||
"routerRequiresUpgrade": "Upgrade is required",
|
||||
"routerType": "\uc885\ub958",
|
||||
"samlEnable": "Authorize SAML SSO",
|
||||
"samlEntity": "Identity Provider",
|
||||
"scope": "\ubc94\uc704",
|
||||
"secondaryStorageLimit": "Secondary Storage limits (GiB)",
|
||||
"secondaryips": "Secondary IPs",
|
||||
"secretkey": "\ube44\ubc00 \ud0a4",
|
||||
"securityGroups": "\ubcf4\uc548 \uadf8\ub8f9",
|
||||
"securitygroup": "\ubcf4\uc548 \uadf8\ub8f9",
|
||||
"sent": "\ub0a0\uc9dc",
|
||||
"sentbytes": "\uc804\uc1a1 \ubc14\uc774\ud2b8",
|
||||
"server": "\uc11c\ubc84",
|
||||
"service.Connectivity.distributedRouterCapabilityCheckbox": "Distributed Router",
|
||||
"service.Connectivity.regionLevelVpcCapabilityCheckbox": "Region Level VPC",
|
||||
"service.Lb.elasticLbCheckbox": "\ud0c4\ub825\uc801 \ub124\ud2b8\uc6cc\ud06c \ub85c\ub4dc \uacf5\uc720",
|
||||
"service.Lb.inlineModeDropdown": "\ubaa8\ub4dc",
|
||||
"service.Lb.lbIsolationDropdown": "\ub124\ud2b8\uc6cc\ud06c \ub85c\ub4dc \uacf5\uc720 \ubd84\ub9ac",
|
||||
"service.SourceNat.redundantRouterCapabilityCheckbox": "\uc911\ubcf5 \ub77c\uc6b0\ud130 \uae30\ub2a5",
|
||||
"service.SourceNat.sourceNatTypeDropdown": "\uae30\uc220 \uc9c0\uc6d0\ub418\ub294 \uc804\uc1a1 NAT \uc885\ub958",
|
||||
"service.StaticNat.associatePublicIP": "Associate Public IP",
|
||||
"service.StaticNat.elasticIpCheckbox": "\ud0c4\ub825\uc801 IP \uc8fc\uc18c",
|
||||
"serviceCapabilities": "\uc11c\ube44\uc2a4 \uae30\ub2a5",
|
||||
"serviceOfferingId": "\ucef4\ud4e8\ud305 \uc790\uc6d0 \uc81c\uacf5",
|
||||
"servicelist": "Services",
|
||||
"serviceofferingid": "\ucef4\ud4e8\ud305 \uc790\uc6d0 \uc81c\uacf5",
|
||||
"serviceofferingname": "\ucef4\ud4e8\ud305 \uc790\uc6d0 \uc81c\uacf5",
|
||||
"shrinkok": "\ubcc0\uacbd \uc644\ub8cc",
|
||||
"size": "\ud06c\uae30",
|
||||
"sizegb": "\ud06c\uae30",
|
||||
"smbDomain": "SMB Domain",
|
||||
"smbPassword": "SMB Password",
|
||||
"smbUsername": "SMB Username",
|
||||
"snapshotLimit": "\uc2a4\ub0c5\uc0f7 \uc81c\ud55c",
|
||||
"snapshotMemory": "Snapshot memory",
|
||||
"snmpCommunity": "SNMP Community",
|
||||
"snmpPort": "SNMP Port",
|
||||
"sockettimeout": "Socket Timeout",
|
||||
"sourceNat": "\uc804\uc1a1\uc6d0 NAT",
|
||||
"sourceipaddress": "Source IP Address",
|
||||
"sourceport": "Source Port",
|
||||
"specifyVlan": "VLAN \uc9c0\uc815",
|
||||
"specifyipranges": "IP \uc8fc\uc18c \ubc94\uc704 \uc9c0\uc815",
|
||||
"specifyvlan": "VLAN \uc9c0\uc815",
|
||||
"sshkeypair": "New SSH Key Pair",
|
||||
"startdate": "Start Date",
|
||||
"startip": "IPv4 Start IP",
|
||||
"startipv4": "IPv4 Start IP",
|
||||
"startipv6": "IPv6 Start IP",
|
||||
"startport": "\uc2dc\uc791 \ud3ec\ud1a0",
|
||||
"startquota": "Quota Value",
|
||||
"state": "\uc0c1\ud0dc",
|
||||
"status": "\uc0c1\ud0dc",
|
||||
"storage": "\uc2a4\ud1a0\ub9ac\uc9c0",
|
||||
"storageId": "\uae30\ubcf8 \uc2a4\ud1a0\ub9ac\uc9c0",
|
||||
"storagePool": "Storage Pool",
|
||||
"storageTags": "\uc2a4\ud1a0\ub9ac\uc9c0 \ud0dc\uadf8",
|
||||
"storageType": "\uc2a4\ud1a0\ub9ac\uc9c0 \uc885\ub958",
|
||||
"storagetype": "\uc2a4\ud1a0\ub9ac\uc9c0 \uc885\ub958",
|
||||
"subdomainaccess": "\uc11c\ube0c \ub3c4\uba54\uc778 \uc811\uadfc",
|
||||
"supportedServices": "\uae30\uc220 \uc9c0\uc6d0\ub418\ub294 \uc11c\ube44\uc2a4",
|
||||
"supportspublicaccess": "Supports Public Access",
|
||||
"supportsregionLevelvpc": "Supports Region Level VPC",
|
||||
"supportsstrechedl2subnet": "Supports Streched L2 Subnet",
|
||||
"systemvmtype": "\uc885\ub958",
|
||||
"tags": "\uc2a4\ud1a0\ub9ac\uc9c0 \ud0dc\uadf8",
|
||||
"tariffValue": "Tariff Value",
|
||||
"template": "\ud15c\ud50c\ub9bf \uc120\ud0dd",
|
||||
"templateFileUpload": "Local file",
|
||||
"templateLimit": "\ud15c\ud50c\ub9bf \uc81c\ud55c",
|
||||
"templateNames": "\ud15c\ud50c\ub9bf",
|
||||
"templatebody": "Body",
|
||||
"templatedn": "Select Template",
|
||||
"templatename": "\ud15c\ud50c\ub9bf",
|
||||
"templatesubject": "Subject",
|
||||
"templatetotal": "\ud15c\ud50c\ub9bf",
|
||||
"templatetype": "Email Template",
|
||||
"tftpdir": "Tftp root directory",
|
||||
"threshold": "Threshold",
|
||||
"tierName": "\uacc4\uce35",
|
||||
"timeout": "\uc2dc\uac04 \ucd08\uacfc",
|
||||
"timezone": "\uc2dc\uac04\ub300",
|
||||
"token": "\ud1a0\ud070",
|
||||
"totalCPU": "CPU \ud569\uacc4",
|
||||
"traffictype": "\ud2b8\ub798\ud53d \uc885\ub958",
|
||||
"transportzoneuuid": "Transport Zone Uuid",
|
||||
"type": "\uc885\ub958",
|
||||
"unit": "Usage Unit",
|
||||
"url": "URL",
|
||||
"usageName": "Usage Type",
|
||||
"usageUnit": "Unit",
|
||||
"usageinterface": "\uc0ac\uc6a9 \uc0c1\ud669 \uce21\uc815 \uc778\ud130\ud398\uc774\uc2a4",
|
||||
"useNewDiskOffering": "Replace disk offering?",
|
||||
"useVpc": "VPC",
|
||||
"usehttps": "Use HTTPS",
|
||||
"userDataL2": "User Data",
|
||||
"username": "\uc0ac\uc6a9\uc790\uba85",
|
||||
"utilization": "Utilisation",
|
||||
"uuid": "ID",
|
||||
"vCenterDataCenter": "vCenter \ub370\uc774\ud130 \uc13c\ud130",
|
||||
"vCenterDataStore": "vCenter \ub370\uc774\ud130 \uc2a4\ud1a0\uc5b4",
|
||||
"vCenterDatacenter": "vCenter \ub370\uc774\ud130 \uc13c\ud130",
|
||||
"vCenterHost": "vCenter \ud638\uc2a4\ud2b8",
|
||||
"vCenterPassword": "vCenter \uc554\ud638",
|
||||
"vCenterUsername": "vCenter \uc0ac\uc6a9\uc790\uba85",
|
||||
"vSwitchGuestName": "Guest Traffic vSwitch Name",
|
||||
"vSwitchGuestType": "Guest Traffic vSwitch Type",
|
||||
"vSwitchPublicName": "Public Traffic vSwitch Name",
|
||||
"vSwitchPublicType": "Public Traffic vSwitch Type",
|
||||
"value": "Credits",
|
||||
"vcenter": "VMware datacenter vcenter",
|
||||
"vcenterHost": "ESX/ESXi \ud638\uc2a4\ud2b8",
|
||||
"vcsdeviceid": "ID",
|
||||
"version": "\ubc84\uc804",
|
||||
"vgpu": "VGPU",
|
||||
"vgpuType": "vGPU type",
|
||||
"virtualMachineId": "\uc778\uc2a4\ud134\uc2a4",
|
||||
"virtualmachinedisplayname": "VM \uba85",
|
||||
"virtualmachineid": "VM ID",
|
||||
"virtualsize": "Virtual Size",
|
||||
"vlan": "\uac00\uc0c1 \ub124\ud2b8\uc6cc\ud06c(VLAN)",
|
||||
"vlanId": "VLAN ID",
|
||||
"vlanRange": "VLAN \ubc94\uc704",
|
||||
"vlanname": "\uac00\uc0c1 \ub124\ud2b8\uc6cc\ud06c(VLAN)",
|
||||
"vlanrange": "VLAN \ubc94\uc704",
|
||||
"vmLimit": "\uc778\uc2a4\ud134\uc2a4 \uc81c\ud55c",
|
||||
"vmTotal": "\uc778\uc2a4\ud134\uc2a4",
|
||||
"vmdisplayname": "VM \ud45c\uc2dc\uba85",
|
||||
"vmipaddress": "VM IP Address",
|
||||
"vmname": "VM Name",
|
||||
"vmstate": "VM \uc0c1\ud0dc",
|
||||
"vmtotal": "VM \ud569\uacc4",
|
||||
"vmwaredcId": "VMware datacenter ID",
|
||||
"vmwaredcName": "VMware datacenter Name",
|
||||
"vmwaredcVcenter": "VMware datacenter vcenter",
|
||||
"vmwarenetworklabel": "VMware \ud2b8\ub798\ud53d \ub77c\ubca8",
|
||||
"volume": "\ubcfc\ub968",
|
||||
"volumeFileUpload": "Local file",
|
||||
"volumeLimit": "\ubcfc\ub968 \uc81c\ud55c",
|
||||
"volumeTotal": "\ubcfc\ub968",
|
||||
"volumegroup": "\ubcfc\ub968 \uadf8\ub8f9",
|
||||
"volumename": "\ubcfc\ub968\uba85",
|
||||
"volumetotal": "\ubcfc\ub968",
|
||||
"vpcLimit": "VPC limits",
|
||||
"vpcid": "VPC ID",
|
||||
"vpcname": "VPC",
|
||||
"vpcoffering": "VPC Offering",
|
||||
"vpncustomergatewayid": "VPN \uace0\uac1d \uac8c\uc774\ud2b8\uc6e8\uc774",
|
||||
"vsmctrlvlanid": "\uc81c\uc5b4 VLAN ID",
|
||||
"vsmdeviceid": "\uc774\ub984",
|
||||
"vsmdevicestate": "\uc0c1\ud0dc",
|
||||
"vsmipaddress": "Nexus 1000v IP Address",
|
||||
"vsmipaddress_req": "Nexus 1000v IP Address",
|
||||
"vsmpassword": "Nexus 1000v Password",
|
||||
"vsmpassword_req": "Nexus 1000v Password",
|
||||
"vsmpktvlanid": "\ud328\ud0b7 VLAN ID",
|
||||
"vsmstoragevlanid": "\uc2a4\ud1a0\ub9ac\uc9c0 VLAN ID",
|
||||
"vsmusername": "Nexus 1000v Username",
|
||||
"vsmusername_req": "Nexus 1000v Username",
|
||||
"xennetworklabel": "XenServer \ud2b8\ub798\ud53d \ub77c\ubca8",
|
||||
"xenserverToolsVersion61plus": "Original XS Version is 6.1+",
|
||||
"zone": "Zone",
|
||||
"zoneId": "Zone",
|
||||
"zoneid": "Zone",
|
||||
"zonename": "Zone"
|
||||
}
|
||||
|
|
@ -0,0 +1,638 @@
|
|||
{
|
||||
"Accounts": "Kontoer",
|
||||
"Affinity Groups": "Affinitetsgrupper",
|
||||
"Alerts": "Varsler",
|
||||
"CPU Sockets": "CPU Sokkel",
|
||||
"Cloudian Storage": "Cloudian Storage",
|
||||
"Clusters": "Klynger",
|
||||
"Compute": "Beregne",
|
||||
"Compute Offerings": "Regnekraftstilbud",
|
||||
"Configuration": "Konfigurering",
|
||||
"Dashboard": "Dashbord",
|
||||
"Disk Offerings": "Disktilbud",
|
||||
"Domains": "Domains",
|
||||
"Events": "Hendelser",
|
||||
"Global Settings": "Globale innstillinger",
|
||||
"Hosts": "Verter",
|
||||
"Hypervisor Capabilities": "Hypervisor evner",
|
||||
"ISOs": "ISOer",
|
||||
"Identity and Access": "Identity and Access",
|
||||
"Infrastructure": "Infrastruktur",
|
||||
"Instances": "Instanser",
|
||||
"LDAP Configuration": "LDAP-konfigurasjon",
|
||||
"Management Servers": "Management Servers",
|
||||
"Monitor": "Monitor",
|
||||
"Network": "Nettverk",
|
||||
"Network Offerings": "Nettverkstilbud",
|
||||
"Plugins": "Plugins",
|
||||
"Pods": "Pods",
|
||||
"Primary Storage": "Prim\u00e6rlagring",
|
||||
"Projects": "Prosjekter",
|
||||
"Public IP Addresses": "Offentlig IP-adresser",
|
||||
"Public network": "Offentlig nettverk",
|
||||
"Quota": "Quota",
|
||||
"RESOURCE_NAME": "Ressursnavn",
|
||||
"Roles": "Roles",
|
||||
"SSH Key Pairs": "SSH n\u00f8kkelpar",
|
||||
"Secondary Storage": "Sekund\u00e6rlagring",
|
||||
"Security Groups": "Sikkerhetsgrupper",
|
||||
"Snapshots": "\u00d8yebliksbilder",
|
||||
"Storage": "Lagring",
|
||||
"System Offerings": "Systemtilbud",
|
||||
"System VMs": "System VMer",
|
||||
"Templates": "Maler",
|
||||
"Users": "Brukere",
|
||||
"VM Snapshots": "VM \u00d8yeblikksbilder",
|
||||
"VPC": "VPC",
|
||||
"VPC Offerings": "VPC tilbud",
|
||||
"VPN Gateway": "VPN Gateway",
|
||||
"Virtual Routers": "Virtuelle rutere",
|
||||
"Volumes": "Volumer",
|
||||
"Zones": "Soner",
|
||||
"accesskey": "Aksessn\u00f8kkel",
|
||||
"account": "Konto",
|
||||
"accountId": "Konto",
|
||||
"accountTotal": "Kontoer",
|
||||
"accountlist": "Kontoer",
|
||||
"accounts": "Kontoer",
|
||||
"accounttype": "Kontotype",
|
||||
"aclTotal": "Nettverk ACL Total",
|
||||
"aclid": "ACL",
|
||||
"aclname": "ACL Navn",
|
||||
"action": "Handling",
|
||||
"activeviewersessions": "Aktive sesjoner",
|
||||
"add-scaleDowncondition": "Legg til",
|
||||
"add-scaleUpcondition": "Legg til",
|
||||
"address": "Address",
|
||||
"admin": "Domeneadministrator",
|
||||
"agentPassword": "Agentpassord",
|
||||
"agentPort": "Agentport",
|
||||
"agentUsername": "Agentbrukernavn",
|
||||
"agentstate": "Agentstatus",
|
||||
"algorithm": "Algoritme",
|
||||
"allocationstate": "Allokeringsstatus",
|
||||
"apikey": "API-n\u00f8kkel",
|
||||
"associatednetworkid": "Assosiert nettverksid",
|
||||
"associatednetworkname": "Nettverksnavn",
|
||||
"availability": "Tilgjengelighet",
|
||||
"availabilityZone": "Tilgjengelighetssone",
|
||||
"balance": "Balanse",
|
||||
"baremetalCpu": "CPU (i MHz)",
|
||||
"baremetalCpuCores": "# av CPU-kjerner",
|
||||
"baremetalMAC": "Verts MAC",
|
||||
"baremetalMemory": "Minne (i MB)",
|
||||
"bcfdeviceid": "ID",
|
||||
"bladeid": "Blad-ID",
|
||||
"bootable": "Botbar",
|
||||
"broadcastdomainrange": "Kringkastings domene rekke",
|
||||
"broadcastdomaintype": "Kringkastings Domene Type",
|
||||
"broadcasturi": "Kringkastings URI",
|
||||
"bucket": "B\u00f8tte",
|
||||
"cacheMode": "Write-cache Type",
|
||||
"capacity": "Kapasitet",
|
||||
"capacityBytes": "Kapasitet Bytes",
|
||||
"capacityIops": "Kapasitet IOPS",
|
||||
"capacityiops": "IOPS Totalt",
|
||||
"chassis": "Kasse",
|
||||
"checksum": "sjekksum",
|
||||
"cidr": "CIDR",
|
||||
"cidrlist": "CIDR liste",
|
||||
"cleanup": "Rydd opp",
|
||||
"clusterId": "Klynge",
|
||||
"clusterid": "Klynge",
|
||||
"clustername": "Klynge",
|
||||
"clusters": "Klynger",
|
||||
"clustertype": "Klyngetype",
|
||||
"connectiontimeout": "Tilkoblingsavbrudd",
|
||||
"conservemode": "Konserveringsmodus",
|
||||
"counterid": "Teller",
|
||||
"cpuCap": "CPU begrensning",
|
||||
"cpuLimit": "CPU-begrensninger",
|
||||
"cpuNumber": "# av CPU-kjerner",
|
||||
"cpuSpeed": "CPU (i MHz)",
|
||||
"cpuallocated": "CPU Allokert for VMer",
|
||||
"cpuallocatedghz": "Allokert",
|
||||
"cpumaxdeviation": "Avvik",
|
||||
"cpunumber": "# av CPU-kjerner",
|
||||
"cpusockets": "Totalt antall CPU-sockets",
|
||||
"cpuspeed": "CPU (i MHz)",
|
||||
"cputotal": "Totalt",
|
||||
"cputotalghz": "Totalt",
|
||||
"cpuused": "CPU-utnyttelse",
|
||||
"cpuusedghz": "Brukt",
|
||||
"createNfsCache": "Legg Til NFS sekund\u00e6rmellomlagringsomr\u00e5de",
|
||||
"created": "Dato",
|
||||
"credit": "Kreditt",
|
||||
"crossZones": "Kryssoner",
|
||||
"current": "isCurrent",
|
||||
"date": "Dato",
|
||||
"dedicated": "Dedikert",
|
||||
"deleteprofile": "Slett Profil",
|
||||
"deploymentPlanner": "utbyggings planlegger",
|
||||
"deploymentplanner": "utbyggings planlegger",
|
||||
"description": "Beskrivelse",
|
||||
"destinationZoneId": "Destinasjonssone",
|
||||
"destinationphysicalnetworkid": "Fysisk nettverksid-destinasjon",
|
||||
"destroyVMgracePeriod": "\u00d8delegg VM ventetid",
|
||||
"details": "Detaljer",
|
||||
"deviceid": "Enhets ID",
|
||||
"directdownload": "Direct Download",
|
||||
"disconnected": "Siste Frakobling",
|
||||
"disk": "Disk",
|
||||
"diskBytesReadRate": "Disklesehastighet (BPS)",
|
||||
"diskBytesWriteRate": "Diskskrivehastighet (BPS)",
|
||||
"diskIopsReadRate": "Disklesehastighet (IOPS)",
|
||||
"diskIopsWriteRate": "Diskskrivehastighet (IOPS)",
|
||||
"diskOffering": "Disktilbud",
|
||||
"diskOfferingId": "Disktilbud",
|
||||
"diskSize": "Diskst\u00f8rrelse (i GB)",
|
||||
"diskiopstotal": "IOPS",
|
||||
"diskioread": "Disk lese (IO)",
|
||||
"diskiowrite": "Disk skrive (IO)",
|
||||
"diskkbsread": "Disk lese (Bytes)",
|
||||
"diskkbswrite": "Disk skrive (Bytes)",
|
||||
"diskofferingdisplaytext": "Disktilbud",
|
||||
"disksize": "Diskst\u00f8rrelse (i GB)",
|
||||
"disksizeallocated": "Disk allokert",
|
||||
"disksizeallocatedgb": "Allokert",
|
||||
"disksizetotal": "Disk Totalt",
|
||||
"disksizetotalgb": "Totalt",
|
||||
"disksizeunallocatedgb": "Uallokert",
|
||||
"disksizeusedgb": "Brukt",
|
||||
"displayText": "Beskrivelse",
|
||||
"displayname": "Visningsnavn",
|
||||
"displaytext": "Beskrivelse",
|
||||
"distributedvpcrouter": "Distribuert VPC router",
|
||||
"dns1": "DNS 1",
|
||||
"dns2": "DNS 2",
|
||||
"domain": "Domene",
|
||||
"domainId": "Domene",
|
||||
"domainid": "Domene",
|
||||
"domainname": "Domene",
|
||||
"domainpath": "Domene",
|
||||
"dpd": "D\u00f8d endepunkt-deteksjon",
|
||||
"driver": "Driver",
|
||||
"egressdefaultpolicy": "Egress standardpolicy",
|
||||
"email": "E-post",
|
||||
"enddate": "Sluttdato",
|
||||
"endip": "IPv4 Slutt IP",
|
||||
"endipv4": "IPv4 Slutt IP",
|
||||
"endipv6": "IPv6 Slutt IP",
|
||||
"endpoint": "Endepunkt",
|
||||
"endport": "Sluttport",
|
||||
"espEncryption": "ESP kryptering",
|
||||
"espHash": "ESP hash",
|
||||
"esplifetime": "ESP levetid (sekund)",
|
||||
"esppolicy": "ESP policy",
|
||||
"expunge": "Permanent Slett",
|
||||
"fingerprint": "Fingeravtrykk",
|
||||
"firstname": "Fornavn",
|
||||
"forced": "Tving stopp",
|
||||
"forceencap": "Tving UDP innkapsling av ESP-pakker",
|
||||
"format": "Format",
|
||||
"fwdevicecapacity": "Kapasitet",
|
||||
"fwdeviceid": "ID",
|
||||
"fwdevicename": "Type",
|
||||
"fwdevicestate": "Status",
|
||||
"gateway": "Gateway",
|
||||
"glustervolume": "Volum",
|
||||
"group": "Gruppe",
|
||||
"gslbdomainname": "GSLB domenenavn",
|
||||
"gslblbmethod": "Algoritme",
|
||||
"gslbprovider": "GSLB tjeneste",
|
||||
"gslbproviderprivateip": "GSLB tjeneste privat IP-adresse",
|
||||
"gslbproviderpublicip": "GSLB tjeneste offentlig IP-adresse",
|
||||
"gslbservicetype": "Tjeneste Type",
|
||||
"guestEndIp": "Gjest slutt-IP",
|
||||
"guestGateway": "Gjestegateway",
|
||||
"guestIpType": "Gjestetype",
|
||||
"guestNetmask": "Gjest nettmaske",
|
||||
"guestStartIp": "Gjest start-IP",
|
||||
"guestcidraddress": "Gjest CIDR",
|
||||
"guestipaddress": "Gjest IP-adresse",
|
||||
"guestiptype": "Gjestetype",
|
||||
"guestnetworkid": "Nettverks ID",
|
||||
"guestnetworkname": "Nettverksnavn",
|
||||
"guestosid": "OS-type",
|
||||
"guestvlanrange": "VLAN-rekke(r)",
|
||||
"haenable": "HA Aktivert",
|
||||
"hahost": "HA Aktivert",
|
||||
"host": "IP-adresse",
|
||||
"hostId": "Vert",
|
||||
"hostTags": "Vertsknagger",
|
||||
"hostname": "Vertsnavn",
|
||||
"hosts": "Verter",
|
||||
"hosttags": "Vertsknagger",
|
||||
"hypervisor": "Hypervisor",
|
||||
"hypervisorSnapshotReserve": "Hypervisor \u00d8yeblikks Kapasitet",
|
||||
"hypervisorsnapshotreserve": "Hypervisor \u00d8yeblikks Kapasitet",
|
||||
"hypervisortype": "Hypervisor",
|
||||
"hypervisorversion": "Hypervisor versjon",
|
||||
"hypervnetworklabel": "HyperV Trafikk Etikett",
|
||||
"icmpcode": "ICMP-kode",
|
||||
"icmptype": "ICMP-type",
|
||||
"id": "ID",
|
||||
"ikeDh": "IKE DH",
|
||||
"ikeEncryption": "IKE kryptering",
|
||||
"ikeHash": "IKE Hash",
|
||||
"ikelifetime": "IKE livstid (sekunder)",
|
||||
"ikepolicy": "IKE policy",
|
||||
"insideportprofile": "Intern Port Profil",
|
||||
"instancename": "Internt navn",
|
||||
"instanceport": "Instansport",
|
||||
"instances": "Instanser",
|
||||
"internaldns1": "Intern DNS 1",
|
||||
"internaldns2": "Intern DNS 2",
|
||||
"interval": "Sjekkintervall (i sekunder)",
|
||||
"intervaltype": "Intervalltype",
|
||||
"ip": "IP-adresse",
|
||||
"ip4Netmask": "IPv4 nettmaske",
|
||||
"ip4dns1": "IPv4 DNS1",
|
||||
"ip4dns2": "IPv4 DNS2",
|
||||
"ip4gateway": "IPv4 Gateway",
|
||||
"ip6address": "IPv6 IP Adresse",
|
||||
"ip6cidr": "IPv6 CIDR",
|
||||
"ip6dns1": "IPv6 DNS1",
|
||||
"ip6dns2": "IPv6 DNS2",
|
||||
"ip6gateway": "IPv6 Gateway",
|
||||
"ipLimit": "Offentlig IP-addresse Grenser",
|
||||
"ipaddress": "IP-adresse",
|
||||
"ipaddress1": "IP-adresse",
|
||||
"ipaddress2": "IP-adresse",
|
||||
"ipsecpsk": "IPSec Delt N\u00f8kkel",
|
||||
"iptotal": "Totalt IP-adresser",
|
||||
"iqn": "M\u00e5l IQN",
|
||||
"isAdvanced": "VIs avanserte instillinger",
|
||||
"isBootable": "Botbar",
|
||||
"isCustomized": "Tilpasset Diskst\u00f8rrelse",
|
||||
"isCustomizedIops": "Tilpasset IOPS",
|
||||
"isDedicated": "Dediker",
|
||||
"isExtractable": "Nedlastbar",
|
||||
"isFeatured": "Fremhevet",
|
||||
"isForced": "Tving fjerning",
|
||||
"isManaged": "Administrert",
|
||||
"isPasswordEnabled": "Passord Aktivert",
|
||||
"isPersistent": "Vedvarende",
|
||||
"isPublic": "Offentlig",
|
||||
"isVolatile": "volatil",
|
||||
"iscustomized": "Tilpasset Diskst\u00f8rrelse",
|
||||
"iscustomizediops": "Tilpasset IOPS",
|
||||
"isdedicated": "Dedikert",
|
||||
"isdefault": "Er standard",
|
||||
"isdynamicallyscalable": "Dynamisk skalerbar",
|
||||
"isextractable": "Nedlastbar",
|
||||
"isfeatured": "Fremhevet",
|
||||
"iso": "ISO",
|
||||
"isolatedpvlanId": "Sekund\u00e6r Isolert VLAN ID",
|
||||
"isolationmethods": "Isolasjonsmetode",
|
||||
"isolationuri": "Isolasjons URI",
|
||||
"isoname": "Tilknyttet ISO",
|
||||
"ispersistent": "Vedvarende",
|
||||
"isportable": "Kryssoner",
|
||||
"ispublic": "Offentlig",
|
||||
"isready": "Klar",
|
||||
"isredundantrouter": "Redundant ruter",
|
||||
"isrouting": "Ruting",
|
||||
"issourcenat": "Kilde NAT",
|
||||
"isstaticnat": "Statistk NAT",
|
||||
"issystem": "Er system",
|
||||
"isvolatile": "volatil",
|
||||
"key": "N\u00f8kkel",
|
||||
"keyboardType": "Tastaturtype",
|
||||
"keypair": "SSH-n\u00f8kkelpar",
|
||||
"kvmnetworklabel": "KVM trafikketikett",
|
||||
"l2gatewayserviceuuid": "L2 Gateway tjeneste-uuid",
|
||||
"l3gatewayserviceuuid": "L3 Gateway Tjeneste Uuid",
|
||||
"last_updated": "Sist oppdatert",
|
||||
"lastname": "Etternavn",
|
||||
"lbType": "Lastbalanseringstype",
|
||||
"lbdevicecapacity": "Kapasitet",
|
||||
"lbdevicededicated": "Dedikert",
|
||||
"lbdeviceid": "ID",
|
||||
"lbdevicename": "Type",
|
||||
"lbdevicestate": "Status",
|
||||
"level": "Niv\u00e5",
|
||||
"limitcpuuse": "CPU begrensning",
|
||||
"linklocalip": "Link-lokal IP-adresse",
|
||||
"loadbalancerinstance": "Tildelte VMer",
|
||||
"loadbalancerrule": "Lastbalanseringsregel",
|
||||
"localstorageenabled": "Aktiver lokal lagring for bruker VMer",
|
||||
"localstorageenabledforsystemvm": "Aktiver lokal lagring for SystemVMer",
|
||||
"lun": "LUN #",
|
||||
"lxcnetworklabel": "LXC trafikk etikett",
|
||||
"makeredundant": "Gj\u00f8r redundant",
|
||||
"maxInstance": "Maks Instanser",
|
||||
"maxIops": "Maks IOPS",
|
||||
"maxerrorretry": "Max Nyfors\u00f8k Etter Feilmelding",
|
||||
"maxguestslimit": "Maks antall gjester",
|
||||
"maxiops": "Maks IOPS",
|
||||
"memallocated": "Minneallokering",
|
||||
"memory": "Minne (i MB)",
|
||||
"memoryLimit": "Minnebegrensning (MiB)",
|
||||
"memoryallocated": "Minne allokert",
|
||||
"memoryallocatedgb": "Allokert",
|
||||
"memorymaxdeviation": "Avvik",
|
||||
"memorytotal": "Allokert",
|
||||
"memorytotalgb": "Totalt",
|
||||
"memoryused": "Brukt",
|
||||
"memoryusedgb": "Brukt",
|
||||
"memused": "Minneforbruk",
|
||||
"minInstance": "Min Instanser",
|
||||
"minIops": "Min IOPS",
|
||||
"min_balance": "Minste balanse",
|
||||
"miniops": "Min IOPS",
|
||||
"name": "Navn",
|
||||
"nat": "BigSwitch BCF NAT aktivert",
|
||||
"netmask": "Nettmaske",
|
||||
"network": "Nettverk",
|
||||
"networkDomain": "Nettverksdomene",
|
||||
"networkLimit": "Nettverksbegrensninger",
|
||||
"networkOfferingId": "Nettverkstilbud",
|
||||
"networkRate": "Nettverks fart (MB/s)",
|
||||
"networkcidr": "Nettverk CIDR",
|
||||
"networkdevicetype": "Type",
|
||||
"networkdomain": "Nettverksdomene",
|
||||
"networkdomaintext": "Nettverksdomene",
|
||||
"networkid": "Velg gren",
|
||||
"networkkbsread": "Nettverk les",
|
||||
"networkkbswrite": "Nettverk skriveoperasjoner",
|
||||
"networkname": "Nettverksnavn",
|
||||
"networkofferingdisplaytext": "Nettverkstilbud",
|
||||
"networkofferingid": "Nettverkstilbud",
|
||||
"networkofferingidText": "Nettverkstilbud ID",
|
||||
"networkofferingname": "Nettverkstilbud",
|
||||
"networkrate": "Nettverks fart (MB/s)",
|
||||
"networkread": "Lese",
|
||||
"networktype": "Nettverkstype",
|
||||
"networkwrite": "Skriv",
|
||||
"newDiskOffering": "New Disk Offering",
|
||||
"newdiskoffering": "Nytt tilbud",
|
||||
"newsize": "Ny st\u00f8rrelse (GB)",
|
||||
"nfsCacheNfsServer": "S3 NFS Server",
|
||||
"nfsCachePath": "S3 NFS Sti",
|
||||
"nfsCacheZoneid": "Sone",
|
||||
"nfsServer": "Tjener",
|
||||
"nicAdapterType": "NIC adaptertype",
|
||||
"number": "#Regel",
|
||||
"numberOfRouterRequiresUpgrade": "Totalt antall virtuelle routere som trenger oppgradering",
|
||||
"numretries": "Antall fors\u00f8k",
|
||||
"nvpdeviceid": "ID",
|
||||
"offerHA": "Tilby HA",
|
||||
"offerha": "Tilby HA",
|
||||
"osTypeId": "OS-type",
|
||||
"oscategoryid": "OS-preferanse",
|
||||
"ostypeid": "OS-type",
|
||||
"ostypename": "OS-type",
|
||||
"overrideguesttraffic": "Overstyr Gjeste Trafikk",
|
||||
"overridepublictraffic": "Overstyr Offentlig Trafikk",
|
||||
"ovm3cluster": "Innebygd Klynge Funksjon",
|
||||
"ovm3networklabel": "OVM3 trafikketikett",
|
||||
"ovm3pool": "Innebygd Pooling",
|
||||
"ovm3vip": "Hoved VIP IP",
|
||||
"ovmnetworklabel": "OVM trafikk etikett",
|
||||
"palp": "Palo Alto logg profil",
|
||||
"parentName": "Forelder",
|
||||
"passive": "Passiv",
|
||||
"password": "Passord",
|
||||
"password-confirm": "Bekreft passord",
|
||||
"passwordenabled": "Passord Aktivert",
|
||||
"path": "Sti",
|
||||
"patp": "Palo Alto trussel profil",
|
||||
"pavr": "Virtuell ruter",
|
||||
"pciDevice": "GPU",
|
||||
"perfectForwardSecrecy": "Perfect Forward Secrecy",
|
||||
"physicalNetworkId": "Fysisk nettverk",
|
||||
"physicalnetworkid": "Fysisk nettverk",
|
||||
"physicalsize": "Physical Size",
|
||||
"plannerMode": "Planleggingsmodus",
|
||||
"podId": "Pod",
|
||||
"podname": "Pod",
|
||||
"port": "Port",
|
||||
"portableipaddress": "Portabel IP-rekke",
|
||||
"powerstate": "Power State",
|
||||
"primaryStorageLimit": "Prim\u00e6rlagring Maxgrense (GiB)",
|
||||
"primarystoragetotal": "Prim\u00e6rlagring",
|
||||
"privateinterface": "Privat Grensesnitt",
|
||||
"privateip": "Privat IP-adresse",
|
||||
"privatekey": "Privat n\u00f8kkel",
|
||||
"privatenetwork": "Privat nettverk",
|
||||
"privateport": "Privat port",
|
||||
"profiledn": "Assosiert Profil",
|
||||
"profilename": "Profil",
|
||||
"project": "Prosjekt",
|
||||
"projectId": "Prosjekt",
|
||||
"projectid": "Prosjektid",
|
||||
"projects": "Prosjekter",
|
||||
"property": "Egenskap",
|
||||
"protocol": "Protokoll",
|
||||
"protocolnumber": "#Protocol",
|
||||
"provider": "Tilbyder",
|
||||
"providername": "Tilbyder",
|
||||
"provisioningType": "Provisjoneringstype",
|
||||
"provisioningtype": "Provisjoneringstype",
|
||||
"publicinterface": "Offentlig Grensesnitt",
|
||||
"publicip": "IP-adresse",
|
||||
"publickey": "Offentlig n\u00f8kkel",
|
||||
"publicnetwork": "Offentlig nettverk",
|
||||
"publicport": "Offentlig port",
|
||||
"purpose": "Form\u00e5l",
|
||||
"qosType": "QoS Type",
|
||||
"quiescevm": "Quiesce VM",
|
||||
"quietTime": "Quiet Tid (sekunder)",
|
||||
"quota": "Kvoteverdi",
|
||||
"quota_enforce": "Tving Kvote",
|
||||
"rbdid": "Cephx user",
|
||||
"rbdmonitor": "Ceph monitor",
|
||||
"rbdpool": "Ceph pool",
|
||||
"rbdsecret": "Cephx hemmelighet",
|
||||
"reason": "Reason",
|
||||
"receivedbytes": "Bytes Mottatt",
|
||||
"redundantRouterState": "Redundant tilstand",
|
||||
"redundantrouter": "Redundant ruter",
|
||||
"redundantstate": "Redundant tilstand",
|
||||
"redundantvpcrouter": "Redundant VPC",
|
||||
"reenterpassword": "Re-enter Password",
|
||||
"relationaloperator": "Operat\u00f8r",
|
||||
"requireshvm": "HVM",
|
||||
"requiresupgrade": "Krever oppgradering",
|
||||
"reservedSystemEndIp": "Siste reserverte system IP",
|
||||
"reservedSystemGateway": "Reservert System Gateway",
|
||||
"reservedSystemNetmask": "Reservert system nettmaske",
|
||||
"reservedSystemStartIp": "F\u00f8rste reserverte system IP",
|
||||
"reservediprange": "Reservert IP-rekke",
|
||||
"resourceid": "Ressurs ID",
|
||||
"resourcename": "Ressursnavn",
|
||||
"resourcestate": "Ressurs Status",
|
||||
"restartrequired": "Omstart p\u00e5krevd",
|
||||
"role": "Rolle",
|
||||
"rolename": "Rolle",
|
||||
"roletype": "Role Type",
|
||||
"rootDiskControllerType": "Root diskkontroller",
|
||||
"rootDiskControllerTypeKVM": "Root diskkontroller",
|
||||
"routerCount": "Total antall virtuelle rutere",
|
||||
"routerRequiresUpgrade": "Oppgradering er p\u00e5krevd",
|
||||
"routerType": "Type",
|
||||
"samlEnable": "Autoriser SAML SSO",
|
||||
"samlEntity": "Identitets Tilbydere",
|
||||
"scope": "Omfang",
|
||||
"secondaryStorageLimit": "Sekund\u00e6rlagringsbregrensninger (GiB)",
|
||||
"secondaryips": "Sekund\u00e6re IPer",
|
||||
"secretkey": "Hemmelig n\u00f8kkel",
|
||||
"securityGroups": "Sikkerhetsgrupper",
|
||||
"securitygroup": "Sikkerhetsgruppe",
|
||||
"sent": "Dato",
|
||||
"sentbytes": "Bytes sendt",
|
||||
"server": "Tjener",
|
||||
"service.Connectivity.distributedRouterCapabilityCheckbox": "DIstribuert router",
|
||||
"service.Connectivity.regionLevelVpcCapabilityCheckbox": "Region Niv\u00e5 VPC",
|
||||
"service.Lb.elasticLbCheckbox": "Elastisk LB",
|
||||
"service.Lb.inlineModeDropdown": "Modus",
|
||||
"service.Lb.lbIsolationDropdown": "LB-isolering",
|
||||
"service.SourceNat.redundantRouterCapabilityCheckbox": "Redundant ruter",
|
||||
"service.SourceNat.sourceNatTypeDropdown": "Supporterte kilde-NAT typer",
|
||||
"service.StaticNat.associatePublicIP": "Assosiert Offentlig IP-adresse",
|
||||
"service.StaticNat.elasticIpCheckbox": "Elastisk IP",
|
||||
"serviceCapabilities": "Tjeneste Evner",
|
||||
"serviceOfferingId": "Regnekraftstilbud",
|
||||
"servicelist": "Tjenester",
|
||||
"serviceofferingid": "Regnekraftstilbud",
|
||||
"serviceofferingname": "Regnekraftstilbud",
|
||||
"shrinkok": "Krympe OK",
|
||||
"size": "St\u00f8rrelse",
|
||||
"sizegb": "St\u00f8rrelse",
|
||||
"smbDomain": "SMB Domene",
|
||||
"smbPassword": "SMB Passord",
|
||||
"smbUsername": "SMB Brukernavn",
|
||||
"snapshotLimit": "\u00d8yeblikksbildebegrensning",
|
||||
"snapshotMemory": "\u00d8yeblikksbilde av minne",
|
||||
"snmpCommunity": "SNMP Community",
|
||||
"snmpPort": "SNM Port",
|
||||
"sockettimeout": "Socket Tidsavbrudd",
|
||||
"sourceNat": "Kilde NAT",
|
||||
"sourceipaddress": "Kilde IP-adresse",
|
||||
"sourceport": "Kildeport",
|
||||
"specifyVlan": "Spesifiser VLAN",
|
||||
"specifyipranges": "Spesifiser IP-rekker",
|
||||
"specifyvlan": "Spesifiser VLAN",
|
||||
"sshkeypair": "Nytt SSH-n\u00f8kkelpar",
|
||||
"startdate": "Startdato",
|
||||
"startip": "IPv4 Start IP",
|
||||
"startipv4": "IPv4 Start IP",
|
||||
"startipv6": "IPv6 Start IP",
|
||||
"startport": "Start port",
|
||||
"startquota": "Kvoteverdi",
|
||||
"state": "Status",
|
||||
"status": "Status",
|
||||
"storage": "Lagring",
|
||||
"storageId": "Prim\u00e6rlagring",
|
||||
"storagePool": "Lagringspool",
|
||||
"storageTags": "Merkelapper for lagring",
|
||||
"storageType": "Lagringstype",
|
||||
"storagetype": "Lagringstype",
|
||||
"subdomainaccess": "Tilgang for underdomene",
|
||||
"supportedServices": "St\u00f8ttede Tjenester",
|
||||
"supportspublicaccess": "Supports Public Access",
|
||||
"supportsregionLevelvpc": "St\u00f8tter Region Niv\u00e5 VPC",
|
||||
"supportsstrechedl2subnet": "St\u00f8tter strekket L2 subnett",
|
||||
"systemvmtype": "Type",
|
||||
"tags": "Merkelapper for lagring",
|
||||
"tariffValue": "Tariffverdi",
|
||||
"template": "Velg en mal",
|
||||
"templateFileUpload": "Lokal fil",
|
||||
"templateLimit": "Malbegrensninger",
|
||||
"templateNames": "Mal",
|
||||
"templatebody": "Innhold",
|
||||
"templatedn": "Velg Mal",
|
||||
"templatename": "Mal",
|
||||
"templatesubject": "Emne",
|
||||
"templatetotal": "Mal",
|
||||
"templatetype": "Epostmal",
|
||||
"tftpdir": "TFTP rot-mappe",
|
||||
"threshold": "Terskel",
|
||||
"tierName": "Gren",
|
||||
"timeout": "Tidsavbrudd",
|
||||
"timezone": "Tidssone",
|
||||
"token": "Kode",
|
||||
"totalCPU": "Totalt CPU",
|
||||
"traffictype": "Trafikktype",
|
||||
"transportzoneuuid": "Transport sone Uuid",
|
||||
"type": "Type",
|
||||
"unit": "Bruksenhet",
|
||||
"url": "URL",
|
||||
"usageName": "Brukstype",
|
||||
"usageUnit": "Enhet",
|
||||
"usageinterface": "Brukergrensesnitt",
|
||||
"useNewDiskOffering": "Replace disk offering?",
|
||||
"useVpc": "VPC",
|
||||
"usehttps": "Bruk HTTPS",
|
||||
"userDataL2": "Brukerdata",
|
||||
"username": "Brukernavn",
|
||||
"utilization": "Utilisation",
|
||||
"uuid": "ID",
|
||||
"vCenterDataCenter": "vCenter Datacenter",
|
||||
"vCenterDataStore": "vCenter Datastore",
|
||||
"vCenterDatacenter": "vCenter Datacenter",
|
||||
"vCenterHost": "vCenter Vert",
|
||||
"vCenterPassword": "vCenter passord",
|
||||
"vCenterUsername": "vCenter brukernavn",
|
||||
"vSwitchGuestName": "Gjestetrafikk vSwitch Navn",
|
||||
"vSwitchGuestType": "Gjestetrafikk vSwitch Type",
|
||||
"vSwitchPublicName": "Offentlig Trafikk vSwitch Navn",
|
||||
"vSwitchPublicType": "Offentlig Trafikk vSwitch Type",
|
||||
"value": "Kreditt",
|
||||
"vcenter": "VMware datasenter vcenter",
|
||||
"vcenterHost": "ESX/ESXi vert",
|
||||
"vcsdeviceid": "ID",
|
||||
"version": "Versjon",
|
||||
"vgpu": "VGPU",
|
||||
"vgpuType": "vGPU type",
|
||||
"virtualMachineId": "Instans",
|
||||
"virtualmachinedisplayname": "VM-navn",
|
||||
"virtualmachineid": "VM ID",
|
||||
"virtualsize": "Virtual Size",
|
||||
"vlan": "VLAN/VNI",
|
||||
"vlanId": "VLAN/VNI ID",
|
||||
"vlanRange": "VLAN/VNI Rekke",
|
||||
"vlanname": "VLAN",
|
||||
"vlanrange": "VLAN/VNI Rekke",
|
||||
"vmLimit": "Instans Begrensninger",
|
||||
"vmTotal": "Instanser",
|
||||
"vmdisplayname": "Visningsnavn for VM",
|
||||
"vmipaddress": "VM IP-adresse",
|
||||
"vmname": "VM-navn",
|
||||
"vmstate": "VM-status",
|
||||
"vmtotal": "Totalt av VM",
|
||||
"vmwaredcId": "VMware datasenter ID",
|
||||
"vmwaredcName": "VMware datasenternavn",
|
||||
"vmwaredcVcenter": "VMware datasenter vcenter",
|
||||
"vmwarenetworklabel": "VMware trafikketikett",
|
||||
"volume": "Volum",
|
||||
"volumeFileUpload": "Lokal fil",
|
||||
"volumeLimit": "Volumbegrensninger",
|
||||
"volumeTotal": "Volumer",
|
||||
"volumegroup": "Volumgruppe",
|
||||
"volumename": "Volumnavn",
|
||||
"volumetotal": "Volum",
|
||||
"vpcLimit": "VPC begrensninger",
|
||||
"vpcid": "VPC ID",
|
||||
"vpcname": "VPC",
|
||||
"vpcoffering": "VPC tilbud",
|
||||
"vpncustomergatewayid": "VPN Kundegateway",
|
||||
"vsmctrlvlanid": "Kontroll VLAN ID",
|
||||
"vsmdeviceid": "Navn",
|
||||
"vsmdevicestate": "Status",
|
||||
"vsmipaddress": "Nexus 1000v IP Addresse",
|
||||
"vsmipaddress_req": "Nexus 1000v IP Addresse",
|
||||
"vsmpassword": "Nexus 1000v Passord",
|
||||
"vsmpassword_req": "Nexus 1000v Passord",
|
||||
"vsmpktvlanid": "Pakke VLAN ID",
|
||||
"vsmstoragevlanid": "Lagrings VLAN ID",
|
||||
"vsmusername": "Nexus 1000v Brukernavn",
|
||||
"vsmusername_req": "Nexus 1000v Brukernavn",
|
||||
"xennetworklabel": "XenServer trafikketikett",
|
||||
"xenserverToolsVersion61plus": "Original XS versjon er 6.1+",
|
||||
"zone": "Sone",
|
||||
"zoneId": "Sone",
|
||||
"zoneid": "Sone",
|
||||
"zonename": "Sone"
|
||||
}
|
||||
|
|
@ -0,0 +1,638 @@
|
|||
{
|
||||
"Accounts": "Accounts",
|
||||
"Affinity Groups": "Affinity Groepen",
|
||||
"Alerts": "Waarschuwingen",
|
||||
"CPU Sockets": "CPU Sockets",
|
||||
"Cloudian Storage": "Cloudian Storage",
|
||||
"Clusters": "Clusters",
|
||||
"Compute": "Compute",
|
||||
"Compute Offerings": "Compute aanbiedingen",
|
||||
"Configuration": "Configuratie",
|
||||
"Dashboard": "Dashboard",
|
||||
"Disk Offerings": "Schijf Aanbiedingen",
|
||||
"Domains": "Domains",
|
||||
"Events": "Gebeurtenissen",
|
||||
"Global Settings": "Algemene Instellingen",
|
||||
"Hosts": "Hosts",
|
||||
"Hypervisor Capabilities": "Hypervisor mogelijkheden",
|
||||
"ISOs": "ISOs",
|
||||
"Identity and Access": "Identity and Access",
|
||||
"Infrastructure": "Infrastructuur",
|
||||
"Instances": "Instanties",
|
||||
"LDAP Configuration": "LDAP Configuratie",
|
||||
"Management Servers": "Management Servers",
|
||||
"Monitor": "Monitor",
|
||||
"Network": "Netwerk",
|
||||
"Network Offerings": "Netwerk Aanbiedingen",
|
||||
"Plugins": "Plugins",
|
||||
"Pods": "Pods",
|
||||
"Primary Storage": "Primaire Opslag",
|
||||
"Projects": "Projecten",
|
||||
"Public IP Addresses": "Publieke IP Adressen",
|
||||
"Public network": "Publiek netwerk",
|
||||
"Quota": "Quota",
|
||||
"RESOURCE_NAME": "Verbruik Naam",
|
||||
"Roles": "Roles",
|
||||
"SSH Key Pairs": "SSH sleutel paren",
|
||||
"Secondary Storage": "Secundaire Opslag",
|
||||
"Security Groups": "Security Groups",
|
||||
"Snapshots": "Snapshots",
|
||||
"Storage": "Opslag",
|
||||
"System Offerings": "Systeem Aanbiedingen",
|
||||
"System VMs": "Systeem VMs",
|
||||
"Templates": "Templates",
|
||||
"Users": "Gebruikers",
|
||||
"VM Snapshots": "VM Snapshots",
|
||||
"VPC": "VPC",
|
||||
"VPC Offerings": "VPC Aanbiedingen",
|
||||
"VPN Gateway": "VPN Gateway",
|
||||
"Virtual Routers": "Virtuele Routers",
|
||||
"Volumes": "Volumes",
|
||||
"Zones": "Zones",
|
||||
"accesskey": "Toegangssleutel",
|
||||
"account": "Account",
|
||||
"accountId": "Account",
|
||||
"accountTotal": "Accounts",
|
||||
"accountlist": "Accounts",
|
||||
"accounts": "Accounts",
|
||||
"accounttype": "Account type",
|
||||
"aclTotal": "Netwerk ACL Totaal",
|
||||
"aclid": "ACL",
|
||||
"aclname": "ACL naam",
|
||||
"action": "Actie",
|
||||
"activeviewersessions": "Actieve Sessies",
|
||||
"add-scaleDowncondition": "Voeg toe",
|
||||
"add-scaleUpcondition": "Voeg toe",
|
||||
"address": "Address",
|
||||
"admin": "Domein Beheerder",
|
||||
"agentPassword": "Agent wachtwoord",
|
||||
"agentPort": "Agent poort",
|
||||
"agentUsername": "Agent Gebruikersnaam",
|
||||
"agentstate": "agent status",
|
||||
"algorithm": "Algoritme",
|
||||
"allocationstate": "Verbruik Staat",
|
||||
"apikey": "API Sleutel",
|
||||
"associatednetworkid": "Bijbehorend Netwerk ID",
|
||||
"associatednetworkname": "Netwerk Naam",
|
||||
"availability": "Beschikbaarheid",
|
||||
"availabilityZone": "Beschikbaarheids-zone",
|
||||
"balance": "balans",
|
||||
"baremetalCpu": "CPU (in MHz)",
|
||||
"baremetalCpuCores": "Aantal CPU Cores",
|
||||
"baremetalMAC": "Host MAC",
|
||||
"baremetalMemory": "Geheugen (in MB)",
|
||||
"bcfdeviceid": "ID",
|
||||
"bladeid": "Blade ID",
|
||||
"bootable": "Bootable",
|
||||
"broadcastdomainrange": "Broadcast domain range",
|
||||
"broadcastdomaintype": "Broadcast Domain Type",
|
||||
"broadcasturi": "Broadcast URI",
|
||||
"bucket": "Bucket",
|
||||
"cacheMode": "Schrijf cache Type",
|
||||
"capacity": "Capaciteit",
|
||||
"capacityBytes": "Capaciteit in bytes",
|
||||
"capacityIops": "Capaciteit in IOPS",
|
||||
"capacityiops": "IOPS Totaal",
|
||||
"chassis": "Chassis",
|
||||
"checksum": "controlesom",
|
||||
"cidr": "CIDR",
|
||||
"cidrlist": "CIDR lijst",
|
||||
"cleanup": "Opschonen",
|
||||
"clusterId": "Cluster",
|
||||
"clusterid": "Cluster",
|
||||
"clustername": "Cluster",
|
||||
"clusters": "Clusters",
|
||||
"clustertype": "Cluster Type",
|
||||
"connectiontimeout": "Connectie Timeout",
|
||||
"conservemode": "Conserveer modus",
|
||||
"counterid": "teller",
|
||||
"cpuCap": "CPU Cap",
|
||||
"cpuLimit": "CPU limieten",
|
||||
"cpuNumber": "Aantal CPU Cores",
|
||||
"cpuSpeed": "CPU (in MHz)",
|
||||
"cpuallocated": "CPU gebruikt voor VMs",
|
||||
"cpuallocatedghz": "Gebruikt",
|
||||
"cpumaxdeviation": "afwijking",
|
||||
"cpunumber": "Aantal CPU Cores",
|
||||
"cpusockets": "Het aantal CPU sockets",
|
||||
"cpuspeed": "CPU (in MHz)",
|
||||
"cputotal": "totaal",
|
||||
"cputotalghz": "totaal",
|
||||
"cpuused": "CPU Verbruik",
|
||||
"cpuusedghz": "Gebruikt",
|
||||
"createNfsCache": "Creeer NFS staging secudaire opslag",
|
||||
"created": "Datum",
|
||||
"credit": "krediet",
|
||||
"crossZones": "Over Zones",
|
||||
"current": "isHuidige",
|
||||
"date": "Datum",
|
||||
"dedicated": "Toegewijd",
|
||||
"deleteprofile": "Profiel Verwijderen",
|
||||
"deploymentPlanner": "Deployment planner",
|
||||
"deploymentplanner": "Deployment planner",
|
||||
"description": "Beschrijving",
|
||||
"destinationZoneId": "Bestemmingszone",
|
||||
"destinationphysicalnetworkid": "Bestemming fysiek netwerk ID",
|
||||
"destroyVMgracePeriod": "Respijt periode verwijderde VM",
|
||||
"details": "Details",
|
||||
"deviceid": "Apparaat ID",
|
||||
"directdownload": "Direct Download",
|
||||
"disconnected": "Laatse keer niet verbonden",
|
||||
"disk": "schijf",
|
||||
"diskBytesReadRate": "Lees Snelheid Schijf (BPS)",
|
||||
"diskBytesWriteRate": "Schrijf Snelheid Schijf (BPS)",
|
||||
"diskIopsReadRate": "Lees Snelheid Schijf (IOPS)",
|
||||
"diskIopsWriteRate": "Schrijf snelheid Schijf (IOPS)",
|
||||
"diskOffering": "Schijf Aanbieding",
|
||||
"diskOfferingId": "Schijf Aanbiedingen",
|
||||
"diskSize": "Schijf Grootte (in GB)",
|
||||
"diskiopstotal": "IOPS",
|
||||
"diskioread": "Schijf Lezen (IO)",
|
||||
"diskiowrite": "Schijf Schrijven (IO)",
|
||||
"diskkbsread": "Schijf lezen (Bytes)",
|
||||
"diskkbswrite": "Schijf Schrijven (Bytes)",
|
||||
"diskofferingdisplaytext": "Schijf Aanbieding",
|
||||
"disksize": "Schijf Grootte (in GB)",
|
||||
"disksizeallocated": "Schijfruimte gealloceerd",
|
||||
"disksizeallocatedgb": "Gebruikt",
|
||||
"disksizetotal": "Schijf Totaal",
|
||||
"disksizetotalgb": "totaal",
|
||||
"disksizeunallocatedgb": "niet-toegekend",
|
||||
"disksizeusedgb": "Gebruikt",
|
||||
"displayText": "Beschrijving",
|
||||
"displayname": "publieke naam",
|
||||
"displaytext": "Beschrijving",
|
||||
"distributedvpcrouter": "Gedistribueerde VPC Router",
|
||||
"dns1": "DNS 1",
|
||||
"dns2": "DNS 2",
|
||||
"domain": "Domein",
|
||||
"domainId": "Domein",
|
||||
"domainid": "Domein",
|
||||
"domainname": "Domein",
|
||||
"domainpath": "Domein",
|
||||
"dpd": "Dead Peer detectie",
|
||||
"driver": "Driver",
|
||||
"egressdefaultpolicy": "Standaard uitgaande policy",
|
||||
"email": "Email",
|
||||
"enddate": "eind datum",
|
||||
"endip": "IPv4 Eind IP",
|
||||
"endipv4": "IPv4 Eind IP",
|
||||
"endipv6": "IPv6 Eind IP",
|
||||
"endpoint": "Endpoint",
|
||||
"endport": "Eind Poort",
|
||||
"espEncryption": "ESP Encryptie",
|
||||
"espHash": "ESP Hash",
|
||||
"esplifetime": "ESP Lifetime (secondes)",
|
||||
"esppolicy": "ESP policy",
|
||||
"expunge": "Ruim op",
|
||||
"fingerprint": "vinger afdruk",
|
||||
"firstname": "Voornaam",
|
||||
"forced": "Geforceerd stoppen",
|
||||
"forceencap": "Forceer UDP Encapsulatie van ESP Packets",
|
||||
"format": "Formaat",
|
||||
"fwdevicecapacity": "Capaciteit",
|
||||
"fwdeviceid": "ID",
|
||||
"fwdevicename": "Type",
|
||||
"fwdevicestate": "Status",
|
||||
"gateway": "Gateway",
|
||||
"glustervolume": "Volume",
|
||||
"group": "Groep",
|
||||
"gslbdomainname": "GSLB Domein Naam",
|
||||
"gslblbmethod": "Algoritme",
|
||||
"gslbprovider": "GSLB service",
|
||||
"gslbproviderprivateip": "GSLB service Private IP",
|
||||
"gslbproviderpublicip": "GSLB service Publiek IP",
|
||||
"gslbservicetype": "Service Type",
|
||||
"guestEndIp": "Gast eind IP",
|
||||
"guestGateway": "Gast Gateway",
|
||||
"guestIpType": "Gast Type",
|
||||
"guestNetmask": "Gast Netmask",
|
||||
"guestStartIp": "Gast start IP",
|
||||
"guestcidraddress": "Gast CIDR",
|
||||
"guestipaddress": "Gast IP Adres",
|
||||
"guestiptype": "Gast Type",
|
||||
"guestnetworkid": "Netwerk ID",
|
||||
"guestnetworkname": "Netwerk Naam",
|
||||
"guestosid": "OS Type",
|
||||
"guestvlanrange": "VLAN Range(s)",
|
||||
"haenable": "HA ingeschakeld",
|
||||
"hahost": "HA ingeschakeld",
|
||||
"host": "IP Adres",
|
||||
"hostId": "Host",
|
||||
"hostTags": "Host Tags",
|
||||
"hostname": "Hostnaam",
|
||||
"hosts": "Hosts",
|
||||
"hosttags": "Host Tags",
|
||||
"hypervisor": "Hypervisor",
|
||||
"hypervisorSnapshotReserve": "Hypervisor Snapshot Reserve",
|
||||
"hypervisorsnapshotreserve": "Hypervisor Snapshot Reserve",
|
||||
"hypervisortype": "Hypervisor",
|
||||
"hypervisorversion": "Hypervisor versie",
|
||||
"hypervnetworklabel": "HyperV verkeerslabel",
|
||||
"icmpcode": "ICMP Code",
|
||||
"icmptype": "ICMP Type",
|
||||
"id": "ID",
|
||||
"ikeDh": "IKE DH",
|
||||
"ikeEncryption": "IKE Encryptie",
|
||||
"ikeHash": "IKE Hash",
|
||||
"ikelifetime": "IKE lifetime (secondes)",
|
||||
"ikepolicy": "IKE policy",
|
||||
"insideportprofile": "binnen poort profiel",
|
||||
"instancename": "Interne naam",
|
||||
"instanceport": "instantie poort",
|
||||
"instances": "Instanties",
|
||||
"internaldns1": "Interne DNS 1",
|
||||
"internaldns2": "Interne DNS 2",
|
||||
"interval": "Polling Interval (in sec)",
|
||||
"intervaltype": "Interval Type",
|
||||
"ip": "IP Adres",
|
||||
"ip4Netmask": "IPv4 Netmask",
|
||||
"ip4dns1": "IPv4 DNS1",
|
||||
"ip4dns2": "IPv4 DNS2",
|
||||
"ip4gateway": "IPv4 Gateway",
|
||||
"ip6address": "IPv6 IP Address",
|
||||
"ip6cidr": "IPv6 CIDR",
|
||||
"ip6dns1": "IPv6 DNS1",
|
||||
"ip6dns2": "IPv6 DNS2",
|
||||
"ip6gateway": "IPv6 Gateway",
|
||||
"ipLimit": "Publieke IP Limieten",
|
||||
"ipaddress": "IP Adres",
|
||||
"ipaddress1": "IP Adres",
|
||||
"ipaddress2": "IP Adres",
|
||||
"ipsecpsk": "IPsec Preshared-Key",
|
||||
"iptotal": "totaal aantal IP adressen",
|
||||
"iqn": "Doel IQN",
|
||||
"isAdvanced": "Geavaceerde instellingen weergeven",
|
||||
"isBootable": "Bootable",
|
||||
"isCustomized": "Vrije schijf grootte",
|
||||
"isCustomizedIops": "Aangepaste IOPS",
|
||||
"isDedicated": "Toewijden",
|
||||
"isExtractable": "Uitpakbaar",
|
||||
"isFeatured": "Voorgesteld",
|
||||
"isForced": "Geforceerd loskoppelen",
|
||||
"isManaged": "beheerd(e)",
|
||||
"isPasswordEnabled": "Wachtwoord Ingeschakeld",
|
||||
"isPersistent": "Persistent",
|
||||
"isPublic": "Publiek",
|
||||
"isVolatile": "Volatile",
|
||||
"iscustomized": "Vrije schijf grootte",
|
||||
"iscustomizediops": "Aangepaste IOPS",
|
||||
"isdedicated": "Toegewijd",
|
||||
"isdefault": "Is Standaard",
|
||||
"isdynamicallyscalable": "Dynamisch Schaalbaar",
|
||||
"isextractable": "ophaalbaar",
|
||||
"isfeatured": "Voorgesteld",
|
||||
"iso": "ISO",
|
||||
"isolatedpvlanId": "Secundair Geisoleerd VLAN ID",
|
||||
"isolationmethods": "Isolatie methode",
|
||||
"isolationuri": "Isolatie URI",
|
||||
"isoname": "Gekoppelde ISO",
|
||||
"ispersistent": "Persistent",
|
||||
"isportable": "Over Zones",
|
||||
"ispublic": "Publiek",
|
||||
"isready": "Klaar",
|
||||
"isredundantrouter": "Redundante Router",
|
||||
"isrouting": "Routing",
|
||||
"issourcenat": "Source NAT",
|
||||
"isstaticnat": "Static NAT",
|
||||
"issystem": "Is Systeem",
|
||||
"isvolatile": "Volatile",
|
||||
"key": "Sleutel",
|
||||
"keyboardType": "Toetsenbord type",
|
||||
"keypair": "SSH sleutelpaar",
|
||||
"kvmnetworklabel": "KVM verkeer label",
|
||||
"l2gatewayserviceuuid": "L2 gateway service UUID",
|
||||
"l3gatewayserviceuuid": "L3 Gateway Service Uuid",
|
||||
"last_updated": "laatste wijziging",
|
||||
"lastname": "Achternaam",
|
||||
"lbType": "loadbalancer type",
|
||||
"lbdevicecapacity": "Capaciteit",
|
||||
"lbdevicededicated": "Toegewijd",
|
||||
"lbdeviceid": "ID",
|
||||
"lbdevicename": "Type",
|
||||
"lbdevicestate": "Status",
|
||||
"level": "Level",
|
||||
"limitcpuuse": "CPU Cap",
|
||||
"linklocalip": "Link Local IP Adres",
|
||||
"loadbalancerinstance": "toegewezen VMs",
|
||||
"loadbalancerrule": "load balancing regel",
|
||||
"localstorageenabled": "Schakel locale opslag voor gebruiker VMs in",
|
||||
"localstorageenabledforsystemvm": "zet lokale opslag voor systeem VMs aan",
|
||||
"lun": "LUN #",
|
||||
"lxcnetworklabel": "LXC verkeerslabel",
|
||||
"makeredundant": "Maak redundant",
|
||||
"maxInstance": "Max Instances",
|
||||
"maxIops": "Max IOPS",
|
||||
"maxerrorretry": "Max. opnieuw proberen na Fout",
|
||||
"maxguestslimit": "Max. Instanties",
|
||||
"maxiops": "Max IOPS",
|
||||
"memallocated": "geheugen allocatie",
|
||||
"memory": "Geheugen (in MB)",
|
||||
"memoryLimit": "Geheugen limieten (MiB)",
|
||||
"memoryallocated": "Geheugen Gealloceerd",
|
||||
"memoryallocatedgb": "Gebruikt",
|
||||
"memorymaxdeviation": "afwijking",
|
||||
"memorytotal": "Gebruikt",
|
||||
"memorytotalgb": "totaal",
|
||||
"memoryused": "Gebruikt",
|
||||
"memoryusedgb": "Gebruikt",
|
||||
"memused": "geheugen gebruik",
|
||||
"minInstance": "Min Instances",
|
||||
"minIops": "Min IOPS",
|
||||
"min_balance": "min balans",
|
||||
"miniops": "Min IOPS",
|
||||
"name": "Naam",
|
||||
"nat": "BigSwitch BCF NAT staat aan",
|
||||
"netmask": "Netmask",
|
||||
"network": "Netwerk",
|
||||
"networkDomain": "Netwerk Domein",
|
||||
"networkLimit": "Netwerk limieten",
|
||||
"networkOfferingId": "Netwerk Aanbieding",
|
||||
"networkRate": "Netwerk Snelheid (Mb/s)",
|
||||
"networkcidr": "Network CIDR",
|
||||
"networkdevicetype": "Type",
|
||||
"networkdomain": "Netwerk Domein",
|
||||
"networkdomaintext": "Netwerk Domein",
|
||||
"networkid": "Selecteer Tier",
|
||||
"networkkbsread": "Netwerk gelezen",
|
||||
"networkkbswrite": "Netwerk geschreven",
|
||||
"networkname": "Netwerk Naam",
|
||||
"networkofferingdisplaytext": "Netwerk Aanbieding",
|
||||
"networkofferingid": "Netwerk Aanbieding",
|
||||
"networkofferingidText": "Netwerk Aanbieding ID",
|
||||
"networkofferingname": "Netwerk Aanbieding",
|
||||
"networkrate": "Netwerk Snelheid (Mb/s)",
|
||||
"networkread": "lees",
|
||||
"networktype": "Netwerk Type",
|
||||
"networkwrite": "schrijf",
|
||||
"newDiskOffering": "New Disk Offering",
|
||||
"newdiskoffering": "Nieuwe Aanbieding",
|
||||
"newsize": "Nieuwe grootte (GB)",
|
||||
"nfsCacheNfsServer": "S3 NFS Server",
|
||||
"nfsCachePath": "S3 NFS Pad",
|
||||
"nfsCacheZoneid": "Zone",
|
||||
"nfsServer": "Server",
|
||||
"nicAdapterType": "NIC adapter type",
|
||||
"number": "#Rule",
|
||||
"numberOfRouterRequiresUpgrade": "Totaal Virtueele Routers die een ugrade nodig hebben",
|
||||
"numretries": "Keren opnieuw geprorbeerd",
|
||||
"nvpdeviceid": "ID",
|
||||
"offerHA": "HA aanbieden",
|
||||
"offerha": "HA aanbieden",
|
||||
"osTypeId": "OS Type",
|
||||
"oscategoryid": "OS Voorkeur",
|
||||
"ostypeid": "OS Type",
|
||||
"ostypename": "OS Type",
|
||||
"overrideguesttraffic": "Overschrijf Gast Verkeer",
|
||||
"overridepublictraffic": "Overschrijf Publiek Verkeer",
|
||||
"ovm3cluster": "inheems clustering",
|
||||
"ovm3networklabel": "OVM3 verkeer etiket",
|
||||
"ovm3pool": "inheemse pooling",
|
||||
"ovm3vip": "Master VIP IP ip",
|
||||
"ovmnetworklabel": "OVM verkeerslabel",
|
||||
"palp": "Palo Alto Log Profiel",
|
||||
"parentName": "Bovenliggend",
|
||||
"passive": "passief",
|
||||
"password": "Wachtwoord",
|
||||
"password-confirm": "Bevestig wachtwoord",
|
||||
"passwordenabled": "Wachtwoord Ingeschakeld",
|
||||
"path": "Pad",
|
||||
"patp": "Palo Alto Threat Profiel",
|
||||
"pavr": "Virtuele Router",
|
||||
"pciDevice": "GPU",
|
||||
"perfectForwardSecrecy": "Perfect Forward Secrecy",
|
||||
"physicalNetworkId": "Fysiek Netwerk",
|
||||
"physicalnetworkid": "Fysiek Netwerk",
|
||||
"physicalsize": "Physical Size",
|
||||
"plannerMode": "Planner modus",
|
||||
"podId": "Pod",
|
||||
"podname": "Pod",
|
||||
"port": "Poort",
|
||||
"portableipaddress": "Porteerbare IPs",
|
||||
"powerstate": "Power State",
|
||||
"primaryStorageLimit": "Primaire Opslag limieten (GiB)",
|
||||
"primarystoragetotal": "Primaire Opslag",
|
||||
"privateinterface": "Priv\u00e9 Interface",
|
||||
"privateip": "Priv\u00e9 IP Adres",
|
||||
"privatekey": "priv\u00e9 sleutel",
|
||||
"privatenetwork": "Priv\u00e9 Netwerk",
|
||||
"privateport": "Priv\u00e9 Port",
|
||||
"profiledn": "Bijbehorend Profiel",
|
||||
"profilename": "Profiel",
|
||||
"project": "Project",
|
||||
"projectId": "Project",
|
||||
"projectid": "Project ID",
|
||||
"projects": "Projecten",
|
||||
"property": "eigenschap",
|
||||
"protocol": "Protocol",
|
||||
"protocolnumber": "#Protocol",
|
||||
"provider": "Provider",
|
||||
"providername": "Provider",
|
||||
"provisioningType": "Provisioning type",
|
||||
"provisioningtype": "Provisioning type",
|
||||
"publicinterface": "Publieke Interface",
|
||||
"publicip": "IP Adres",
|
||||
"publickey": "publieke sleutel",
|
||||
"publicnetwork": "Publiek netwerk",
|
||||
"publicport": "Publieke Poort",
|
||||
"purpose": "Doel",
|
||||
"qosType": "QoS Type",
|
||||
"quiescevm": "Quiesce VM",
|
||||
"quietTime": "Quiet Time (in sec)",
|
||||
"quota": "quota waarde",
|
||||
"quota_enforce": "dwing quota af",
|
||||
"rbdid": "Cephx gebruiker",
|
||||
"rbdmonitor": "Ceph monitor",
|
||||
"rbdpool": "Ceph pool",
|
||||
"rbdsecret": "Cephx secret",
|
||||
"reason": "Reason",
|
||||
"receivedbytes": "Bytes Ontvangen",
|
||||
"redundantRouterState": "Redundante staat",
|
||||
"redundantrouter": "Redundante Router",
|
||||
"redundantstate": "Redundante staat",
|
||||
"redundantvpcrouter": "Redundante VPC",
|
||||
"reenterpassword": "Re-enter Password",
|
||||
"relationaloperator": "operator",
|
||||
"requireshvm": "HVM",
|
||||
"requiresupgrade": "Upgrade Benodigd",
|
||||
"reservedSystemEndIp": "Einde gereserveerde systeem IP",
|
||||
"reservedSystemGateway": "Gereseveerde systeem gateway",
|
||||
"reservedSystemNetmask": "Gereserveerd systeem netmask",
|
||||
"reservedSystemStartIp": "Start gereseveerd systeem IP",
|
||||
"reservediprange": "Gereserveerde IP Range",
|
||||
"resourceid": "Verbruik ID",
|
||||
"resourcename": "Verbruik Naam",
|
||||
"resourcestate": "Verbruik staat",
|
||||
"restartrequired": "Herstart benodigd",
|
||||
"role": "Rol",
|
||||
"rolename": "Rol",
|
||||
"roletype": "Role Type",
|
||||
"rootDiskControllerType": "Root schijf controller",
|
||||
"rootDiskControllerTypeKVM": "Root schijf controller",
|
||||
"routerCount": "Totaal Virtual Routers",
|
||||
"routerRequiresUpgrade": "Upgrade is benodigd",
|
||||
"routerType": "Type",
|
||||
"samlEnable": "authoriseer SAML SSO",
|
||||
"samlEntity": "identificeer leverancier",
|
||||
"scope": "Scope",
|
||||
"secondaryStorageLimit": "Secundaire Opslag limieten (GiB)",
|
||||
"secondaryips": "Secundaire IPs",
|
||||
"secretkey": "Geheime sleutel",
|
||||
"securityGroups": "Security Groups",
|
||||
"securitygroup": "Security Group",
|
||||
"sent": "Datum",
|
||||
"sentbytes": "Bytes Verzonden",
|
||||
"server": "Server",
|
||||
"service.Connectivity.distributedRouterCapabilityCheckbox": "gedistribueerde router",
|
||||
"service.Connectivity.regionLevelVpcCapabilityCheckbox": "Region Level VPC",
|
||||
"service.Lb.elasticLbCheckbox": "Elastisch LB",
|
||||
"service.Lb.inlineModeDropdown": "Modus",
|
||||
"service.Lb.lbIsolationDropdown": "LB isolatie",
|
||||
"service.SourceNat.redundantRouterCapabilityCheckbox": "Redundante router mogelijkheden",
|
||||
"service.SourceNat.sourceNatTypeDropdown": "Ondersteunde Source NAT type",
|
||||
"service.StaticNat.associatePublicIP": "Associeers Publiek IP",
|
||||
"service.StaticNat.elasticIpCheckbox": "Elastisch IP",
|
||||
"serviceCapabilities": "Service Mogelijkheden",
|
||||
"serviceOfferingId": "Compute aanbieding",
|
||||
"servicelist": "Diensten",
|
||||
"serviceofferingid": "Compute aanbieding",
|
||||
"serviceofferingname": "Compute aanbieding",
|
||||
"shrinkok": "Verklein OK",
|
||||
"size": "Grootte",
|
||||
"sizegb": "Grootte",
|
||||
"smbDomain": "SMB Domein",
|
||||
"smbPassword": "SMB Wachtwoord",
|
||||
"smbUsername": "SMB Gebruikersnaam",
|
||||
"snapshotLimit": "Snapshot Limieten",
|
||||
"snapshotMemory": "Snapshot geheugen",
|
||||
"snmpCommunity": "SNMP Community",
|
||||
"snmpPort": "SNMP Poort",
|
||||
"sockettimeout": "Socket Timeout",
|
||||
"sourceNat": "Source NAT",
|
||||
"sourceipaddress": "bron IP adres",
|
||||
"sourceport": "bron poort",
|
||||
"specifyVlan": "Specificeer VLAN",
|
||||
"specifyipranges": "Specificeer IP ranges",
|
||||
"specifyvlan": "Specificeer VLAN",
|
||||
"sshkeypair": "nieuw SSH sleutelpaar",
|
||||
"startdate": "start datum",
|
||||
"startip": "IPv4 Begin IP",
|
||||
"startipv4": "IPv4 Begin IP",
|
||||
"startipv6": "IPv6 Begin IP",
|
||||
"startport": "Start Poort",
|
||||
"startquota": "quota waarde",
|
||||
"state": "Staat",
|
||||
"status": "Status",
|
||||
"storage": "Opslag",
|
||||
"storageId": "Primaire Opslag",
|
||||
"storagePool": "opslag poel",
|
||||
"storageTags": "Opslag Tags",
|
||||
"storageType": "Opslag Type",
|
||||
"storagetype": "Opslag Type",
|
||||
"subdomainaccess": "Subdomein Toegang",
|
||||
"supportedServices": "Geondersteunde Diensten",
|
||||
"supportspublicaccess": "Supports Public Access",
|
||||
"supportsregionLevelvpc": "Ondersteund Region Level VPC",
|
||||
"supportsstrechedl2subnet": "Ondersteund Streched L2 Subnet",
|
||||
"systemvmtype": "Type",
|
||||
"tags": "Opslag Tags",
|
||||
"tariffValue": "tarief waarde",
|
||||
"template": "Selecteer een template",
|
||||
"templateFileUpload": "lokaal bestand",
|
||||
"templateLimit": "Template Limieten",
|
||||
"templateNames": "Template",
|
||||
"templatebody": "inhoud",
|
||||
"templatedn": "Selecteer Template",
|
||||
"templatename": "Template",
|
||||
"templatesubject": "onderwerp",
|
||||
"templatetotal": "Template",
|
||||
"templatetype": "e-mail sjabloon",
|
||||
"tftpdir": "TFTP root directory",
|
||||
"threshold": "marge",
|
||||
"tierName": "Tier",
|
||||
"timeout": "Timeout",
|
||||
"timezone": "Tijdzone",
|
||||
"token": "Token",
|
||||
"totalCPU": "Totaal CPU",
|
||||
"traffictype": "Verkeer Type",
|
||||
"transportzoneuuid": "Transport Zone Uuid",
|
||||
"type": "Type",
|
||||
"unit": "gebruik eenheid",
|
||||
"url": "URL",
|
||||
"usageName": "gebruik type",
|
||||
"usageUnit": "eenheid",
|
||||
"usageinterface": "Verbruik Interface",
|
||||
"useNewDiskOffering": "Replace disk offering?",
|
||||
"useVpc": "VPC",
|
||||
"usehttps": "Gebruik HTTPS",
|
||||
"userDataL2": "Gebruiker Data",
|
||||
"username": "Gebruikersnaam",
|
||||
"utilization": "Utilisation",
|
||||
"uuid": "ID",
|
||||
"vCenterDataCenter": "vCenter Datacenter",
|
||||
"vCenterDataStore": "VCenter Datastore",
|
||||
"vCenterDatacenter": "vCenter Datacenter",
|
||||
"vCenterHost": "vCenter Host",
|
||||
"vCenterPassword": "vCenter Wachtwoord",
|
||||
"vCenterUsername": "vCenter Gebruikersnaam",
|
||||
"vSwitchGuestName": "vSwitch Gast Verkeer Naam",
|
||||
"vSwitchGuestType": "vSwitch Gast Verkeer Type",
|
||||
"vSwitchPublicName": "vSwitch Publiek Verkeer Naam",
|
||||
"vSwitchPublicType": "vSwitch Publiek Verkeer Type",
|
||||
"value": "tegoeden",
|
||||
"vcenter": "VMware datacenter vcenter",
|
||||
"vcenterHost": "ESX/ESXi Host",
|
||||
"vcsdeviceid": "ID",
|
||||
"version": "Versie",
|
||||
"vgpu": "VGPU",
|
||||
"vgpuType": "vCPU type",
|
||||
"virtualMachineId": "Instantie",
|
||||
"virtualmachinedisplayname": "VM naam",
|
||||
"virtualmachineid": "VM ID",
|
||||
"virtualsize": "Virtual Size",
|
||||
"vlan": "VLAN/VNI",
|
||||
"vlanId": "VLAN/VNI ID",
|
||||
"vlanRange": "VLAN/VNI Reeks",
|
||||
"vlanname": "VLAN",
|
||||
"vlanrange": "VLAN/VNI Reeks",
|
||||
"vmLimit": "Instantie Limieten",
|
||||
"vmTotal": "Instanties",
|
||||
"vmdisplayname": "VM weergave naam",
|
||||
"vmipaddress": "VM IP adres",
|
||||
"vmname": "VM naam",
|
||||
"vmstate": "VM staat",
|
||||
"vmtotal": "Totaal VMs",
|
||||
"vmwaredcId": "VMware datacenter ID",
|
||||
"vmwaredcName": "VMware datacenter Naam",
|
||||
"vmwaredcVcenter": "VMware datacenter vcenter",
|
||||
"vmwarenetworklabel": "VMware verkeerslabel",
|
||||
"volume": "Volume",
|
||||
"volumeFileUpload": "lokaal bestand",
|
||||
"volumeLimit": "Volume Limieten",
|
||||
"volumeTotal": "Volumes",
|
||||
"volumegroup": "Volume Groep",
|
||||
"volumename": "Volume Naam",
|
||||
"volumetotal": "Volume",
|
||||
"vpcLimit": "VPC limieten",
|
||||
"vpcid": "VPC ID",
|
||||
"vpcname": "VPC",
|
||||
"vpcoffering": "VPC Aanbieding",
|
||||
"vpncustomergatewayid": "VPN Customer Gateway",
|
||||
"vsmctrlvlanid": "Controle VLAN ID",
|
||||
"vsmdeviceid": "Naam",
|
||||
"vsmdevicestate": "Staat",
|
||||
"vsmipaddress": "Nexus 1000v IP Adres",
|
||||
"vsmipaddress_req": "Nexus 1000v IP Adres",
|
||||
"vsmpassword": "Nexus 1000v Wachtwoord",
|
||||
"vsmpassword_req": "Nexus 1000v Wachtwoord",
|
||||
"vsmpktvlanid": "Pakket VLAN ID",
|
||||
"vsmstoragevlanid": "Opslag VLAN ID",
|
||||
"vsmusername": "Nexus 1000v Gebruikersnaam",
|
||||
"vsmusername_req": "Nexus 1000v Gebruikersnaam",
|
||||
"xennetworklabel": "XenServer verkeerslabel",
|
||||
"xenserverToolsVersion61plus": "XenServer Tools Versie 6.1+",
|
||||
"zone": "Zone",
|
||||
"zoneId": "Zone",
|
||||
"zoneid": "Zone",
|
||||
"zonename": "Zone"
|
||||
}
|
||||
|
|
@ -0,0 +1,638 @@
|
|||
{
|
||||
"Accounts": "Konta",
|
||||
"Affinity Groups": "Affinity Groups",
|
||||
"Alerts": "Alarmy",
|
||||
"CPU Sockets": "CPU Sockets",
|
||||
"Cloudian Storage": "Cloudian Storage",
|
||||
"Clusters": "Clusters",
|
||||
"Compute": "Compute",
|
||||
"Compute Offerings": "Compute Offerings",
|
||||
"Configuration": "Konfiguracja",
|
||||
"Dashboard": "Dashboard",
|
||||
"Disk Offerings": "Disk Offerings",
|
||||
"Domains": "Domains",
|
||||
"Events": "Events",
|
||||
"Global Settings": "Global Settings",
|
||||
"Hosts": "Hosts",
|
||||
"Hypervisor Capabilities": "Hypervisor capabilities",
|
||||
"ISOs": "ISO",
|
||||
"Identity and Access": "Identity and Access",
|
||||
"Infrastructure": "Infrastruktura",
|
||||
"Instances": "Instancje",
|
||||
"LDAP Configuration": "LDAP Configuration",
|
||||
"Management Servers": "Management Servers",
|
||||
"Monitor": "Monitor",
|
||||
"Network": "Sie\u0107",
|
||||
"Network Offerings": "Network Offerings",
|
||||
"Plugins": "Wtyczki",
|
||||
"Pods": "Pods",
|
||||
"Primary Storage": "Primary Storage",
|
||||
"Projects": "Projekty",
|
||||
"Public IP Addresses": "Publiczne adresy IP",
|
||||
"Public network": "Sie\u0107 publiczna",
|
||||
"Quota": "Quota",
|
||||
"RESOURCE_NAME": "Resource Name",
|
||||
"Roles": "Roles",
|
||||
"SSH Key Pairs": "SSH Key Pairs",
|
||||
"Secondary Storage": "Secondary Storage",
|
||||
"Security Groups": "Security Groups",
|
||||
"Snapshots": "Snapshots",
|
||||
"Storage": "Storage",
|
||||
"System Offerings": "System Offerings",
|
||||
"System VMs": "System VMs",
|
||||
"Templates": "Templates",
|
||||
"Users": "U\u017cytkownicy",
|
||||
"VM Snapshots": "VM Snapshots",
|
||||
"VPC": "VPC",
|
||||
"VPC Offerings": "VPC Offerings",
|
||||
"VPN Gateway": "VPN Gateway",
|
||||
"Virtual Routers": "Virtual Routers",
|
||||
"Volumes": "Volumes",
|
||||
"Zones": "Zones",
|
||||
"accesskey": "Access Key",
|
||||
"account": "Konto",
|
||||
"accountId": "Konto",
|
||||
"accountTotal": "Konta",
|
||||
"accountlist": "Konta",
|
||||
"accounts": "Konta",
|
||||
"accounttype": "Account Type",
|
||||
"aclTotal": "Network ACL Total",
|
||||
"aclid": "ACL",
|
||||
"aclname": "ACL Name",
|
||||
"action": "Action",
|
||||
"activeviewersessions": "Active Sessions",
|
||||
"add-scaleDowncondition": "Dodaj",
|
||||
"add-scaleUpcondition": "Dodaj",
|
||||
"address": "Address",
|
||||
"admin": "Administrator domeny",
|
||||
"agentPassword": "Agent Password",
|
||||
"agentPort": "Agent Port",
|
||||
"agentUsername": "Agent Username",
|
||||
"agentstate": "Agent State",
|
||||
"algorithm": "Algorithm",
|
||||
"allocationstate": "Allocation State",
|
||||
"apikey": "Klucz API",
|
||||
"associatednetworkid": "Associated Network ID",
|
||||
"associatednetworkname": "Nazwa sieci",
|
||||
"availability": "Availability",
|
||||
"availabilityZone": "Availability Zone",
|
||||
"balance": "Balance",
|
||||
"baremetalCpu": "CPU (w MHz)",
|
||||
"baremetalCpuCores": "# of CPU Cores",
|
||||
"baremetalMAC": "Host MAC",
|
||||
"baremetalMemory": "Pami\u0119\u0107 (w MB)",
|
||||
"bcfdeviceid": "ID",
|
||||
"bladeid": "Blade ID",
|
||||
"bootable": "Bootable",
|
||||
"broadcastdomainrange": "Broadcast domain range",
|
||||
"broadcastdomaintype": "Broadcast Domain Type",
|
||||
"broadcasturi": "Broadcast URI",
|
||||
"bucket": "Bucket",
|
||||
"cacheMode": "Write-cache Type",
|
||||
"capacity": "Capacity",
|
||||
"capacityBytes": "Capacity Bytes",
|
||||
"capacityIops": "Capacity IOPS",
|
||||
"capacityiops": "IOPS Total",
|
||||
"chassis": "Chassis",
|
||||
"checksum": "checksum",
|
||||
"cidr": "CIDR",
|
||||
"cidrlist": "Lista CIDR",
|
||||
"cleanup": "Wyczy\u015b\u0107",
|
||||
"clusterId": "Cluster",
|
||||
"clusterid": "Cluster",
|
||||
"clustername": "Cluster",
|
||||
"clusters": "Clusters",
|
||||
"clustertype": "Cluster Type",
|
||||
"connectiontimeout": "Connection Timeout",
|
||||
"conservemode": "Conserve mode",
|
||||
"counterid": "Counter",
|
||||
"cpuCap": "CPU Cap",
|
||||
"cpuLimit": "Limit CPU",
|
||||
"cpuNumber": "# of CPU Cores",
|
||||
"cpuSpeed": "CPU (w MHz)",
|
||||
"cpuallocated": "CPU Allocated for VMs",
|
||||
"cpuallocatedghz": "Allocated",
|
||||
"cpumaxdeviation": "Deviation",
|
||||
"cpunumber": "# of CPU Cores",
|
||||
"cpusockets": "The Number of CPU Sockets",
|
||||
"cpuspeed": "CPU (w MHz)",
|
||||
"cputotal": "Total",
|
||||
"cputotalghz": "Total",
|
||||
"cpuused": "CPU Utilized",
|
||||
"cpuusedghz": "U\u017cyte",
|
||||
"createNfsCache": "Create NFS Secondary Staging Store",
|
||||
"created": "Data",
|
||||
"credit": "Credit",
|
||||
"crossZones": "Cross Zones",
|
||||
"current": "isCurrent",
|
||||
"date": "Data",
|
||||
"dedicated": "Dedykowany",
|
||||
"deleteprofile": "Delete Profile",
|
||||
"deploymentPlanner": "Deployment planner",
|
||||
"deploymentplanner": "Deployment planner",
|
||||
"description": "Description",
|
||||
"destinationZoneId": "Destination Zone",
|
||||
"destinationphysicalnetworkid": "Destination physical network ID",
|
||||
"destroyVMgracePeriod": "Destroy VM Grace Period",
|
||||
"details": "Szczeg\u00f3\u0142y",
|
||||
"deviceid": "Device ID",
|
||||
"directdownload": "Direct Download",
|
||||
"disconnected": "Last Disconnected",
|
||||
"disk": "Disk",
|
||||
"diskBytesReadRate": "Disk Read Rate (BPS)",
|
||||
"diskBytesWriteRate": "Disk Write Rate (BPS)",
|
||||
"diskIopsReadRate": "Disk Read Rate (IOPS)",
|
||||
"diskIopsWriteRate": "Disk Write Rate (IOPS)",
|
||||
"diskOffering": "Disk Offering",
|
||||
"diskOfferingId": "Disk Offerings",
|
||||
"diskSize": "Wielko\u015b\u0107 dysku (w GB)",
|
||||
"diskiopstotal": "IOPS",
|
||||
"diskioread": "Disk Read (IO)",
|
||||
"diskiowrite": "Disk Write (IO)",
|
||||
"diskkbsread": "Disk Read (Bytes)",
|
||||
"diskkbswrite": "Disk Write (Bytes)",
|
||||
"diskofferingdisplaytext": "Disk Offering",
|
||||
"disksize": "Wielko\u015b\u0107 dysku (w GB)",
|
||||
"disksizeallocated": "Disk Allocated",
|
||||
"disksizeallocatedgb": "Allocated",
|
||||
"disksizetotal": "Disk Total",
|
||||
"disksizetotalgb": "Total",
|
||||
"disksizeunallocatedgb": "Unallocated",
|
||||
"disksizeusedgb": "U\u017cyte",
|
||||
"displayText": "Description",
|
||||
"displayname": "Display Name",
|
||||
"displaytext": "Description",
|
||||
"distributedvpcrouter": "Distributed VPC Router",
|
||||
"dns1": "DNS 1",
|
||||
"dns2": "DNS 2",
|
||||
"domain": "Domena",
|
||||
"domainId": "Domena",
|
||||
"domainid": "Domena",
|
||||
"domainname": "Domena",
|
||||
"domainpath": "Domena",
|
||||
"dpd": "Dead Peer Detection",
|
||||
"driver": "Driver",
|
||||
"egressdefaultpolicy": "Egress Default Policy",
|
||||
"email": "Poczta",
|
||||
"enddate": "End Date",
|
||||
"endip": "IPv4 End IP",
|
||||
"endipv4": "IPv4 End IP",
|
||||
"endipv6": "IPv6 End IP",
|
||||
"endpoint": "Endpoint",
|
||||
"endport": "End Port",
|
||||
"espEncryption": "ESP Encryption",
|
||||
"espHash": "ESP Hash",
|
||||
"esplifetime": "ESP Lifetime (second)",
|
||||
"esppolicy": "ESP policy",
|
||||
"expunge": "Expunge",
|
||||
"fingerprint": "FingerPrint",
|
||||
"firstname": "Pierwsza nazwa",
|
||||
"forced": "Force Stop",
|
||||
"forceencap": "Force UDP Encapsulation of ESP Packets",
|
||||
"format": "Format",
|
||||
"fwdevicecapacity": "Capacity",
|
||||
"fwdeviceid": "ID",
|
||||
"fwdevicename": "Wpisz",
|
||||
"fwdevicestate": "Status",
|
||||
"gateway": "Gateway",
|
||||
"glustervolume": "Volume",
|
||||
"group": "Grupa",
|
||||
"gslbdomainname": "GSLB Domain Name",
|
||||
"gslblbmethod": "Algorithm",
|
||||
"gslbprovider": "GSLB service",
|
||||
"gslbproviderprivateip": "GSLB service Private IP",
|
||||
"gslbproviderpublicip": "GSLB service Public IP",
|
||||
"gslbservicetype": "Service Type",
|
||||
"guestEndIp": "Guest end IP",
|
||||
"guestGateway": "Guest Gateway",
|
||||
"guestIpType": "Rodzaj go\u015bci",
|
||||
"guestNetmask": "Guest Netmask",
|
||||
"guestStartIp": "Guest start IP",
|
||||
"guestcidraddress": "Guest CIDR",
|
||||
"guestipaddress": "Guest IP Address",
|
||||
"guestiptype": "Rodzaj go\u015bci",
|
||||
"guestnetworkid": "ID sieci",
|
||||
"guestnetworkname": "Nazwa sieci",
|
||||
"guestosid": "OS Type",
|
||||
"guestvlanrange": "VLAN Range(s)",
|
||||
"haenable": "HA Enabled",
|
||||
"hahost": "HA Enabled",
|
||||
"host": "IP Address",
|
||||
"hostId": "Host",
|
||||
"hostTags": "Host Tags",
|
||||
"hostname": "Host Name",
|
||||
"hosts": "Hosts",
|
||||
"hosttags": "Host Tags",
|
||||
"hypervisor": "Hypervisor",
|
||||
"hypervisorSnapshotReserve": "Hypervisor Snapshot Reserve",
|
||||
"hypervisorsnapshotreserve": "Hypervisor Snapshot Reserve",
|
||||
"hypervisortype": "Hypervisor",
|
||||
"hypervisorversion": "Hypervisor version",
|
||||
"hypervnetworklabel": "HyperV Traffic Label",
|
||||
"icmpcode": "ICMP Code",
|
||||
"icmptype": "ICMP Type",
|
||||
"id": "ID",
|
||||
"ikeDh": "IKE DH",
|
||||
"ikeEncryption": "IKE Encryption",
|
||||
"ikeHash": "IKE Hash",
|
||||
"ikelifetime": "IKE lifetime (second)",
|
||||
"ikepolicy": "IKE policy",
|
||||
"insideportprofile": "Inside Port Profile",
|
||||
"instancename": "Internal name",
|
||||
"instanceport": "Instance Port",
|
||||
"instances": "Instancje",
|
||||
"internaldns1": "Internal DNS 1",
|
||||
"internaldns2": "Internal DNS 2",
|
||||
"interval": "Polling Interval (in sec)",
|
||||
"intervaltype": "Interval Type",
|
||||
"ip": "IP Address",
|
||||
"ip4Netmask": "IPv4 Netmask",
|
||||
"ip4dns1": "IPv4 DNS1",
|
||||
"ip4dns2": "IPv4 DNS2",
|
||||
"ip4gateway": "IPv4 Gateway",
|
||||
"ip6address": "IPv6 IP Address",
|
||||
"ip6cidr": "IPv6 CIDR",
|
||||
"ip6dns1": "IPv6 DNS1",
|
||||
"ip6dns2": "IPv6 DNS2",
|
||||
"ip6gateway": "IPv6 Gateway",
|
||||
"ipLimit": "Public IP Limits",
|
||||
"ipaddress": "IP Address",
|
||||
"ipaddress1": "IP Address",
|
||||
"ipaddress2": "IP Address",
|
||||
"ipsecpsk": "IPsec Preshared-Key",
|
||||
"iptotal": "Total of IP Addresses",
|
||||
"iqn": "Target IQN",
|
||||
"isAdvanced": "Show advanced settings",
|
||||
"isBootable": "Bootable",
|
||||
"isCustomized": "Custom Disk Size",
|
||||
"isCustomizedIops": "Custom IOPS",
|
||||
"isDedicated": "Dedicate",
|
||||
"isExtractable": "Extractable",
|
||||
"isFeatured": "Polecane",
|
||||
"isForced": "Force Remove",
|
||||
"isManaged": "Managed",
|
||||
"isPasswordEnabled": "Password Enabled",
|
||||
"isPersistent": "Persistent ",
|
||||
"isPublic": "Pobliczny",
|
||||
"isVolatile": "Volatile",
|
||||
"iscustomized": "Custom Disk Size",
|
||||
"iscustomizediops": "Custom IOPS",
|
||||
"isdedicated": "Dedykowany",
|
||||
"isdefault": "Is Default",
|
||||
"isdynamicallyscalable": "Dynamically Scalable",
|
||||
"isextractable": "extractable",
|
||||
"isfeatured": "Polecane",
|
||||
"iso": "ISO",
|
||||
"isolatedpvlanId": "Secondary Isolated VLAN ID",
|
||||
"isolationmethods": "Isolation method",
|
||||
"isolationuri": "Isolation URI",
|
||||
"isoname": "Attached ISO",
|
||||
"ispersistent": "Persistent ",
|
||||
"isportable": "Cross Zones",
|
||||
"ispublic": "Pobliczny",
|
||||
"isready": "Gotowe",
|
||||
"isredundantrouter": "Redundant Router",
|
||||
"isrouting": "Routing",
|
||||
"issourcenat": "Source NAT",
|
||||
"isstaticnat": "Static NAT",
|
||||
"issystem": "Is System",
|
||||
"isvolatile": "Volatile",
|
||||
"key": "Klucz",
|
||||
"keyboardType": "Keyboard type",
|
||||
"keypair": "SSH Key Pair",
|
||||
"kvmnetworklabel": "KVM traffic label",
|
||||
"l2gatewayserviceuuid": "L2 Gateway Service Uuid",
|
||||
"l3gatewayserviceuuid": "L3 Gateway Service Uuid",
|
||||
"last_updated": "Last Update",
|
||||
"lastname": "Nazwisko",
|
||||
"lbType": "Load Balancer Type",
|
||||
"lbdevicecapacity": "Capacity",
|
||||
"lbdevicededicated": "Dedykowany",
|
||||
"lbdeviceid": "ID",
|
||||
"lbdevicename": "Wpisz",
|
||||
"lbdevicestate": "Status",
|
||||
"level": "Poziom",
|
||||
"limitcpuuse": "CPU Cap",
|
||||
"linklocalip": "Link Local IP Address",
|
||||
"loadbalancerinstance": "Assigned VMs",
|
||||
"loadbalancerrule": "Load balancing rule",
|
||||
"localstorageenabled": "Enable local storage for User VMs",
|
||||
"localstorageenabledforsystemvm": "Enable local storage for System VMs",
|
||||
"lun": "LUN #",
|
||||
"lxcnetworklabel": "LXC Traffic Label",
|
||||
"makeredundant": "Make redundant",
|
||||
"maxInstance": "Max Instances",
|
||||
"maxIops": "Max IOPS",
|
||||
"maxerrorretry": "Max Error Retry",
|
||||
"maxguestslimit": "Maksymalna liczba go\u015bci",
|
||||
"maxiops": "Max IOPS",
|
||||
"memallocated": "Mem Allocation",
|
||||
"memory": "Pami\u0119\u0107 (w MB)",
|
||||
"memoryLimit": "Limit pami\u0119ci (MiB)",
|
||||
"memoryallocated": "Memory Allocated",
|
||||
"memoryallocatedgb": "Allocated",
|
||||
"memorymaxdeviation": "Deviation",
|
||||
"memorytotal": "Allocated",
|
||||
"memorytotalgb": "Total",
|
||||
"memoryused": "U\u017cyte",
|
||||
"memoryusedgb": "U\u017cyte",
|
||||
"memused": "Mem Usage",
|
||||
"minInstance": "Min Instances",
|
||||
"minIops": "Min IOPS",
|
||||
"min_balance": "Min Balance",
|
||||
"miniops": "Min IOPS",
|
||||
"name": "Nazwa",
|
||||
"nat": "BigSwitch BCF NAT Enabled",
|
||||
"netmask": "Netmask",
|
||||
"network": "Sie\u0107",
|
||||
"networkDomain": "Network Domain",
|
||||
"networkLimit": "Network limits",
|
||||
"networkOfferingId": "Network Offering",
|
||||
"networkRate": "Network Rate (Mb/s)",
|
||||
"networkcidr": "Network CIDR",
|
||||
"networkdevicetype": "Wpisz",
|
||||
"networkdomain": "Network Domain",
|
||||
"networkdomaintext": "Network domain",
|
||||
"networkid": "Select Tier",
|
||||
"networkkbsread": "Network Read",
|
||||
"networkkbswrite": "Network Write",
|
||||
"networkname": "Nazwa sieci",
|
||||
"networkofferingdisplaytext": "Network Offering",
|
||||
"networkofferingid": "Network Offering",
|
||||
"networkofferingidText": "Network Offering ID",
|
||||
"networkofferingname": "Network Offering",
|
||||
"networkrate": "Network Rate (Mb/s)",
|
||||
"networkread": "Read",
|
||||
"networktype": "Network Type",
|
||||
"networkwrite": "Write",
|
||||
"newDiskOffering": "New Disk Offering",
|
||||
"newdiskoffering": "New Offering",
|
||||
"newsize": "New Size (GB)",
|
||||
"nfsCacheNfsServer": "S3 NFS Server",
|
||||
"nfsCachePath": "S3 NFS Path",
|
||||
"nfsCacheZoneid": "Zone",
|
||||
"nfsServer": "Serwer",
|
||||
"nicAdapterType": "NIC adapter type",
|
||||
"number": "#Rule",
|
||||
"numberOfRouterRequiresUpgrade": "Total of Virtual Routers that require upgrade",
|
||||
"numretries": "Number of Retries",
|
||||
"nvpdeviceid": "ID",
|
||||
"offerHA": "Offer HA",
|
||||
"offerha": "Offer HA",
|
||||
"osTypeId": "OS Type",
|
||||
"oscategoryid": "OS Preference",
|
||||
"ostypeid": "OS Type",
|
||||
"ostypename": "OS Type",
|
||||
"overrideguesttraffic": "Override Guest-Traffic",
|
||||
"overridepublictraffic": "Override Public-Traffic",
|
||||
"ovm3cluster": "Native Clustering",
|
||||
"ovm3networklabel": "OVM3 traffic label",
|
||||
"ovm3pool": "Native Pooling",
|
||||
"ovm3vip": "Master Vip IP",
|
||||
"ovmnetworklabel": "OVM traffic label",
|
||||
"palp": "Palo Alto Log Profile",
|
||||
"parentName": "Parent",
|
||||
"passive": "Passive",
|
||||
"password": "Has\u0142o",
|
||||
"password-confirm": "Potwierd\u017a has\u0142o",
|
||||
"passwordenabled": "Password Enabled",
|
||||
"path": "\u015acie\u017cka",
|
||||
"patp": "Palo Alto Threat Profile",
|
||||
"pavr": "Virtual Router",
|
||||
"pciDevice": "GPU",
|
||||
"perfectForwardSecrecy": "Perfect Forward Secrecy",
|
||||
"physicalNetworkId": "Physical Network",
|
||||
"physicalnetworkid": "Physical Network",
|
||||
"physicalsize": "Physical Size",
|
||||
"plannerMode": "Planner mode",
|
||||
"podId": "Pod",
|
||||
"podname": "Pod",
|
||||
"port": "Port",
|
||||
"portableipaddress": "Portable IPs",
|
||||
"powerstate": "Power State",
|
||||
"primaryStorageLimit": "Primary Storage limits (GiB)",
|
||||
"primarystoragetotal": "Primary Storage",
|
||||
"privateinterface": "Private Interface",
|
||||
"privateip": "Private IP Address",
|
||||
"privatekey": "Private Key",
|
||||
"privatenetwork": "Sie\u0107 prywatna",
|
||||
"privateport": "Private Port",
|
||||
"profiledn": "Associated Profile",
|
||||
"profilename": "Profile",
|
||||
"project": "Projekt",
|
||||
"projectId": "Projekt",
|
||||
"projectid": "Nazwa ID projektu",
|
||||
"projects": "Projekty",
|
||||
"property": "Property",
|
||||
"protocol": "Protok\u00f3\u0142",
|
||||
"protocolnumber": "#Protocol",
|
||||
"provider": "Provider",
|
||||
"providername": "Provider",
|
||||
"provisioningType": "Provisioning Type",
|
||||
"provisioningtype": "Provisioning Type",
|
||||
"publicinterface": "Public Interface",
|
||||
"publicip": "IP Address",
|
||||
"publickey": "Public Key",
|
||||
"publicnetwork": "Sie\u0107 publiczna",
|
||||
"publicport": "Publiczny port",
|
||||
"purpose": "Purpose",
|
||||
"qosType": "QoS Type",
|
||||
"quiescevm": "Quiesce VM",
|
||||
"quietTime": "Quiet Time (in sec)",
|
||||
"quota": "Quota Value",
|
||||
"quota_enforce": "Enforce Quota",
|
||||
"rbdid": "Cephx user",
|
||||
"rbdmonitor": "Ceph monitor",
|
||||
"rbdpool": "Ceph pool",
|
||||
"rbdsecret": "Cephx secret",
|
||||
"reason": "Reason",
|
||||
"receivedbytes": "Bytes Received",
|
||||
"redundantRouterState": "Redundant state",
|
||||
"redundantrouter": "Redundant Router",
|
||||
"redundantstate": "Redundant state",
|
||||
"redundantvpcrouter": "Redundant VPC",
|
||||
"reenterpassword": "Re-enter Password",
|
||||
"relationaloperator": "Operator",
|
||||
"requireshvm": "HVM",
|
||||
"requiresupgrade": "Requires Upgrade",
|
||||
"reservedSystemEndIp": "End Reserved system IP",
|
||||
"reservedSystemGateway": "Reserved system gateway",
|
||||
"reservedSystemNetmask": "Reserved system netmask",
|
||||
"reservedSystemStartIp": "Start Reserved system IP",
|
||||
"reservediprange": "Reserved IP Range",
|
||||
"resourceid": "Resource ID",
|
||||
"resourcename": "Resource Name",
|
||||
"resourcestate": "Resource state",
|
||||
"restartrequired": "Wymagany restart",
|
||||
"role": "Role",
|
||||
"rolename": "Role",
|
||||
"roletype": "Role Type",
|
||||
"rootDiskControllerType": "Root disk controller",
|
||||
"rootDiskControllerTypeKVM": "Root disk controller",
|
||||
"routerCount": "Total of Virtual Routers",
|
||||
"routerRequiresUpgrade": "Upgrade is required",
|
||||
"routerType": "Wpisz",
|
||||
"samlEnable": "Authorize SAML SSO",
|
||||
"samlEntity": "Identity Provider",
|
||||
"scope": "Scope",
|
||||
"secondaryStorageLimit": "Secondary Storage limits (GiB)",
|
||||
"secondaryips": "Secondary IPs",
|
||||
"secretkey": "Secret Key",
|
||||
"securityGroups": "Security Groups",
|
||||
"securitygroup": "Security Group",
|
||||
"sent": "Data",
|
||||
"sentbytes": "Bytes Sent",
|
||||
"server": "Serwer",
|
||||
"service.Connectivity.distributedRouterCapabilityCheckbox": "Distributed Router",
|
||||
"service.Connectivity.regionLevelVpcCapabilityCheckbox": "Region Level VPC",
|
||||
"service.Lb.elasticLbCheckbox": "Elastic LB",
|
||||
"service.Lb.inlineModeDropdown": "Tryb",
|
||||
"service.Lb.lbIsolationDropdown": "LB isolation",
|
||||
"service.SourceNat.redundantRouterCapabilityCheckbox": "Redundant router capability",
|
||||
"service.SourceNat.sourceNatTypeDropdown": "Supported Source NAT type",
|
||||
"service.StaticNat.associatePublicIP": "Associate Public IP",
|
||||
"service.StaticNat.elasticIpCheckbox": "Zmienne IP",
|
||||
"serviceCapabilities": "Service Capabilities",
|
||||
"serviceOfferingId": "Compute offering",
|
||||
"servicelist": "Services",
|
||||
"serviceofferingid": "Compute offering",
|
||||
"serviceofferingname": "Compute offering",
|
||||
"shrinkok": "Shrink OK",
|
||||
"size": "Wielko\u015bc",
|
||||
"sizegb": "Wielko\u015bc",
|
||||
"smbDomain": "SMB Domain",
|
||||
"smbPassword": "SMB Password",
|
||||
"smbUsername": "SMB Username",
|
||||
"snapshotLimit": "Snapshot Limits",
|
||||
"snapshotMemory": "Snapshot memory",
|
||||
"snmpCommunity": "SNMP Community",
|
||||
"snmpPort": "SNMP Port",
|
||||
"sockettimeout": "Socket Timeout",
|
||||
"sourceNat": "Source NAT",
|
||||
"sourceipaddress": "Source IP Address",
|
||||
"sourceport": "Source Port",
|
||||
"specifyVlan": "Specify VLAN",
|
||||
"specifyipranges": "Wyszczeg\u00f3lnij zasi\u0119g adres\u00f3w IP",
|
||||
"specifyvlan": "Specify VLAN",
|
||||
"sshkeypair": "New SSH Key Pair",
|
||||
"startdate": "Start Date",
|
||||
"startip": "IPv4 Start IP",
|
||||
"startipv4": "IPv4 Start IP",
|
||||
"startipv6": "IPv6 Start IP",
|
||||
"startport": "Start Port",
|
||||
"startquota": "Quota Value",
|
||||
"state": "Status",
|
||||
"status": "Status",
|
||||
"storage": "Storage",
|
||||
"storageId": "Primary Storage",
|
||||
"storagePool": "Storage Pool",
|
||||
"storageTags": "Storage Tags",
|
||||
"storageType": "Storage Type",
|
||||
"storagetype": "Storage Type",
|
||||
"subdomainaccess": "Subdomain Access",
|
||||
"supportedServices": "Supported Services",
|
||||
"supportspublicaccess": "Supports Public Access",
|
||||
"supportsregionLevelvpc": "Supports Region Level VPC",
|
||||
"supportsstrechedl2subnet": "Supports Streched L2 Subnet",
|
||||
"systemvmtype": "Wpisz",
|
||||
"tags": "Storage Tags",
|
||||
"tariffValue": "Tariff Value",
|
||||
"template": "Select a template",
|
||||
"templateFileUpload": "Local file",
|
||||
"templateLimit": "Template Limits",
|
||||
"templateNames": "Template",
|
||||
"templatebody": "Body",
|
||||
"templatedn": "Select Template",
|
||||
"templatename": "Template",
|
||||
"templatesubject": "Subject",
|
||||
"templatetotal": "Template",
|
||||
"templatetype": "Email Template",
|
||||
"tftpdir": "Tftp root directory",
|
||||
"threshold": "Threshold",
|
||||
"tierName": "Tier",
|
||||
"timeout": "Timeout",
|
||||
"timezone": "Strefa czasowa",
|
||||
"token": "Token",
|
||||
"totalCPU": "Total CPU",
|
||||
"traffictype": "Traffic Type",
|
||||
"transportzoneuuid": "Transport Zone Uuid",
|
||||
"type": "Wpisz",
|
||||
"unit": "Usage Unit",
|
||||
"url": "URL",
|
||||
"usageName": "Usage Type",
|
||||
"usageUnit": "Unit",
|
||||
"usageinterface": "Usage Interface",
|
||||
"useNewDiskOffering": "Replace disk offering?",
|
||||
"useVpc": "VPC",
|
||||
"usehttps": "Use HTTPS",
|
||||
"userDataL2": "User Data",
|
||||
"username": "Nazwa u\u017cytkownika",
|
||||
"utilization": "Utilisation",
|
||||
"uuid": "ID",
|
||||
"vCenterDataCenter": "vCenter Datacenter",
|
||||
"vCenterDataStore": "vCenter Datastore",
|
||||
"vCenterDatacenter": "vCenter Datacenter",
|
||||
"vCenterHost": "vCenter Host",
|
||||
"vCenterPassword": "vCenter Password",
|
||||
"vCenterUsername": "vCenter Username",
|
||||
"vSwitchGuestName": "Guest Traffic vSwitch Name",
|
||||
"vSwitchGuestType": "Guest Traffic vSwitch Type",
|
||||
"vSwitchPublicName": "Public Traffic vSwitch Name",
|
||||
"vSwitchPublicType": "Public Traffic vSwitch Type",
|
||||
"value": "Credits",
|
||||
"vcenter": "VMware datacenter vcenter",
|
||||
"vcenterHost": "ESX/ESXi Host",
|
||||
"vcsdeviceid": "ID",
|
||||
"version": "Wersja",
|
||||
"vgpu": "VGPU",
|
||||
"vgpuType": "vGPU type",
|
||||
"virtualMachineId": "Instance",
|
||||
"virtualmachinedisplayname": "Nazwa VM",
|
||||
"virtualmachineid": "VM ID",
|
||||
"virtualsize": "Virtual Size",
|
||||
"vlan": "VLAN",
|
||||
"vlanId": "VLAN/VNI ID",
|
||||
"vlanRange": "VLAN/VNI Range",
|
||||
"vlanname": "VLAN",
|
||||
"vlanrange": "VLAN/VNI Range",
|
||||
"vmLimit": "Instance Limits",
|
||||
"vmTotal": "Instancje",
|
||||
"vmdisplayname": "VM display name",
|
||||
"vmipaddress": "VM IP Address",
|
||||
"vmname": "VM Name",
|
||||
"vmstate": "VM state",
|
||||
"vmtotal": "Total of VMs",
|
||||
"vmwaredcId": "VMware datacenter ID",
|
||||
"vmwaredcName": "VMware datacenter Name",
|
||||
"vmwaredcVcenter": "VMware datacenter vcenter",
|
||||
"vmwarenetworklabel": "VMware traffic label",
|
||||
"volume": "Volume",
|
||||
"volumeFileUpload": "Local file",
|
||||
"volumeLimit": "Volume Limits",
|
||||
"volumeTotal": "Volumes",
|
||||
"volumegroup": "Volume Group",
|
||||
"volumename": "Volume Name",
|
||||
"volumetotal": "Volume",
|
||||
"vpcLimit": "VPC limits",
|
||||
"vpcid": "VPC ID",
|
||||
"vpcname": "VPC",
|
||||
"vpcoffering": "VPC Offering",
|
||||
"vpncustomergatewayid": "VPN Customer Gateway",
|
||||
"vsmctrlvlanid": "Control VLAN ID",
|
||||
"vsmdeviceid": "Nazwa",
|
||||
"vsmdevicestate": "Status",
|
||||
"vsmipaddress": "Nexus 1000v IP Address",
|
||||
"vsmipaddress_req": "Nexus 1000v IP Address",
|
||||
"vsmpassword": "Nexus 1000v Password",
|
||||
"vsmpassword_req": "Nexus 1000v Password",
|
||||
"vsmpktvlanid": "Packet VLAN ID",
|
||||
"vsmstoragevlanid": "Storage VLAN ID",
|
||||
"vsmusername": "Nexus 1000v Username",
|
||||
"vsmusername_req": "Nexus 1000v Username",
|
||||
"xennetworklabel": "XenServer traffic label",
|
||||
"xenserverToolsVersion61plus": "Original XS Version is 6.1+",
|
||||
"zone": "Zone",
|
||||
"zoneId": "Zone",
|
||||
"zoneid": "Zone",
|
||||
"zonename": "Zone"
|
||||
}
|
||||
|
|
@ -0,0 +1,638 @@
|
|||
{
|
||||
"Accounts": "Contas",
|
||||
"Affinity Groups": "Grupos de Afinidade",
|
||||
"Alerts": "Alertas",
|
||||
"CPU Sockets": "Sockets",
|
||||
"Cloudian Storage": "Cloudian Storage",
|
||||
"Clusters": "Clusters",
|
||||
"Compute": "Computa\u00e7\u00e3o",
|
||||
"Compute Offerings": "Oferta de Computa\u00e7\u00e3o",
|
||||
"Configuration": "Configura\u00e7\u00e3o",
|
||||
"Dashboard": "Dashboard",
|
||||
"Disk Offerings": "Oferta de Discos",
|
||||
"Domains": "Domains",
|
||||
"Events": "Eventos",
|
||||
"Global Settings": "Configura\u00e7\u00f5es Globais",
|
||||
"Hosts": "Hosts",
|
||||
"Hypervisor Capabilities": "Recursos de Virtualizador",
|
||||
"ISOs": "ISOs",
|
||||
"Identity and Access": "Identity and Access",
|
||||
"Infrastructure": "Infra-estrutura",
|
||||
"Instances": "Inst\u00e2ncias",
|
||||
"LDAP Configuration": "Configura\u00e7\u00e3o do LDAP",
|
||||
"Management Servers": "Management Servers",
|
||||
"Monitor": "Monitor",
|
||||
"Network": "Rede",
|
||||
"Network Offerings": "Oferta de Rede",
|
||||
"Plugins": "Plugins",
|
||||
"Pods": "Pods",
|
||||
"Primary Storage": "Storage Prim\u00e1rio",
|
||||
"Projects": "Projetos",
|
||||
"Public IP Addresses": "IPs P\u00fablicos",
|
||||
"Public network": "Rede P\u00fablica",
|
||||
"Quota": "Quota",
|
||||
"RESOURCE_NAME": "Nome do Recurso",
|
||||
"Roles": "Roles",
|
||||
"SSH Key Pairs": "Par de chaves SSH",
|
||||
"Secondary Storage": "Storage Secund\u00e1rio",
|
||||
"Security Groups": "Grupos de seguran\u00e7a",
|
||||
"Snapshots": "Snapshots",
|
||||
"Storage": "Storage",
|
||||
"System Offerings": "Ofertas do Sistema",
|
||||
"System VMs": "VM de Sistemas",
|
||||
"Templates": "Templates",
|
||||
"Users": "Usu\u00e1rios",
|
||||
"VM Snapshots": "Snapshot da VM",
|
||||
"VPC": "VPC",
|
||||
"VPC Offerings": "Ofertas VPC",
|
||||
"VPN Gateway": "Gateway de VPN",
|
||||
"Virtual Routers": "Roteadores Virtuais",
|
||||
"Volumes": "Discos",
|
||||
"Zones": "Zonas",
|
||||
"accesskey": "Chave de acesso",
|
||||
"account": "Conta",
|
||||
"accountId": "Conta",
|
||||
"accountTotal": "Contas",
|
||||
"accountlist": "Contas",
|
||||
"accounts": "Contas",
|
||||
"accounttype": "Tipo de Conta",
|
||||
"aclTotal": "Total de rede ACL",
|
||||
"aclid": "ACL",
|
||||
"aclname": "Nome da ACL",
|
||||
"action": "A\u00e7\u00e3o",
|
||||
"activeviewersessions": "Sess\u00f5es Ativas",
|
||||
"add-scaleDowncondition": "Adicionar",
|
||||
"add-scaleUpcondition": "Adicionar",
|
||||
"address": "Endere\u00e7o",
|
||||
"admin": "Administrador de Dom\u00ednio",
|
||||
"agentPassword": "Senha do Agente",
|
||||
"agentPort": "Porta do Agente",
|
||||
"agentUsername": "Usu\u00e1rio do Agente",
|
||||
"agentstate": "Estado do Agente",
|
||||
"algorithm": "Algoritmo",
|
||||
"allocationstate": "Status da Aloca\u00e7\u00e3o",
|
||||
"apikey": "API Key",
|
||||
"associatednetworkid": "ID de Rede Associado",
|
||||
"associatednetworkname": "Nome da Rede",
|
||||
"availability": "Availability",
|
||||
"availabilityZone": "Datacenter",
|
||||
"balance": "Saldo",
|
||||
"baremetalCpu": "CPU (em MHz)",
|
||||
"baremetalCpuCores": "# de Core CPU",
|
||||
"baremetalMAC": "Host MAC",
|
||||
"baremetalMemory": "Mem\u00f3ria (em MB)",
|
||||
"bcfdeviceid": "ID",
|
||||
"bladeid": "ID da L\u00e2mina",
|
||||
"bootable": "Inicializ\u00e1vel",
|
||||
"broadcastdomainrange": "Range do dom\u00ednio de Broadcast",
|
||||
"broadcastdomaintype": "Tipo de Dom\u00ednio Broadcast",
|
||||
"broadcasturi": "URI de broadcast",
|
||||
"bucket": "Balde",
|
||||
"cacheMode": "Tipo do cache de escrita",
|
||||
"capacity": "Capacidade",
|
||||
"capacityBytes": "Capacidade de Bytes",
|
||||
"capacityIops": "Capacidade de IOPS",
|
||||
"capacityiops": "IOPS Total",
|
||||
"chassis": "Chassis",
|
||||
"checksum": "checksum",
|
||||
"cidr": "CIDR",
|
||||
"cidrlist": "Lista CIDR",
|
||||
"cleanup": "Limpar",
|
||||
"clusterId": "Cluster",
|
||||
"clusterid": "Cluster",
|
||||
"clustername": "Cluster",
|
||||
"clusters": "Clusters",
|
||||
"clustertype": "Tipo de Cluster",
|
||||
"connectiontimeout": "Tempo limite de conex\u00e3o",
|
||||
"conservemode": "Modo Conservativo",
|
||||
"counterid": "Contador",
|
||||
"cpuCap": "CPU Cap",
|
||||
"cpuLimit": "Limite de CPU",
|
||||
"cpuNumber": "# de Core CPU",
|
||||
"cpuSpeed": "CPU (em MHz)",
|
||||
"cpuallocated": "CPU Alocada por VMs",
|
||||
"cpuallocatedghz": "Alocado",
|
||||
"cpumaxdeviation": "Desvio",
|
||||
"cpunumber": "# de Core CPU",
|
||||
"cpusockets": "O N\u00famero de Sockets de CPU",
|
||||
"cpuspeed": "CPU (em MHz)",
|
||||
"cputotal": "Total",
|
||||
"cputotalghz": "Total",
|
||||
"cpuused": "CPU Utilizada",
|
||||
"cpuusedghz": "Usado",
|
||||
"createNfsCache": "Cria Armazenamento NFS de Est\u00e1gio Secund\u00e1rio",
|
||||
"created": "Data",
|
||||
"credit": "Cru00e9dito",
|
||||
"crossZones": "Inter Zonas",
|
||||
"current": "isCurrent",
|
||||
"date": "Data",
|
||||
"dedicated": "Dedicado",
|
||||
"deleteprofile": "Apaga Perfil",
|
||||
"deploymentPlanner": "Deployment planejado",
|
||||
"deploymentplanner": "Deployment planejado",
|
||||
"description": "Descri\u00e7\u00e3o",
|
||||
"destinationZoneId": "Zona de Destino",
|
||||
"destinationphysicalnetworkid": "ID de destino da rede f\u00edsica",
|
||||
"destroyVMgracePeriod": "Destruir Grace Period da VM",
|
||||
"details": "Detalhes",
|
||||
"deviceid": "ID do Dispositivo",
|
||||
"directdownload": "Direct Download",
|
||||
"disconnected": "Last Disconnected",
|
||||
"disk": "Disco",
|
||||
"diskBytesReadRate": "Taxa de Leitura do Disco (BPS)",
|
||||
"diskBytesWriteRate": "Taxa de Escrita no Disco (BPS)",
|
||||
"diskIopsReadRate": "Taxa de Leitura do Disco (IOPS)",
|
||||
"diskIopsWriteRate": "Taxa de Escrita no Disco (IOPS)",
|
||||
"diskOffering": "Oferta de Disco",
|
||||
"diskOfferingId": "Oferta de Discos",
|
||||
"diskSize": "Tamanho (em GB)",
|
||||
"diskiopstotal": "IOPS",
|
||||
"diskioread": "Leitura do Disk (I/O)",
|
||||
"diskiowrite": "Escrita no Disco (I/O)",
|
||||
"diskkbsread": "Leitura do Disco (Bytes)",
|
||||
"diskkbswrite": "Escrita no Disco (Bytes)",
|
||||
"diskofferingdisplaytext": "Oferta de Disco",
|
||||
"disksize": "Tamanho (em GB)",
|
||||
"disksizeallocated": "Disco Alocado",
|
||||
"disksizeallocatedgb": "Alocado",
|
||||
"disksizetotal": "Disco Total",
|
||||
"disksizetotalgb": "Total",
|
||||
"disksizeunallocatedgb": "N\u00e3o alocado",
|
||||
"disksizeusedgb": "Usado",
|
||||
"displayText": "Descri\u00e7\u00e3o",
|
||||
"displayname": "Mostrar Nome",
|
||||
"displaytext": "Descri\u00e7\u00e3o",
|
||||
"distributedvpcrouter": "Roteador VPC Distribuido",
|
||||
"dns1": "DNS 1",
|
||||
"dns2": "DNS 2",
|
||||
"domain": "Dom\u00ednio",
|
||||
"domainId": "Dom\u00ednio",
|
||||
"domainid": "Dom\u00ednio",
|
||||
"domainname": "Dom\u00ednio",
|
||||
"domainpath": "Dom\u00ednio",
|
||||
"dpd": "Detec\u00e7\u00e3o de correspondente morto",
|
||||
"driver": "Driver",
|
||||
"egressdefaultpolicy": "Pol\u00edtica de Entrada Padr\u00e3o",
|
||||
"email": "Email",
|
||||
"enddate": "Data de Fim",
|
||||
"endip": "IP FInal IPv4",
|
||||
"endipv4": "IP FInal IPv4",
|
||||
"endipv6": "IP FInal IPv6",
|
||||
"endpoint": "Ponto de acesso",
|
||||
"endport": "Porta Final",
|
||||
"espEncryption": "Encripta\u00e7\u00e3o ESP",
|
||||
"espHash": "Hash ESP",
|
||||
"esplifetime": "Tempo de vida do ESP (segundos)",
|
||||
"esppolicy": "Pol\u00edtica ESP",
|
||||
"expunge": "Eliminar",
|
||||
"fingerprint": "Impress\u00e3o Digital",
|
||||
"firstname": "Primeiro Nome",
|
||||
"forced": "For\u00e7ar Parada",
|
||||
"forceencap": "For\u00e7ar encapsulamento UDP de pacotes ESP",
|
||||
"format": "Formato",
|
||||
"fwdevicecapacity": "Capacidade",
|
||||
"fwdeviceid": "ID",
|
||||
"fwdevicename": "Tipo",
|
||||
"fwdevicestate": "Estado",
|
||||
"gateway": "Gateway",
|
||||
"glustervolume": "Disco",
|
||||
"group": "Grupo",
|
||||
"gslbdomainname": "Nome do Dom\u00ednio GSLB",
|
||||
"gslblbmethod": "Algoritmo",
|
||||
"gslbprovider": "Servi\u00e7o GSLB",
|
||||
"gslbproviderprivateip": "Servi\u00e7o GSLB - IP Privado",
|
||||
"gslbproviderpublicip": "GSLB atende IP P\u00fablico",
|
||||
"gslbservicetype": "Tipo do Servi\u00e7o",
|
||||
"guestEndIp": "IP do fim do guest",
|
||||
"guestGateway": "Gateway de rede Convidado",
|
||||
"guestIpType": "Tipo de Guest",
|
||||
"guestNetmask": "M\u00e1scara de rede Guest",
|
||||
"guestStartIp": "IP de in\u00edcio do guest",
|
||||
"guestcidraddress": "CIDR de rede Convidado",
|
||||
"guestipaddress": "Endere\u00e7o IP Convidado",
|
||||
"guestiptype": "Tipo de Guest",
|
||||
"guestnetworkid": "ID de Rede",
|
||||
"guestnetworkname": "Nome da Rede",
|
||||
"guestosid": "Tipo de SO",
|
||||
"guestvlanrange": "Range(s) de VLAN",
|
||||
"haenable": "HA Ativado",
|
||||
"hahost": "HA Ativado",
|
||||
"host": "Endere\u00e7o IP",
|
||||
"hostId": "Host",
|
||||
"hostTags": "Tags de Host",
|
||||
"hostname": "Host Name",
|
||||
"hosts": "Hosts",
|
||||
"hosttags": "Tags de Host",
|
||||
"hypervisor": "Hipervisor",
|
||||
"hypervisorSnapshotReserve": "Reserva de Snapshot do Hypervisor",
|
||||
"hypervisorsnapshotreserve": "Reserva de Snapshot do Hypervisor",
|
||||
"hypervisortype": "Hipervisor",
|
||||
"hypervisorversion": "Vers\u00e3o de Virtualizador",
|
||||
"hypervnetworklabel": "R\u00f3tulo de tr\u00e1fego HyperV",
|
||||
"icmpcode": "C\u00f3digo ICMP",
|
||||
"icmptype": "Tipo ICMP",
|
||||
"id": "ID",
|
||||
"ikeDh": "DH IKE",
|
||||
"ikeEncryption": "Encripta\u00e7\u00e3o IKE",
|
||||
"ikeHash": "Hash IKE",
|
||||
"ikelifetime": "Tempo de vida IKE (segundos)",
|
||||
"ikepolicy": "Pol\u00edtica IKE",
|
||||
"insideportprofile": "Perfil de Porta Interna",
|
||||
"instancename": "Nome interno",
|
||||
"instanceport": "Instanciar Porta",
|
||||
"instances": "Inst\u00e2ncias",
|
||||
"internaldns1": "DNS 1 Interno",
|
||||
"internaldns2": "DNS 2 Interno",
|
||||
"interval": "Intervalo de Polling (em seg)",
|
||||
"intervaltype": "Tipo de Intervalo",
|
||||
"ip": "Endere\u00e7o IP",
|
||||
"ip4Netmask": "M\u00e1scara de Rede IPv4",
|
||||
"ip4dns1": "IPv4 DNS1",
|
||||
"ip4dns2": "IPv4 DNS2",
|
||||
"ip4gateway": "Gateway IPV4",
|
||||
"ip6address": "Endere\u00e7o IPv6",
|
||||
"ip6cidr": "CIDR IPv6",
|
||||
"ip6dns1": "IPv6 DNS1",
|
||||
"ip6dns2": "IPv6 DNS2",
|
||||
"ip6gateway": "Gateway IPv6",
|
||||
"ipLimit": "Limites de IP P\u00fablico",
|
||||
"ipaddress": "Endere\u00e7o IP",
|
||||
"ipaddress1": "Endere\u00e7o IP",
|
||||
"ipaddress2": "Endere\u00e7o IP",
|
||||
"ipsecpsk": "Chave IPSec pr\u00e9 compartilhada",
|
||||
"iptotal": "Total de Endere\u00e7os IPs",
|
||||
"iqn": "Target IQN",
|
||||
"isAdvanced": "Mostra ajustes avan\u00e7ados",
|
||||
"isBootable": "Inicializ\u00e1vel",
|
||||
"isCustomized": "Tamanho Customizado",
|
||||
"isCustomizedIops": "IOPS personalizado",
|
||||
"isDedicated": "Dedicado",
|
||||
"isExtractable": "Extra\u00edvel",
|
||||
"isFeatured": "Featured",
|
||||
"isForced": "For\u00e7ar Remo\u00e7\u00e3o",
|
||||
"isManaged": "Gerenciado",
|
||||
"isPasswordEnabled": "Senha Ativada",
|
||||
"isPersistent": "Persistente",
|
||||
"isPublic": "P\u00fablico",
|
||||
"isVolatile": "Vol\u00e1til",
|
||||
"iscustomized": "Tamanho Customizado",
|
||||
"iscustomizediops": "IOPS personalizado",
|
||||
"isdedicated": "Dedicado",
|
||||
"isdefault": "\u00c9\u0089 Padr\u00e3o",
|
||||
"isdynamicallyscalable": "Dinamicamente Escal\u00e1vel",
|
||||
"isextractable": "extra\u00edvel",
|
||||
"isfeatured": "Featured",
|
||||
"iso": "ISO",
|
||||
"isolatedpvlanId": "ID de VLAN Secund\u00e1ria Isolada",
|
||||
"isolationmethods": "M\u00e9todo de isolamento",
|
||||
"isolationuri": "URI de isolamento",
|
||||
"isoname": "Imagem ISO Plugada",
|
||||
"ispersistent": "Persistente",
|
||||
"isportable": "Inter Zonas",
|
||||
"ispublic": "P\u00fablico",
|
||||
"isready": "Pronto",
|
||||
"isredundantrouter": "Roteador Redundantee",
|
||||
"isrouting": "Roteamento",
|
||||
"issourcenat": "Source NAT",
|
||||
"isstaticnat": "NAT Est\u00e1tico",
|
||||
"issystem": "\u00e9 um sistema",
|
||||
"isvolatile": "Vol\u00e1til",
|
||||
"key": "Chave",
|
||||
"keyboardType": "Tipo de Teclado",
|
||||
"keypair": "Par de chaves SSH",
|
||||
"kvmnetworklabel": "Etiqueta de tr\u00e1fego KVM",
|
||||
"l2gatewayserviceuuid": "Uuid do Servi\u00e7o de Gateway L2",
|
||||
"l3gatewayserviceuuid": "Uuid do Servi\u00e7o de Gateway L3",
|
||||
"last_updated": "u00daltima atualizau00e7u00e3o",
|
||||
"lastname": "\u00daltimo Nome",
|
||||
"lbType": "Tipo de Balanceamento de Carga",
|
||||
"lbdevicecapacity": "Capacidade",
|
||||
"lbdevicededicated": "Dedicado",
|
||||
"lbdeviceid": "ID",
|
||||
"lbdevicename": "Tipo",
|
||||
"lbdevicestate": "Estado",
|
||||
"level": "N\u00edvel",
|
||||
"limitcpuuse": "CPU Cap",
|
||||
"linklocalip": "Endere\u00e7o IP do Link Local",
|
||||
"loadbalancerinstance": "VMs designadas",
|
||||
"loadbalancerrule": "Regra de balanceamento de carga",
|
||||
"localstorageenabled": "Habilitar storage local para VMs de usu\u00e1rios",
|
||||
"localstorageenabledforsystemvm": "Habilitar storage local para VMs de Sistema",
|
||||
"lun": "LUN #",
|
||||
"lxcnetworklabel": "R\u00f3tulo de tr\u00e1fego LXC",
|
||||
"makeredundant": "Deixar redundante",
|
||||
"maxInstance": "Inst\u00e2ncias Max",
|
||||
"maxIops": "M\u00e1x IOPS",
|
||||
"maxerrorretry": "Limite de tentativas de recupera\u00e7\u00e3o de erro",
|
||||
"maxguestslimit": "Limite m\u00e1x. de guest",
|
||||
"maxiops": "M\u00e1x IOPS",
|
||||
"memallocated": "Aloca\u00e7\u00e3o de Mem\u00f3ria",
|
||||
"memory": "Mem\u00f3ria (em MB)",
|
||||
"memoryLimit": "Limites de mem\u00f3ria (MiB)",
|
||||
"memoryallocated": "Mem\u00f3ria Alocada",
|
||||
"memoryallocatedgb": "Alocado",
|
||||
"memorymaxdeviation": "Desvio",
|
||||
"memorytotal": "Alocado",
|
||||
"memorytotalgb": "Total",
|
||||
"memoryused": "Usado",
|
||||
"memoryusedgb": "Usado",
|
||||
"memused": "Utiliza\u00e7\u00e3o de Mem\u00f3ria",
|
||||
"minInstance": "Inst\u00e2ncias Min",
|
||||
"minIops": "M\u00edn IOPS",
|
||||
"min_balance": "Saldo Mu00ednimo",
|
||||
"miniops": "M\u00edn IOPS",
|
||||
"name": "Nome",
|
||||
"nat": "Habilitar BigSwitch BCF NAT",
|
||||
"netmask": "M\u00e1scara de Rede",
|
||||
"network": "Rede",
|
||||
"networkDomain": "Dom\u00ednio de Rede",
|
||||
"networkLimit": "Limites de rede",
|
||||
"networkOfferingId": "Network Offering",
|
||||
"networkRate": "Taxa de Transfer\u00eancia",
|
||||
"networkcidr": "CIDR da Rede",
|
||||
"networkdevicetype": "Tipo",
|
||||
"networkdomain": "Dom\u00ednio de Rede",
|
||||
"networkdomaintext": "Texto do dom\ufffdnio de rede",
|
||||
"networkid": "Selecione camada",
|
||||
"networkkbsread": "Network Read",
|
||||
"networkkbswrite": "Network Write",
|
||||
"networkname": "Nome da Rede",
|
||||
"networkofferingdisplaytext": "Network Offering",
|
||||
"networkofferingid": "Network Offering",
|
||||
"networkofferingidText": "Network Offering ID",
|
||||
"networkofferingname": "Network Offering",
|
||||
"networkrate": "Taxa de Transfer\u00eancia",
|
||||
"networkread": "Leitura",
|
||||
"networktype": "Tipo de Rede",
|
||||
"networkwrite": "Escrita",
|
||||
"newDiskOffering": "Nova oferta de disco",
|
||||
"newdiskoffering": "New Offering",
|
||||
"newsize": "Novo Tamanho (GB)",
|
||||
"nfsCacheNfsServer": "Servidor NFS S3",
|
||||
"nfsCachePath": "Caminho NFS S3",
|
||||
"nfsCacheZoneid": "Zona",
|
||||
"nfsServer": "Servidor",
|
||||
"nicAdapterType": "Tipo de adaptador de Rede",
|
||||
"number": "#Regra",
|
||||
"numberOfRouterRequiresUpgrade": "Total de Roteadores Virtuais que requerem atualiza\u00e7\u00e3o",
|
||||
"numretries": "N\u00famero de Tentativas",
|
||||
"nvpdeviceid": "ID",
|
||||
"offerHA": "Offer HA",
|
||||
"offerha": "Offer HA",
|
||||
"osTypeId": "Tipo de SO",
|
||||
"oscategoryid": "Prefer\u00eancia de SO",
|
||||
"ostypeid": "Tipo de SO",
|
||||
"ostypename": "Tipo de SO",
|
||||
"overrideguesttraffic": "Anula Tr\u00e1fego Convidado",
|
||||
"overridepublictraffic": "Sobrep\u00f5e Tr\u00e1fego P\u00fablico",
|
||||
"ovm3cluster": "Native Clustering",
|
||||
"ovm3networklabel": "Label de trafego OVM3",
|
||||
"ovm3pool": "Native Pooling",
|
||||
"ovm3vip": "IP principal do Vip",
|
||||
"ovmnetworklabel": "R\u00f3tulo de tr\u00e1fego OVM",
|
||||
"palp": "Palo Alto Log Profile",
|
||||
"parentName": "Pai",
|
||||
"passive": "Passivo",
|
||||
"password": "Senha",
|
||||
"password-confirm": "Confirme a senha",
|
||||
"passwordenabled": "Senha Ativada",
|
||||
"path": "Caminho (Path)",
|
||||
"patp": "Palo Alto Threat Profile",
|
||||
"pavr": "Roteador Virtual",
|
||||
"pciDevice": "GPU",
|
||||
"perfectForwardSecrecy": "Perfect Forward Secrecy",
|
||||
"physicalNetworkId": "Rede F\u00edsica",
|
||||
"physicalnetworkid": "Rede F\u00edsica",
|
||||
"physicalsize": "Physical Size",
|
||||
"plannerMode": "Modo planejado",
|
||||
"podId": "POD",
|
||||
"podname": "POD",
|
||||
"port": "Porta",
|
||||
"portableipaddress": "IPs Port\u00e1veis",
|
||||
"powerstate": "Power State",
|
||||
"primaryStorageLimit": "Limites do Storage Prim\u00e1rio (GiB)",
|
||||
"primarystoragetotal": "Storage Prim\u00e1rio",
|
||||
"privateinterface": "Interface Privada",
|
||||
"privateip": "Endere\u00e7o IP Privado",
|
||||
"privatekey": "Chave privada",
|
||||
"privatenetwork": "Rede Privada",
|
||||
"privateport": "Porta Privada",
|
||||
"profiledn": "Perfil Associado",
|
||||
"profilename": "Perfil",
|
||||
"project": "Projeto",
|
||||
"projectId": "Projeto",
|
||||
"projectid": "ID de Projeto",
|
||||
"projects": "Projetos",
|
||||
"property": "Propriedade",
|
||||
"protocol": "Protocolo",
|
||||
"protocolnumber": "#Protocolo",
|
||||
"provider": "Provedor",
|
||||
"providername": "Provedor",
|
||||
"provisioningType": "Tipo de Provisionamento",
|
||||
"provisioningtype": "Tipo de Provisionamento",
|
||||
"publicinterface": "Interface P\u00fablica",
|
||||
"publicip": "Endere\u00e7o IP",
|
||||
"publickey": "Chave p\u00fablica",
|
||||
"publicnetwork": "Rede P\u00fablica",
|
||||
"publicport": "Porta P\u00fablica",
|
||||
"purpose": "Prop\u00f3sito",
|
||||
"qosType": "Tipo de QoS",
|
||||
"quiescevm": "Quiesce VM",
|
||||
"quietTime": "Tempo Silencioso (em seg)",
|
||||
"quota": "Valor",
|
||||
"quota_enforce": "Bloquear Conta pu00f3s Limite",
|
||||
"rbdid": "Usu\u00e1rio Ceph",
|
||||
"rbdmonitor": "Monitor Ceph",
|
||||
"rbdpool": "Pool Ceph",
|
||||
"rbdsecret": "Cephx secret",
|
||||
"reason": "Motivo",
|
||||
"receivedbytes": "Bytes Recebidos",
|
||||
"redundantRouterState": "Estado redundante",
|
||||
"redundantrouter": "Roteador Redundantee",
|
||||
"redundantstate": "Estado redundante",
|
||||
"redundantvpcrouter": "VPC Redundante",
|
||||
"reenterpassword": "Re-enter Password",
|
||||
"relationaloperator": "Operador",
|
||||
"requireshvm": "HVM",
|
||||
"requiresupgrade": "Requer Atualiza\u00e7\u00e3o",
|
||||
"reservedSystemEndIp": "Fim dos IPs reservados para o sistema",
|
||||
"reservedSystemGateway": "Gateway de sistema reservado",
|
||||
"reservedSystemNetmask": "M\u00e1scara de rede reservada do sistema",
|
||||
"reservedSystemStartIp": "In\u00edcio dos IPs reservados para o sistema",
|
||||
"reservediprange": "Faixa de IP Reservada",
|
||||
"resourceid": "ID do Recurso",
|
||||
"resourcename": "Nome do Recurso",
|
||||
"resourcestate": "Estado do Recurso",
|
||||
"restartrequired": "Reiniciar obrigat\u00f3rio",
|
||||
"role": "Fun\u00e7\u00e3o",
|
||||
"rolename": "Fun\u00e7\u00e3o",
|
||||
"roletype": "Role Type",
|
||||
"rootDiskControllerType": "Controlador do disco Root",
|
||||
"rootDiskControllerTypeKVM": "Controlador do disco Root",
|
||||
"routerCount": "Total de Roteadores Virtuais",
|
||||
"routerRequiresUpgrade": "Atualiza\u00e7\u00e3o \u00e9 necess\u00e1ria",
|
||||
"routerType": "Tipo",
|
||||
"samlEnable": "Autorizar SAML SSO",
|
||||
"samlEntity": "Provedor de Identidade",
|
||||
"scope": "Escopo",
|
||||
"secondaryStorageLimit": "Limites do Storage Secund\u00e1rio (GiB)",
|
||||
"secondaryips": "IPs secund\u00e1rios",
|
||||
"secretkey": "Chave Secreta",
|
||||
"securityGroups": "Grupos de seguran\u00e7a",
|
||||
"securitygroup": "Security Group",
|
||||
"sent": "Data",
|
||||
"sentbytes": "Bytes Enviados",
|
||||
"server": "Servidor",
|
||||
"service.Connectivity.distributedRouterCapabilityCheckbox": "Roteador Distribuido",
|
||||
"service.Connectivity.regionLevelVpcCapabilityCheckbox": "VPC a N\u00edvel de Regi\u00e3o",
|
||||
"service.Lb.elasticLbCheckbox": "LB El\u00e1stico",
|
||||
"service.Lb.inlineModeDropdown": "Modo",
|
||||
"service.Lb.lbIsolationDropdown": "Isolamento de LB",
|
||||
"service.SourceNat.redundantRouterCapabilityCheckbox": "Recurso de roteador redundante",
|
||||
"service.SourceNat.sourceNatTypeDropdown": "Tipo de Source NAT Suportado",
|
||||
"service.StaticNat.associatePublicIP": "Associa IP P\u00fablico",
|
||||
"service.StaticNat.elasticIpCheckbox": "IP El\u00e1stico",
|
||||
"serviceCapabilities": "Recursos de servi\u00e7os",
|
||||
"serviceOfferingId": "Oferta de Computa\u00e7\u00e3o",
|
||||
"servicelist": "Servi\u00e7os",
|
||||
"serviceofferingid": "Oferta de Computa\u00e7\u00e3o",
|
||||
"serviceofferingname": "Oferta de Computa\u00e7\u00e3o",
|
||||
"shrinkok": "Shrink OK",
|
||||
"size": "Tamanho",
|
||||
"sizegb": "Tamanho",
|
||||
"smbDomain": "Dom\u00ednio SMB",
|
||||
"smbPassword": "Senha SMB",
|
||||
"smbUsername": "Usu\u00e1rio SMB",
|
||||
"snapshotLimit": "Limites de Snapshot",
|
||||
"snapshotMemory": "Snapshot da mem\u00f3ria",
|
||||
"snmpCommunity": "Comunidade SNMP",
|
||||
"snmpPort": "Porta SNMP",
|
||||
"sockettimeout": "Tempo limite no socket",
|
||||
"sourceNat": "Source NAT",
|
||||
"sourceipaddress": "Endere\u00e7o IP de origem",
|
||||
"sourceport": "Porta de origem",
|
||||
"specifyVlan": "Especificar VLAN",
|
||||
"specifyipranges": "Especifique range de IP",
|
||||
"specifyvlan": "Especificar VLAN",
|
||||
"sshkeypair": "Novo par de chaves SSH",
|
||||
"startdate": "Data de Inu00edcio",
|
||||
"startip": "IP Inicial IPv4",
|
||||
"startipv4": "IP Inicial IPv4",
|
||||
"startipv6": "IP Inicial IPv6",
|
||||
"startport": "Porta de In\u00edcio",
|
||||
"startquota": "Valor",
|
||||
"state": "Estado",
|
||||
"status": "Estado",
|
||||
"storage": "Storage",
|
||||
"storageId": "Storage Prim\u00e1rio",
|
||||
"storagePool": "Pool de Armazanamento",
|
||||
"storageTags": "Tags de Storage",
|
||||
"storageType": "Tipo de Storage",
|
||||
"storagetype": "Tipo de Storage",
|
||||
"subdomainaccess": "Acesso ao subdom\u00ednio",
|
||||
"supportedServices": "Servi\u00e7os Suportados",
|
||||
"supportspublicaccess": "Supports Public Access",
|
||||
"supportsregionLevelvpc": "Suporta VPC em N\u00edvel de Regi\u00e3o",
|
||||
"supportsstrechedl2subnet": "Suporte \u00e0 Streched L2 Subnet",
|
||||
"systemvmtype": "Tipo",
|
||||
"tags": "Tags de Storage",
|
||||
"tariffValue": "Valor da Tarifa",
|
||||
"template": "Selecione um template",
|
||||
"templateFileUpload": "Arquivo local",
|
||||
"templateLimit": "Limites do Template",
|
||||
"templateNames": "Template",
|
||||
"templatebody": "Corpo do Email",
|
||||
"templatedn": "Seleciona Template",
|
||||
"templatename": "Template",
|
||||
"templatesubject": "Assunto",
|
||||
"templatetotal": "Template",
|
||||
"templatetype": "Template de Email",
|
||||
"tftpdir": "Diret\u00f3rio raiz do tftp",
|
||||
"threshold": "Limiar",
|
||||
"tierName": "Camada",
|
||||
"timeout": "Timeout",
|
||||
"timezone": "Fuso Hor\u00e1rio",
|
||||
"token": "Token",
|
||||
"totalCPU": "CPU TOTAL",
|
||||
"traffictype": "Tipo de Tr\u00e1fego",
|
||||
"transportzoneuuid": "Uuid da Zona de Transporte",
|
||||
"type": "Tipo",
|
||||
"unit": "Unidade",
|
||||
"url": "URL",
|
||||
"usageName": "Uso Tipo",
|
||||
"usageUnit": "Unidade",
|
||||
"usageinterface": "Usage Interface",
|
||||
"useNewDiskOffering": "Replace disk offering?",
|
||||
"useVpc": "VPC",
|
||||
"usehttps": "Use HTTPS",
|
||||
"userDataL2": "Dados de Usu\u00e1rio",
|
||||
"username": "Nome de usu\u00e1rio",
|
||||
"utilization": "Utilisation",
|
||||
"uuid": "ID",
|
||||
"vCenterDataCenter": "vCenter Datacenter",
|
||||
"vCenterDataStore": "vCenter Datastore",
|
||||
"vCenterDatacenter": "vCenter Datacenter",
|
||||
"vCenterHost": "vCenter Host",
|
||||
"vCenterPassword": "vCenter Password",
|
||||
"vCenterUsername": "vCenter Username",
|
||||
"vSwitchGuestName": "Nome do vSwitch de Tr\u00e1fego Convidado",
|
||||
"vSwitchGuestType": "Tipo de vSwitch de Tr\u00e1fego Convidado",
|
||||
"vSwitchPublicName": "Nome do vSwitch de Tr\u00e1fego P\u00fablico",
|
||||
"vSwitchPublicType": "Tipo de vSwitch de Tr\u00e1fego P\u00fablico",
|
||||
"value": "Cru00e9ditos",
|
||||
"vcenter": "Vcednter do datacenter VMware",
|
||||
"vcenterHost": "ESX/ESXi Host",
|
||||
"vcsdeviceid": "ID",
|
||||
"version": "Vers\u00e3o",
|
||||
"vgpu": "VGPU",
|
||||
"vgpuType": "Tipo de vGPU",
|
||||
"virtualMachineId": "Inst\u00e2ncia",
|
||||
"virtualmachinedisplayname": "Nome da VM",
|
||||
"virtualmachineid": "ID da VM",
|
||||
"virtualsize": "Virtual Size",
|
||||
"vlan": "VLAN",
|
||||
"vlanId": "VLAN ID",
|
||||
"vlanRange": "Intervalo de VLAN",
|
||||
"vlanname": "VLAN",
|
||||
"vlanrange": "Intervalo de VLAN",
|
||||
"vmLimit": "Limites da Inst\u00e2ncia",
|
||||
"vmTotal": "Inst\u00e2ncias",
|
||||
"vmdisplayname": "Nome de exibi\u00e7\u00e3o da VM",
|
||||
"vmipaddress": "Endere\u00e7o IP da VM",
|
||||
"vmname": "Nome da VM",
|
||||
"vmstate": "Estado da VM",
|
||||
"vmtotal": "Total VMs",
|
||||
"vmwaredcId": "ID do datacenter VMware",
|
||||
"vmwaredcName": "Nome do datacenter VMware",
|
||||
"vmwaredcVcenter": "Vcednter do datacenter VMware",
|
||||
"vmwarenetworklabel": "Etiqueta de tr\u00e1fego VMware",
|
||||
"volume": "Disco",
|
||||
"volumeFileUpload": "Arquivo local",
|
||||
"volumeLimit": "Limites de Disco",
|
||||
"volumeTotal": "Discos",
|
||||
"volumegroup": "Grupo de Volume",
|
||||
"volumename": "Nome do Disco",
|
||||
"volumetotal": "Disco",
|
||||
"vpcLimit": "Limites VPC",
|
||||
"vpcid": "VPC ID",
|
||||
"vpcname": "VPC",
|
||||
"vpcoffering": "Oferta VPC",
|
||||
"vpncustomergatewayid": "Gateway de VPN de usu\u00e1rio",
|
||||
"vsmctrlvlanid": "Control VLAN ID",
|
||||
"vsmdeviceid": "Nome",
|
||||
"vsmdevicestate": "Estado",
|
||||
"vsmipaddress": "Endere\u00e7o IP do Nexus 1000v",
|
||||
"vsmipaddress_req": "Endere\u00e7o IP do Nexus 1000v",
|
||||
"vsmpassword": "Senha do Nexus 1000v",
|
||||
"vsmpassword_req": "Senha do Nexus 1000v",
|
||||
"vsmpktvlanid": "Packet VLAN ID",
|
||||
"vsmstoragevlanid": "Storage VLAN ID",
|
||||
"vsmusername": "Usu\u00e1rio do Nexus 1000v",
|
||||
"vsmusername_req": "Usu\u00e1rio do Nexus 1000v",
|
||||
"xennetworklabel": "Etiqueta de tr\u00e1fego XenServer",
|
||||
"xenserverToolsVersion61plus": "Vers\u00e3o original do XS \u00e9 6.1+",
|
||||
"zone": "Zona",
|
||||
"zoneId": "Zona",
|
||||
"zoneid": "Zona",
|
||||
"zonename": "Zona"
|
||||
}
|
||||
|
|
@ -0,0 +1,638 @@
|
|||
{
|
||||
"Accounts": "\u0423\u0447\u0451\u0442\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438",
|
||||
"Affinity Groups": "Affinity Groups",
|
||||
"Alerts": "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f",
|
||||
"CPU Sockets": "CPU Sockets",
|
||||
"Cloudian Storage": "Cloudian Storage",
|
||||
"Clusters": "\u041a\u043b\u0430\u0441\u0442\u0435\u0440\u044b",
|
||||
"Compute": "\u0412\u044b\u0447\u0438\u0441\u043b\u0435\u043d\u0438\u0435",
|
||||
"Compute Offerings": "\u0423\u0441\u043b\u0443\u0433\u0438 \u0432\u044b\u0447\u0435\u0441\u043b\u0435\u043d\u0438\u044f",
|
||||
"Configuration": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f",
|
||||
"Dashboard": "\u041f\u0430\u043d\u0435\u043b\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f",
|
||||
"Disk Offerings": "\u0423\u0441\u043b\u0443\u0433\u0438 \u0434\u0438\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430",
|
||||
"Domains": "Domains",
|
||||
"Events": "\u0421\u043e\u0431\u044b\u0442\u0438\u044f",
|
||||
"Global Settings": "\u041e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438",
|
||||
"Hosts": "\u0423\u0437\u043b\u044b",
|
||||
"Hypervisor Capabilities": "\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0433\u0438\u043f\u0435\u0440\u0432\u0438\u0437\u043e\u0440\u0430",
|
||||
"ISOs": "ISO",
|
||||
"Identity and Access": "Identity and Access",
|
||||
"Infrastructure": "\u0418\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430",
|
||||
"Instances": "\u041c\u0430\u0448\u0438\u043d\u044b",
|
||||
"LDAP Configuration": "LDAP Configuration",
|
||||
"Management Servers": "Management Servers",
|
||||
"Monitor": "Monitor",
|
||||
"Network": "\u0421\u0435\u0442\u044c",
|
||||
"Network Offerings": "\u0423\u0441\u043b\u0443\u0433\u0438 \u0441\u0435\u0442\u0438",
|
||||
"Plugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b",
|
||||
"Pods": "\u0421\u0442\u0435\u043d\u0434\u044b",
|
||||
"Primary Storage": "\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0435 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435",
|
||||
"Projects": "\u041f\u0440\u043e\u0435\u043a\u0442\u044b",
|
||||
"Public IP Addresses": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0435 IP-\u0430\u0434\u0440\u0435\u0441\u0430",
|
||||
"Public network": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u0430\u044f \u0441\u0435\u0442\u044c",
|
||||
"Quota": "Quota",
|
||||
"RESOURCE_NAME": "Resource Name",
|
||||
"Roles": "Roles",
|
||||
"SSH Key Pairs": "SSH Key Pairs",
|
||||
"Secondary Storage": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435",
|
||||
"Security Groups": "\u0413\u0440\u0443\u043f\u043f\u044b \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438",
|
||||
"Snapshots": "\u0421\u043d\u0438\u043c\u043a\u0438",
|
||||
"Storage": "\u0425\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435",
|
||||
"System Offerings": "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u044b",
|
||||
"System VMs": "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0435 \u0412\u041c",
|
||||
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u044b",
|
||||
"Users": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438",
|
||||
"VM Snapshots": "\u0421\u043d\u0438\u043c\u043e\u043a \u0412\u041c",
|
||||
"VPC": "VPC",
|
||||
"VPC Offerings": "\u0423\u0441\u043b\u0443\u0433\u0438 VPS",
|
||||
"VPN Gateway": "VPN \u0448\u043b\u044e\u0437",
|
||||
"Virtual Routers": "\u0412\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u043e\u0443\u0442\u0435\u0440",
|
||||
"Volumes": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u044f",
|
||||
"Zones": "\u0417\u043e\u043d\u044b",
|
||||
"accesskey": "\u041a\u043b\u044e\u0447 \u0434\u043e\u0441\u0442\u0443\u043f\u0430",
|
||||
"account": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c",
|
||||
"accountId": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c",
|
||||
"accountTotal": "\u0423\u0447\u0451\u0442\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438",
|
||||
"accountlist": "\u0423\u0447\u0451\u0442\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438",
|
||||
"accounts": "\u0423\u0447\u0451\u0442\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438",
|
||||
"accounttype": "Account Type",
|
||||
"aclTotal": "\u0412\u0441\u0435\u0433\u043e \u0441\u0435\u0442\u0435\u0432\u044b\u0445 ACL",
|
||||
"aclid": "ACL",
|
||||
"aclname": "ACL Name",
|
||||
"action": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
|
||||
"activeviewersessions": "\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u0441\u0435\u0441\u0441\u0438\u0438",
|
||||
"add-scaleDowncondition": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c",
|
||||
"add-scaleUpcondition": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c",
|
||||
"address": "Address",
|
||||
"admin": "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440 \u0434\u043e\u043c\u0435\u043d\u0430",
|
||||
"agentPassword": "\u041f\u0430\u0440\u043e\u043b\u044c \u0430\u0433\u0435\u043d\u0442\u0430",
|
||||
"agentPort": "Agent Port",
|
||||
"agentUsername": "\u0418\u043c\u044f \u0430\u0433\u0435\u043d\u0442\u0430",
|
||||
"agentstate": "Agent State",
|
||||
"algorithm": "\u0410\u043b\u0433\u043e\u0440\u0438\u0442\u043c",
|
||||
"allocationstate": "\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f",
|
||||
"apikey": "\u041a\u043b\u044e\u0447 API",
|
||||
"associatednetworkid": "ID \u0421\u0432\u044f\u0437\u0430\u043d\u043d\u043e\u0439 \u0441\u0435\u0442\u0438",
|
||||
"associatednetworkname": "\u0418\u043c\u044f \u0441\u0435\u0442\u0438",
|
||||
"availability": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c",
|
||||
"availabilityZone": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c \u0437\u043e\u043d\u044b",
|
||||
"balance": "Balance",
|
||||
"baremetalCpu": "CPU (\u0432 \u041c\u0433\u0446)",
|
||||
"baremetalCpuCores": "\u041a\u043e\u043b-\u0432\u043e \u044f\u0434\u0435\u0440 CPU",
|
||||
"baremetalMAC": "MAC \u0443\u0437\u043b\u0430",
|
||||
"baremetalMemory": "\u041f\u0430\u043c\u044f\u0442\u044c (\u0432 \u041c\u0411)",
|
||||
"bcfdeviceid": "ID",
|
||||
"bladeid": "Blade ID",
|
||||
"bootable": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u044b\u0439",
|
||||
"broadcastdomainrange": "\u0414\u0438\u0430\u043f\u0430\u0437\u043e\u043d \u0448\u0438\u0440\u043e\u043a\u043e\u0432\u0435\u0449\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u043e\u043c\u0435\u043d\u0430",
|
||||
"broadcastdomaintype": "\u0422\u0438\u043f \u0448\u0438\u0440\u043e\u043a\u043e\u0432\u0435\u0449\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u043e\u043c\u0435\u043d\u0430",
|
||||
"broadcasturi": "\u0428\u0438\u0440\u043e\u043a\u043e\u0432\u0435\u0449\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 URI",
|
||||
"bucket": "Bucket",
|
||||
"cacheMode": "Write-cache Type",
|
||||
"capacity": "\u041c\u043e\u0449\u043d\u043e\u0441\u0442\u044c",
|
||||
"capacityBytes": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0411\u0430\u0439\u0442",
|
||||
"capacityIops": "\u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e IOPS",
|
||||
"capacityiops": "\u0412\u0441\u0435\u0433\u043e IOPS",
|
||||
"chassis": "Chassis",
|
||||
"checksum": "checksum",
|
||||
"cidr": "CIDR",
|
||||
"cidrlist": "\u0421\u043f\u0438\u0441\u043e\u043a CIDR",
|
||||
"cleanup": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c",
|
||||
"clusterId": "\u041a\u043b\u0430\u0441\u0442\u0435\u0440",
|
||||
"clusterid": "\u041a\u043b\u0430\u0441\u0442\u0435\u0440",
|
||||
"clustername": "\u041a\u043b\u0430\u0441\u0442\u0435\u0440",
|
||||
"clusters": "\u041a\u043b\u0430\u0441\u0442\u0435\u0440\u044b",
|
||||
"clustertype": "\u0422\u0438\u043f \u043a\u043b\u0430\u0441\u0442\u0435\u0440\u0430",
|
||||
"connectiontimeout": "\u041f\u0440\u0435\u0432\u044b\u0448\u0435\u043d\u0438\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0436\u0438\u0434\u0430\u043d\u0438\u044f \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f",
|
||||
"conservemode": "\u042d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c",
|
||||
"counterid": "Counter",
|
||||
"cpuCap": "CPU Cap",
|
||||
"cpuLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f CPU",
|
||||
"cpuNumber": "\u041a\u043e\u043b-\u0432\u043e \u044f\u0434\u0435\u0440 CPU",
|
||||
"cpuSpeed": "CPU (\u0432 \u041c\u0433\u0446)",
|
||||
"cpuallocated": "\u0412\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0435 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u043c \u043c\u0430\u0448\u0438\u043d\u0430\u043c CPU",
|
||||
"cpuallocatedghz": "\u0420\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e",
|
||||
"cpumaxdeviation": "Deviation",
|
||||
"cpunumber": "\u041a\u043e\u043b-\u0432\u043e \u044f\u0434\u0435\u0440 CPU",
|
||||
"cpusockets": "The Number of CPU Sockets",
|
||||
"cpuspeed": "CPU (\u0432 \u041c\u0433\u0446)",
|
||||
"cputotal": "Total",
|
||||
"cputotalghz": "Total",
|
||||
"cpuused": "\u0417\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u043e CPU",
|
||||
"cpuusedghz": "\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043e",
|
||||
"createNfsCache": "Create NFS Secondary Staging Store",
|
||||
"created": "\u0414\u0430\u0442\u0430",
|
||||
"credit": "Credit",
|
||||
"crossZones": "\u041e\u0431\u0449\u0438\u0435 \u0434\u043b\u044f \u0437\u043e\u043d",
|
||||
"current": "\u0422\u0435\u043a\u0443\u0449\u0435\u0439",
|
||||
"date": "\u0414\u0430\u0442\u0430",
|
||||
"dedicated": "\u0412\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0439",
|
||||
"deleteprofile": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u0440\u043e\u0444\u0438\u043b\u044c",
|
||||
"deploymentPlanner": "Deployment planner",
|
||||
"deploymentplanner": "Deployment planner",
|
||||
"description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
||||
"destinationZoneId": "\u0426\u0435\u043b\u0435\u0432\u0430\u044f \u0437\u043e\u043d\u0430",
|
||||
"destinationphysicalnetworkid": "ID \u0446\u0435\u043b\u0435\u0432\u043e\u0439 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0441\u0435\u0442\u0438",
|
||||
"destroyVMgracePeriod": "Destroy VM Grace Period",
|
||||
"details": "\u0414\u0435\u0442\u0430\u043b\u0438",
|
||||
"deviceid": "ID \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
|
||||
"directdownload": "Direct Download",
|
||||
"disconnected": "\u0412\u0440\u0435\u043c\u044f \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u043e\u0442\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f",
|
||||
"disk": "Disk",
|
||||
"diskBytesReadRate": "\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0447\u0442\u0435\u043d\u0438\u044f \u0434\u0438\u0441\u043a\u0430 (BPS)",
|
||||
"diskBytesWriteRate": "\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0434\u0438\u0441\u043a\u0430 (BPS)",
|
||||
"diskIopsReadRate": "\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0434\u0438\u0441\u043a\u0430 (IOPS)",
|
||||
"diskIopsWriteRate": "\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0434\u0438\u0441\u043a\u0430 (IOPS)",
|
||||
"diskOffering": "\u0423\u0441\u043b\u0443\u0433\u0430 \u0434\u0438\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430",
|
||||
"diskOfferingId": "\u0423\u0441\u043b\u0443\u0433\u0438 \u0434\u0438\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430",
|
||||
"diskSize": "\u0420\u0430\u0437\u043c\u0435\u0440 \u0434\u0438\u0441\u043a\u0430 (\u0432 \u0413\u0411)",
|
||||
"diskiopstotal": "IOPS",
|
||||
"diskioread": "\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u043d\u043e \u0441 \u0434\u0438\u0441\u043a\u0430 (IO)",
|
||||
"diskiowrite": "\u0417\u0430\u043f\u0438\u0441\u0430\u043d\u043e \u043d\u0430 \u0434\u0438\u0441\u043a (IO)",
|
||||
"diskkbsread": "\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u043d\u043e \u0441 \u0434\u0438\u0441\u043a\u0430 (\u0411\u0430\u0439\u0442)",
|
||||
"diskkbswrite": "\u0417\u0430\u043f\u0438\u0441\u0430\u043d\u043e \u043d\u0430 \u0434\u0438\u0441\u043a (\u0411\u0430\u0439\u0442)",
|
||||
"diskofferingdisplaytext": "\u0423\u0441\u043b\u0443\u0433\u0430 \u0434\u0438\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430",
|
||||
"disksize": "\u0420\u0430\u0437\u043c\u0435\u0440 \u0434\u0438\u0441\u043a\u0430 (\u0432 \u0413\u0411)",
|
||||
"disksizeallocated": "\u0417\u0430\u043d\u044f\u0442\u043e \u0434\u0438\u0441\u043a\u043e\u0432\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430",
|
||||
"disksizeallocatedgb": "\u0420\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e",
|
||||
"disksizetotal": "\u0412\u0441\u0435\u0433\u043e \u0432 \u0434\u0438\u0441\u043a\u0430\u0445",
|
||||
"disksizetotalgb": "Total",
|
||||
"disksizeunallocatedgb": "Unallocated",
|
||||
"disksizeusedgb": "\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043e",
|
||||
"displayText": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
||||
"displayname": "Display Name",
|
||||
"displaytext": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
||||
"distributedvpcrouter": "Distributed VPC Router",
|
||||
"dns1": "DNS 1",
|
||||
"dns2": "DNS 2",
|
||||
"domain": "\u0414\u043e\u043c\u0435\u043d",
|
||||
"domainId": "\u0414\u043e\u043c\u0435\u043d",
|
||||
"domainid": "\u0414\u043e\u043c\u0435\u043d",
|
||||
"domainname": "\u0414\u043e\u043c\u0435\u043d",
|
||||
"domainpath": "\u0414\u043e\u043c\u0435\u043d",
|
||||
"dpd": "Dead Peer Detection",
|
||||
"driver": "Driver",
|
||||
"egressdefaultpolicy": "\u0418\u0441\u0445\u043e\u0434\u044f\u0449\u0430\u044f \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e",
|
||||
"email": "E-mail",
|
||||
"enddate": "End Date",
|
||||
"endip": "IPv4 End IP",
|
||||
"endipv4": "IPv4 End IP",
|
||||
"endipv6": "IPv6 End IP",
|
||||
"endpoint": "\u041a\u043e\u043d\u0435\u0447\u043d\u0430\u044f \u0442\u043e\u0447\u043a\u0430",
|
||||
"endport": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u043f\u043e\u0440\u0442 \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0430",
|
||||
"espEncryption": "\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u0438\u0435 ESP",
|
||||
"espHash": "\u0445\u044d\u0448 ESP",
|
||||
"esplifetime": "\u0412\u0440\u0435\u043c\u044f \u0436\u0438\u0437\u043d\u0438 ESP (\u0432 \u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445)",
|
||||
"esppolicy": "\u041f\u043e\u043b\u0438\u0442\u0438\u043a\u0430 ESP",
|
||||
"expunge": "\u0423\u0434\u0430\u043b\u0451\u043d",
|
||||
"fingerprint": "FingerPrint",
|
||||
"firstname": "\u0418\u043c\u044f",
|
||||
"forced": "\u041f\u0440\u0438\u043d\u0443\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c",
|
||||
"forceencap": "Force UDP Encapsulation of ESP Packets",
|
||||
"format": "\u0424\u043e\u0440\u043c\u0430\u0442",
|
||||
"fwdevicecapacity": "\u041c\u043e\u0449\u043d\u043e\u0441\u0442\u044c",
|
||||
"fwdeviceid": "ID",
|
||||
"fwdevicename": "\u0422\u0438\u043f",
|
||||
"fwdevicestate": "\u0421\u0442\u0430\u0442\u0443\u0441",
|
||||
"gateway": "\u0428\u043b\u044e\u0437",
|
||||
"glustervolume": "\u0422\u043e\u043c",
|
||||
"group": "\u0413\u0440\u0443\u043f\u043f\u0430",
|
||||
"gslbdomainname": "GSLB Domain Name",
|
||||
"gslblbmethod": "\u0410\u043b\u0433\u043e\u0440\u0438\u0442\u043c",
|
||||
"gslbprovider": "GSLB service",
|
||||
"gslbproviderprivateip": "GSLB service Private IP",
|
||||
"gslbproviderpublicip": "GSLB service Public IP",
|
||||
"gslbservicetype": "Service Type",
|
||||
"guestEndIp": "\u041a\u043e\u043d\u0435\u0447\u043d\u044b\u0439 \u0433\u043e\u0441\u0442\u0435\u0432\u043e\u0439 IP.",
|
||||
"guestGateway": "\u0428\u043b\u044e\u0437",
|
||||
"guestIpType": "\u0422\u0438\u043f \u0433\u043e\u0441\u0442\u044f",
|
||||
"guestNetmask": "\u0413\u043e\u0441\u0442\u0435\u0432\u0430\u044f \u0441\u0435\u0442\u0435\u0432\u0430\u044f \u043c\u0430\u0441\u043a\u0430",
|
||||
"guestStartIp": "\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u044b\u0439 \u0433\u043e\u0441\u0442\u0435\u0432\u043e\u0439 IP",
|
||||
"guestcidraddress": "\u0413\u043e\u0441\u0442\u0435\u0432\u043e\u0439 CIDR",
|
||||
"guestipaddress": "\u0413\u043e\u0441\u0442\u0435\u0432\u044b\u0435 IP-\u0430\u0434\u0440\u0435\u0441\u0430",
|
||||
"guestiptype": "\u0422\u0438\u043f \u0433\u043e\u0441\u0442\u044f",
|
||||
"guestnetworkid": "ID \u0441\u0435\u0442\u0438",
|
||||
"guestnetworkname": "\u0418\u043c\u044f \u0441\u0435\u0442\u0438",
|
||||
"guestosid": "\u0422\u0438\u043f \u041e\u0421",
|
||||
"guestvlanrange": "VLAN Range(s)",
|
||||
"haenable": "\u041e\u0442\u043a\u0430\u0437\u043e\u0443\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0441\u0442\u044c \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430",
|
||||
"hahost": "\u041e\u0442\u043a\u0430\u0437\u043e\u0443\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0441\u0442\u044c \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430",
|
||||
"host": "IP \u0430\u0434\u0440\u0435\u0441\u0441\u0430",
|
||||
"hostId": "\u0423\u0437\u0435\u043b",
|
||||
"hostTags": "\u041c\u0435\u0442\u043a\u0438 \u0443\u0437\u043b\u0430",
|
||||
"hostname": "\u0418\u043c\u044f \u0443\u0437\u043b\u0430",
|
||||
"hosts": "\u0423\u0437\u043b\u044b",
|
||||
"hosttags": "\u041c\u0435\u0442\u043a\u0438 \u0443\u0437\u043b\u0430",
|
||||
"hypervisor": "\u0413\u0438\u043f\u0435\u0440\u0432\u0438\u0437\u043e\u0440",
|
||||
"hypervisorSnapshotReserve": "Hypervisor Snapshot Reserve",
|
||||
"hypervisorsnapshotreserve": "Hypervisor Snapshot Reserve",
|
||||
"hypervisortype": "\u0413\u0438\u043f\u0435\u0440\u0432\u0438\u0437\u043e\u0440",
|
||||
"hypervisorversion": "\u0412\u0435\u0440\u0441\u0438\u044f \u0433\u0438\u043f\u0435\u0440\u0432\u0438\u0437\u043e\u0440\u0430",
|
||||
"hypervnetworklabel": "HyperV Traffic Label",
|
||||
"icmpcode": "\u041a\u043e\u0434 ICMP",
|
||||
"icmptype": "\u0422\u0438\u043f ICMP",
|
||||
"id": "ID",
|
||||
"ikeDh": "IKE DH",
|
||||
"ikeEncryption": "\u0428\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u0438\u0435 IKE",
|
||||
"ikeHash": "IKE Hash",
|
||||
"ikelifetime": "IKE lifetime (second)",
|
||||
"ikepolicy": "\u041f\u043e\u043b\u0438\u0442\u0438\u043a\u0430 IKE",
|
||||
"insideportprofile": "Inside Port Profile",
|
||||
"instancename": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0435\u0435 \u0438\u043c\u044f",
|
||||
"instanceport": "Instance Port",
|
||||
"instances": "\u041c\u0430\u0448\u0438\u043d\u044b",
|
||||
"internaldns1": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0439 DNS 1",
|
||||
"internaldns2": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0439 DNS 2",
|
||||
"interval": "Polling Interval (in sec)",
|
||||
"intervaltype": "\u0422\u0438\u043f \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0430",
|
||||
"ip": "IP \u0430\u0434\u0440\u0435\u0441\u0441\u0430",
|
||||
"ip4Netmask": "IPv4 Netmask",
|
||||
"ip4dns1": "IPv4 DNS1",
|
||||
"ip4dns2": "IPv4 DNS2",
|
||||
"ip4gateway": "IPv4 Gateway",
|
||||
"ip6address": "IPv6 IP Address",
|
||||
"ip6cidr": "IPv6 CIDR",
|
||||
"ip6dns1": "IPv6 DNS1",
|
||||
"ip6dns2": "IPv6 DNS2",
|
||||
"ip6gateway": "IPv6 Gateway",
|
||||
"ipLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0438\u0440\u0443\u0435\u043c\u044b\u0445 IP",
|
||||
"ipaddress": "IP \u0430\u0434\u0440\u0435\u0441\u0441\u0430",
|
||||
"ipaddress1": "IP \u0430\u0434\u0440\u0435\u0441\u0441\u0430",
|
||||
"ipaddress2": "IP \u0430\u0434\u0440\u0435\u0441\u0441\u0430",
|
||||
"ipsecpsk": "IPsec Preshared-Key",
|
||||
"iptotal": "\u0412\u0441\u0435\u0433\u043e IP-\u0430\u0434\u0440\u0435\u0441\u043e\u0432",
|
||||
"iqn": "\u0426\u0435\u043b\u0435\u0432\u043e\u0439 IQN",
|
||||
"isAdvanced": "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438",
|
||||
"isBootable": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u044b\u0439",
|
||||
"isCustomized": "\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0439 \u0440\u0430\u0437\u043c\u0435\u0440 \u0434\u0438\u0441\u043a\u0430",
|
||||
"isCustomizedIops": "\u0421\u0432\u043e\u0435 \u043a\u043e\u043b-\u0432\u043e IPOS",
|
||||
"isDedicated": "Dedicate",
|
||||
"isExtractable": "\u0418\u0437\u0432\u043b\u0435\u043a\u0430\u0435\u043c\u044b\u0439",
|
||||
"isFeatured": "\u0420\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u043c\u044b\u0439",
|
||||
"isForced": "\u041f\u0440\u0438\u043d\u0443\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435",
|
||||
"isManaged": "\u0423\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u043c\u044b\u0439",
|
||||
"isPasswordEnabled": "\u041f\u0430\u0440\u043e\u043b\u044c \u0432\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"isPersistent": "Persistent ",
|
||||
"isPublic": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439",
|
||||
"isVolatile": "Volatile",
|
||||
"iscustomized": "\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0439 \u0440\u0430\u0437\u043c\u0435\u0440 \u0434\u0438\u0441\u043a\u0430",
|
||||
"iscustomizediops": "\u0421\u0432\u043e\u0435 \u043a\u043e\u043b-\u0432\u043e IPOS",
|
||||
"isdedicated": "\u0412\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0439",
|
||||
"isdefault": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e",
|
||||
"isdynamicallyscalable": "\u0414\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
|
||||
"isextractable": "extractable",
|
||||
"isfeatured": "\u0420\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u043c\u044b\u0439",
|
||||
"iso": "ISO",
|
||||
"isolatedpvlanId": "Secondary Isolated VLAN ID",
|
||||
"isolationmethods": "\u041c\u0435\u0442\u043e\u0434 \u0438\u0437\u043e\u043b\u044f\u0446\u0438\u0438",
|
||||
"isolationuri": "\u0418\u0437\u043e\u043b\u044f\u0446\u0438\u044f URI",
|
||||
"isoname": "\u041f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u043d\u044b\u0439 ISO",
|
||||
"ispersistent": "Persistent ",
|
||||
"isportable": "\u041e\u0431\u0449\u0438\u0435 \u0434\u043b\u044f \u0437\u043e\u043d",
|
||||
"ispublic": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439",
|
||||
"isready": "\u0413\u043e\u0442\u043e\u0432",
|
||||
"isredundantrouter": "\u0420\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0439 \u0440\u043e\u0443\u0442\u0435\u0440",
|
||||
"isrouting": "\u041c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0446\u0438\u044f",
|
||||
"issourcenat": "Source NAT",
|
||||
"isstaticnat": "\u0421\u0442\u0430\u0442\u0438\u0447\u043d\u044b\u0439 NAT",
|
||||
"issystem": "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0435",
|
||||
"isvolatile": "Volatile",
|
||||
"key": "\u041a\u043b\u044e\u0447",
|
||||
"keyboardType": "\u0422\u0438\u043f \u043a\u043b\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u044b",
|
||||
"keypair": "SSH Key Pair",
|
||||
"kvmnetworklabel": "\u041c\u0435\u0442\u043a\u0430 \u0442\u0440\u0430\u0444\u0438\u043a\u0430 KVM",
|
||||
"l2gatewayserviceuuid": "L2 Gateway Service Uuid",
|
||||
"l3gatewayserviceuuid": "L3 Gateway Service Uuid",
|
||||
"last_updated": "Last Update",
|
||||
"lastname": "\u0424\u0430\u043c\u0438\u043b\u0438\u044f",
|
||||
"lbType": "Load Balancer Type",
|
||||
"lbdevicecapacity": "\u041c\u043e\u0449\u043d\u043e\u0441\u0442\u044c",
|
||||
"lbdevicededicated": "\u0412\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0439",
|
||||
"lbdeviceid": "ID",
|
||||
"lbdevicename": "\u0422\u0438\u043f",
|
||||
"lbdevicestate": "\u0421\u0442\u0430\u0442\u0443\u0441",
|
||||
"level": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c",
|
||||
"limitcpuuse": "CPU Cap",
|
||||
"linklocalip": "\u041b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0439 IP \u0430\u0434\u0440\u0435\u0441",
|
||||
"loadbalancerinstance": "Assigned VMs",
|
||||
"loadbalancerrule": "\u041f\u0440\u0430\u0432\u0438\u043b\u043e \u0431\u0430\u043b\u0430\u043d\u0441\u0438\u0440\u043e\u0432\u0449\u0438\u043a\u0430 \u043d\u0430\u0433\u0440\u0443\u0437\u043a\u0438",
|
||||
"localstorageenabled": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u0434\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0445 \u0412\u041c",
|
||||
"localstorageenabledforsystemvm": "Enable local storage for System VMs",
|
||||
"lun": "LUN #",
|
||||
"lxcnetworklabel": "LXC Traffic Label",
|
||||
"makeredundant": "Make redundant",
|
||||
"maxInstance": "Max Instances",
|
||||
"maxIops": "\u041c\u0430\u043a\u0441. IOPS",
|
||||
"maxerrorretry": "Max Error Retry",
|
||||
"maxguestslimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u0433\u043e\u0441\u0442\u0435\u0439",
|
||||
"maxiops": "\u041c\u0430\u043a\u0441. IOPS",
|
||||
"memallocated": "Mem Allocation",
|
||||
"memory": "\u041f\u0430\u043c\u044f\u0442\u044c (\u0432 \u041c\u0411)",
|
||||
"memoryLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f \u043f\u0430\u043c\u044f\u0442\u0438 (\u0432 \u041c\u0438\u0411)",
|
||||
"memoryallocated": "\u0412\u044b\u0434\u0435\u043b\u0435\u043d\u043e \u043f\u0430\u043c\u044f\u0442\u0438",
|
||||
"memoryallocatedgb": "\u0420\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e",
|
||||
"memorymaxdeviation": "Deviation",
|
||||
"memorytotal": "\u0420\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e",
|
||||
"memorytotalgb": "Total",
|
||||
"memoryused": "\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043e",
|
||||
"memoryusedgb": "\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043e",
|
||||
"memused": "Mem Usage",
|
||||
"minInstance": "Min Instances",
|
||||
"minIops": "\u041c\u0438\u043d. IOPS",
|
||||
"min_balance": "Min Balance",
|
||||
"miniops": "\u041c\u0438\u043d. IOPS",
|
||||
"name": "\u0418\u043c\u044f",
|
||||
"nat": "BigSwitch BCF NAT Enabled",
|
||||
"netmask": "\u0421\u0435\u0442\u0435\u0432\u0430\u044f \u043c\u0430\u0441\u043a\u0430",
|
||||
"network": "\u0421\u0435\u0442\u044c",
|
||||
"networkDomain": "\u0421\u0435\u0442\u0435\u0432\u043e\u0439 \u0434\u043e\u043c\u0435\u043d",
|
||||
"networkLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f \u0441\u0435\u0442\u0438",
|
||||
"networkOfferingId": "\u0421\u0435\u0442\u0435\u0432\u044b\u0435 \u0443\u0441\u043b\u0443\u0433\u0438",
|
||||
"networkRate": "\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0441\u0435\u0442\u0438",
|
||||
"networkcidr": "Network CIDR",
|
||||
"networkdevicetype": "\u0422\u0438\u043f",
|
||||
"networkdomain": "\u0421\u0435\u0442\u0435\u0432\u043e\u0439 \u0434\u043e\u043c\u0435\u043d",
|
||||
"networkdomaintext": "\u0421\u0435\u0442\u0435\u0432\u043e\u0439 \u0434\u043e\u043c\u0435\u043d",
|
||||
"networkid": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c Tier",
|
||||
"networkkbsread": "\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u043d\u043e \u0447\u0435\u0440\u0435\u0437 \u0441\u0435\u0442\u044c",
|
||||
"networkkbswrite": "\u0417\u0430\u043f\u0438\u0441\u0430\u043d\u043e \u0447\u0435\u0440\u0435\u0437 \u0441\u0435\u0442\u044c",
|
||||
"networkname": "\u0418\u043c\u044f \u0441\u0435\u0442\u0438",
|
||||
"networkofferingdisplaytext": "\u0421\u0435\u0442\u0435\u0432\u044b\u0435 \u0443\u0441\u043b\u0443\u0433\u0438",
|
||||
"networkofferingid": "\u0421\u0435\u0442\u0435\u0432\u044b\u0435 \u0443\u0441\u043b\u0443\u0433\u0438",
|
||||
"networkofferingidText": "ID \u0441\u0435\u0442\u0435\u0432\u043e\u0439 \u0443\u0441\u043b\u0443\u0433\u0438",
|
||||
"networkofferingname": "\u0421\u0435\u0442\u0435\u0432\u044b\u0435 \u0443\u0441\u043b\u0443\u0433\u0438",
|
||||
"networkrate": "\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0441\u0435\u0442\u0438",
|
||||
"networkread": "Read",
|
||||
"networktype": "\u0422\u0438\u043f \u0441\u0435\u0442\u0438",
|
||||
"networkwrite": "Write",
|
||||
"newDiskOffering": "New Disk Offering",
|
||||
"newdiskoffering": "\u041d\u043e\u0432\u0430\u044f \u0443\u0441\u043b\u0443\u0433\u0430",
|
||||
"newsize": "\u041d\u043e\u0432\u044b\u0439 \u0440\u0430\u0437\u043c\u0435\u0440 (GB)",
|
||||
"nfsCacheNfsServer": "S3 NFS \u0421\u0435\u0440\u0432\u0435\u0440",
|
||||
"nfsCachePath": "S3 NFS \u043f\u0443\u0442\u044c",
|
||||
"nfsCacheZoneid": "\u0417\u043e\u043d\u0430",
|
||||
"nfsServer": "\u0421\u0435\u0440\u0432\u0435\u0440",
|
||||
"nicAdapterType": "\u0422\u0438\u043f \u0441\u0435\u0442\u0435\u0432\u043e\u0439 \u043a\u0430\u0440\u0442\u044b (NIC)",
|
||||
"number": "#Rule",
|
||||
"numberOfRouterRequiresUpgrade": "Total of Virtual Routers that require upgrade",
|
||||
"numretries": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u043f\u044b\u0442\u043e\u043a",
|
||||
"nvpdeviceid": "ID",
|
||||
"offerHA": "\u0423\u0441\u043b\u0443\u0433\u0430 \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0439 \u043e\u0442\u043a\u0430\u0437\u043e\u0443\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0441\u0442\u0438",
|
||||
"offerha": "\u0423\u0441\u043b\u0443\u0433\u0430 \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0439 \u043e\u0442\u043a\u0430\u0437\u043e\u0443\u0441\u0442\u043e\u0439\u0447\u0438\u0432\u043e\u0441\u0442\u0438",
|
||||
"osTypeId": "\u0422\u0438\u043f \u041e\u0421",
|
||||
"oscategoryid": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0442\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u041e\u0421",
|
||||
"ostypeid": "\u0422\u0438\u043f \u041e\u0421",
|
||||
"ostypename": "\u0422\u0438\u043f \u041e\u0421",
|
||||
"overrideguesttraffic": "Override Guest-Traffic",
|
||||
"overridepublictraffic": "Override Public-Traffic",
|
||||
"ovm3cluster": "Native Clustering",
|
||||
"ovm3networklabel": "OVM3 traffic label",
|
||||
"ovm3pool": "Native Pooling",
|
||||
"ovm3vip": "Master Vip IP",
|
||||
"ovmnetworklabel": "OVM traffic label",
|
||||
"palp": "Palo Alto Log Profile",
|
||||
"parentName": "\u0420\u043e\u0434\u0438\u0442\u0435\u043b\u044c",
|
||||
"passive": "Passive",
|
||||
"password": "\u041f\u0430\u0440\u043e\u043b\u044c",
|
||||
"password-confirm": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u043f\u0430\u0440\u043e\u043b\u044c",
|
||||
"passwordenabled": "\u041f\u0430\u0440\u043e\u043b\u044c \u0432\u043a\u043b\u044e\u0447\u0435\u043d",
|
||||
"path": "\u041f\u0443\u0442\u044c",
|
||||
"patp": "Palo Alto Threat Profile",
|
||||
"pavr": "\u0412\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u043e\u0443\u0442\u0435\u0440",
|
||||
"pciDevice": "GPU",
|
||||
"perfectForwardSecrecy": "Perfect Forward Secrecy",
|
||||
"physicalNetworkId": "\u0424\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0435\u0442\u0438",
|
||||
"physicalnetworkid": "\u0424\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0435\u0442\u0438",
|
||||
"physicalsize": "Physical Size",
|
||||
"plannerMode": "Planner mode",
|
||||
"podId": "\u0421\u0442\u0435\u043d\u0434",
|
||||
"podname": "\u0421\u0442\u0435\u043d\u0434",
|
||||
"port": "Port",
|
||||
"portableipaddress": "Portable IPs",
|
||||
"powerstate": "Power State",
|
||||
"primaryStorageLimit": "\u041b\u0438\u043c\u0438\u0442 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0433\u043e \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430 (GiB)",
|
||||
"primarystoragetotal": "\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0435 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435",
|
||||
"privateinterface": "\u0427\u0430\u0441\u0442\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441",
|
||||
"privateip": "\u0427\u0430\u0441\u0442\u043d\u044b\u0439 IP \u0430\u0434\u0440\u0435\u0441",
|
||||
"privatekey": "Private Key",
|
||||
"privatenetwork": "\u0427\u0430\u0441\u0442\u043d\u0430\u044f \u0441\u0435\u0442\u044c",
|
||||
"privateport": "\u0427\u0430\u0441\u0442\u043d\u044b\u0439 \u043f\u043e\u0440\u0442",
|
||||
"profiledn": "Associated Profile",
|
||||
"profilename": "\u041f\u0440\u043e\u0444\u0438\u043b\u044c",
|
||||
"project": "\u041f\u0440\u043e\u0435\u043a\u0442",
|
||||
"projectId": "\u041f\u0440\u043e\u0435\u043a\u0442",
|
||||
"projectid": "ID \u043f\u0440\u043e\u0435\u043a\u0442\u0430",
|
||||
"projects": "\u041f\u0440\u043e\u0435\u043a\u0442\u044b",
|
||||
"property": "Property",
|
||||
"protocol": "\u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b",
|
||||
"protocolnumber": "#Protocol",
|
||||
"provider": "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438",
|
||||
"providername": "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438",
|
||||
"provisioningType": "Provisioning Type",
|
||||
"provisioningtype": "Provisioning Type",
|
||||
"publicinterface": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441",
|
||||
"publicip": "IP \u0430\u0434\u0440\u0435\u0441\u0441\u0430",
|
||||
"publickey": "Public Key",
|
||||
"publicnetwork": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u0430\u044f \u0441\u0435\u0442\u044c",
|
||||
"publicport": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439 \u043f\u043e\u0440\u0442",
|
||||
"purpose": "\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435",
|
||||
"qosType": "\u0422\u0438\u043f QoS",
|
||||
"quiescevm": "Quiesce VM",
|
||||
"quietTime": "Quiet Time (in sec)",
|
||||
"quota": "Quota Value",
|
||||
"quota_enforce": "Enforce Quota",
|
||||
"rbdid": "Cephx user",
|
||||
"rbdmonitor": "Ceph monitor",
|
||||
"rbdpool": "Ceph pool",
|
||||
"rbdsecret": "Cephx secret",
|
||||
"reason": "Reason",
|
||||
"receivedbytes": "\u0411\u0430\u0439\u0442 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043e",
|
||||
"redundantRouterState": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0437\u0435\u0440\u0432\u0430",
|
||||
"redundantrouter": "\u0420\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0439 \u0440\u043e\u0443\u0442\u0435\u0440",
|
||||
"redundantstate": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0437\u0435\u0440\u0432\u0430",
|
||||
"redundantvpcrouter": "Redundant VPC",
|
||||
"reenterpassword": "Re-enter Password",
|
||||
"relationaloperator": "Operator",
|
||||
"requireshvm": "HVM",
|
||||
"requiresupgrade": "Requires Upgrade",
|
||||
"reservedSystemEndIp": "\u041a\u043e\u043d\u0435\u0447\u043d\u044b\u0439 \u0437\u0430\u0440\u0435\u0437\u0435\u0440\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 IP-\u0430\u0434\u0440\u0435\u0441",
|
||||
"reservedSystemGateway": "\u0417\u0430\u0440\u0435\u0437\u0435\u0440\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0448\u043b\u044e\u0437",
|
||||
"reservedSystemNetmask": "\u0417\u0430\u0440\u0435\u0437\u0435\u0440\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u0430\u044f \u043c\u0430\u0441\u043a\u0430",
|
||||
"reservedSystemStartIp": "\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u044b\u0439 \u0437\u0430\u0440\u0435\u0437\u0435\u0440\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 IP-\u0430\u0434\u0440\u0435\u0441",
|
||||
"reservediprange": "\u0417\u0430\u0440\u0435\u0437\u0435\u0440\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 IP \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d",
|
||||
"resourceid": "Resource ID",
|
||||
"resourcename": "Resource Name",
|
||||
"resourcestate": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432",
|
||||
"restartrequired": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a",
|
||||
"role": "\u0420\u043e\u043b\u044c",
|
||||
"rolename": "\u0420\u043e\u043b\u044c",
|
||||
"roletype": "Role Type",
|
||||
"rootDiskControllerType": "\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u043b\u0435\u0440 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0433\u043e \u0434\u0438\u0441\u043a\u0430",
|
||||
"rootDiskControllerTypeKVM": "\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u043b\u0435\u0440 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0433\u043e \u0434\u0438\u0441\u043a\u0430",
|
||||
"routerCount": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u0445 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0442\u043e\u0440\u043e\u0432",
|
||||
"routerRequiresUpgrade": "Upgrade is required",
|
||||
"routerType": "\u0422\u0438\u043f",
|
||||
"samlEnable": "Authorize SAML SSO",
|
||||
"samlEntity": "Identity Provider",
|
||||
"scope": "\u041e\u0445\u0432\u0430\u0442",
|
||||
"secondaryStorageLimit": "\u041b\u0438\u043c\u0438\u0442 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430 (GiB)",
|
||||
"secondaryips": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 IP-\u0430\u0434\u0440\u0435\u0441\u0430",
|
||||
"secretkey": "\u0421\u0435\u043a\u0440\u0435\u0442\u043d\u044b\u0439 \u043a\u043b\u044e\u0447",
|
||||
"securityGroups": "\u0413\u0440\u0443\u043f\u043f\u044b \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438",
|
||||
"securitygroup": "\u0413\u0440\u0443\u043f\u043f\u0430 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438",
|
||||
"sent": "\u0414\u0430\u0442\u0430",
|
||||
"sentbytes": "\u0411\u0430\u0439\u0442\u043e\u0432 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e",
|
||||
"server": "\u0421\u0435\u0440\u0432\u0435\u0440",
|
||||
"service.Connectivity.distributedRouterCapabilityCheckbox": "Distributed Router",
|
||||
"service.Connectivity.regionLevelVpcCapabilityCheckbox": "Region Level VPC",
|
||||
"service.Lb.elasticLbCheckbox": "\u0413\u0438\u0431\u043a\u0438\u0439 LB",
|
||||
"service.Lb.inlineModeDropdown": "\u0420\u0435\u0436\u0438\u043c",
|
||||
"service.Lb.lbIsolationDropdown": "\u0418\u0437\u043e\u043b\u044f\u0446\u0438\u044f LB",
|
||||
"service.SourceNat.redundantRouterCapabilityCheckbox": "\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u0440\u043e\u0443\u0442\u0435\u0440\u0430",
|
||||
"service.SourceNat.sourceNatTypeDropdown": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0435 \u0442\u0438\u043f\u044b NAT-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430",
|
||||
"service.StaticNat.associatePublicIP": "\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u0435 IP",
|
||||
"service.StaticNat.elasticIpCheckbox": "\u0413\u0438\u0431\u043a\u0438\u0439 IP",
|
||||
"serviceCapabilities": "\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0441\u043b\u0443\u0436\u0431\u044b",
|
||||
"serviceOfferingId": "\u0423\u0441\u043b\u0443\u0433\u0430 \u0432\u044b\u0447\u0435\u0441\u043b\u0435\u043d\u0438\u044f",
|
||||
"servicelist": "Services",
|
||||
"serviceofferingid": "\u0423\u0441\u043b\u0443\u0433\u0430 \u0432\u044b\u0447\u0435\u0441\u043b\u0435\u043d\u0438\u044f",
|
||||
"serviceofferingname": "\u0423\u0441\u043b\u0443\u0433\u0430 \u0432\u044b\u0447\u0435\u0441\u043b\u0435\u043d\u0438\u044f",
|
||||
"shrinkok": "Shrink OK",
|
||||
"size": "\u0420\u0430\u0437\u043c\u0435\u0440",
|
||||
"sizegb": "\u0420\u0430\u0437\u043c\u0435\u0440",
|
||||
"smbDomain": "SMB Domain",
|
||||
"smbPassword": "SMB Password",
|
||||
"smbUsername": "SMB Username",
|
||||
"snapshotLimit": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u043d\u0438\u043c\u043a\u043e\u0432",
|
||||
"snapshotMemory": "\u0421\u043d\u0438\u043c\u043e\u043a \u043f\u0430\u043c\u044f\u0442\u0438",
|
||||
"snmpCommunity": "SNMP Community",
|
||||
"snmpPort": "SNMP Port",
|
||||
"sockettimeout": "\u041f\u0440\u0435\u0432\u044b\u0448\u0435\u043d\u0438\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043e\u0436\u0438\u0434\u0430\u043d\u0438\u044f \u0441\u043e\u043a\u0435\u0442\u0430",
|
||||
"sourceNat": "Source NAT",
|
||||
"sourceipaddress": "Source IP Address",
|
||||
"sourceport": "Source Port",
|
||||
"specifyVlan": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 VLAN",
|
||||
"specifyipranges": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d IP-\u0430\u0434\u0440\u0435\u0441\u043e\u0432",
|
||||
"specifyvlan": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 VLAN",
|
||||
"sshkeypair": "New SSH Key Pair",
|
||||
"startdate": "Start Date",
|
||||
"startip": "IPv4 Start IP",
|
||||
"startipv4": "IPv4 Start IP",
|
||||
"startipv6": "IPv6 Start IP",
|
||||
"startport": "\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u044b\u0439 \u043f\u043e\u0440\u0442",
|
||||
"startquota": "Quota Value",
|
||||
"state": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435",
|
||||
"status": "\u0421\u0442\u0430\u0442\u0443\u0441",
|
||||
"storage": "\u0425\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435",
|
||||
"storageId": "\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0435 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435",
|
||||
"storagePool": "\u041f\u0443\u043b \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430",
|
||||
"storageTags": "\u041c\u0435\u0442\u043a\u0438 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430",
|
||||
"storageType": "\u0422\u0438\u043f \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430",
|
||||
"storagetype": "\u0422\u0438\u043f \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430",
|
||||
"subdomainaccess": "\u0414\u043e\u0441\u0442\u0443\u043f \u043a \u043f\u043e\u0434\u0434\u043e\u043c\u0435\u043d\u0443",
|
||||
"supportedServices": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0435 \u0441\u043b\u0443\u0436\u0431\u044b",
|
||||
"supportspublicaccess": "Supports Public Access",
|
||||
"supportsregionLevelvpc": "Supports Region Level VPC",
|
||||
"supportsstrechedl2subnet": "Supports Streched L2 Subnet",
|
||||
"systemvmtype": "\u0422\u0438\u043f",
|
||||
"tags": "\u041c\u0435\u0442\u043a\u0438 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430",
|
||||
"tariffValue": "Tariff Value",
|
||||
"template": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0448\u0430\u0431\u043b\u043e\u043d",
|
||||
"templateFileUpload": "Local file",
|
||||
"templateLimit": "\u041f\u0440\u0435\u0434\u0435\u043b\u044b \u0448\u0430\u0431\u043b\u043e\u043d\u0430",
|
||||
"templateNames": "\u0428\u0430\u0431\u043b\u043e\u043d",
|
||||
"templatebody": "Body",
|
||||
"templatedn": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0448\u0430\u0431\u043b\u043e\u043d",
|
||||
"templatename": "\u0428\u0430\u0431\u043b\u043e\u043d",
|
||||
"templatesubject": "Subject",
|
||||
"templatetotal": "\u0428\u0430\u0431\u043b\u043e\u043d",
|
||||
"templatetype": "Email Template",
|
||||
"tftpdir": "Tftp root directory",
|
||||
"threshold": "Threshold",
|
||||
"tierName": "Tier",
|
||||
"timeout": "\u0412\u0440\u0435\u043c\u044f \u043e\u0436\u0438\u0434\u0430\u043d\u0438\u044f",
|
||||
"timezone": "\u0427\u0430\u0441\u043e\u0432\u043e\u0439 \u043f\u043e\u044f\u0441",
|
||||
"token": "\u0422\u043e\u043a\u0435\u043d",
|
||||
"totalCPU": "\u0412\u0441\u0435\u0433\u043e CPU",
|
||||
"traffictype": "\u0422\u0438\u043f \u0442\u0440\u0430\u0444\u0438\u043a\u0430",
|
||||
"transportzoneuuid": "Transport Zone Uuid",
|
||||
"type": "\u0422\u0438\u043f",
|
||||
"unit": "Usage Unit",
|
||||
"url": "URL",
|
||||
"usageName": "Usage Type",
|
||||
"usageUnit": "Unit",
|
||||
"usageinterface": "\u0418\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f",
|
||||
"useNewDiskOffering": "Replace disk offering?",
|
||||
"useVpc": "VPC",
|
||||
"usehttps": "\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 HTTPS",
|
||||
"userDataL2": "User Data",
|
||||
"username": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
|
||||
"utilization": "Utilisation",
|
||||
"uuid": "ID",
|
||||
"vCenterDataCenter": "\u0426\u041e\u0414 vCenter",
|
||||
"vCenterDataStore": "\u0425\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 vCenter",
|
||||
"vCenterDatacenter": "\u0426\u041e\u0414 vCenter",
|
||||
"vCenterHost": "\u0423\u0437\u0435\u043b vCenter",
|
||||
"vCenterPassword": "\u041f\u0430\u0440\u043e\u043b\u044c vCenter",
|
||||
"vCenterUsername": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f vCenter",
|
||||
"vSwitchGuestName": "Guest Traffic vSwitch Name",
|
||||
"vSwitchGuestType": "Guest Traffic vSwitch Type",
|
||||
"vSwitchPublicName": "Public Traffic vSwitch Name",
|
||||
"vSwitchPublicType": "Public Traffic vSwitch Type",
|
||||
"value": "Credits",
|
||||
"vcenter": "VMware datacenter vcenter",
|
||||
"vcenterHost": "\u0423\u0437\u0435\u043b ESX/ESXi",
|
||||
"vcsdeviceid": "ID",
|
||||
"version": "\u0412\u0435\u0440\u0441\u0438\u044f",
|
||||
"vgpu": "VGPU",
|
||||
"vgpuType": "vGPU type",
|
||||
"virtualMachineId": "\u041c\u0430\u0448\u0438\u043d\u0430",
|
||||
"virtualmachinedisplayname": "\u0418\u043c\u044f VM",
|
||||
"virtualmachineid": "VM ID",
|
||||
"virtualsize": "Virtual Size",
|
||||
"vlan": "VLAN",
|
||||
"vlanId": "ID VLAN",
|
||||
"vlanRange": "VLAN/VNI Range",
|
||||
"vlanname": "VLAN",
|
||||
"vlanrange": "VLAN/VNI Range",
|
||||
"vmLimit": "\u041b\u0438\u043c\u0438\u0442 \u043c\u0430\u0448\u0438\u043d",
|
||||
"vmTotal": "\u041c\u0430\u0448\u0438\u043d\u044b",
|
||||
"vmdisplayname": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u043e\u0435 \u0438\u043c\u044f \u0412\u041c",
|
||||
"vmipaddress": "\u0412\u041c IP-\u0430\u0434\u0440\u0435\u0441",
|
||||
"vmname": "VM Name",
|
||||
"vmstate": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
|
||||
"vmtotal": "\u0412\u0441\u0435\u0433\u043e \u0412\u041c",
|
||||
"vmwaredcId": "VMware datacenter ID",
|
||||
"vmwaredcName": "VMware datacenter Name",
|
||||
"vmwaredcVcenter": "VMware datacenter vcenter",
|
||||
"vmwarenetworklabel": "\u041c\u0435\u0442\u043a\u0430 \u0442\u0440\u0430\u0444\u0438\u043a\u0430 VMware",
|
||||
"volume": "\u0422\u043e\u043c",
|
||||
"volumeFileUpload": "Local file",
|
||||
"volumeLimit": "\u041a\u043e\u043b\u0438\u0447\u0435\u0442\u0441\u0432\u043e \u0434\u0438\u0441\u043a\u043e\u0432",
|
||||
"volumeTotal": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u044f",
|
||||
"volumegroup": "\u0413\u0440\u0443\u043f\u043f\u0430 \u0434\u0438\u0441\u043a\u0430",
|
||||
"volumename": "\u0418\u043c\u044f \u0442\u043e\u043c\u0430",
|
||||
"volumetotal": "\u0422\u043e\u043c",
|
||||
"vpcLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f VPC",
|
||||
"vpcid": "VPC ID",
|
||||
"vpcname": "VPC",
|
||||
"vpcoffering": "\u0423\u0441\u043b\u0443\u0433\u0430 VPC",
|
||||
"vpncustomergatewayid": "VPN \u0448\u043b\u044e\u0437 \u043a\u043b\u0438\u0435\u043d\u0442\u0430",
|
||||
"vsmctrlvlanid": "Control VLAN ID",
|
||||
"vsmdeviceid": "\u0418\u043c\u044f",
|
||||
"vsmdevicestate": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435",
|
||||
"vsmipaddress": "Nexus 1000v IP Address",
|
||||
"vsmipaddress_req": "Nexus 1000v IP Address",
|
||||
"vsmpassword": "Nexus 1000v Password",
|
||||
"vsmpassword_req": "Nexus 1000v Password",
|
||||
"vsmpktvlanid": "Packet VLAN ID",
|
||||
"vsmstoragevlanid": "Storage VLAN ID",
|
||||
"vsmusername": "Nexus 1000v Username",
|
||||
"vsmusername_req": "Nexus 1000v Username",
|
||||
"xennetworklabel": "\u041c\u0435\u0442\u043a\u0430 \u0442\u0440\u0430\u0444\u0438\u043a\u0430 XenServer",
|
||||
"xenserverToolsVersion61plus": "Original XS Version is 6.1+",
|
||||
"zone": "\u0417\u043e\u043d\u0430",
|
||||
"zoneId": "\u0417\u043e\u043d\u0430",
|
||||
"zoneid": "\u0417\u043e\u043d\u0430",
|
||||
"zonename": "\u0417\u043e\u043d\u0430"
|
||||
}
|
||||
|
|
@ -0,0 +1,638 @@
|
|||
{
|
||||
"Accounts": "\u5e10\u6237",
|
||||
"Affinity Groups": "\u5173\u8054\u6027\u7ec4",
|
||||
"Alerts": "\u8b66\u62a5",
|
||||
"CPU Sockets": "CPU \u63d2\u69fd",
|
||||
"Cloudian Storage": "Cloudian Storage",
|
||||
"Clusters": "\u7fa4\u96c6",
|
||||
"Compute": "\u8ba1\u7b97",
|
||||
"Compute Offerings": "\u8ba1\u7b97\u65b9\u6848",
|
||||
"Configuration": "\u914d\u7f6e",
|
||||
"Dashboard": "\u63a7\u5236\u677f",
|
||||
"Disk Offerings": "\u78c1\u76d8\u65b9\u6848",
|
||||
"Domains": "Domains",
|
||||
"Events": "\u4e8b\u4ef6",
|
||||
"Global Settings": "\u5168\u5c40\u8bbe\u7f6e",
|
||||
"Hosts": "\u4e3b\u673a",
|
||||
"Hypervisor Capabilities": "\u865a\u62df\u673a\u7ba1\u7406\u7a0b\u5e8f\u529f\u80fd",
|
||||
"ISOs": "ISO",
|
||||
"Identity and Access": "Identity and Access",
|
||||
"Infrastructure": "\u57fa\u7840\u67b6\u6784",
|
||||
"Instances": "\u5b9e\u4f8b",
|
||||
"LDAP Configuration": "LDAP \u914d\u7f6e",
|
||||
"Management Servers": "Management Servers",
|
||||
"Monitor": "Monitor",
|
||||
"Network": "\u7f51\u7edc",
|
||||
"Network Offerings": "\u7f51\u7edc\u65b9\u6848",
|
||||
"Plugins": "\u63d2\u4ef6",
|
||||
"Pods": "\u63d0\u4f9b\u70b9",
|
||||
"Primary Storage": "\u4e3b\u5b58\u50a8",
|
||||
"Projects": "\u9879\u76ee",
|
||||
"Public IP Addresses": "\u516c\u7528 IP \u5730\u5740",
|
||||
"Public network": "\u516c\u7528\u7f51\u7edc",
|
||||
"Quota": "Quota",
|
||||
"RESOURCE_NAME": "\u8d44\u6e90\u540d\u79f0",
|
||||
"Roles": "\u89d2\u8272",
|
||||
"SSH Key Pairs": "SSH\u5bc6\u94a5\u5bf9",
|
||||
"Secondary Storage": "\u4e8c\u7ea7\u5b58\u50a8",
|
||||
"Security Groups": "\u5b89\u5168\u7ec4",
|
||||
"Snapshots": "\u5feb\u7167",
|
||||
"Storage": "\u5b58\u50a8",
|
||||
"System Offerings": "\u7cfb\u7edf\u65b9\u6848",
|
||||
"System VMs": "\u7cfb\u7edf VM",
|
||||
"Templates": "\u6a21\u677f",
|
||||
"Users": "\u7528\u6237",
|
||||
"VM Snapshots": "VM \u5feb\u7167",
|
||||
"VPC": "VPC",
|
||||
"VPC Offerings": "VPC \u65b9\u6848",
|
||||
"VPN Gateway": "VPN \u7f51\u5173",
|
||||
"Virtual Routers": "\u865a\u62df\u8def\u7531\u5668",
|
||||
"Volumes": "\u5377",
|
||||
"Zones": "\u8d44\u6e90\u57df",
|
||||
"accesskey": "\u8bbf\u95ee\u5bc6\u94a5",
|
||||
"account": "\u5e10\u6237",
|
||||
"accountId": "\u5e10\u6237",
|
||||
"accountTotal": "\u5e10\u6237",
|
||||
"accountlist": "\u5e10\u6237",
|
||||
"accounts": "\u5e10\u6237",
|
||||
"accounttype": "\u5e10\u53f7\u7c7b\u578b",
|
||||
"aclTotal": "\u7f51\u7edc ACL \u603b\u6570",
|
||||
"aclid": "ACL",
|
||||
"aclname": "ACL \u540d\u79f0",
|
||||
"action": "\u64cd\u4f5c",
|
||||
"activeviewersessions": "\u6d3b\u52a8\u4f1a\u8bdd",
|
||||
"add-scaleDowncondition": "\u6dfb\u52a0",
|
||||
"add-scaleUpcondition": "\u6dfb\u52a0",
|
||||
"address": "Address",
|
||||
"admin": "\u57df\u7ba1\u7406\u5458",
|
||||
"agentPassword": "\u4ee3\u7406\u5bc6\u7801",
|
||||
"agentPort": "\u4ee3\u7406\u7aef\u53e3",
|
||||
"agentUsername": "\u4ee3\u7406\u7528\u6237\u540d",
|
||||
"agentstate": "\u4ee3\u7406\u72b6\u6001",
|
||||
"algorithm": "\u7b97\u6cd5",
|
||||
"allocationstate": "\u5206\u914d\u72b6\u6001",
|
||||
"apikey": "API \u5bc6\u94a5",
|
||||
"associatednetworkid": "\u5df2\u5173\u8054\u7f51\u7edc ID",
|
||||
"associatednetworkname": "\u7f51\u7edc\u540d\u79f0",
|
||||
"availability": "\u53ef\u7528\u6027",
|
||||
"availabilityZone": "\u53ef\u7528\u8d44\u6e90\u57df",
|
||||
"balance": "Balance",
|
||||
"baremetalCpu": "CPU (MHz)",
|
||||
"baremetalCpuCores": "CPU \u5185\u6838\u6570",
|
||||
"baremetalMAC": "\u4e3b\u673a MAC",
|
||||
"baremetalMemory": "\u5185\u5b58(MB)",
|
||||
"bcfdeviceid": "ID",
|
||||
"bladeid": "\u5200\u7247\u5f0f\u670d\u52a1\u5668 ID",
|
||||
"bootable": "\u53ef\u542f\u52a8",
|
||||
"broadcastdomainrange": "\u5e7f\u64ad\u57df\u8303\u56f4",
|
||||
"broadcastdomaintype": "\u5e7f\u64ad\u57df\u7c7b\u578b",
|
||||
"broadcasturi": "\u5e7f\u64ad URI",
|
||||
"bucket": "\u5b58\u50a8\u6876",
|
||||
"cacheMode": "\u5199\u5165\u7f13\u5b58\u7c7b\u578b",
|
||||
"capacity": "\u5bb9\u91cf",
|
||||
"capacityBytes": "\u5bb9\u91cf(\u5b57\u8282)",
|
||||
"capacityIops": "\u5bb9\u91cf IOPS",
|
||||
"capacityiops": "\u603b IOPS",
|
||||
"chassis": "\u673a\u7bb1",
|
||||
"checksum": "\u6821\u9a8c",
|
||||
"cidr": "CIDR",
|
||||
"cidrlist": "CIDR \u5217\u8868",
|
||||
"cleanup": "\u6e05\u7406",
|
||||
"clusterId": "\u7fa4\u96c6",
|
||||
"clusterid": "\u7fa4\u96c6",
|
||||
"clustername": "\u7fa4\u96c6",
|
||||
"clusters": "\u7fa4\u96c6",
|
||||
"clustertype": "\u7fa4\u96c6\u7c7b\u578b",
|
||||
"connectiontimeout": "\u8fde\u63a5\u8d85\u65f6",
|
||||
"conservemode": "\u8282\u80fd\u6a21\u5f0f",
|
||||
"counterid": "\u8ba1\u6570\u5668",
|
||||
"cpuCap": "CPU \u4e0a\u9650",
|
||||
"cpuLimit": "CPU \u9650\u5236",
|
||||
"cpuNumber": "CPU \u5185\u6838\u6570",
|
||||
"cpuSpeed": "CPU (MHz)",
|
||||
"cpuallocated": "\u5df2\u5206\u914d\u7ed9 VM \u7684 CPU",
|
||||
"cpuallocatedghz": "\u5df2\u5206\u914d",
|
||||
"cpumaxdeviation": "Deviation",
|
||||
"cpunumber": "CPU \u5185\u6838\u6570",
|
||||
"cpusockets": "CPU \u63d2\u69fd\u6570",
|
||||
"cpuspeed": "CPU (MHz)",
|
||||
"cputotal": "Total",
|
||||
"cputotalghz": "Total",
|
||||
"cpuused": "CPU \u5229\u7528\u7387",
|
||||
"cpuusedghz": "\u5df2\u4f7f\u7528",
|
||||
"createNfsCache": "\u521b\u5efa NFS \u4e8c\u7ea7\u6682\u5b58\u5b58\u50a8",
|
||||
"created": "\u65e5\u671f",
|
||||
"credit": "Credit",
|
||||
"crossZones": "\u8de8\u8d44\u6e90\u57df",
|
||||
"current": "\u6700\u65b0\u7248\u672c",
|
||||
"date": "\u65e5\u671f",
|
||||
"dedicated": "\u4e13\u7528",
|
||||
"deleteprofile": "\u5220\u9664\u914d\u7f6e\u6587\u4ef6",
|
||||
"deploymentPlanner": "\u90e8\u7f72\u89c4\u5212\u5668",
|
||||
"deploymentplanner": "\u90e8\u7f72\u89c4\u5212\u5668",
|
||||
"description": "\u8bf4\u660e",
|
||||
"destinationZoneId": "\u76ee\u6807\u8d44\u6e90\u57df",
|
||||
"destinationphysicalnetworkid": "\u76ee\u6807\u7269\u7406\u7f51\u7edc ID",
|
||||
"destroyVMgracePeriod": "\u9500\u6bc1 VM \u5bbd\u9650\u671f",
|
||||
"details": "\u8be6\u7ec6\u4fe1\u606f",
|
||||
"deviceid": "\u8bbe\u5907 ID",
|
||||
"directdownload": "Direct Download",
|
||||
"disconnected": "\u4e0a\u6b21\u65ad\u5f00\u8fde\u63a5\u65f6\u95f4",
|
||||
"disk": "Disk",
|
||||
"diskBytesReadRate": "\u78c1\u76d8\u8bfb\u53d6\u901f\u5ea6(BPS)",
|
||||
"diskBytesWriteRate": "\u78c1\u76d8\u5199\u5165\u901f\u5ea6(BPS)",
|
||||
"diskIopsReadRate": "\u78c1\u76d8\u8bfb\u53d6\u901f\u5ea6(IOPS)",
|
||||
"diskIopsWriteRate": "\u78c1\u76d8\u5199\u5165\u901f\u5ea6(IOPS)",
|
||||
"diskOffering": "\u78c1\u76d8\u65b9\u6848",
|
||||
"diskOfferingId": "\u78c1\u76d8\u65b9\u6848",
|
||||
"diskSize": "\u78c1\u76d8\u5927\u5c0f(GB)",
|
||||
"diskiopstotal": "IOPS",
|
||||
"diskioread": "\u78c1\u76d8\u8bfb\u53d6(IO)",
|
||||
"diskiowrite": "\u78c1\u76d8\u5199\u5165(IO)",
|
||||
"diskkbsread": "\u78c1\u76d8\u8bfb\u53d6(\u5b57\u8282)",
|
||||
"diskkbswrite": "\u78c1\u76d8\u5199\u5165(\u5b57\u8282)",
|
||||
"diskofferingdisplaytext": "\u78c1\u76d8\u65b9\u6848",
|
||||
"disksize": "\u78c1\u76d8\u5927\u5c0f(GB)",
|
||||
"disksizeallocated": "\u5df2\u5206\u914d\u7684\u78c1\u76d8",
|
||||
"disksizeallocatedgb": "\u5df2\u5206\u914d",
|
||||
"disksizetotal": "\u78c1\u76d8\u603b\u91cf",
|
||||
"disksizetotalgb": "Total",
|
||||
"disksizeunallocatedgb": "Unallocated",
|
||||
"disksizeusedgb": "\u5df2\u4f7f\u7528",
|
||||
"displayText": "\u8bf4\u660e",
|
||||
"displayname": "\u663e\u793a\u540d\u79f0",
|
||||
"displaytext": "\u8bf4\u660e",
|
||||
"distributedvpcrouter": "\u5206\u5e03\u5f0f VPC \u8def\u7531\u5668",
|
||||
"dns1": "DNS 1",
|
||||
"dns2": "DNS 2",
|
||||
"domain": "\u57df",
|
||||
"domainId": "\u57df",
|
||||
"domainid": "\u57df",
|
||||
"domainname": "\u57df",
|
||||
"domainpath": "\u57df",
|
||||
"dpd": "\u5931\u6548\u5bf9\u7b49\u4f53\u68c0\u6d4b",
|
||||
"driver": "Driver",
|
||||
"egressdefaultpolicy": "\u51fa\u53e3\u9ed8\u8ba4\u7b56\u7565",
|
||||
"email": "\u7535\u5b50\u90ae\u4ef6",
|
||||
"enddate": "End Date",
|
||||
"endip": "IPv4 \u7ed3\u675f IP",
|
||||
"endipv4": "IPv4 \u7ed3\u675f IP",
|
||||
"endipv6": "IPv6 \u7ed3\u675f IP",
|
||||
"endpoint": "\u7aef\u70b9",
|
||||
"endport": "\u7ed3\u675f\u7aef\u53e3",
|
||||
"espEncryption": "ESP \u52a0\u5bc6\u7b97\u6cd5",
|
||||
"espHash": "ESP \u54c8\u5e0c\u7b97\u6cd5",
|
||||
"esplifetime": "ESP \u4f7f\u7528\u671f\u9650(\u7b2c\u4e8c\u9636\u6bb5)",
|
||||
"esppolicy": "ESP \u7b56\u7565",
|
||||
"expunge": "\u5220\u9664",
|
||||
"fingerprint": "\u6307\u7eb9",
|
||||
"firstname": "\u540d\u5b57",
|
||||
"forced": "\u5f3a\u5236\u505c\u6b62",
|
||||
"forceencap": "Force UDP Encapsulation of ESP Packets",
|
||||
"format": "\u683c\u5f0f",
|
||||
"fwdevicecapacity": "\u5bb9\u91cf",
|
||||
"fwdeviceid": "ID",
|
||||
"fwdevicename": "\u7c7b\u578b",
|
||||
"fwdevicestate": "\u72b6\u6001",
|
||||
"gateway": "\u7f51\u5173",
|
||||
"glustervolume": "\u5377",
|
||||
"group": "\u7ec4",
|
||||
"gslbdomainname": "GSLB \u57df\u540d",
|
||||
"gslblbmethod": "\u7b97\u6cd5",
|
||||
"gslbprovider": "GSLB \u670d\u52a1",
|
||||
"gslbproviderprivateip": "GSLB \u670d\u52a1\u4e13\u7528 IP",
|
||||
"gslbproviderpublicip": "GSLB \u670d\u52a1\u516c\u7528 IP",
|
||||
"gslbservicetype": "\u670d\u52a1\u7c7b\u578b",
|
||||
"guestEndIp": "\u6765\u5bbe\u7ed3\u675f IP",
|
||||
"guestGateway": "\u6765\u5bbe\u7f51\u5173",
|
||||
"guestIpType": "\u6765\u5bbe\u7c7b\u578b",
|
||||
"guestNetmask": "\u6765\u5bbe\u7f51\u7edc\u63a9\u7801",
|
||||
"guestStartIp": "\u6765\u5bbe\u8d77\u59cb IP",
|
||||
"guestcidraddress": "\u6765\u5bbe CIDR",
|
||||
"guestipaddress": "\u6765\u5bbe IP \u5730\u5740",
|
||||
"guestiptype": "\u6765\u5bbe\u7c7b\u578b",
|
||||
"guestnetworkid": "\u7f51\u7edc ID",
|
||||
"guestnetworkname": "\u7f51\u7edc\u540d\u79f0",
|
||||
"guestosid": "\u64cd\u4f5c\u7cfb\u7edf\u7c7b\u578b",
|
||||
"guestvlanrange": "VLAN \u8303\u56f4",
|
||||
"haenable": "\u5df2\u542f\u7528\u9ad8\u53ef\u7528\u6027",
|
||||
"hahost": "\u5df2\u542f\u7528\u9ad8\u53ef\u7528\u6027",
|
||||
"host": "IP \u5730\u5740",
|
||||
"hostId": "\u4e3b\u673a",
|
||||
"hostTags": "\u4e3b\u673a\u6807\u7b7e",
|
||||
"hostname": "\u4e3b\u673a\u540d\u79f0",
|
||||
"hosts": "\u4e3b\u673a",
|
||||
"hosttags": "\u4e3b\u673a\u6807\u7b7e",
|
||||
"hypervisor": "\u865a\u62df\u673a\u7ba1\u7406\u7a0b\u5e8f",
|
||||
"hypervisorSnapshotReserve": "\u865a\u62df\u673a\u7ba1\u7406\u7a0b\u5e8f\u5feb\u7167\u9884\u7559",
|
||||
"hypervisorsnapshotreserve": "\u865a\u62df\u673a\u7ba1\u7406\u7a0b\u5e8f\u5feb\u7167\u9884\u7559",
|
||||
"hypervisortype": "\u865a\u62df\u673a\u7ba1\u7406\u7a0b\u5e8f",
|
||||
"hypervisorversion": "\u865a\u62df\u673a\u7ba1\u7406\u7a0b\u5e8f\u7248\u672c",
|
||||
"hypervnetworklabel": "HyperV \u6d41\u91cf\u6807\u7b7e",
|
||||
"icmpcode": "ICMP \u4ee3\u7801",
|
||||
"icmptype": "ICMP \u7c7b\u578b",
|
||||
"id": "ID",
|
||||
"ikeDh": "IKE DH \u7b97\u6cd5",
|
||||
"ikeEncryption": "IKE \u52a0\u5bc6\u7b97\u6cd5",
|
||||
"ikeHash": "IKE \u54c8\u5e0c\u7b97\u6cd5",
|
||||
"ikelifetime": "IKE \u4f7f\u7528\u671f\u9650(\u7b2c\u4e8c\u9636\u6bb5)",
|
||||
"ikepolicy": "IKE \u7b56\u7565",
|
||||
"insideportprofile": "\u5185\u90e8\u7aef\u53e3\u914d\u7f6e\u6587\u4ef6",
|
||||
"instancename": "\u5185\u90e8\u540d\u79f0",
|
||||
"instanceport": "\u5b9e\u4f8b\u7aef\u53e3",
|
||||
"instances": "\u5b9e\u4f8b",
|
||||
"internaldns1": "\u5185\u90e8 DNS 1",
|
||||
"internaldns2": "\u5185\u90e8 DNS 2",
|
||||
"interval": "\u8f6e\u8be2\u65f6\u95f4\u95f4\u9694(\u79d2)",
|
||||
"intervaltype": "\u95f4\u9694\u7c7b\u578b",
|
||||
"ip": "IP \u5730\u5740",
|
||||
"ip4Netmask": "IPv4 \u7f51\u7edc\u63a9\u7801",
|
||||
"ip4dns1": "IPv4 DNS1",
|
||||
"ip4dns2": "IPv4 DNS2",
|
||||
"ip4gateway": "IPv4 \u7f51\u5173",
|
||||
"ip6address": "IPv6 IP \u5730\u5740",
|
||||
"ip6cidr": "IPv6 CIDR",
|
||||
"ip6dns1": "IPv6 DNS1",
|
||||
"ip6dns2": "IPv6 DNS2",
|
||||
"ip6gateway": "IPv6 \u7f51\u5173",
|
||||
"ipLimit": "\u516c\u7528 IP \u9650\u5236",
|
||||
"ipaddress": "IP \u5730\u5740",
|
||||
"ipaddress1": "IP \u5730\u5740",
|
||||
"ipaddress2": "IP \u5730\u5740",
|
||||
"ipsecpsk": "IPsec \u9884\u5171\u4eab\u5bc6\u94a5",
|
||||
"iptotal": "IP\u5730\u5740\u603b\u6570",
|
||||
"iqn": "\u76ee\u6807 IQN",
|
||||
"isAdvanced": "\u663e\u793a\u9ad8\u7ea7\u8bbe\u7f6e",
|
||||
"isBootable": "\u53ef\u542f\u52a8",
|
||||
"isCustomized": "\u81ea\u5b9a\u4e49\u78c1\u76d8\u5927\u5c0f",
|
||||
"isCustomizedIops": "\u81ea\u5b9a\u4e49 IOPS",
|
||||
"isDedicated": "\u4e13\u7528",
|
||||
"isExtractable": "\u53ef\u63d0\u53d6",
|
||||
"isFeatured": "\u7cbe\u9009",
|
||||
"isForced": "\u5f3a\u5236\u79fb\u9664",
|
||||
"isManaged": "\u6258\u7ba1",
|
||||
"isPasswordEnabled": "\u5df2\u542f\u7528\u5bc6\u7801",
|
||||
"isPersistent": "\u6c38\u4e45",
|
||||
"isPublic": "\u516c\u7528",
|
||||
"isVolatile": "\u53ef\u53d8",
|
||||
"iscustomized": "\u81ea\u5b9a\u4e49\u78c1\u76d8\u5927\u5c0f",
|
||||
"iscustomizediops": "\u81ea\u5b9a\u4e49 IOPS",
|
||||
"isdedicated": "\u4e13\u7528",
|
||||
"isdefault": "\u662f\u5426\u4e3a\u9ed8\u8ba4\u8bbe\u7f6e",
|
||||
"isdynamicallyscalable": "\u53ef\u52a8\u6001\u6269\u5c55",
|
||||
"isextractable": "\u53ef\u63d0\u53d6",
|
||||
"isfeatured": "\u7cbe\u9009",
|
||||
"iso": "ISO",
|
||||
"isolatedpvlanId": "\u4e8c\u7ea7\u9694\u79bb VLAN ID",
|
||||
"isolationmethods": "\u9694\u79bb\u65b9\u6cd5",
|
||||
"isolationuri": "\u9694\u79bb URI",
|
||||
"isoname": "\u5df2\u9644\u52a0 ISO",
|
||||
"ispersistent": "\u6c38\u4e45",
|
||||
"isportable": "\u8de8\u8d44\u6e90\u57df",
|
||||
"ispublic": "\u516c\u7528",
|
||||
"isready": "\u5df2\u5c31\u7eea",
|
||||
"isredundantrouter": "\u5197\u4f59\u8def\u7531\u5668",
|
||||
"isrouting": "\u6b63\u5728\u8def\u7531",
|
||||
"issourcenat": "\u6e90 NAT",
|
||||
"isstaticnat": "\u9759\u6001 NAT",
|
||||
"issystem": "\u662f\u5426\u4e3a\u7cfb\u7edf",
|
||||
"isvolatile": "\u53ef\u53d8",
|
||||
"key": "\u5bc6\u94a5",
|
||||
"keyboardType": "\u952e\u76d8\u7c7b\u578b",
|
||||
"keypair": "SSH\u5bc6\u94a5\u5bf9",
|
||||
"kvmnetworklabel": "KVM \u6d41\u91cf\u6807\u7b7e",
|
||||
"l2gatewayserviceuuid": "L2 Gateway Service Uuid",
|
||||
"l3gatewayserviceuuid": "L3 Gateway Service UUID",
|
||||
"last_updated": "Last Update",
|
||||
"lastname": "\u59d3\u6c0f",
|
||||
"lbType": "\u8d1f\u8f7d\u5e73\u8861\u5668\u7c7b\u578b",
|
||||
"lbdevicecapacity": "\u5bb9\u91cf",
|
||||
"lbdevicededicated": "\u4e13\u7528",
|
||||
"lbdeviceid": "ID",
|
||||
"lbdevicename": "\u7c7b\u578b",
|
||||
"lbdevicestate": "\u72b6\u6001",
|
||||
"level": "\u7ea7\u522b",
|
||||
"limitcpuuse": "CPU \u4e0a\u9650",
|
||||
"linklocalip": "\u94fe\u63a5\u672c\u5730 IP \u5730\u5740",
|
||||
"loadbalancerinstance": "\u5df2\u5206\u914d\u7684 VM",
|
||||
"loadbalancerrule": "\u8d1f\u8f7d\u5e73\u8861\u89c4\u5219",
|
||||
"localstorageenabled": "\u4e3a\u7528\u6237\u5b9e\u4f8b\u5f00\u542f\u672c\u5730\u5b58\u50a8",
|
||||
"localstorageenabledforsystemvm": "\u4e3a\u7cfb\u7edf\u5b9e\u4f8b\u5f00\u542f\u672c\u5730\u5b58\u50a8",
|
||||
"lun": "LUN \u53f7",
|
||||
"lxcnetworklabel": "LXC \u6d41\u91cf\u6807\u7b7e",
|
||||
"makeredundant": "\u5197\u4f59",
|
||||
"maxInstance": "\u6700\u5927\u5b9e\u4f8b\u6570",
|
||||
"maxIops": "\u6700\u5927 IOPS",
|
||||
"maxerrorretry": "\u6700\u5927\u9519\u8bef\u91cd\u8bd5\u6b21\u6570",
|
||||
"maxguestslimit": "\u6700\u5927\u6765\u5bbe\u6570\u9650\u5236",
|
||||
"maxiops": "\u6700\u5927 IOPS",
|
||||
"memallocated": "Mem Allocation",
|
||||
"memory": "\u5185\u5b58(MB)",
|
||||
"memoryLimit": "\u5185\u5b58\u9650\u5236(MiB)",
|
||||
"memoryallocated": "\u5df2\u5206\u914d\u7684\u5185\u5b58",
|
||||
"memoryallocatedgb": "\u5df2\u5206\u914d",
|
||||
"memorymaxdeviation": "Deviation",
|
||||
"memorytotal": "\u5df2\u5206\u914d",
|
||||
"memorytotalgb": "Total",
|
||||
"memoryused": "\u5df2\u4f7f\u7528",
|
||||
"memoryusedgb": "\u5df2\u4f7f\u7528",
|
||||
"memused": "Mem Usage",
|
||||
"minInstance": "\u6700\u5c0f\u5b9e\u4f8b\u6570",
|
||||
"minIops": "\u6700\u5c0f IOPS",
|
||||
"min_balance": "Min Balance",
|
||||
"miniops": "\u6700\u5c0f IOPS",
|
||||
"name": "\u540d\u79f0",
|
||||
"nat": "BigSwitch BCF NAT \u5df2\u542f\u7528",
|
||||
"netmask": "\u7f51\u7edc\u63a9\u7801",
|
||||
"network": "\u7f51\u7edc",
|
||||
"networkDomain": "\u7f51\u7edc\u57df",
|
||||
"networkLimit": "\u7f51\u7edc\u9650\u5236",
|
||||
"networkOfferingId": "\u7f51\u7edc\u65b9\u6848",
|
||||
"networkRate": "\u7f51\u7edc\u901f\u7387(MB/\u79d2)",
|
||||
"networkcidr": "\u7f51\u7edc CIDR",
|
||||
"networkdevicetype": "\u7c7b\u578b",
|
||||
"networkdomain": "\u7f51\u7edc\u57df",
|
||||
"networkdomaintext": "\u7f51\u7edc\u57df",
|
||||
"networkid": "\u9009\u62e9\u5c42",
|
||||
"networkkbsread": "\u7f51\u7edc\u8bfb\u53d6\u91cf",
|
||||
"networkkbswrite": "\u7f51\u7edc\u5199\u5165\u91cf",
|
||||
"networkname": "\u7f51\u7edc\u540d\u79f0",
|
||||
"networkofferingdisplaytext": "\u7f51\u7edc\u65b9\u6848",
|
||||
"networkofferingid": "\u7f51\u7edc\u65b9\u6848",
|
||||
"networkofferingidText": "\u7f51\u7edc\u65b9\u6848 ID",
|
||||
"networkofferingname": "\u7f51\u7edc\u65b9\u6848",
|
||||
"networkrate": "\u7f51\u7edc\u901f\u7387(MB/\u79d2)",
|
||||
"networkread": "Read",
|
||||
"networktype": "\u7f51\u7edc\u7c7b\u578b",
|
||||
"networkwrite": "Write",
|
||||
"newDiskOffering": "New Disk Offering",
|
||||
"newdiskoffering": "\u65b0\u65b9\u6848",
|
||||
"newsize": "\u65b0\u5efa\u5927\u5c0f(GB)",
|
||||
"nfsCacheNfsServer": "S3 NFS \u670d\u52a1\u5668",
|
||||
"nfsCachePath": "S3 NFS \u8def\u5f84",
|
||||
"nfsCacheZoneid": "\u8d44\u6e90\u57df",
|
||||
"nfsServer": "\u670d\u52a1\u5668",
|
||||
"nicAdapterType": "NIC \u9002\u914d\u5668\u7c7b\u578b",
|
||||
"number": "#Rule",
|
||||
"numberOfRouterRequiresUpgrade": "\u9700\u8981\u5347\u7ea7\u7684\u865a\u62df\u8def\u7531\u5668\u603b\u6570",
|
||||
"numretries": "\u91cd\u8bd5\u6b21\u6570",
|
||||
"nvpdeviceid": "ID",
|
||||
"offerHA": "\u63d0\u4f9b\u9ad8\u53ef\u7528\u6027",
|
||||
"offerha": "\u63d0\u4f9b\u9ad8\u53ef\u7528\u6027",
|
||||
"osTypeId": "\u64cd\u4f5c\u7cfb\u7edf\u7c7b\u578b",
|
||||
"oscategoryid": "\u64cd\u4f5c\u7cfb\u7edf\u9996\u9009\u9879",
|
||||
"ostypeid": "\u64cd\u4f5c\u7cfb\u7edf\u7c7b\u578b",
|
||||
"ostypename": "\u64cd\u4f5c\u7cfb\u7edf\u7c7b\u578b",
|
||||
"overrideguesttraffic": "\u66ff\u4ee3\u6765\u5bbe\u6d41\u91cf",
|
||||
"overridepublictraffic": "\u66ff\u4ee3\u516c\u5171\u6d41\u91cf",
|
||||
"ovm3cluster": "\u672c\u5730\u96c6\u7fa4",
|
||||
"ovm3networklabel": "OVM3 traffic label",
|
||||
"ovm3pool": "\u539f\u751f\u6c60",
|
||||
"ovm3vip": "\u4e3b\u865a\u62dfIP",
|
||||
"ovmnetworklabel": "OVM \u6d41\u91cf\u6807\u7b7e",
|
||||
"palp": "Palo Alto \u65e5\u5fd7\u914d\u7f6e\u6587\u4ef6",
|
||||
"parentName": "\u7236\u540d\u79f0",
|
||||
"passive": "\u88ab\u52a8",
|
||||
"password": "\u5bc6\u7801",
|
||||
"password-confirm": "\u786e\u8ba4\u5bc6\u7801",
|
||||
"passwordenabled": "\u5df2\u542f\u7528\u5bc6\u7801",
|
||||
"path": "\u8def\u5f84",
|
||||
"patp": "Palo Alto \u5a01\u80c1\u914d\u7f6e\u6587\u4ef6",
|
||||
"pavr": "\u865a\u62df\u8def\u7531\u5668",
|
||||
"pciDevice": "GPU",
|
||||
"perfectForwardSecrecy": "\u5b8c\u5168\u6b63\u5411\u4fdd\u5bc6",
|
||||
"physicalNetworkId": "\u7269\u7406\u7f51\u7edc",
|
||||
"physicalnetworkid": "\u7269\u7406\u7f51\u7edc",
|
||||
"physicalsize": "Physical Size",
|
||||
"plannerMode": "\u89c4\u5212\u5668\u6a21\u5f0f",
|
||||
"podId": "\u63d0\u4f9b\u70b9",
|
||||
"podname": "\u63d0\u4f9b\u70b9",
|
||||
"port": "\u7aef\u53e3",
|
||||
"portableipaddress": "\u53ef\u79fb\u690d IP",
|
||||
"powerstate": "Power State",
|
||||
"primaryStorageLimit": "\u4e3b\u5b58\u50a8\u9650\u5236(GiB)",
|
||||
"primarystoragetotal": "\u4e3b\u5b58\u50a8",
|
||||
"privateinterface": "\u4e13\u7528\u63a5\u53e3",
|
||||
"privateip": "\u4e13\u7528 IP \u5730\u5740",
|
||||
"privatekey": "\u79c1\u94a5",
|
||||
"privatenetwork": "\u4e13\u7528\u7f51\u7edc",
|
||||
"privateport": "\u4e13\u7528\u7aef\u53e3",
|
||||
"profiledn": "\u5df2\u5173\u8054\u914d\u7f6e\u6587\u4ef6",
|
||||
"profilename": "\u914d\u7f6e\u6587\u4ef6",
|
||||
"project": "\u9879\u76ee",
|
||||
"projectId": "\u9879\u76ee",
|
||||
"projectid": "\u9879\u76ee ID",
|
||||
"projects": "\u9879\u76ee",
|
||||
"property": "Property",
|
||||
"protocol": "\u534f\u8bae",
|
||||
"protocolnumber": "#Protocol",
|
||||
"provider": "\u63d0\u4f9b\u7a0b\u5e8f",
|
||||
"providername": "\u63d0\u4f9b\u7a0b\u5e8f",
|
||||
"provisioningType": "\u7f6e\u5907\u7c7b\u578b",
|
||||
"provisioningtype": "\u7f6e\u5907\u7c7b\u578b",
|
||||
"publicinterface": "\u516c\u7528\u63a5\u53e3",
|
||||
"publicip": "IP \u5730\u5740",
|
||||
"publickey": "\u516c\u94a5",
|
||||
"publicnetwork": "\u516c\u7528\u7f51\u7edc",
|
||||
"publicport": "\u516c\u7528\u7aef\u53e3",
|
||||
"purpose": "\u76ee\u7684",
|
||||
"qosType": "QoS \u7c7b\u578b",
|
||||
"quiescevm": "\u9759\u9ed8 VM",
|
||||
"quietTime": "\u5b89\u9759\u65f6\u95f4(\u79d2)",
|
||||
"quota": "Quota Value",
|
||||
"quota_enforce": "Enforce Quota",
|
||||
"rbdid": "Cephx \u7528\u6237",
|
||||
"rbdmonitor": "Ceph \u76d1\u89c6\u5668",
|
||||
"rbdpool": "Ceph \u6c60",
|
||||
"rbdsecret": "Cephx \u5bc6\u94a5",
|
||||
"reason": "Reason",
|
||||
"receivedbytes": "\u63a5\u6536\u7684\u5b57\u8282\u6570",
|
||||
"redundantRouterState": "\u5197\u4f59\u72b6\u6001",
|
||||
"redundantrouter": "\u5197\u4f59\u8def\u7531\u5668",
|
||||
"redundantstate": "\u5197\u4f59\u72b6\u6001",
|
||||
"redundantvpcrouter": "\u5197\u4f59VPC",
|
||||
"reenterpassword": "Re-enter Password",
|
||||
"relationaloperator": "\u8fd0\u7b97\u7b26",
|
||||
"requireshvm": "HVM",
|
||||
"requiresupgrade": "\u9700\u8981\u5347\u7ea7",
|
||||
"reservedSystemEndIp": "\u7ed3\u675f\u9884\u7559\u7cfb\u7edf IP",
|
||||
"reservedSystemGateway": "\u9884\u7559\u7684\u7cfb\u7edf\u7f51\u5173",
|
||||
"reservedSystemNetmask": "\u9884\u7559\u7684\u7cfb\u7edf\u7f51\u7edc\u63a9\u7801",
|
||||
"reservedSystemStartIp": "\u8d77\u59cb\u9884\u7559\u7cfb\u7edf IP",
|
||||
"reservediprange": "\u9884\u7559 IP \u8303\u56f4",
|
||||
"resourceid": "\u8d44\u6e90 ID",
|
||||
"resourcename": "\u8d44\u6e90\u540d\u79f0",
|
||||
"resourcestate": "\u8d44\u6e90\u72b6\u6001",
|
||||
"restartrequired": "\u9700\u8981\u91cd\u65b0\u542f\u52a8",
|
||||
"role": "\u89d2\u8272",
|
||||
"rolename": "\u89d2\u8272",
|
||||
"roletype": "Role Type",
|
||||
"rootDiskControllerType": "\u6839\u78c1\u76d8\u63a7\u5236\u5668",
|
||||
"rootDiskControllerTypeKVM": "\u6839\u78c1\u76d8\u63a7\u5236\u5668",
|
||||
"routerCount": "\u865a\u62df\u8def\u7531\u5668\u603b\u6570",
|
||||
"routerRequiresUpgrade": "\u9700\u8981\u5347\u7ea7",
|
||||
"routerType": "\u7c7b\u578b",
|
||||
"samlEnable": "\u6279\u51c6 SAML SSO",
|
||||
"samlEntity": "\u8ba4\u8bc1\u65b9\u5f0f",
|
||||
"scope": "\u8303\u56f4",
|
||||
"secondaryStorageLimit": "\u4e8c\u7ea7\u5b58\u50a8\u9650\u5236(GiB)",
|
||||
"secondaryips": "\u4e8c\u7ea7 IPs",
|
||||
"secretkey": "\u5bc6\u94a5",
|
||||
"securityGroups": "\u5b89\u5168\u7ec4",
|
||||
"securitygroup": "\u5b89\u5168\u7ec4",
|
||||
"sent": "\u65e5\u671f",
|
||||
"sentbytes": "\u53d1\u9001\u7684\u5b57\u8282\u6570",
|
||||
"server": "\u670d\u52a1\u5668",
|
||||
"service.Connectivity.distributedRouterCapabilityCheckbox": "\u5206\u5e03\u5f0f\u8def\u7531\u5668",
|
||||
"service.Connectivity.regionLevelVpcCapabilityCheckbox": "\u5730\u7406\u533a\u57df\u7ea7 VPC",
|
||||
"service.Lb.elasticLbCheckbox": "\u5f39\u6027\u8d1f\u8f7d\u5e73\u8861\u5668",
|
||||
"service.Lb.inlineModeDropdown": "\u6a21\u5f0f",
|
||||
"service.Lb.lbIsolationDropdown": "\u8d1f\u8f7d\u5e73\u8861\u5668\u9694\u79bb",
|
||||
"service.SourceNat.redundantRouterCapabilityCheckbox": "\u5197\u4f59\u8def\u7531\u5668\u529f\u80fd",
|
||||
"service.SourceNat.sourceNatTypeDropdown": "\u652f\u6301\u7684\u6e90 NAT \u7c7b\u578b",
|
||||
"service.StaticNat.associatePublicIP": "\u5173\u8054\u516c\u7528 IP",
|
||||
"service.StaticNat.elasticIpCheckbox": "\u5f39\u6027 IP",
|
||||
"serviceCapabilities": "\u670d\u52a1\u529f\u80fd",
|
||||
"serviceOfferingId": "\u8ba1\u7b97\u65b9\u6848",
|
||||
"servicelist": "\u670d\u52a1",
|
||||
"serviceofferingid": "\u8ba1\u7b97\u65b9\u6848",
|
||||
"serviceofferingname": "\u8ba1\u7b97\u65b9\u6848",
|
||||
"shrinkok": "\u662f\u5426\u786e\u5b9e\u8981\u7f29\u5c0f\u5377\u5927\u5c0f",
|
||||
"size": "\u5927\u5c0f",
|
||||
"sizegb": "\u5927\u5c0f",
|
||||
"smbDomain": "SMB \u57df",
|
||||
"smbPassword": "SMB \u5bc6\u7801",
|
||||
"smbUsername": "SMB \u7528\u6237\u540d",
|
||||
"snapshotLimit": "\u5feb\u7167\u9650\u5236",
|
||||
"snapshotMemory": "\u5feb\u7167\u5185\u5b58",
|
||||
"snmpCommunity": "SNMP \u793e\u533a",
|
||||
"snmpPort": "SNMP \u7aef\u53e3",
|
||||
"sockettimeout": "\u5957\u63a5\u5b57\u8d85\u65f6",
|
||||
"sourceNat": "\u6e90 NAT",
|
||||
"sourceipaddress": "\u6e90 IP \u5730\u5740",
|
||||
"sourceport": "\u6e90\u7aef\u53e3",
|
||||
"specifyVlan": "\u6307\u5b9a VLAN",
|
||||
"specifyipranges": "\u6307\u5b9a IP \u8303\u56f4",
|
||||
"specifyvlan": "\u6307\u5b9a VLAN",
|
||||
"sshkeypair": "\u65b0SSH\u5bc6\u94a5\u5bf9",
|
||||
"startdate": "Start Date",
|
||||
"startip": "IPv4 \u8d77\u59cb IP",
|
||||
"startipv4": "IPv4 \u8d77\u59cb IP",
|
||||
"startipv6": "IPv6 \u8d77\u59cb IP",
|
||||
"startport": "\u8d77\u59cb\u7aef\u53e3",
|
||||
"startquota": "Quota Value",
|
||||
"state": "\u72b6\u6001",
|
||||
"status": "\u72b6\u6001",
|
||||
"storage": "\u5b58\u50a8",
|
||||
"storageId": "\u4e3b\u5b58\u50a8",
|
||||
"storagePool": "\u5b58\u50a8\u6c60",
|
||||
"storageTags": "\u5b58\u50a8\u6807\u7b7e",
|
||||
"storageType": "\u5b58\u50a8\u7c7b\u578b",
|
||||
"storagetype": "\u5b58\u50a8\u7c7b\u578b",
|
||||
"subdomainaccess": "\u5b50\u57df\u8bbf\u95ee",
|
||||
"supportedServices": "\u652f\u6301\u7684\u670d\u52a1",
|
||||
"supportspublicaccess": "Supports Public Access",
|
||||
"supportsregionLevelvpc": "\u652f\u6301\u5730\u7406\u533a\u57df\u7ea7 VPC",
|
||||
"supportsstrechedl2subnet": "\u652f\u6301\u6269\u5c55\u4e8c\u7ea7\u5b50\u7f51",
|
||||
"systemvmtype": "\u7c7b\u578b",
|
||||
"tags": "\u5b58\u50a8\u6807\u7b7e",
|
||||
"tariffValue": "Tariff Value",
|
||||
"template": "\u9009\u62e9\u4e00\u4e2a\u6a21\u677f",
|
||||
"templateFileUpload": "\u672c\u5730\u6587\u4ef6",
|
||||
"templateLimit": "\u6a21\u677f\u9650\u5236",
|
||||
"templateNames": "\u6a21\u677f",
|
||||
"templatebody": "Body",
|
||||
"templatedn": "\u9009\u62e9\u6a21\u677f",
|
||||
"templatename": "\u6a21\u677f",
|
||||
"templatesubject": "Subject",
|
||||
"templatetotal": "\u6a21\u677f",
|
||||
"templatetype": "Email Template",
|
||||
"tftpdir": "Tftp \u6839\u76ee\u5f55",
|
||||
"threshold": "\u9608\u503c",
|
||||
"tierName": "\u5c42",
|
||||
"timeout": "\u8d85\u65f6",
|
||||
"timezone": "\u65f6\u533a",
|
||||
"token": "\u4ee4\u724c",
|
||||
"totalCPU": "CPU \u603b\u91cf",
|
||||
"traffictype": "\u6d41\u91cf\u7c7b\u578b",
|
||||
"transportzoneuuid": "\u4f20\u8f93\u8d44\u6e90\u57df UUID",
|
||||
"type": "\u7c7b\u578b",
|
||||
"unit": "Usage Unit",
|
||||
"url": "URL",
|
||||
"usageName": "Usage Type",
|
||||
"usageUnit": "Unit",
|
||||
"usageinterface": "\u4f7f\u7528\u754c\u9762",
|
||||
"useNewDiskOffering": "Replace disk offering?",
|
||||
"useVpc": "VPC",
|
||||
"usehttps": "\u4f7f\u7528 HTTPS",
|
||||
"userDataL2": "\u7528\u6237\u6570\u636e",
|
||||
"username": "\u7528\u6237\u540d",
|
||||
"utilization": "Utilisation",
|
||||
"uuid": "ID",
|
||||
"vCenterDataCenter": "vCenter \u6570\u636e\u4e2d\u5fc3",
|
||||
"vCenterDataStore": "vCenter \u6570\u636e\u5b58\u50a8",
|
||||
"vCenterDatacenter": "vCenter \u6570\u636e\u4e2d\u5fc3",
|
||||
"vCenterHost": "vCenter \u4e3b\u673a",
|
||||
"vCenterPassword": "vCenter \u5bc6\u7801",
|
||||
"vCenterUsername": "vCenter \u7528\u6237\u540d",
|
||||
"vSwitchGuestName": "\u6765\u5bbe\u6d41\u91cf\u865a\u62df\u4ea4\u6362\u673a\u540d\u79f0",
|
||||
"vSwitchGuestType": "\u6765\u5bbe\u6d41\u91cf\u865a\u62df\u4ea4\u6362\u673a\u7c7b\u578b",
|
||||
"vSwitchPublicName": "\u516c\u5171\u6d41\u91cf\u865a\u62df\u4ea4\u6362\u673a\u540d\u79f0",
|
||||
"vSwitchPublicType": "\u516c\u5171\u6d41\u91cf\u865a\u62df\u4ea4\u6362\u673a\u7c7b\u578b",
|
||||
"value": "Credits",
|
||||
"vcenter": "VMware \u6570\u636e\u4e2d\u5fc3 vCenter",
|
||||
"vcenterHost": "ESX/ESXi \u4e3b\u673a",
|
||||
"vcsdeviceid": "ID",
|
||||
"version": "\u7248\u672c",
|
||||
"vgpu": "VGPU",
|
||||
"vgpuType": "vGPU \u7c7b\u578b",
|
||||
"virtualMachineId": "\u5b9e\u4f8b",
|
||||
"virtualmachinedisplayname": "VM \u540d\u79f0",
|
||||
"virtualmachineid": "VM ID",
|
||||
"virtualsize": "Virtual Size",
|
||||
"vlan": "VLAN/VNI",
|
||||
"vlanId": "VLAN/VNI ID",
|
||||
"vlanRange": "VLAN/VNI \u8303\u56f4",
|
||||
"vlanname": "VLAN",
|
||||
"vlanrange": "VLAN/VNI \u8303\u56f4",
|
||||
"vmLimit": "\u5b9e\u4f8b\u9650\u5236",
|
||||
"vmTotal": "\u5b9e\u4f8b",
|
||||
"vmdisplayname": "VM \u663e\u793a\u540d\u79f0",
|
||||
"vmipaddress": "VM IP \u5730\u5740",
|
||||
"vmname": "VM Name",
|
||||
"vmstate": "VM \u72b6\u6001",
|
||||
"vmtotal": "\u603b VM \u6570",
|
||||
"vmwaredcId": "VMware \u6570\u636e\u4e2d\u5fc3 ID",
|
||||
"vmwaredcName": "VMware \u6570\u636e\u4e2d\u5fc3\u540d\u79f0",
|
||||
"vmwaredcVcenter": "VMware \u6570\u636e\u4e2d\u5fc3 vCenter",
|
||||
"vmwarenetworklabel": "VMware \u6d41\u91cf\u6807\u7b7e",
|
||||
"volume": "\u5377",
|
||||
"volumeFileUpload": "\u672c\u5730\u6587\u4ef6",
|
||||
"volumeLimit": "\u5377\u9650\u5236",
|
||||
"volumeTotal": "\u5377",
|
||||
"volumegroup": "\u5377\u7ec4",
|
||||
"volumename": "\u5377\u540d\u79f0",
|
||||
"volumetotal": "\u5377",
|
||||
"vpcLimit": "VPC \u9650\u5236",
|
||||
"vpcid": "VPC ID",
|
||||
"vpcname": "VPC",
|
||||
"vpcoffering": "VPC \u65b9\u6848",
|
||||
"vpncustomergatewayid": "VPN \u5ba2\u6237\u7f51\u5173",
|
||||
"vsmctrlvlanid": "\u63a7\u5236 VLAN ID",
|
||||
"vsmdeviceid": "\u540d\u79f0",
|
||||
"vsmdevicestate": "\u72b6\u6001",
|
||||
"vsmipaddress": "Nexus 1000v IP \u5730\u5740",
|
||||
"vsmipaddress_req": "Nexus 1000v IP \u5730\u5740",
|
||||
"vsmpassword": "Nexus 1000v \u5bc6\u7801",
|
||||
"vsmpassword_req": "Nexus 1000v \u5bc6\u7801",
|
||||
"vsmpktvlanid": "\u6570\u636e\u5305 VLAN ID",
|
||||
"vsmstoragevlanid": "\u5b58\u50a8 VLAN ID",
|
||||
"vsmusername": "Nexus 1000v \u7528\u6237\u540d",
|
||||
"vsmusername_req": "Nexus 1000v \u7528\u6237\u540d",
|
||||
"xennetworklabel": "XenServer \u6d41\u91cf\u6807\u7b7e",
|
||||
"xenserverToolsVersion61plus": "\u539f\u59cb XS \u7248\u672c\u4e3a 6.1+",
|
||||
"zone": "\u8d44\u6e90\u57df",
|
||||
"zoneId": "\u8d44\u6e90\u57df",
|
||||
"zoneid": "\u8d44\u6e90\u57df",
|
||||
"zonename": "\u8d44\u6e90\u57df"
|
||||
}
|
||||
|
|
@ -1,8 +1,9 @@
|
|||
import Vue from 'vue'
|
||||
import VueI18n from 'vue-i18n'
|
||||
import VueCookies from 'vue-cookies'
|
||||
import App from './App.vue'
|
||||
import router from './router'
|
||||
import store from './store/'
|
||||
import store from './store'
|
||||
import { VueAxios } from './utils/request'
|
||||
|
||||
import Spin from 'ant-design-vue/es/spin/Spin'
|
||||
|
|
@ -22,7 +23,7 @@ library.add(fab, far, fas)
|
|||
Vue.component('font-awesome-icon', FontAwesomeIcon)
|
||||
Vue.config.productionTip = false
|
||||
|
||||
Vue.use(VueAxios, router, VueCookies)
|
||||
Vue.use(VueI18n, VueAxios, router, VueCookies)
|
||||
|
||||
Spin.setDefaultIndicator({
|
||||
indicator: (h) => {
|
||||
|
|
@ -30,9 +31,31 @@ Spin.setDefaultIndicator({
|
|||
}
|
||||
})
|
||||
|
||||
function loadLocaleMessages () {
|
||||
const locales = require.context('./locales', true, /[A-Za-z0-9-_,\s]+\.json$/i)
|
||||
const messages = {}
|
||||
locales.keys().forEach(key => {
|
||||
const matched = key.match(/([A-Za-z0-9-_]+)\./i)
|
||||
if (matched && matched.length > 1) {
|
||||
const locale = matched[1]
|
||||
messages[locale] = locales(key)
|
||||
}
|
||||
})
|
||||
return messages
|
||||
}
|
||||
|
||||
const i18n = new VueI18n({
|
||||
locale: Vue.ls.get('current_locale') || 'en',
|
||||
fallbackLocale: 'en',
|
||||
messages: loadLocaleMessages()
|
||||
})
|
||||
|
||||
export default i18n
|
||||
|
||||
new Vue({
|
||||
router,
|
||||
store,
|
||||
i18n,
|
||||
created () {
|
||||
bootstrap()
|
||||
},
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@ export const DEFAULT_FIXED_SIDEMENU = 'DEFAULT_FIXED_SIDEMENU'
|
|||
export const DEFAULT_FIXED_HEADER_HIDDEN = 'DEFAULT_FIXED_HEADER_HIDDEN'
|
||||
export const DEFAULT_CONTENT_WIDTH_TYPE = 'DEFAULT_CONTENT_WIDTH_TYPE'
|
||||
export const DEFAULT_MULTI_TAB = 'DEFAULT_MULTI_TAB'
|
||||
// export const CURRENT_LOCALE = 'CURRENT_LOCALE'
|
||||
|
||||
export const CONTENT_WIDTH_TYPE = {
|
||||
Fluid: 'Fluid',
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ module.exports = {
|
|||
port: 5050,
|
||||
proxy: {
|
||||
'/client/api': {
|
||||
target: 'http://192.168.1.10:8080/client/api',
|
||||
target: 'http://localhost:8080/client/api',
|
||||
ws: false,
|
||||
changeOrigin: true
|
||||
}
|
||||
|
|
@ -95,6 +95,16 @@ module.exports = {
|
|||
},
|
||||
|
||||
lintOnSave: undefined,
|
||||
|
||||
// babel-loader no-ignore node_modules/*
|
||||
transpileDependencies: []
|
||||
transpileDependencies: [],
|
||||
|
||||
pluginOptions: {
|
||||
i18n: {
|
||||
locale: 'en',
|
||||
fallbackLocale: 'en',
|
||||
localeDir: 'locales',
|
||||
enableInSFC: true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue