diff --git a/api/src/main/java/org/apache/cloudstack/api/command/user/userdata/RegisterUserDataCmd.java b/api/src/main/java/org/apache/cloudstack/api/command/user/userdata/RegisterUserDataCmd.java
index 41d865d678c8..4588d7348474 100644
--- a/api/src/main/java/org/apache/cloudstack/api/command/user/userdata/RegisterUserDataCmd.java
+++ b/api/src/main/java/org/apache/cloudstack/api/command/user/userdata/RegisterUserDataCmd.java
@@ -43,7 +43,7 @@
import com.cloud.user.UserData;
@APICommand(name = "registerUserData",
- description = "Register a new userdata.",
+ description = "Register a new User Data.",
since = "4.18",
responseObject = SuccessResponse.class,
requestHasSensitiveInfo = false,
@@ -56,33 +56,33 @@ public class RegisterUserDataCmd extends BaseCmd {
//////////////// API parameters /////////////////////
/////////////////////////////////////////////////////
- @Parameter(name = ApiConstants.NAME, type = CommandType.STRING, required = true, description = "Name of the userdata")
+ @Parameter(name = ApiConstants.NAME, type = CommandType.STRING, required = true, description = "Name of the User Data")
private String name;
//Owner information
- @Parameter(name = ApiConstants.ACCOUNT, type = CommandType.STRING, description = "an optional account for the userdata. Must be used with domainId.")
+ @Parameter(name = ApiConstants.ACCOUNT, type = CommandType.STRING, description = "an optional account for the User Data. Must be used with domainId.")
private String accountName;
@Parameter(name = ApiConstants.DOMAIN_ID,
type = CommandType.UUID,
entityType = DomainResponse.class,
- description = "an optional domainId for the userdata. If the account parameter is used, domainId must also be used.")
+ description = "an optional domainId for the User Data. If the account parameter is used, domainId must also be used.")
private Long domainId;
- @Parameter(name = ApiConstants.PROJECT_ID, type = CommandType.UUID, entityType = ProjectResponse.class, description = "an optional project for the userdata")
+ @Parameter(name = ApiConstants.PROJECT_ID, type = CommandType.UUID, entityType = ProjectResponse.class, description = "an optional project for the User Data")
private Long projectId;
@Parameter(name = ApiConstants.USER_DATA,
type = CommandType.STRING,
required = true,
- description = "Base64 encoded userdata content. " +
+ description = "Base64 encoded User Data content. " +
"Using HTTP GET (via querystring), you can send up to 4KB of data after base64 encoding. " +
- "Using HTTP POST (via POST body), you can send up to 1MB of data after base64 encoding. " +
- "You also need to change vm.userdata.max.length value",
+ "Using HTTP POST (via POST body), you can send up to 32KB of data after base64 encoding, " +
+ "which can be increased upto 1MB using the vm.userdata.max.length setting",
length = 1048576)
private String userData;
- @Parameter(name = ApiConstants.PARAMS, type = CommandType.STRING, description = "comma separated list of variables declared in userdata content")
+ @Parameter(name = ApiConstants.PARAMS, type = CommandType.STRING, description = "comma separated list of variables declared in the User Data content")
private String params;
diff --git a/api/src/main/java/org/apache/cloudstack/api/response/UserDataResponse.java b/api/src/main/java/org/apache/cloudstack/api/response/UserDataResponse.java
index 2dfc66fa7d51..ce344596aebc 100644
--- a/api/src/main/java/org/apache/cloudstack/api/response/UserDataResponse.java
+++ b/api/src/main/java/org/apache/cloudstack/api/response/UserDataResponse.java
@@ -27,41 +27,41 @@
public class UserDataResponse extends BaseResponseWithAnnotations implements ControlledEntityResponse {
@SerializedName(ApiConstants.ID)
- @Param(description = "ID of the ssh keypair")
+ @Param(description = "ID of the User Data")
private String id;
@SerializedName(ApiConstants.NAME)
- @Param(description = "Name of the userdata")
+ @Param(description = "Name of the User Data")
private String name;
- @SerializedName(ApiConstants.ACCOUNT_ID) @Param(description="the owner id of the userdata")
+ @SerializedName(ApiConstants.ACCOUNT_ID) @Param(description="the owner id of the User Data")
private String accountId;
- @SerializedName(ApiConstants.ACCOUNT) @Param(description="the owner of the userdata")
+ @SerializedName(ApiConstants.ACCOUNT) @Param(description="the owner of the User Data")
private String accountName;
@SerializedName(ApiConstants.PROJECT_ID)
- @Param(description = "the project id of the userdata", since = "4.19.1")
+ @Param(description = "the project id of the User Data", since = "4.19.1")
private String projectId;
@SerializedName(ApiConstants.PROJECT)
- @Param(description = "the project name of the userdata", since = "4.19.1")
+ @Param(description = "the project name of the User Data", since = "4.19.1")
private String projectName;
- @SerializedName(ApiConstants.DOMAIN_ID) @Param(description="the domain id of the userdata owner")
+ @SerializedName(ApiConstants.DOMAIN_ID) @Param(description="the domain id of the User Data owner")
private String domainId;
- @SerializedName(ApiConstants.DOMAIN) @Param(description="the domain name of the userdata owner")
+ @SerializedName(ApiConstants.DOMAIN) @Param(description="the domain name of the User Data owner")
private String domain;
@SerializedName(ApiConstants.DOMAIN_PATH)
- @Param(description = "path of the domain to which the userdata owner belongs", since = "4.19.2.0")
+ @Param(description = "path of the domain to which the User Data owner belongs", since = "4.19.2.0")
private String domainPath;
- @SerializedName(ApiConstants.USER_DATA) @Param(description="base64 encoded userdata content")
+ @SerializedName(ApiConstants.USER_DATA) @Param(description="base64 encoded User Data content")
private String userData;
- @SerializedName(ApiConstants.PARAMS) @Param(description="list of parameters which contains the list of keys or string parameters that are needed to be passed for any variables declared in userdata")
+ @SerializedName(ApiConstants.PARAMS) @Param(description="list of parameters which contains the list of keys or string parameters that are needed to be passed for any variables declared in the User Data")
private String params;
public UserDataResponse() {
diff --git a/ui/public/locales/ar.json b/ui/public/locales/ar.json
index 20499c63e044..e8e4db66cb59 100644
--- a/ui/public/locales/ar.json
+++ b/ui/public/locales/ar.json
@@ -14,12 +14,12 @@
"label.account.specific": "Account-Specific",
"label.accounts": "Accounts",
"label.accounttype": "Account Type",
-"label.acl.export": "Export ACLs",
+"label.acl.export": "Export ACL rules",
"label.acl.id": "ACL ID",
-"label.acl.list.rules": "ACL List Rules",
+"label.acl.rules": "ACL Rules",
"label.acl.reason.description": "Enter the reason behind an ACL rule.",
"label.aclid": "ACL",
-"label.aclname": "ACL Name",
+"label.acl.rule.name": "ACL Name",
"label.acquire.new.ip": "Acquire New IP",
"label.acquire.new.secondary.ip": "Acquire new secondary IP",
"label.action": "Action",
@@ -119,8 +119,8 @@
"label.activeviewersessions": "Active Sessions",
"label.add": "Add",
"label.add.account": "Add Account",
-"label.add.acl": "\u0625\u0636\u0627\u0641\u0629 ACL",
-"label.add.acl.list": "Add ACL List",
+"label.add.acl.rule": "\u0625\u0636\u0627\u0641\u0629 ACL",
+"label.add.acl": "Add ACL",
"label.add.affinity.group": "Add new affinity group",
"label.add.baremetal.dhcp.device": "Add Baremetal DHCP Device",
"label.add.bigswitchbcf.device": "Add BigSwitch BCF Controller",
@@ -142,12 +142,12 @@
"label.add.ip.range": "Add IP Range",
"label.add.isolated.network": "Add Isolated Network",
"label.add.ldap.account": "Add LDAP account",
-"label.add.list.name": "ACL List Name",
+"label.add.acl.name": "ACL Name",
"label.add.more": "Add More",
"label.add.netscaler.device": "Add Netscaler device",
"label.add.network": "Add Network",
"label.add.network.acl": "\u0625\u0636\u0627\u0641\u0629 \u0634\u0628\u0643\u0629 ACL",
-"label.add.network.acl.list": "Add Network ACL List",
+"label.add.network.acl": "Add Network ACL",
"label.add.network.offering": "Add network offering",
"label.add.new.gateway": "\u0623\u0636\u0641 \u0628\u0648\u0627\u0628\u0629 \u062c\u062f\u064a\u062f\u0629",
"label.add.new.tier": "\u0625\u0636\u0627\u0641\u0629 \u0637\u0628\u0642\u0629 \u062c\u062f\u064a\u062f\u0629",
@@ -334,7 +334,7 @@
"label.default.use": "Default Use",
"label.default.view": "\u0637\u0631\u064a\u0642\u0629 \u0627\u0644\u0639\u0631\u0636 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629",
"label.delete": "Delete",
-"label.delete.acl.list": "Delete ACL List",
+"label.delete.acl": "Delete ACL",
"label.delete.affinity.group": "Delete Affinity Group",
"label.delete.alerts": "Delete alerts",
"label.delete.bigswitchbcf": "Remove BigSwitch BCF Controller",
@@ -419,7 +419,7 @@
"label.dpd": "\u0643\u0634\u0641 \u0627\u0644\u0642\u0631\u064a\u0646 \u0627\u0644\u0645\u0641\u0642\u0648\u062f",
"label.driver": "Driver",
"label.edit": "Edit",
-"label.edit.acl.list": "Edit ACL List",
+"label.edit.acl": "Edit ACL",
"label.edit.acl.rule": "Edit ACL rule",
"label.edit.project.details": "\u0627\u0636\u0627\u0641\u0629 \u062a\u0641\u0627\u0635\u064a\u0644 \u0627\u0644\u0645\u0634\u0631\u0648\u0639",
"label.edit.role": "Edit Role",
@@ -924,7 +924,6 @@
"label.remove.vpc.offering": "Remove VPC offering",
"label.removing": "Removing",
"label.replace.acl": "Replace ACL",
-"label.replace.acl.list": "Replace ACL List",
"label.required": "Required",
"label.requireshvm": "HVM",
"label.requiresupgrade": "Requires Upgrade",
@@ -1150,8 +1149,7 @@
"label.usehttps": "\u0627\u0633\u062a\u062e\u062f\u0645 HTTPS",
"label.usenewdiskoffering": "Replace disk offering?",
"label.user": "User",
-"label.userdata": "Userdata",
-"label.userdatal2": "User Data",
+"label.user.data": "User Data",
"label.username": "Username",
"label.users": "Users",
"label.utilization": "Utilisation",
@@ -1329,7 +1327,7 @@
"message.confirm.archive.selected.alerts": "Please confirm you would like to archive the selected alerts",
"message.confirm.archive.selected.events": "Please confirm you would like to archive the selected events",
"message.confirm.attach.disk": "Are you sure you want to attach disk?",
-"message.confirm.delete.acl.list": "Are you sure you want to delete this ACL list?",
+"message.confirm.delete.acl": "Are you sure you want to delete this ACL?",
"message.confirm.delete.bigswitchbcf": "Please confirm that you would like to delete this BigSwitch BCF Controller",
"message.confirm.delete.brocadevcs": "Please confirm that you would like to delete Brocade Vcs Switch",
"message.confirm.delete.ciscoasa1000v": "Please confirm you want to delete CiscoASA1000v",
diff --git a/ui/public/locales/ca.json b/ui/public/locales/ca.json
index 30ed3161448e..d3e417eb821e 100644
--- a/ui/public/locales/ca.json
+++ b/ui/public/locales/ca.json
@@ -14,12 +14,12 @@
"label.account.specific": "Account-Specific",
"label.accounts": "Accounts",
"label.accounttype": "Account Type",
-"label.acl.export": "Export ACLs",
+"label.acl.export": "Export ACL rules",
"label.acl.id": "ACL ID",
-"label.acl.list.rules": "ACL List Rules",
+"label.acl.rules": "ACL Rules",
"label.acl.reason.description": "Enter the reason behind an ACL rule.",
"label.aclid": "ACL",
-"label.aclname": "ACL Name",
+"label.acl.rule.name": "ACL Name",
"label.acquire.new.ip": "Acquire New IP",
"label.acquire.new.secondary.ip": "Acquire new secondary IP",
"label.action": "Action",
@@ -119,8 +119,8 @@
"label.activeviewersessions": "Active Sessions",
"label.add": "Add",
"label.add.account": "Add Account",
+"label.add.acl.rule": "Add ACL rule",
"label.add.acl": "Add ACL",
-"label.add.acl.list": "Add ACL List",
"label.add.affinity.group": "Add new affinity group",
"label.add.baremetal.dhcp.device": "Add Baremetal DHCP Device",
"label.add.bigswitchbcf.device": "Add BigSwitch BCF Controller",
@@ -142,12 +142,12 @@
"label.add.ip.range": "Add IP Range",
"label.add.isolated.network": "Add Isolated Network",
"label.add.ldap.account": "Add LDAP account",
-"label.add.list.name": "ACL List Name",
+"label.add.acl.name": "ACL Name",
"label.add.more": "Add More",
"label.add.netscaler.device": "Add Netscaler device",
"label.add.network": "Add Network",
"label.add.network.acl": "Add network ACL",
-"label.add.network.acl.list": "Add Network ACL List",
+"label.add.network.acl": "Add Network ACL",
"label.add.network.offering": "Add network offering",
"label.add.new.gateway": "Add new gateway",
"label.add.new.tier": "Add new tier",
@@ -334,7 +334,7 @@
"label.default.use": "Default Use",
"label.default.view": "Default View",
"label.delete": "Delete",
-"label.delete.acl.list": "Delete ACL List",
+"label.delete.acl": "Delete ACL",
"label.delete.affinity.group": "Delete Affinity Group",
"label.delete.alerts": "Delete alerts",
"label.delete.bigswitchbcf": "Remove BigSwitch BCF Controller",
@@ -419,7 +419,7 @@
"label.dpd": "Dead Peer Detection",
"label.driver": "Driver",
"label.edit": "Edit",
-"label.edit.acl.list": "Edit ACL List",
+"label.edit.acl": "Edit ACL",
"label.edit.acl.rule": "Edit ACL rule",
"label.edit.project.details": "Editar detalls del projecte",
"label.edit.role": "Edit Role",
@@ -924,7 +924,6 @@
"label.remove.vpc.offering": "Remove VPC offering",
"label.removing": "Esborrant",
"label.replace.acl": "Replace ACL",
-"label.replace.acl.list": "Replace ACL List",
"label.required": "Required",
"label.requireshvm": "HVM",
"label.requiresupgrade": "Requires Upgrade",
@@ -1150,8 +1149,7 @@
"label.usehttps": "Use HTTPS",
"label.usenewdiskoffering": "Replace disk offering?",
"label.user": "User",
-"label.userdata": "Userdata",
-"label.userdatal2": "User Data",
+"label.user.data": "User Data",
"label.username": "Username",
"label.users": "Users",
"label.utilization": "Utilisation",
@@ -1329,7 +1327,7 @@
"message.confirm.archive.selected.alerts": "Please confirm you would like to archive the selected alerts",
"message.confirm.archive.selected.events": "Please confirm you would like to archive the selected events",
"message.confirm.attach.disk": "Are you sure you want to attach disk?",
-"message.confirm.delete.acl.list": "Are you sure you want to delete this ACL list?",
+"message.confirm.delete.acl": "Are you sure you want to delete this ACL?",
"message.confirm.delete.bigswitchbcf": "Please confirm that you would like to delete this BigSwitch BCF Controller",
"message.confirm.delete.brocadevcs": "Please confirm that you would like to delete Brocade Vcs Switch",
"message.confirm.delete.ciscoasa1000v": "Please confirm you want to delete CiscoASA1000v",
diff --git a/ui/public/locales/de_DE.json b/ui/public/locales/de_DE.json
index c20bf175826e..fd29ac3eb54b 100644
--- a/ui/public/locales/de_DE.json
+++ b/ui/public/locales/de_DE.json
@@ -26,12 +26,12 @@
"label.account.specific": "Besonderheiten des Benutzerkontos",
"label.accounts": "Benutzerkonten",
"label.accounttype": "Benutzerkontotyp",
-"label.acl.export": "Export ACLs",
+"label.acl.export": "Export ACL rules",
"label.acl.id": "ACL-Kennung",
-"label.acl.list.rules": "ACL-Listenregeln",
+"label.acl.rules": "ACL-Listenregeln",
"label.acl.reason.description": "Enter the reason behind an ACL rule.",
"label.aclid": "ACL",
-"label.aclname": "ACL-Name",
+"label.acl.rule.name": "ACL-Name",
"label.acquire.new.ip": "Neue IP erwerben",
"label.acquire.new.secondary.ip": "Neue sekundäre IP anfordern",
"label.acquiring.ip": "IP anfordern",
@@ -144,8 +144,8 @@
"label.activeviewersessions": "Aktive Sitzungen",
"label.add": "Hinzufügen",
"label.add.account": "Konto hinzufügen",
-"label.add.acl": "ACL hinzufügen",
-"label.add.acl.list": "ACL-Liste hinzufügen",
+"label.add.acl.rule": "ACL hinzufügen",
+"label.add.acl": "ACL-Liste hinzufügen",
"label.add.affinity.group": "Neue Affinitätsgruppe hinzufügen",
"label.add.baremetal.dhcp.device": "Baremetal DHCP-Gerät hinzufügen",
"label.add.bigswitchbcf.device": "Füge BigSwitch BCF Controller hinzu",
@@ -169,12 +169,12 @@
"label.add.isolated.network": "Isoliertes Netzwerk hinzufügen",
"label.add.kubernetes.cluster": "Kubernetes Cluster hinzufügen",
"label.add.ldap.account": "LDAP-Konto hinzufügen",
-"label.add.list.name": "ACL-Listename",
+"label.add.acl.name": "ACL-Listename",
"label.add.more": "Mehr hinzufügen",
"label.add.netscaler.device": "Netscaler-Gerät hinzufügen",
"label.add.network": "Netzwerk hinzufügen",
"label.add.network.acl": "Netzwerk-ACL hinzufügen",
-"label.add.network.acl.list": "Netzwerk-ACL-Liste hinzufügen",
+"label.add.network.acl": "Netzwerk-ACL-Liste hinzufügen",
"label.add.network.offering": "Netzwerkangebot hinzufügen",
"label.add.new.gateway": "Neues Gateway hinzufügen",
"label.add.new.tier": "Neue Ebene hinzufügen",
@@ -417,7 +417,7 @@
"label.default.view": "Standardansicht",
"label.defaultnetwork": "Standard-Netzwerk",
"label.delete": "Löschen",
-"label.delete.acl.list": "ACL-Liste ersetzen",
+"label.delete.acl": "ACL-Liste ersetzen",
"label.delete.affinity.group": "Affinitätsgruppe entfernen",
"label.delete.alerts": "Alarme löschen",
"label.delete.backup": "Backup löschen",
@@ -525,7 +525,7 @@
"label.driver": "Treiber",
"label.dynamicscalingenabled": "Dynamische Skalierung aktiviert",
"label.edit": "Bearbeiten",
-"label.edit.acl.list": "Edit ACL List",
+"label.edit.acl": "Edit ACL",
"label.edit.acl.rule": "ACL-Regel bearbeiten",
"label.edit.project.details": "Projektdetails bearbeiten",
"label.edit.role": "Rolle bearbeiten",
@@ -948,7 +948,7 @@
"label.netscaler.vpx": "NetScaler VPX LoadBalancer",
"label.network": "Netzwerk",
"label.network.acl": "Netzwerk-ACL",
-"label.network.acl.lists": "Netzwerk ACL Listen",
+"label.network.acls": "Netzwerk ACL Listen",
"label.network.addvm": "Netzwerk zur VM hinzufügen",
"label.network.desc": "Netzwerkbeschreibung",
"label.network.domain": "Netzwerk-Domain",
@@ -1198,7 +1198,6 @@
"label.remove.vpc.offering": "VPC-Angebot entfernen",
"label.removing": "am Entfernen",
"label.replace.acl": "ACL ersetzen",
-"label.replace.acl.list": "ACL-Liste ersetzen",
"label.report.bug": "Fehler melden",
"label.required": "Erforderlich",
"label.requireshvm": "HVM",
@@ -1492,8 +1491,7 @@
"label.usenewdiskoffering": "Replace disk offering?",
"label.user": "Benutzer",
"label.user.conflict": "Konflikt",
-"label.userdata": "Benutzerdaten",
-"label.userdatal2": "Benutzerdaten",
+"label.user.data": "Benutzerdaten",
"label.username": "Benutzername",
"label.users": "Benutzer",
"label.usersource": "Benutzertyp",
@@ -1733,7 +1731,7 @@
"message.confirm.archive.selected.alerts": "Bitte bestätigen Sie, dass Sie die ausgewählten Alarme archivieren möchten",
"message.confirm.archive.selected.events": "Bitte bestätigen Sie, dass Sie die ausgewählten Vorgänge archivieren möchten",
"message.confirm.attach.disk": "Sind Sie sicher, dass Sie eine Platte hinzufügen möchten?",
-"message.confirm.delete.acl.list": "Sind Sie sicher, dass Sie diese ACL-Liste löschen möchten?",
+"message.confirm.delete.acl": "Sind Sie sicher, dass Sie diese ACL-Liste löschen möchten?",
"message.confirm.delete.bigswitchbcf": "Bitte bestätigen Sie, dass Sie diesen BigSwitch BCF Controller löschen möchten",
"message.confirm.delete.brocadevcs": "Bitte bestätigen Sie, dass Sie Brocade Vcs Switch löschen möchten",
"message.confirm.delete.ciscoasa1000v": "Bitte bestätigen Sie, dass Sie CiscoASA1000v löschen möchten",
diff --git a/ui/public/locales/el_GR.json b/ui/public/locales/el_GR.json
index d26362907e46..41f42aa537d1 100644
--- a/ui/public/locales/el_GR.json
+++ b/ui/public/locales/el_GR.json
@@ -33,10 +33,10 @@
"label.access.kubernetes.nodes": "Πρόσβαση στους κόμβους Κυβερνητών",
"label.acl.export": "Εξαγωγή Λίστας Πρόσβασης",
"label.acl.id": "Αναγνωριστικό Λίστας Πρόσβασης",
-"label.acl.list.rules": "Κανόνες λίστας Πρόσωασης",
+"label.acl.rules": "Κανόνες λίστας Πρόσωασης",
"label.acl.reason.description": "Εισαγάγετε αιτιολογία για τον κανόνα",
"label.aclid": "Λίστα πρόσβασης",
-"label.aclname": "Όνομα Λίστας Πρόσβασης",
+"label.acl.rule.name": "Όνομα Λίστας Πρόσβασης",
"label.acquire.new.ip": "Απόκτηση νέας διεύθυνση IP",
"label.acquire.new.secondary.ip": "Απόκτηση νέας δευτερεύουσας διεύθυνσης IP",
"label.acquiring.ip": "Απόδοση IP",
@@ -173,7 +173,7 @@
"label.action.unmanage.virtualmachine": "Μη διαχείριση εικονικής μηχανής",
"label.action.update.offering.access": "Ενημέρωση πρόσβασης για προσφορές",
"label.action.update.resource.count": "Ενημέρωση πλήθους πόρων",
-"label.action.userdata.reset": "Επαναφορά δεδομένων χρήστη",
+"label.action.user.data.reset": "Επαναφορά δεδομένων χρήστη",
"label.action.vmsnapshot.create": "Λήψη στιγμιότυπου εικονικής μηχανής",
"label.action.vmsnapshot.delete": "Διαγραφή στιγμιότυπου εικονικής μηχανής",
"label.action.vmsnapshot.revert": "Επαναφορά στο στιγμιότυπο εικονικής μηχανής",
@@ -183,8 +183,8 @@
"label.activeviewersessions": "Ενεργές περίοδοι λειτουργίας",
"label.add": "Προσθήκη",
"label.add.account": "Προσθήκη λογαριασμού",
-"label.add.acl": "Προσθήκη εγγραφής στην λίστα πρόσβασης",
-"label.add.acl.list": "Προσθήκη λίστας πρόσβασης",
+"label.add.acl.rule": "Προσθήκη εγγραφής στην λίστα πρόσβασης",
+"label.add.acl": "Προσθήκη λίστας πρόσβασης",
"label.add.affinity.group": "Προσθήκη νέας ομάδας συνάφειας",
"label.add.baremetal.dhcp.device": "Προσθήκη συσκευής DHCP baremetal",
"label.add.bigswitchbcf.device": "Προσθήκη ελεγκτή BCF BigSwitch",
@@ -209,12 +209,12 @@
"label.add.isolated.network": "Προσθήκη απομονωμένου δικτύου",
"label.add.kubernetes.cluster": "Προσθήκη ομάδας Κυβερνητών",
"label.add.ldap.account": "Προσθήκη λογαριασμού LDAP",
-"label.add.list.name": "Όνομα λίστας Πρόσβασης",
+"label.add.acl.name": "Όνομα λίστας Πρόσβασης",
"label.add.more": "Προσθήκη περισσότερων",
"label.add.netscaler.device": "Προσθήκη συσκευής Netsccaler",
"label.add.network": "Προσθήκη δικτύου",
"label.add.network.acl": "Προσθήκη εγγραφής πρόσβασης δικτύου",
-"label.add.network.acl.list": "Προσθήκη λίστας πρόσβασης δικτύου",
+"label.add.network.acl": "Προσθήκη λίστας πρόσβασης δικτύου",
"label.add.network.offering": "Προσθήκη προσφοράς υπηρεσίας δικτύου",
"label.add.network.permission": "Προσθήκη δικαιωμάτων δικτύου",
"label.add.new.gateway": "Προσθήκη νέας πύλης",
@@ -516,7 +516,7 @@
"label.default.view": "Προεπιλεγμένη προβολή",
"label.defaultnetwork": "Προεπιλεγμένο δίκτυο",
"label.delete": "Διαγραφή",
-"label.delete.acl.list": "Διαγραφή λίστας πρόσβασης",
+"label.delete.acl": "Διαγραφή λίστας πρόσβασης",
"label.delete.affinity.group": "Διαγραφή ομάδας συνάφειας",
"label.delete.alerts": "Διαγραφή ειδοποιήσεων",
"label.delete.backup": "Διαγραφή αντιγράφου ασφαλείας",
@@ -649,7 +649,7 @@
"label.dynamicscalingenabled": "Δυναμική αναπροσαρμογή Ενεργοποίημένη",
"label.dynamicscalingenabled.tooltip": "Η εικονική μηχανή μπορεί να αναπροσαρμόζεται δυναμικά μόνο αν το πρότυπο, η προσφερόμενη υπηρεσία και οι γενικές ρυθμίσεις έχουν την επιλογή δυναμικής αναπροσαρμογής ενεργοποιήμενη.",
"label.edit": "Επεξεργασία",
-"label.edit.acl.list": "Επεξεργασία λίστας Πρόσβασης",
+"label.edit.acl": "Επεξεργασία λίστας Πρόσβασης",
"label.edit.acl.rule": "Επεξεργασία κανόνα Λίστας Πρόσβασης",
"label.edit.project.details": "Επεξεργασία λεπτομερειών έργου",
"label.edit.project.role": "Επεξεργασία ρόλου έργου",
@@ -1142,7 +1142,7 @@
"label.netscaler.vpx": "Εξισορρόπηση φόρτου VPX του NetScaler",
"label.network": "Δίκτυο",
"label.network.acl": "ACL δικτύου",
-"label.network.acl.lists": "Λίστες Λίστα Πρόσβασης δικτύου",
+"label.network.acls": "Λίστες Λίστα Πρόσβασης δικτύου",
"label.network.addvm": "Προσθήκη δικτύου για την εικονική μηχανή",
"label.network.addvm": "Προσθήκη δικτύου σε εικονική μηχανή",
"label.network.desc": "Δίκτυο Desc",
@@ -1436,7 +1436,6 @@
"label.remove.vpc.offering": "Κατάργηση προσφοράς υπηρεσίας Εικον. Ιδιωτ. Νέφους",
"label.removing": "Αφαίρεση",
"label.replace.acl": "Αντικατάσταση λίστας Πρόσβασης",
-"label.replace.acl.list": "Αντικατάσταση λίστας Πρόσβασης",
"label.report.bug": "Θέμα αναφοράς",
"label.required": "Απαιτείται",
"label.requireshvm": "HVM",
@@ -1455,7 +1454,7 @@
"label.reset.config.value": "Επαναφορά στις τιμές προεπιλογής",
"label.reset.ssh.key.pair": "Επαναφορά ζεύγους κλειδιών SSH",
"label.reset.to.default": "Επαναφορά στην τιμή προεπιλογής",
-"label.reset.userdata.on.vm": "Επαναφορά δεδομένων χρήστη της εικονικής μηχανής",
+"label.reset.user.data.on.vm": "Επαναφορά δεδομένων χρήστη της εικονικής μηχανής",
"label.reset.vpn.connection": "Επαναφορά σύνδεσης Εικον. Ιδιωτ. Δικτύου",
"label.resource": "Πόρος",
"label.resource.limit.exceeded": "Υπέρβαση ορίου πόρων",
@@ -1811,19 +1810,17 @@
"label.usenewdiskoffering": "Αντικατάσταση προσφοράς υπηρεσίας δίσκου;",
"label.user": "Χρήστη",
"label.user.conflict": "Σύγκρουση",
-"label.user.data": "Δεδομένα χρηστών",
-"label.userdata": "Δεδομένα χρήστη",
-"label.userdata.do.append": "Πρόσθεση δεδομένων χρήστη",
-"label.userdata.do.override": "Παράκαμψη δεδομένων χρήστη",
-"label.userdata.registered": "Εγγεγραμένα δεδομένα χρήστη",
-"label.userdata.text": "Κείμενο δεδομένων χρήστη",
-"label.userdatadetails": "Λεπτομέρειες δεδομένων χρήστη",
-"label.userdataid": "Αναγνωριστικό δεδομένων χρήστη",
-"label.userdatal2": "Δεδομένα χρήστη",
-"label.userdataname": "Όνομα δεδομένων χρήστη",
-"label.userdataparams": "Παράμετροι δεδομένων χρήστη",
-"label.userdatapolicy": "Συνδεμένες πολιτικές δεδομένων χρήστη",
-"label.userdatapolicy.tooltip": "Τα δεδομένα χρήστη που έχουν συνδεθεί στο πρότυπο μπορούν να παρακαμφθούν απο τα δεδομένα χρηστών που ορίστηκαν κατα την δημιουργία της vm. Διαλέξτε την πολιτική παράκαμψης ανάλογα με τις απαιτήσεις.",
+"label.user.data": "Δεδομένα χρήστη",
+"label.user.data.do.append": "Πρόσθεση δεδομένων χρήστη",
+"label.user.data.do.override": "Παράκαμψη δεδομένων χρήστη",
+"label.user.data.registered": "Εγγεγραμένα δεδομένα χρήστη",
+"label.user.data.text": "Κείμενο δεδομένων χρήστη",
+"label.user.data.details": "Λεπτομέρειες δεδομένων χρήστη",
+"label.user.data.id": "Αναγνωριστικό δεδομένων χρήστη",
+"label.user.data.name": "Όνομα δεδομένων χρήστη",
+"label.user.data.params": "Παράμετροι δεδομένων χρήστη",
+"label.user.data.policy": "Συνδεμένες πολιτικές δεδομένων χρήστη",
+"label.user.data.policy.tooltip": "Τα δεδομένα χρήστη που έχουν συνδεθεί στο πρότυπο μπορούν να παρακαμφθούν απο τα δεδομένα χρηστών που ορίστηκαν κατα την δημιουργία της vm. Διαλέξτε την πολιτική παράκαμψης ανάλογα με τις απαιτήσεις.",
"label.username": "Όνομα χρήστη",
"label.users": "Χρήστες",
"label.usersource": "Τύπος χρήστη",
@@ -2116,7 +2113,7 @@
"message.confirm.attach.disk": "Είστε βέβαιοι ότι θέλετε να επισυνάψετε το δίσκο;",
"message.confirm.change.offering.for.volume": "Παρακαλώ επιβεβαιώστε ότι επιθυμείτε την αλλαγή της προσφοράς δίσκου για αυτόν τον τόμο",
"message.confirm.configure.ovs": "Είστε βέβαιοι ότι θέλετε να ρυθμίσετε τις παραμέτρους του Ovs;",
-"message.confirm.delete.acl.list": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν τη λίστα Λίστα Πρόσβασης;",
+"message.confirm.delete.acl": "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν τη λίστα Λίστα Πρόσβασης;",
"message.confirm.delete.bigswitchbcf": "Επιβεβαιώστε ότι θέλετε να διαγράψετε αυτόν τον ελεγκτή BigSwitch BCF",
"message.confirm.delete.brocadevcs": "Επιβεβαιώστε ότι θέλετε να διαγράψετε το εναλλάκτη Brocade Vcs",
"message.confirm.delete.ciscoasa1000v": "Παρακαλώ επιβεβαιώστε ότι θέλετε να διαγράψετε CiscoASA1000v",
@@ -2350,7 +2347,7 @@
"message.error.upload.template": "Η αποστολή του προτύπου απέτυχε",
"message.error.upload.template.description": "Μόνο ένα πρότυπο μπορεί να αποσταλεί κάθε φορά",
"message.error.url": "Πληκτρολογήστε διεύθυνση URL",
-"message.error.userdata": "Εισάγωγή δεδομένων χρηστών",
+"message.error.user.data": "Εισάγωγή δεδομένων χρηστών",
"message.error.username": "Εισάγετε το όνομα χρήστη σας",
"message.error.valid.iops.range": "Εισαγεται ένα σωστό εύρος εργασίων εισαγ./εξαγ ανα δευτ.",
"message.error.vcenter.datacenter": "Πληκτρολογήστε vCenter Datacenter",
diff --git a/ui/public/locales/en.json b/ui/public/locales/en.json
index 027bbbd123f4..5e2d58d48fe7 100644
--- a/ui/public/locales/en.json
+++ b/ui/public/locales/en.json
@@ -1,23 +1,23 @@
{
"message.delete.account.not.disabled": "Please disable the account before attempting to delete it.",
-"alert.service.domainrouter": "Domain router",
+"alert.service.domainrouter": "Domain Router",
"error.dedicate.bgp.peer.failed":"Failed to dedicate BGP peer",
-"error.dedicate.cluster.failed": "Failed to dedicate cluster.",
-"error.dedicate.host.failed": "Failed to dedicate host.",
+"error.dedicate.cluster.failed": "Failed to dedicate Cluster.",
+"error.dedicate.host.failed": "Failed to dedicate Host.",
"error.dedicate.ipv4.subnet.failed": "Failed to dedicate IPv4 subnet.",
-"error.dedicate.pod.failed": "Failed to dedicate pod.",
-"error.dedicate.zone.failed": "Failed to dedicate zone.",
+"error.dedicate.pod.failed": "Failed to dedicate Pod.",
+"error.dedicate.zone.failed": "Failed to dedicate Zone.",
"error.empty.counter.operator.threshold": "Either Counter, Operator or Threshold is empty",
"error.execute.api.failed": "Failed to execute API.",
"error.fetching.async.job.result": "Error encountered while fetching async job result.",
"error.form.message": "There are errors in the form. Please fix them.",
"error.password.not.match": "The password fields do not match",
"error.release.dedicate.bgp.peer": "Failed to release dedicated BGP peer.",
-"error.release.dedicate.cluster": "Failed to release dedicated cluster.",
+"error.release.dedicate.cluster": "Failed to release dedicated Cluster.",
"error.release.dedicate.host": "Failed to release dedicated host.",
"error.release.dedicate.ipv4.subnet": "Failed to release dedicated IPv4 subnet.",
-"error.release.dedicate.pod": "Failed to release dedicated pod.",
-"error.release.dedicate.zone": "Failed to release dedicated zone.",
+"error.release.dedicate.pod": "Failed to release dedicated Pod.",
+"error.release.dedicate.zone": "Failed to release dedicated Zone.",
"error.unable.to.add.setting.extraconfig": "It is not allowed to add setting for extraconfig. Please update VirtualMachine with extraconfig parameter.",
"error.unable.to.proceed": "Unable to proceed. Please contact your administrator.",
"firewall.close": "Firewall",
@@ -30,9 +30,9 @@
"label.accept.project.invitation": "Accept project invitation",
"label.access": "Access",
"label.access.kubernetes.nodes": "Access Kubernetes nodes",
-"label.accesskey": "Access key",
-"label.access.key": "Access key",
-"label.secret.key": "Secret key",
+"label.accesskey": "Access Key",
+"label.access.key": "Access Key",
+"label.secret.key": "Secret Key",
"label.apikeyaccess": "Api Key Access",
"label.account": "Account",
"label.account.and.security.group": "Account - security group",
@@ -42,18 +42,18 @@
"label.accounts": "Accounts",
"label.accountstate": "Account state",
"label.accounttype": "Account type",
-"label.acl.export": "Export ACLs",
+"label.acl.export": "Export ACL rules",
"label.acl.id": "ACL ID",
-"label.acl.list.rules": "ACL list rules",
+"label.acl.rules": "ACL rules",
"label.acl.reason.description": "Enter the reason behind an ACL rule.",
"label.aclid": "ACL",
-"label.aclname": "ACL name",
+"label.acl.rule.name": "ACL rule name",
"label.acquire.new.ip": "Acquire new IP",
"label.acquire.new.secondary.ip": "Acquire new secondary IP",
"label.acquiring.ip": "Acquiring IP",
"label.associated.resource": "Associated resource",
"label.action": "Action",
-"label.action.attach.disk": "Attach disk",
+"label.action.attach.disk": "Attach Disk",
"label.action.attach.iso": "Attach ISO",
"label.action.attach.to.instance": "Attach to Instance",
"label.action.bulk.delete.egress.firewall.rules": "Bulk delete egress firewall rules",
@@ -63,92 +63,92 @@
"label.action.bulk.delete.load.balancer.rules": "Bulk delete load balancer rules",
"label.action.bulk.delete.portforward.rules": "Bulk delete port forward rules",
"label.action.bulk.delete.routing.firewall.rules": "Bulk remove IPv4 Routing firewall rules",
-"label.action.bulk.delete.snapshots": "Bulk delete snapshots",
+"label.action.bulk.delete.snapshots": "Bulk delete Snapshots",
"label.action.bulk.delete.templates": "Bulk delete Templates",
"label.action.bulk.release.public.ip.address": "Bulk release public IP addresses",
"label.action.cancel.maintenance.mode": "Cancel maintenance mode",
"label.action.change.password": "Change password",
"label.action.clear.webhook.deliveries": "Clear deliveries",
"label.action.delete.webhook.deliveries": "Delete deliveries",
-"label.action.change.primary.storage.scope": "Change primary storage scope",
+"label.action.change.primary.storage.scope": "Change Primary Storage scope",
"label.action.configure.stickiness": "Stickiness",
"label.action.copy.iso": "Copy ISO",
"label.action.copy.snapshot": "Copy Snapshot",
"label.action.copy.template": "Copy Template",
"label.action.create.snapshot.from.vmsnapshot": "Create Snapshot from Instance Snapshot",
"label.action.create.template.from.volume": "Create Template from volume",
-"label.action.create.volume": "Create volume",
+"label.action.create.volume": "Create Volume",
"label.action.create.volume.add": "Create and Add Volume",
"label.action.delete.account": "Delete Account",
"label.action.delete.backup.offering": "Delete backup offering",
-"label.action.delete.cluster": "Delete cluster",
-"label.action.delete.domain": "Delete domain",
-"label.action.delete.egress.firewall": "Delete egress firewall rule",
-"label.action.delete.firewall": "Delete firewall rule",
+"label.action.delete.cluster": "Delete Cluster",
+"label.action.delete.domain": "Delete Domain",
+"label.action.delete.egress.firewall": "Delete Egress Firewall Rule",
+"label.action.delete.firewall": "Delete Firewall Rule",
"label.action.delete.interface.static.route": "Remove Tungsten Fabric interface static route",
-"label.action.delete.guest.os": "Delete guest os",
-"label.action.delete.guest.os.hypervisor.mapping": "Delete guest os hypervisor mapping",
+"label.action.delete.guest.os": "Delete guest OS",
+"label.action.delete.guest.os.hypervisor.mapping": "Delete guest OS hypervisor mapping",
"label.action.delete.ip.range": "Delete IP range",
"label.action.delete.iso": "Delete ISO",
-"label.action.delete.load.balancer": "Delete load balancer rule",
+"label.action.delete.load.balancer": "Delete Load Balancer Rule",
"label.action.delete.network": "Delete Network",
"label.action.delete.network.static.route": "Remove Tungsten Fabric Network static route",
"label.action.delete.network.permission": "Delete Network permission",
-"label.action.delete.node": "Delete node",
+"label.action.delete.node": "Delete Node",
"label.action.delete.oauth.provider": "Delete OAuth provider",
"label.action.delete.physical.network": "Delete physical Network",
"label.action.delete.pod": "Delete Pod",
-"label.action.delete.primary.storage": "Delete primary storage",
+"label.action.delete.primary.storage": "Delete Primary Storage",
"label.action.delete.routing.firewall.rule": "Delete IPv4 Routing firewall rule",
-"label.action.delete.secondary.storage": "Delete secondary storage",
-"label.action.delete.security.group": "Delete security group",
+"label.action.delete.secondary.storage": "Delete Secondary Storage",
+"label.action.delete.security.group": "Delete Security Group",
"label.action.delete.snapshot": "Delete Snapshot",
"label.action.delete.template": "Delete Template",
"label.action.delete.tungsten.router.table": "Remove Tungsten Fabric route table from Network",
"label.action.delete.user": "Delete User",
-"label.action.delete.volume": "Delete volume",
-"label.action.delete.zone": "Delete zone",
+"label.action.delete.volume": "Delete Volume",
+"label.action.delete.zone": "Delete Zone",
"label.action.destroy.instance": "Destroy Instance",
-"label.action.destroy.systemvm": "Destroy system VM",
-"label.action.destroy.volume": "Destroy volume",
-"label.action.detach.disk": "Detach disk",
+"label.action.destroy.systemvm": "Destroy System VM",
+"label.action.destroy.volume": "Destroy Volume",
+"label.action.detach.disk": "Detach Disk",
"label.action.detach.iso": "Detach ISO",
"label.action.disable.account": "Disable Account",
-"label.action.disable.cluster": "Disable cluster",
-"label.action.disable.disk.offering": "Disable disk offering",
+"label.action.disable.cluster": "Disable Cluster",
+"label.action.disable.disk.offering": "Disable Disk Offering",
"label.action.disable.physical.network": "Disable physical Network",
-"label.action.disable.pod": "Disable pod",
+"label.action.disable.pod": "Disable Pod",
"label.action.disable.role": "Disable Role",
"label.action.disable.static.nat": "Disable static NAT",
-"label.action.disable.service.offering": "Disable service offering",
-"label.action.disable.system.service.offering": "Disable system service offering",
+"label.action.disable.service.offering": "Disable Service Offering",
+"label.action.disable.system.service.offering": "Disable System Service Offering",
"label.action.disable.user": "Disable User",
-"label.action.disable.zone": "Disable zone",
+"label.action.disable.zone": "Disable Zone",
"label.action.download.iso": "Download ISO",
"label.action.download.snapshot": "Download Snapshot",
"label.action.download.template": "Download Template",
-"label.action.download.volume": "Download volume",
+"label.action.download.volume": "Download Volume",
"label.action.edit.account": "Edit Account",
-"label.action.edit.domain": "Edit domain",
+"label.action.edit.domain": "Edit Domain",
"label.action.edit.instance": "Edit Instance",
"label.action.edit.iso": "Edit ISO",
"label.action.edit.nfs.options": "Edit NFS mount options",
"label.action.edit.template": "Edit Template",
-"label.action.edit.zone": "Edit zone",
+"label.action.edit.zone": "Edit Zone",
"label.action.enable.two.factor.authentication": "Enabled Two factor authentication",
"label.action.verify.two.factor.authentication": "Verified Two factor authentication",
"label.action.enable.account": "Enable Account",
-"label.action.enable.cluster": "Enable cluster",
+"label.action.enable.cluster": "Enable Cluster",
"label.action.enable.disk.offering": "Enable disk offering",
"label.action.enable.maintenance.mode": "Enable maintenance mode",
"label.action.enable.physical.network": "Enable physical Network",
-"label.action.enable.pod": "Enable pod",
+"label.action.enable.pod": "Enable Pod",
"label.action.enable.role": "Enable Role",
-"label.action.enable.service.offering": "Enable service offering",
-"label.action.enable.system.service.offering": "Enable system service offering",
+"label.action.enable.service.offering": "Enable Service Offering",
+"label.action.enable.system.service.offering": "Enable System Service Offering",
"label.action.enable.static.nat": "Enable static NAT",
"label.action.enable.user": "Enable User",
-"label.action.enable.zone": "Enable zone",
+"label.action.enable.zone": "Enable Zone",
"label.action.expunge.instance": "Expunge Instance",
"label.action.force.reconnect": "Force reconnect",
"label.action.generate.keys": "Generate keys",
@@ -164,22 +164,22 @@
"label.action.iso.share": "Update ISO sharing",
"label.action.lock.account": "Lock Account",
"label.action.lock.user": "Lock User",
-"label.action.manage.cluster": "Manage cluster",
-"label.action.migrate.router": "Migrate router",
+"label.action.manage.cluster": "Manage Cluster",
+"label.action.migrate.router": "Migrate Router",
"label.action.migrate.systemvm": "Migrate System VM",
-"label.action.migrate.systemvm.to.ps": "Migrate System VM to another primary storage",
-"label.action.patch.systemvm": "Patch system VM",
+"label.action.migrate.systemvm.to.ps": "Migrate System VM to another Primary Storage",
+"label.action.patch.systemvm": "Patch System VM",
"label.action.patch.systemvm.vpc": "Patch System VM - VPC Router",
"label.action.patch.systemvm.processing": "Patching System VM....",
-"label.action.project.add.account": "Add Account to project",
-"label.action.project.add.user": "Add User to project",
+"label.action.project.add.account": "Add Account to Project",
+"label.action.project.add.user": "Add User to Project",
"label.action.quota.tariff.create": "Create Quota Tariff",
"label.action.quota.tariff.edit": "Edit Quota Tariff",
"label.action.quota.tariff.remove": "Remove Quota Tariff",
"label.action.reboot.instance": "Reboot Instance",
-"label.action.reboot.router": "Reboot router",
+"label.action.reboot.router": "Reboot Router",
"label.action.reboot.systemvm": "Reboot System VM",
-"label.action.recover.volume": "Recover volume",
+"label.action.recover.volume": "Recover Volume",
"label.action.resize.sharedfs": "Resize Shared FileSystem",
"label.action.restart.sharedfs": "Restart Shared FileSystem",
"label.action.recurring.snapshot": "Recurring Snapshots",
@@ -189,7 +189,7 @@
"label.action.release.asnumber": "Release AS Number",
"label.action.release.ip": "Release IP",
"label.action.release.reserved.ip": "Release reserved IP",
-"label.action.remove.host": "Remove host",
+"label.action.remove.host": "Remove Host",
"label.action.remove.logical.router": "Remove Logical Router",
"label.action.remove.network.policy": "Remove Network Policy",
"label.action.remove.router.table.from.interface": "Remove Tungsten Fabric route table from interface",
@@ -198,36 +198,36 @@
"label.action.reserve.ip": "Reserve Public IP",
"label.action.reset.network.permissions": "Reset Network permissions",
"label.action.reset.password": "Reset password",
-"label.action.resize.volume": "Resize volume",
+"label.action.resize.volume": "Resize Volume",
"label.action.revert.snapshot": "Revert to Snapshot",
"label.action.router.health.checks": "Get health checks result",
-"label.action.run.diagnostics": "Run diagnostics",
+"label.action.run.diagnostics": "Run Diagnostics",
"label.action.secure.host": "Provision host security keys",
"label.action.set.as.source.nat.ip": "make source NAT",
"label.action.setup.2FA.user.auth": "Setup User Two Factor Authentication",
"label.action.start.sharedfs": "Start Shared FileSystem",
"label.action.start.instance": "Start Instance",
-"label.action.start.router": "Start router",
-"label.action.start.systemvm": "Start system VM",
+"label.action.start.router": "Start Router",
+"label.action.start.systemvm": "Start System VM",
"label.action.stop.sharedfs": "Stop Shared FileSystem",
"label.action.stop.instance": "Stop Instance",
-"label.action.stop.router": "Stop router",
-"label.action.stop.systemvm": "Stop system VM",
+"label.action.stop.router": "Stop Router",
+"label.action.stop.systemvm": "Stop System VM",
"label.action.take.snapshot": "Take Snapshot",
"label.action.template.permission": "Update Template permissions",
"label.action.template.share": "Update Template sharing",
-"label.action.unmanage.cluster": "Unmanage cluster",
+"label.action.unmanage.cluster": "Unmanage Cluster",
"label.action.unmanage.instance": "Unmanage Instance",
"label.action.unmanage.instances": "Unmanage Instances",
"label.action.unmanage.virtualmachine": "Unmanage Instance",
"label.action.unmanage.volume": "Unmanage Volume",
"label.action.unmanage.volumes": "Unmanage Volumes",
-"label.action.update.host": "Update host",
+"label.action.update.host": "Update Host",
"label.action.update.security.groups": "Update security groups",
"label.action.update.offering.access": "Update offering access",
"label.action.update.resource.count": "Update resource count",
"label.action.value": "Action/Value",
-"label.action.userdata.reset": "Reset Userdata",
+"label.action.user.data.reset": "Reset User Data",
"label.action.vmsnapshot.create": "Take Instance Snapshot",
"label.action.vmsnapshot.delete": "Delete Instance Snapshot",
"label.action.vmsnapshot.revert": "Revert to Instance Snapshot",
@@ -238,73 +238,72 @@
"label.activeviewersessions": "Active sessions",
"label.add": "Add",
"label.add.account": "Add Account",
+"label.add.acl.rule": "Add ACL rule",
"label.add.acl": "Add ACL",
-"label.add.acl.list": "Add ACL list",
-"label.add.affinity.group": "Add new affinity group",
+"label.add.affinity.group": "Add new Affinity Group",
"label.add.baremetal.dhcp.device": "Add bare metal DHCP device",
-"label.add.bgp.peer": "Add BGP peer",
-"label.add.bigswitchbcf.device": "Add BigSwitch BCF controller",
+"label.add.bgp.peer": "Add BGP Peer",
+"label.add.bigswitchbcf.device": "Add BigSwitch BCF Controller",
"label.add.brocadevcs.device": "Add Brocade Vcs Switch",
"label.add.by": "Add by",
"label.add.certificate": "Add certificate",
"label.add.ciscoasa1000v": "Add CiscoASA1000v resource",
-"label.add.cluster": "Add cluster",
-"label.add.compute.offering": "Add compute offering",
+"label.add.cluster": "Add Cluster",
+"label.add.compute.offering": "Add Compute Offering",
"label.add.condition": "Add condition",
-"label.add.disk.offering": "Add disk offering",
-"label.add.domain": "Add domain",
-"label.add.egress.rule": "Add egress rule",
+"label.add.disk.offering": "Add Disk Offering",
+"label.add.domain": "Add Domain",
+"label.add.egress.rule": "Add Egress Rule",
"label.add.f5.device": "Add F5 device",
-"label.add.firewall": "Add firewall rule",
+"label.add.firewall": "Add Firewall Rule",
"label.add.firewallrule": "Add Firewall Rule",
-"label.add.guest.network": "Add guest Network",
-"label.add.guest.os": "Add guest os",
+"label.add.guest.network": "Add Guest Network",
+"label.add.guest.os": "Add Guest OS",
"label.add.guest.os.hypervisor.mapping": "Add guest os hypervisor mapping",
-"label.add.host": "Add host",
-"label.add.ingress.rule": "Add ingress rule",
+"label.add.host": "Add Host",
+"label.add.ingress.rule": "Add Ingress Rule",
"label.add.intermediate.certificate": "Add intermediate certificate",
"label.add.internal.lb": "Add internal LB",
-"label.add.ip.range": "Add IP range",
-"label.add.ipv4.subnet": "Add IPv4 subnet for Routed networks",
+"label.add.ip.range": "Add IP Range",
+"label.add.ipv4.subnet": "Add IPv4 Subnet for Routed Networks",
"label.add.ip.v6.prefix": "Add IPv6 prefix",
-"label.add.isolated.network": "Add isolated Network",
-"label.add.kubernetes.cluster": "Add Kubernetes cluster",
+"label.add.isolated.network": "Add Isolated Network",
+"label.add.kubernetes.cluster": "Add Kubernetes Cluster",
+"label.add.acl.name": "ACL name",
"label.add.ldap.account": "Add LDAP Account",
-"label.add.list.name": "ACL List name",
"label.add.logical.router": "Add Logical Router to this Network",
"label.add.more": "Add more",
-"label.add.netscaler.device": "Add Netscaler device",
+"label.add.netscaler.device": "Add Netscaler Device",
"label.add.network": "Add Network",
"label.add.network.acl": "Add Network ACL",
-"label.add.network.acl.list": "Add Network ACL list",
-"label.add.network.offering": "Add Network offering",
+"label.add.network.offering": "Add Network Offering",
"label.add.network.permission": "Add Network permission",
-"label.add.new.gateway": "Add new gateway",
+"label.add.new.gateway": "Add new Gateway",
"label.add.new.tier": "Add new Network Tier",
"label.add.niciranvp.device": "Add Nvp controller",
"label.add.note": "Add comment",
"label.add.opendaylight.device": "Add OpenDaylight controller",
"label.add.pa.device": "Add Palo Alto device",
"label.add.param": "Add param",
-"label.add.physical.network": "Add physical Network",
-"label.add.pod": "Add pod",
+"label.add.physical.network": "Add Physical Network",
+"label.add.pod": "Add Pod",
"label.add.prefix": "Add prefix",
"label.add.policy": "Add policy",
-"label.add.primary.storage": "Add primary storage",
-"label.add.private.gateway": "Add private gateway",
-"label.add.resources": "Add resources",
-"label.add.role": "Add role",
-"label.add.route": "Add route",
-"label.add.router.table.to.instance": "Add router table to this Instance",
-"label.add.routing.policy": "Add routing policy",
-"label.add.rule": "Add rule",
-"label.add.secondary.ip": "Add secondary IP",
-"label.add.secondary.storage": "Add secondary storage",
-"label.add.security.group": "Add security group",
+"label.add.primary.storage": "Add Primary Storage",
+"label.add.private.gateway": "Add Private Gateway",
+"label.add.resources": "Add Resources",
+"label.add.role": "Add Role",
+"label.add.route": "Add Route",
+"label.add.router.table.to.instance": "Add Router Table to this Instance",
+"label.add.routing.policy": "Add Routing Policy",
+"label.add.rule": "Add Rule",
+"label.add.secondary.ip": "Add Secondary IP",
+"label.add.secondary.storage": "Add Secondary Storage",
+"label.add.security.group": "Add Security Group",
"label.add.setting": "Add setting",
-"label.add.srx.device": "Add SRX device",
-"label.add.static.route": "Add static route",
-"label.add.system.service.offering": "Add system service offering",
+"label.add.srx.device": "Add SRX Device",
+"label.add.static.route": "Add Static Route",
+"label.add.system.service.offering": "Add System Service Offering",
"label.add.term.then": "Add term",
"label.add.traffic": "Add traffic",
"label.add.traffic.type": "Add traffic type",
@@ -328,24 +327,24 @@
"label.add.upstream.ipv6.routes": "Add upstream IPv6 routes",
"label.add.vm": "Add Instance",
"label.add.vms": "Add Instances",
-"label.add.vmware.datacenter": "Add VMware datacenter",
-"label.add.vnmc.device": "Add VNMC device",
+"label.add.vmware.datacenter": "Add VMware Datacenter",
+"label.add.vnmc.device": "Add VNMC Device",
"label.add.vpc": "Add VPC",
-"label.add.vpc.offering": "Add VPC offering",
-"label.add.vpn.customer.gateway": "Add VPN customer gateway",
-"label.add.vpn.gateway": "Add VPN gateway",
+"label.add.vpc.offering": "Add VPC Offering",
+"label.add.vpn.customer.gateway": "Add VPN Customer Gateway",
+"label.add.vpn.gateway": "Add VPN Gateway",
"label.add.vpn.user": "Add VPN User",
-"label.add.zone": "Add zone",
+"label.add.zone": "Add Zone",
"label.adding": "Adding",
"label.adding.user": "Adding User...",
"label.address": "Address",
"label.address.group": "Address group",
-"label.admin": "Domain admin",
+"label.admin": "Domain Admin",
"label.advanced": "Advanced",
"label.advanced.mode": "Advanced mode",
"label.affinity": "Affinity",
-"label.affinity.groups": "Affinity groups",
-"label.affinitygroup": "Affinity group",
+"label.affinity.groups": "Affinity Groups",
+"label.affinitygroup": "Affinity Group",
"label.agentcount": "Number Of connected agents",
"label.agent.password": "Agent password",
"label.agent.username": "Agent username",
@@ -359,7 +358,7 @@
"label.all": "All",
"label.all.available.data": "All available data",
"label.all.ipv6": "All IPv6",
-"label.all.zone": "All zones",
+"label.all.zone": "All Zones",
"label.allocated": "Allocated",
"label.allocatedonly": "Allocated",
"label.allocationstate": "Allocation state",
@@ -428,13 +427,13 @@
"label.backup.configure.schedule": "Configure Backup Schedule",
"label.backup.offering.assign": "Assign Instance to backup offering",
"label.backup.offering.remove": "Remove Instance from backup offering",
-"label.backup.offerings": "Backup offerings",
+"label.backup.offerings": "Backup Offerings",
"label.backup.repository": "Backup Repository",
"label.backup.restore": "Restore Instance backup",
-"label.backupofferingid": "Backup offering",
-"label.backupofferingname": "Backup offering",
-"label.backup.repository.add": "Add backup repository",
-"label.backup.repository.remove": "Remove backup repository",
+"label.backupofferingid": "Backup Offering",
+"label.backupofferingname": "Backup Offering",
+"label.backup.repository.add": "Add Backup Repository",
+"label.backup.repository.remove": "Remove Backup Repository",
"label.balance": "Balance",
"label.bandwidth": "Bandwidth",
"label.baremetal.dhcp.devices": "Bare metal DHCP devices",
@@ -464,12 +463,12 @@
"label.browser": "Browser",
"label.bucket": "Bucket",
"label.by.account": "By Account",
-"label.by.domain": "By domain",
+"label.by.domain": "By Domain",
"label.by.level": "By level",
-"label.by.pod": "By pod",
+"label.by.pod": "By Pod",
"label.by.state": "By state",
"label.by.type": "By type",
-"label.by.zone": "By zone",
+"label.by.zone": "By Zone",
"label.bypassvlanoverlapcheck": "Bypass VLAN id/range overlap",
"label.cachemode": "Write-cache type",
"label.cancel": "Cancel",
@@ -536,8 +535,8 @@
"label.community": "Community",
"label.complete": "Complete",
"label.compute": "Compute",
-"label.compute.offerings": "Compute offerings",
-"label.compute.offering.for.sharedfs.instance": "Compute offering for Instance",
+"label.compute.offerings": "Compute Offerings",
+"label.compute.offering.for.sharedfs.instance": "Compute Offering for Instance",
"label.computeonly.offering": "Compute only disk offering",
"label.computeonly.offering.tooltip": "Option to specify root disk related information in the compute offering or to directly link a disk offering to the compute offering",
"label.conditions": "Conditions",
@@ -555,7 +554,7 @@
"label.confirm.delete.loadbalancer.rules": "Please confirm you wish to delete the selected load balancing rules.",
"label.confirm.delete.portforward.rules": "Please confirm you wish to delete the selected port-forward rules.",
"label.confirm.delete.routing.firewall.rules": "Please confirm you wish to delete the selected IPv4 Routing firewall rules",
-"label.confirm.delete.snapshot.zones": "Please confirm you wish to delete the Snapshot in the selected zones.",
+"label.confirm.delete.snapshot.zones": "Please confirm you wish to delete the Snapshot in the selected Zones.",
"label.confirm.delete.templates": "Please confirm you wish to delete the selected Templates.",
"label.confirm.delete.tungsten.address.group": "Please confirm that you would like to delete this Address Group",
"label.confirm.delete.tungsten.firewall.policy": "Please confirm that you would like to delete this Firewall Policy",
@@ -590,11 +589,11 @@
"label.copyid": "Copy ID",
"label.copy.password": "Copy password",
"label.core": "Core",
-"label.core.zone.type": "Core zone type",
+"label.core.zone.type": "Core Zone type",
"label.counter": "Counter",
"label.counter.name": "Name of the counter for which the policy will be evaluated",
"label.cpu": "CPU",
-"label.cpu.sockets": "CPU sockets",
+"label.cpu.sockets": "CPU Sockets",
"label.cpu.usage.info": "CPU usage information",
"label.cpuallocated": "CPU allocated for Instances",
"label.cpuallocatedghz": "CPU allocated",
@@ -609,19 +608,19 @@
"label.cpuused": "CPU utilized",
"label.cpuusedghz": "CPU used",
"label.create": "Create",
-"label.create.instance": "Create cloud server",
+"label.create.instance": "Create Cloud Server",
"label.create.account": "Create Account",
"label.create.asnrange": "Create AS Range",
-"label.create.backup": "Start backup",
+"label.create.backup": "Start Backup",
"label.create.sharedfs": "Create Shared FileSystem",
"label.create.network": "Create new Network",
"label.create.nfs.secondary.staging.storage": "Create NFS secondary staging storage",
-"label.create.project": "Create project",
-"label.create.project.role": "Create project role",
+"label.create.project": "Create Project",
+"label.create.project.role": "Create Project Role",
"label.create.routing.policy": "Create Routing Policy",
"label.create.site.vpn.connection": "Create site-to-site VPN connection",
"label.create.site.vpn.gateway": "Create site-to-site VPN gateway",
-"label.create.snapshot.for.volume": "Created Snapshot for volume",
+"label.create.snapshot.for.volume": "Created Snapshot for Volume",
"label.create.ssh.key.pair": "Create a SSH Key Pair",
"label.create.template": "Create Template",
"label.create.tier.aclid.description": "The ACL associated with the Network Tier.",
@@ -642,7 +641,7 @@
"label.credit": "Credit",
"label.cron": "Cron expression",
"label.cron.mode": "Cron mode",
-"label.crosszones": "Cross zones",
+"label.crosszones": "Cross Zones",
"label.currency": "Currency",
"label.current": "Current",
"label.current.storage": "Current storage",
@@ -654,8 +653,8 @@
"label.daily": "Daily",
"label.dark.mode": "Dark mode",
"label.dashboard": "Dashboard",
-"label.data.disk": "Data disk",
-"label.data.disk.offering": "Data disk offering",
+"label.data.disk": "Data Disk",
+"label.data.disk.offering": "Data Disk Offering",
"label.date": "Date",
"label.datetime.filter.period": "From {startDate} to {endDate}",
"label.datetime.filter.starting": "Starting {startDate}.",
@@ -664,19 +663,19 @@
"label.days": "Days",
"label.day.of.month": "Day of month",
"label.day.of.week": "Day of week",
-"label.db.usage.metrics": "DB/Usage server",
+"label.db.usage.metrics": "DB/Usage Server",
"label.dbislocal": "The db runs locally",
"label.dc.name": "DC name",
"label.declare.host.as.degraded": "Declare host as degraded",
"label.decline.invitation": "Decline invitation",
"label.dedicate": "Dedicate",
"label.dedicate.bgp.peer": "Dedicate BGP peer",
-"label.dedicate.cluster": "Dedicate cluster",
-"label.dedicate.host": "Dedicate host",
+"label.dedicate.cluster": "Dedicate Cluster",
+"label.dedicate.host": "Dedicate Host",
"label.dedicate.ipv4.subnet": "Dedicate IPv4 subnet",
-"label.dedicate.pod": "Dedicate pod",
+"label.dedicate.pod": "Dedicate Pod",
"label.dedicate.vlan.vni.range": "Dedicate VLAN/VNI range",
-"label.dedicate.zone": "Dedicate zone",
+"label.dedicate.zone": "Dedicate Zone",
"label.dedicated": "Dedicated",
"label.dedicated.vlan.vni.ranges": "Dedicated VLAN/VNI ranges",
"label.dedicatedresources": "Dedicated resources",
@@ -687,7 +686,7 @@
"label.default.network.guestcidraddress.isolated.network": "Default guest CIDR for Isolated Networks",
"label.defaultnetwork": "Default Network",
"label.delete": "Delete",
-"label.delete.acl.list": "Delete ACL list",
+"label.delete.acl": "Delete ACL",
"label.delete.affinity.group": "Delete affinity group",
"label.delete.alerts": "Delete alerts",
"label.delete.asnrange": "Delete AS Range",
@@ -718,13 +717,13 @@
"label.delete.portforward.rules": "Delete port forward rules",
"label.delete.project": "Delete project",
"label.delete.project.role": "Delete project role",
-"label.delete.role": "Delete role",
-"label.delete.rule": "Delete rule",
-"label.delete.setting": "Delete setting",
+"label.delete.role": "Delete Role",
+"label.delete.rule": "Delete Rule",
+"label.delete.setting": "Delete Setting",
"label.delete.snapshot.policy": "Delete Snapshot policy",
"label.delete.srx": "Delete SRX",
"label.delete.sslcertificate": "Delete SSL certificate",
-"label.delete.tag": "Remove tag",
+"label.delete.tag": "Remove Tag",
"label.delete.term": "Delete term",
"label.delete.traffic.type": "Delete traffic type",
"label.delete.tungsten.address.group": "Delete Address Group",
@@ -754,13 +753,13 @@
"label.deployasis": "Read Instance settings from OVA",
"label.deploymentplanner": "Deployment planner",
"label.desc.db.stats": "Database Statistics",
-"label.desc.importexportinstancewizard": "Import and export Instances to/from an existing VMware or KVM cluster.",
+"label.desc.importexportinstancewizard": "Import and export Instances to/from an existing VMware or KVM Cluster.",
"label.desc.import.ext.kvm.wizard": "Import Instance from remote KVM host",
"label.desc.import.local.kvm.wizard": "Import QCOW2 image from Local Storage",
"label.desc.import.shared.kvm.wizard": "Import QCOW2 image from Shared Storage",
"label.desc.import.unmanage.volume": "Import and unmanage volume on Storage Pools",
"label.desc.ingesttinstancewizard": "Ingest instances from an external KVM host",
-"label.desc.importmigratefromvmwarewizard": "Import instances from VMware into a KVM cluster",
+"label.desc.importmigratefromvmwarewizard": "Import instances from VMware into a KVM Cluster",
"label.desc.usage.stats": "Usage Server Statistics",
"label.description": "Description",
"label.destaddressgroupuuid": "Destination Address Group",
@@ -795,16 +794,16 @@
"label.direction": "Direction",
"label.disable.autoscale.vmgroup": "Disable AutoScaling Group",
"label.disable.host": "Disable host",
-"label.disable.network.offering": "Disable Network offering",
+"label.disable.network.offering": "Disable Network Offering",
"label.disable.provider": "Disable provider",
"label.disable.storage": "Disable storage pool",
-"label.disable.vpc.offering": "Disable VPC offering",
+"label.disable.vpc.offering": "Disable VPC Offering",
"label.disable.vpn": "Disable remote access VPN",
"label.disable.webhook": "Disable Webhook",
"label.disabled": "Disabled",
"label.disconnected": "Last disconnected",
"label.disk": "Disk",
-"label.disk.offerings": "Disk offerings",
+"label.disk.offerings": "Disk Offerings",
"label.disk.path": "Disk Path",
"label.disk.tooltip": "Disk Image filename in the selected Storage Pool",
"label.disk.selection": "Disk selection",
@@ -825,9 +824,9 @@
"label.diskkbswrite": "Disk write (KiB)",
"label.diskread": "Disk read",
"label.diskwrite": "Disk write",
-"label.diskoffering": "Disk offering",
-"label.diskofferingdisplaytext": "Disk offering",
-"label.diskofferingid": "Disk offering",
+"label.diskoffering": "Disk Offering",
+"label.diskofferingdisplaytext": "Disk Offering",
+"label.diskofferingid": "Disk Offering",
"label.disksize": "Disk size (in GB)",
"label.disksizeallocated": "Disk allocated",
"label.disksizeallocatedgb": "Allocated",
@@ -848,7 +847,7 @@
"label.domain": "Domain",
"label.domain.id": "Domain ID",
"label.domain.name": "Domain name",
-"label.domain.router": "Domain router",
+"label.domain.router": "Domain Router",
"label.domain.suffix": "DNS domain suffix (i.e., xyz.com)",
"label.domainid": "Domain",
"label.domainname": "Domain",
@@ -888,15 +887,15 @@
"label.edge.zone": "Edge Zone",
"label.edit": "Edit",
"label.edit.account": "Edit Account",
-"label.edit.acl.list": "Edit ACL list",
+"label.edit.acl": "Edit ACL",
"label.edit.acl.rule": "Edit ACL rule",
"label.edit.autoscale.vmprofile": "Edit AutoScale Instance Profile",
"label.edit.project.details": "Edit project details",
"label.edit.project.role": "Edit project role",
-"label.edit.role": "Edit role",
-"label.edit.rule": "Edit rule",
+"label.edit.role": "Edit Role",
+"label.edit.rule": "Edit Rule",
"label.edit.secondary.ips": "Edit secondary IPs",
-"label.edit.tags": "Edit tags",
+"label.edit.tags": "Edit Tags",
"label.edit.traffic.type": "Edit traffic type",
"label.edit.user": "Edit User",
"label.egress": "Egress",
@@ -907,11 +906,11 @@
"label.email": "Email",
"label.enable.autoscale.vmgroup": "Enable AutoScaling Group",
"label.enable.host": "Enable Host",
-"label.enable.network.offering": "Enable Network offering",
+"label.enable.network.offering": "Enable Network Offering",
"label.enable.oauth": "Enable OAuth Login",
"label.enable.provider": "Enable provider",
-"label.enable.storage": "Enable storage pool",
-"label.enable.vpc.offering": "Enable VPC offering",
+"label.enable.storage": "Enable Storage Pool",
+"label.enable.vpc.offering": "Enable VPC Offering",
"label.enable.vpn": "Enable remote access VPN",
"label.enable.webhook": "Enable Webhook",
"label.enabled": "Enabled",
@@ -996,12 +995,12 @@
"label.firewall": "Firewall",
"label.firewall.policy": "Firewall Policy",
"label.firewallpolicy": "Firewall Policy",
-"label.firewallrule": "Firewall rule",
+"label.firewallrule": "Firewall Rule",
"label.firewallruleuuid": "Firewall Rule",
"label.firstname": "First name",
"label.firstname.lower": "firstname",
"label.fix.errors": "Fix errors",
-"label.fixed": "Fixed offering",
+"label.fixed": "Fixed Offering",
"label.for": "for",
"label.forbidden": "Forbidden",
"label.forced": "Force",
@@ -1051,7 +1050,7 @@
"label.guest.netmask": "Guest netmask",
"label.guest.networks": "Guest Networks",
"label.guest.os": "Guest OS",
-"label.guest.os.hypervisor.mappings": "Guest OS mappings",
+"label.guest.os.hypervisor.mappings": "Guest OS Mappings",
"label.guest.start.ip": "Guest start IP",
"label.guest.traffic": "Guest traffic",
"label.guestcidraddress": "Guest CIDR",
@@ -1105,7 +1104,7 @@
"label.hosttags.implicit.description": "The host tags defined by CloudStack Agent",
"label.hourly": "Hourly",
"label.hypervisor": "Hypervisor",
-"label.hypervisor.capabilities": "Hypervisor capabilities",
+"label.hypervisor.capabilities": "Hypervisor Capabilities",
"label.hypervisor.type": "Hypervisor type",
"label.hypervisors": "Hypervisors",
"label.hypervisorsnapshotreserve": "Hypervisor Snapshot reserve",
@@ -1127,10 +1126,10 @@
"label.ikeversion": "IKE version",
"label.images": "Images",
"label.imagestoreid": "Secondary Storage",
-"label.import.backup.offering": "Import backup offering",
+"label.import.backup.offering": "Import Backup Offering",
"label.import.instance": "Import Instance",
-"label.import.offering": "Import offering",
-"label.import.role": "Import role",
+"label.import.offering": "Import Offering",
+"label.import.role": "Import Role",
"label.import.volume": "Import Volume",
"label.inactive": "Inactive",
"label.in.progress": "in progress",
@@ -1144,12 +1143,12 @@
"label.initial": "Inital",
"label.initialized": "Initalized",
"label.insideportprofile": "Inside port profile",
-"label.installwizard.addzoneintro.title": "Let's add a zone",
+"label.installwizard.addzoneintro.title": "Let's add a Zone",
"label.installwizard.subtitle": "This guide will aid you in setting up your CloudStack™ installation",
"label.installwizard.title": "Hello and welcome to CloudStack™",
"label.instance": "Instance",
"label.instance.conversion.support": "Instance Conversion Supported",
-"label.instance.groups": "Instance groups",
+"label.instance.groups": "Instance Groups",
"label.instance.name": "Instance name",
"label.instancename": "Internal name",
"label.instanceport": "Instance port",
@@ -1271,16 +1270,16 @@
"label.keyboardtype": "Keyboard type",
"label.keypair": "SSH key pair",
"label.keypairs": "SSH key pair(s)",
-"label.kubeconfig.cluster": "Kubernetes cluster config",
+"label.kubeconfig.cluster": "Kubernetes Cluster config",
"label.kubernetes": "Kubernetes",
-"label.kubernetes.access.details": "The kubernetes nodes can be accessed via ssh using:
ssh -i [ssh_key] -p [port_number] cloud@[public_ip_address]
where,
ssh_key:
points to the ssh private key file corresponding to the key that was associated while creating the Kubernetes cluster. If no ssh key was provided during Kubernetes cluster creation, use the ssh private key of the management server.
port_number:
can be obtained from the Port Forwarding Tab (Public Port column)",
-"label.kubernetes.cluster": "Kubernetes cluster",
-"label.kubernetes.cluster.create": "Create Kubernetes cluster",
-"label.kubernetes.cluster.delete": "Delete Kubernetes cluster",
-"label.kubernetes.cluster.scale": "Scale Kubernetes cluster",
-"label.kubernetes.cluster.start": "Start Kubernetes cluster",
-"label.kubernetes.cluster.stop": "Stop Kubernetes cluster",
-"label.kubernetes.cluster.upgrade": "Upgrade Kubernetes cluster",
+"label.kubernetes.access.details": "The kubernetes nodes can be accessed via ssh using:
ssh -i [ssh_key] -p [port_number] cloud@[public_ip_address]
where,
ssh_key:
points to the ssh private key file corresponding to the key that was associated while creating the Kubernetes Cluster. If no ssh key was provided during Kubernetes cluster creation, use the ssh private key of the management server.
port_number:
can be obtained from the Port Forwarding Tab (Public Port column)",
+"label.kubernetes.cluster": "Kubernetes Cluster",
+"label.kubernetes.cluster.create": "Create Kubernetes Cluster",
+"label.kubernetes.cluster.delete": "Delete Kubernetes Cluster",
+"label.kubernetes.cluster.scale": "Scale Kubernetes Cluster",
+"label.kubernetes.cluster.start": "Start Kubernetes Cluster",
+"label.kubernetes.cluster.stop": "Stop Kubernetes Cluster",
+"label.kubernetes.cluster.upgrade": "Upgrade Kubernetes Cluster",
"label.kubernetes.dashboard": "Kubernetes dashboard UI",
"label.kubernetes.dashboard.create.token": "Create token for Kubernetes dashboard",
"label.kubernetes.dashboard.create.token.desc": "Since Kubernetes v1.24.0, there is no auto-generation of secret-based service Account token due to security reason. You need to create a service Account and an optional long-lived Bearer Token for the service Account.",
@@ -1310,9 +1309,9 @@
"label.launch": "Launch",
"label.launch.vm": "Launch Instance",
"label.launch.vm.and.stay": "Launch Instance & stay on this page",
-"label.launch.vnf.appliance": "Launch VNF appliance",
-"label.launch.vnf.appliance.and.stay": "Launch VNF appliance & stay on this page",
-"label.launch.zone": "Launch zone",
+"label.launch.vnf.appliance": "Launch VNF Appliance",
+"label.launch.vnf.appliance.and.stay": "Launch VNF Appliance & stay on this page",
+"label.launch.zone": "Launch Zone",
"label.lb.algorithm.leastconn": "Least connections",
"label.lb.algorithm.roundrobin": "Round-robin",
"label.lb.algorithm.source": "Source",
@@ -1325,8 +1324,8 @@
"label.lbprovider": "Load balancer provider",
"label.lbruleid": "Load balancer ID",
"label.lbtype": "Load balancer type",
-"label.ldap.configuration": "LDAP configuration",
-"label.ldap.group.name": "LDAP group",
+"label.ldap.configuration": "LDAP Configuration",
+"label.ldap.group.name": "LDAP Group",
"label.level": "Level",
"label.license.agreements": "License agreements",
"label.limit": "Limit",
@@ -1340,11 +1339,11 @@
"label.list.ciscoasa1000v": "ASA 1000v",
"label.list.ciscovnmc": "Cisco VNMC",
"label.list.nodes": "List nodes",
-"label.list.pods": "List pods",
+"label.list.pods": "List Pods",
"label.list.services": "List services",
"label.list.vmware.vcenter.vms": "List VMware Instances",
"label.livepatch": "Live patch Network's router(s)",
-"label.load.balancer": "Load balancer",
+"label.load.balancer": "Load Balancer",
"label.loadbalancerinstance": "Assigned Instances",
"label.loadbalancerrule": "Load balancing rule",
"label.loadbalancing": "Load balancing",
@@ -1386,8 +1385,8 @@
"label.managementserverid": "Management server",
"label.managementservername": "Management server",
"label.management.ips": "Management IP addresses",
-"label.management.server": "Management server",
-"label.management.servers": "Management servers",
+"label.management.server": "Management Server",
+"label.management.servers": "Management Servers",
"label.management.server.peers": "Peers",
"label.managementservers": "Number of management servers",
"label.matchall": "Match all",
@@ -1400,7 +1399,7 @@
"label.maxdatavolumeslimit": "Max data volumes limit",
"label.maxerrorretry": "Max error retry",
"label.maxguestslimit": "Max guest limit",
-"label.maxhostspercluster": "Max hosts per cluster",
+"label.maxhostspercluster": "Max hosts per Cluster",
"label.maximum": "Maximum",
"label.maxinstance": "Max Instances",
"label.maxiops": "Max IOPS",
@@ -1408,14 +1407,14 @@
"label.maxmemory": "Max. memory (MiB)",
"label.maxnetwork": "Max. Networks",
"label.maxprimarystorage": "Max. primary storage (GiB)",
-"label.maxproject": "Max. projects",
+"label.maxproject": "Max. Projects",
"label.maxpublicip": "Max. public IPs",
"label.maxsecondarystorage": "Max. secondary storage (GiB)",
"label.maxsize": "Maximum size",
"label.maxsnapshot": "Max. Snapshots",
"label.maxtemplate": "Max. Templates",
"label.maxuservm": "Max. User Instances",
-"label.maxvolume": "Max. volumes",
+"label.maxvolume": "Max. Volumes",
"label.maxvpc": "Max. VPCs",
"label.may.continue": "You may now continue.",
"label.mb.memory": "MB memory",
@@ -1435,8 +1434,8 @@
"label.memoryused": "Used memory",
"label.memoryusedgb": "Memory used",
"label.memused": "Memory usage",
-"label.menu.security.groups": "Security groups",
-"label.menu.service.offerings": "Service offerings",
+"label.menu.security.groups": "Security Groups",
+"label.menu.service.offerings": "Service Offerings",
"label.metadata": "Metadata",
"label.metadata.description": "Metadata of the Object",
"label.metadata.upload.description": "Set metadata for the object",
@@ -1448,8 +1447,8 @@
"label.migrate.instance.to.ps": "Migrate Instance to another primary storage",
"label.migrate.instance.single.storage": "Migrate all volume(s) of the Instance to a single primary storage",
"label.migrate.instance.specific.storages": "Migrate volume(s) of the Instance to specific primary storages",
-"label.migrate.systemvm.to": "Migrate system VM to",
-"label.migrate.volume": "Migrate volume",
+"label.migrate.systemvm.to": "Migrate System VM to",
+"label.migrate.volume": "Migrate Volume",
"message.memory.usage.info.hypervisor.additionals": "The data shown may not reflect the actual memory usage if the Instance does not have the additional hypervisor tools installed",
"message.memory.usage.info.negative.value": "If the Instance's memory usage cannot be obtained from the hypervisor, the lines for free memory in the raw data graph and memory usage in the percentage graph will be disabled",
"message.migrate.volume.tooltip": "Volume can be migrated to any suitable storage pool. Admin has to choose the appropriate disk offering to replace, that supports the new storage pool",
@@ -1500,14 +1499,14 @@
"label.netscaler.vpx": "NetScaler VPX LoadBalancer",
"label.network": "Network",
"label.network.acl": "Network ACL",
-"label.network.acl.lists": "Network ACL lists",
+"label.network.acls": "Network ACLs",
"label.network.addvm": "Add Network to Instance",
"label.network.desc": "Network desc",
-"label.network.domain": "Network domain",
+"label.network.domain": "Network Domain",
"label.network.label.display.for.blank.value": "Use default gateway",
"label.network.name": "Network name",
-"label.network.offering": "Network offering",
-"label.network.offerings": "Network offerings",
+"label.network.offering": "Network Offerings",
+"label.network.offerings": "Network Offerings",
"label.network.policy": "Network Policy",
"label.network.restart.required": "Network restart required",
"label.network.route.table": "Network route table",
@@ -1524,9 +1523,9 @@
"label.networklimit": "Network limits",
"label.networkmode": "Network Mode",
"label.networkname": "Network name",
-"label.networkofferingdisplaytext": "Network offering",
-"label.networkofferingid": "Network offering",
-"label.networkofferingname": "Network offering",
+"label.networkofferingdisplaytext": "Network Offering",
+"label.networkofferingid": "Network Offering",
+"label.networkofferingname": "Network Offering",
"label.networkrate": "Network rate (Mb/s)",
"label.networkread": "Network read",
"label.networks": "Networks",
@@ -1536,9 +1535,9 @@
"label.never": "Never",
"label.new": "New",
"label.new.autoscale.vmgroup": "New AutoScaling Group",
-"label.new.instance.group": "New Instance group",
+"label.new.instance.group": "New Instance Group",
"label.new.password": "New password",
-"label.new.project": "New project",
+"label.new.project": "New Project",
"label.new.secondaryip.description": "Enter new secondary IP address",
"label.new.tag": "New tag",
"label.new.vm": "New Instance",
@@ -1579,16 +1578,16 @@
"label.nsx.provider.port": "NSX provider port",
"label.nsx.provider.username": "NSX provider username",
"label.nsx.provider.password": "NSX provider password",
-"label.nsx.provider.edgecluster": "NSX provider edge cluster",
+"label.nsx.provider.edgecluster": "NSX provider edge Cluster",
"label.nsx.provider.tier0gateway": "NSX provider tier-0 gateway",
-"label.nsx.provider.transportzone": "NSX provider transport zone",
+"label.nsx.provider.transportzone": "NSX provider transport Zone",
"label.nsx.supports.internal.lb": "Enable NSX internal LB service",
"label.nsx.supports.lb": "Enable NSX LB service",
"label.num.cpu.cores": "# of CPU cores",
"label.number": "#Rule",
"label.numretries": "Number of retries",
"label.nvpdeviceid": "ID",
-"label.oauth.configuration": "OAuth configuration",
+"label.oauth.configuration": "OAuth Configuration",
"label.oauth.verification": "OAuth verification",
"label.ocfs2": "OCFS2",
"label.object.storage" : "Object Storage",
@@ -1605,7 +1604,7 @@
"label.of.month": "of month",
"label.offerha": "Offer HA",
"label.offeringid": "Offering ID",
-"label.offeringtype": "Compute offering type",
+"label.offeringtype": "Compute Offering type",
"label.ok": "OK",
"label.only.end.date.and.time": "Only end date and time",
"label.only.start.date.and.time": "Only start date and time",
@@ -1675,7 +1674,7 @@
"label.passwordenabled": "Password enabled",
"label.path": "Path",
"label.patp": "Palo Alto threat profile",
-"label.pavr": "Virtual router",
+"label.pavr": "Virtual Router",
"label.payload": "Payload",
"label.payloadurl": "Payload URL",
"label.pcidevice": "GPU",
@@ -1688,7 +1687,7 @@
"label.peerstate.lastupdated": "Peer State Updated Time",
"label.pending.jobs": "Pending Jobs",
"label.per.account": "Per Account",
-"label.per.zone": "Per zone",
+"label.per.zone": "Per Zone",
"label.percentage": "Percentage",
"label.perfectforwardsecrecy": "Perfect forward secrecy",
"label.perform.fresh.checks": "Perform fresh checks",
@@ -1720,7 +1719,7 @@
"label.powerflex.gateway": "Gateway",
"label.powerflex.gateway.password": "Gateway password",
"label.powerflex.gateway.username": "Gateway username",
-"label.powerflex.storage.pool": "Storage pool",
+"label.powerflex.storage.pool": "Storage Pool",
"label.powerstate": "Power state",
"label.preferred": "Preferred",
"label.prefix": "Prefix",
@@ -1737,13 +1736,13 @@
"label.flashArray.username.tooltip": "The username with edit privileges",
"label.flashArray.url.tooltip": "URL designating the Flash Array endpoint, formatted as: http[s]://HOSTNAME:PORT?pod=NAME&hostgroup=NAME[&skipTlsValidation=true][&postCopyWaitMs=#][&keyttl=#][&connectTimeoutMs=#][&apiLoginVersion=#][&apiVersion=#] where values in [] are optional.",
"label.primary": "Primary",
-"label.primary.storage": "Primary storage",
-"label.primary.storage.allocated": "Primary storage allocated",
-"label.primary.storage.used": "Primary storage used",
-"label.primarystoragelimit": "Primary storage limits (GiB)",
-"label.primarystoragetotal": "Primary storage",
+"label.primary.storage": "Primary Storage",
+"label.primary.storage.allocated": "Primary Storage allocated",
+"label.primary.storage.used": "Primary Storage used",
+"label.primarystoragelimit": "Primary Storage limits (GiB)",
+"label.primarystoragetotal": "Primary Storage",
"label.privatemtu": "Private Interface MTU",
-"label.private.gateway": "Private gateway",
+"label.private.gateway": "Private Gateway",
"label.private.interface": "Private interface",
"label.private.registry": "Private registry",
"label.privateinterface": "Private interface",
@@ -1753,7 +1752,7 @@
"label.privateport": "Private port",
"label.profilename": "Profile",
"label.project": "Project",
-"label.project.invitation": "Project invitations",
+"label.project.invitation": "Project Invitations",
"label.project.name": "Project name",
"label.project.owner": "Project owner(s)",
"label.project.role": "Project role",
@@ -1780,7 +1779,7 @@
"label.publicmtu": "Public Interface MTU",
"label.public.interface": "Public interface",
"label.public.ip": "Public IP address",
-"label.public.ip.addresses": "Public IP addresses",
+"label.public.ip.addresses": "Public IP Addresses",
"label.public.ips": "Public IP addresses",
"label.public.lb": "Public LB",
"label.public.traffic": "Public traffic",
@@ -1861,7 +1860,8 @@
"label.region": "Region",
"label.register.oauth": "Register OAuth",
"label.register.template": "Register Template",
-"label.register.user.data": "Register a userdata",
+"label.register.user.data": "Register User Data",
+"label.register.user.data.details": "Enter the User Data in plain text or in Base64 encoding. Up to 32KB of Base64 encoded User Data can be sent by default. The setting vm.userdata.max.length can be used to increase the limit to upto 1MB.",
"label.reinstall.vm": "Reinstall Instance",
"label.reject": "Reject",
"label.related": "Related",
@@ -1869,11 +1869,11 @@
"label.release": "Release",
"label.release.account": "Release from Account",
"label.release.dedicated.bgp.peer": "Release dedicated BGP peer",
-"label.release.dedicated.cluster": "Release dedicated cluster",
+"label.release.dedicated.cluster": "Release dedicated Cluster",
"label.release.dedicated.host": "Release dedicated host",
"label.release.dedicated.ipv4.subnet": "Release dedicated IPv4 subnet",
-"label.release.dedicated.pod": "Release dedicated pod",
-"label.release.dedicated.zone": "Release dedicated zone",
+"label.release.dedicated.pod": "Release dedicated Pod",
+"label.release.dedicated.zone": "Release dedicated Zone",
"label.releasing.ip": "Releasing IP",
"label.remote.instances": "Remote Instances",
"label.remove": "Remove",
@@ -1886,7 +1886,7 @@
"label.remove.ldap": "Remove LDAP",
"label.remove.logical.network": "Remove Network from logical router",
"label.remove.logical.router": "Remove logical router",
-"label.remove.network.offering": "Remove Network offering",
+"label.remove.network.offering": "Remove Network Offering",
"label.remove.network.route.table": "Remove Tungsten Fabric Network routing table",
"label.remove.pf": "Remove port forwarding rule",
"label.remove.policy": "Remove policy",
@@ -1897,15 +1897,14 @@
"label.remove.rule": "Remove rule",
"label.remove.ssh.key.pair": "Remove SSH Key pair",
"label.remove.tungsten.tag": "Remove Tag",
-"label.remove.user.data": "Remove Userdata",
+"label.remove.user.data": "Remove User Data",
"label.remove.vm.from.lb": "Remove Instance from load balancer rule",
"label.remove.vmware.datacenter": "Remove VMware Datacenter",
"label.remove.vpc": "Remove VPC",
-"label.remove.vpc.offering": "Remove VPC offering",
+"label.remove.vpc.offering": "Remove VPC Offering",
"label.removed": "Removed",
"label.removing": "Removing",
"label.replace.acl": "Replace ACL",
-"label.replace.acl.list": "Replace ACL list",
"label.report.bug": "Ask a question or Report an issue",
"label.request": "Request",
"label.required": "Required",
@@ -1924,8 +1923,8 @@
"label.reset.config.value": "Reset to default value",
"label.reset.ssh.key.pair": "Reset SSH key pair",
"label.reset.to.default": "Reset to default",
-"label.reset.userdata.on.autoscale.vm.group": "Reset Userdata on AutoScale VM Group",
-"label.reset.userdata.on.vm": "Reset Userdata on Instance",
+"label.reset.user.data.on.autoscale.vm.group": "Reset User Data on AutoScale VM Group",
+"label.reset.user.data.on.vm": "Reset User Data on Instance",
"label.reset.vpn.connection": "Reset VPN connection",
"label.resource": "Resource",
"label.resource.limit.exceeded": "Resource limit exceeded",
@@ -2013,17 +2012,17 @@
"label.search": "Search",
"label.secondary.isolated.vlan.type.isolated": "Isolated",
"label.secondary.isolated.vlan.type.promiscuous": "Promiscuous",
-"label.secondary.storage": "Secondary storage",
-"label.secondary.storage.vm": "Secondary storage VM",
+"label.secondary.storage": "Secondary Storage",
+"label.secondary.storage.vm": "Secondary Storage VM",
"label.secondaryips": "Secondary IPs",
-"label.secondarystoragelimit": "Secondary storage limits (GiB)",
+"label.secondarystoragelimit": "Secondary Storage limits (GiB)",
"label.secretkey": "Secret key",
"label.secured": "Secured",
-"label.security.groups": "Security groups",
-"label.securitygroup": "Security group",
-"label.securitygroupenabled": "Security groups enabled",
+"label.security.groups": "Security Groups",
+"label.securitygroup": "Security Group",
+"label.securitygroupenabled": "Security Groups enabled",
"label.securitygroups": "Security groups",
-"label.securitygroupsenabled": "Security groups enabled",
+"label.securitygroupsenabled": "Security Groups enabled",
"label.select": "Select",
"label.see.more.info.cpu.usage": "See more info about CPU usage",
"label.see.more.info.memory.usage": "See more info about memory usage",
@@ -2031,18 +2030,18 @@
"label.see.more.info.disk.usage": "See more info about disk usage",
"label.see.more.info.shown.charts": "See more info about the shown charts",
"label.select-view": "Select view",
-"label.select.a.zone": "Select a zone",
+"label.select.a.zone": "Select a Zone",
"label.select.deployment.infrastructure": "Select deployment infrastructure",
"label.select.guest.os.type": "Please select the guest OS type",
"label.select.network": "Select Network",
"label.select.period": "Select period",
-"label.select.project": "Select project",
-"label.select.projects": "Select projects",
-"label.select.ps": "Select primary storage",
+"label.select.project": "Select Project",
+"label.select.projects": "Select Projects",
+"label.select.ps": "Select Primary Storage",
"label.select.root.disk": "Select the ROOT disk",
"label.select.source.vcenter.datacenter": "Select the source VMware vCenter Datacenter",
"label.select.tier": "Select Network Tier",
-"label.select.zones": "Select zones",
+"label.select.zones": "Select Zones",
"label.select.2fa.provider": "Select the provider",
"label.selected.storage": "Selected storage",
"label.self": "Mine",
@@ -2055,20 +2054,20 @@
"label.server.certificate": "Server certificate",
"label.service.connectivity.distributedroutercapabilitycheckbox": "Distributed router",
"label.service.connectivity.regionlevelvpccapabilitycheckbox": "Region level VPC",
-"label.service.group": "Service group",
+"label.service.group": "Service Group",
"label.serviceip": "Management IP",
"label.service.lb.elasticlbcheckbox": "Elastic LB",
"label.service.lb.inlinemodedropdown": "Mode",
"label.service.lb.lbisolationdropdown": "LB isolation",
"label.service.lb.netscaler.servicepackages": "Netscaler service packages",
"label.service.lb.netscaler.servicepackages.description": "Service package description",
-"label.service.offering": "Service offering",
+"label.service.offering": "Service Offering",
"label.service.staticnat.associatepublicip": "Associate public IP",
"label.service.staticnat.elasticipcheckbox": "Elastic IP",
"label.servicegroupuuid": "Service Group",
"label.servicelist": "Services",
-"label.serviceofferingid": "Compute offering",
-"label.serviceofferingname": "Compute offering",
+"label.serviceofferingid": "Compute Offering",
+"label.serviceofferingname": "Compute Offering",
"label.sessions": "Active client sessions",
"label.set.default.nic": "Set default NIC",
"label.set.reservation": "Set reservation",
@@ -2137,20 +2136,21 @@
"label.srctaguuid": "Source Tag",
"label.srx": "SRX",
"label.srx.firewall": "Juniper SRX firewall",
-"label.ssh.key.pairs": "SSH key pairs",
+"label.ssh.key.pairs": "SSH Key Pairs",
"label.uefi.supported": "UEFI supported",
"label.usediops": "IOPS used",
-"label.userdataid": "Userdata ID",
-"label.userdataname": "Userdata name",
-"label.userdatadetails": "Userdata details",
-"label.userdataparams": "Userdata parameters",
-"label.userdatapolicy": "Userdata link policy",
-"label.userdata.text": "Manual Userdata entry",
-"label.userdata.registered": "Stored Userdata",
-"label.userdata.do.override": "Userdata override",
-"label.userdata.do.append": "Userdata append",
-"label.userdatapolicy.tooltip": "Userdata linked to the Template can be overridden by Userdata provided during Instance deploy. Select the override policy as required.",
+"label.user.data.id": "User Data ID",
+"label.user.data.name": "User Data name",
+"label.user.data.details": "User Data details",
+"label.user.data.params": "User Data parameters",
+"label.user.data.policy": "User Data link policy",
+"label.user.data.text": "Manual User Data entry",
+"label.user.data.registered": "Stored User Data",
+"label.user.data.do.override": "User Data override",
+"label.user.data.do.append": "User Data append",
+"label.user.data.policy.tooltip": "User Data linked to the Template can be overridden by User Data provided during Instance deploy. Select the override policy as required.",
"label.user.data": "User Data",
+"label.user.data.library": "User Data Library",
"label.ssh.port": "SSH port",
"label.sshkeypair": "New SSH key pair",
"label.sshkeypairs": "SSH key pairs",
@@ -2177,7 +2177,7 @@
"label.state.reported": "Reported State",
"label.staticnat": "Static NAT",
"label.static": "Static",
-"label.static.routes": "Static routes",
+"label.static.routes": "Static Routes",
"label.status": "Status",
"label.step.1": "Step 1",
"label.step.2": "Step 2",
@@ -2203,9 +2203,9 @@
"label.stopping": "Stopping",
"label.storage": "Storage",
"label.storage.migration.required": "Storage migration required",
-"label.storage.tags": "Storage tags",
+"label.storage.tags": "Storage Tags",
"label.storage.traffic": "Storage traffic",
-"label.storageid": "Primary storage",
+"label.storageid": "Primary Storage",
"label.storagemotionenabled": "Storage motion enabled",
"label.storagepolicy": "Storage policy",
"label.storagepool": "Storage pool",
@@ -2232,12 +2232,12 @@
"label.supportspublicaccess": "Supports public access",
"label.supportsstrechedl2subnet": "Supports stretched L2 subnet",
"label.supportsvmautoscaling": "Supports auto scaling",
-"label.suspend.project": "Suspend project",
+"label.suspend.project": "Suspend Project",
"label.switch.type": "Switch type",
-"label.sync.storage": "Sync storage pool",
+"label.sync.storage": "Sync Storage Pool",
"label.system.ip.pool": "System Pool",
-"label.system.offering": "System offering",
-"label.system.offerings": "System offerings",
+"label.system.offering": "System Offering",
+"label.system.offerings": "System Offerings",
"label.system.service.offering": "System service offering",
"label.system.vm": "System VM",
"label.system.vms": "System VMs",
@@ -2267,7 +2267,7 @@
"label.tariffvalue": "Tariff value",
"label.tcp": "TCP",
"label.tcp.proxy": "TCP proxy",
-"label.template": "Select a template",
+"label.template": "Select a Template",
"label.templatetag": "Tag",
"label.template.select.existing": "Select an existing template",
"label.template.temporary.import": "Use a temporary template for import",
@@ -2316,7 +2316,7 @@
"label.total": "Total",
"label.total.network": "Total Networks",
"label.total.vms": "Total Instances",
-"label.total.volume": "Total volumes",
+"label.total.volume": "Total Volumes",
"label.totalcpu": "Total CPU",
"label.traffic.label": "Traffic label",
"label.traffic.types": "Traffic types",
@@ -2404,8 +2404,8 @@
"label.upload.resource.icon": "Upload icon",
"label.upload.template.from.local": "Upload Template from local",
"label.upload.volume": "Upload volume",
-"label.upload.volume.from.local": "Upload volume from local",
-"label.upload.volume.from.url": "Upload volume from URL",
+"label.upload.volume.from.local": "Upload Volume from local",
+"label.upload.volume.from.url": "Upload Volume from URL",
"label.url": "URL",
"label.usage.explanation": "Note: Only the usage server that owns the active usage job is shown here.",
"label.usage": "Usage",
@@ -2431,11 +2431,10 @@
"label.use.local.timezone": "Use local timezone",
"label.used": "Used",
"label.usehttps": "Use HTTPS",
-"label.usenewdiskoffering": "Replace disk offering?",
+"label.usenewdiskoffering": "Replace Disk Offering?",
"label.user": "User",
"label.user.conflict": "Conflict",
-"label.userdata": "Userdata",
-"label.userdatal2": "User data",
+"label.user.data": "User Data",
"label.username": "Username",
"label.username.tooltip": "The Username for the Host",
"label.users": "Users",
@@ -2466,11 +2465,11 @@
"label.viewing": "Viewing",
"label.virtualmachine": "Instance",
"label.virtualmachinecount": "Instances Count",
-"label.virtual.machine": "Virtual machine",
-"label.virtual.machines": "Virtual machines",
+"label.virtual.machine": "Virtual Machine",
+"label.virtual.machines": "Virtual Machines",
"label.virtual.network": "Virtual Network",
"label.virtual.networking": "Virtual Networking",
-"label.virtual.routers": "Virtual routers",
+"label.virtual.routers": "Virtual Routers",
"label.virtualmachineid": "Instance ID",
"label.virtualmachinename": "Instance name",
"label.virtualsize": "Virtual Size",
@@ -2502,21 +2501,21 @@
"label.vmwaredcvcenter": "VMware datacenter vCenter",
"label.vmwarenetworklabel": "VMware traffic label",
"label.vnf.appliance": "VNF Appliance",
-"label.vnf.appliances": "VNF appliances",
+"label.vnf.appliances": "VNF Appliances",
"label.vnf.appliance.add": "Add VNF Appliance",
-"label.vnf.appliance.access.methods": "Management access information for this VNF appliance",
-"label.vnf.app.action.destroy": "Destroy VNF appliance",
-"label.vnf.app.action.edit": "Edit VNF appliance",
-"label.vnf.app.action.expunge": "Expunge VNF appliance",
-"label.vnf.app.action.migrate.to.host": "Migrate VNF appliance to another host",
-"label.vnf.app.action.migrate.to.ps": "Migrate VNF appliance to another primary storage",
-"label.vnf.app.action.recover": "Recover VNF appliance",
-"label.vnf.app.action.scale": "Scale VNF appliance",
-"label.vnf.app.action.start": "Start VNF appliance",
-"label.vnf.app.action.stop": "Stop VNF appliance",
-"label.vnf.app.action.reboot": "Reboot VNF appliance",
-"label.vnf.app.action.reinstall": "Reinstall VNF appliance",
-"label.vnf.cidr.list": "CIDR from which access to the VNF appliance’s Management interface should be allowed from",
+"label.vnf.appliance.access.methods": "Management access information for this VNF Appliance",
+"label.vnf.app.action.destroy": "Destroy VNF Appliance",
+"label.vnf.app.action.edit": "Edit VNF Appliance",
+"label.vnf.app.action.expunge": "Expunge VNF Appliance",
+"label.vnf.app.action.migrate.to.host": "Migrate VNF Appliance to another host",
+"label.vnf.app.action.migrate.to.ps": "Migrate VNF Appliance to another primary storage",
+"label.vnf.app.action.recover": "Recover VNF Appliance",
+"label.vnf.app.action.scale": "Scale VNF Appliance",
+"label.vnf.app.action.start": "Start VNF Appliance",
+"label.vnf.app.action.stop": "Stop VNF Appliance",
+"label.vnf.app.action.reboot": "Reboot VNF Appliance",
+"label.vnf.app.action.reinstall": "Reinstall VNF Appliance",
+"label.vnf.cidr.list": "CIDR from which access to the VNF appliance's Management interface should be allowed from",
"label.vnf.cidr.list.tooltip": "the CIDR list to forward traffic from to the VNF management interface. Multiple entries must be separated by a single comma character (,). The default value is 0.0.0.0/0.",
"label.vnf.configure.management": "Configure Firewall and Port Forwarding rules for VNF's management interfaces",
"label.vnf.configure.management.tooltip": "True by default, security group or network rules (source nat and firewall rules) will be configured for VNF management interfaces. False otherwise. Learn what rules are configured at http://docs.cloudstack.apache.org/en/latest/adminguide/networking/vnf_templates_appliances.html#deploying-vnf-appliances",
@@ -2539,7 +2538,7 @@
"label.vnf.templates": "VNF templates",
"label.vnf.template.register": "Register VNF template",
"label.vnmc": "VNMC",
-"label.volgroup": "Volume group",
+"label.volgroup": "Volume Group",
"label.volume": "Volume",
"label.volume.empty": "No data volumes attached to this Instance",
"label.volume.encryption.support": "Volume Encryption Supported",
@@ -2548,7 +2547,7 @@
"label.volumechecksum": "MD5 checksum",
"label.volumechecksum.description": "Use the hash that you created at the start of the volume upload procedure.",
"label.volumefileupload": "Local file",
-"label.volumegroup": "Volume group",
+"label.volumegroup": "Volume Group",
"label.volumeid": "Volume",
"label.volumeids": "Volumes to be deleted",
"label.volumelimit": "Volume limits",
@@ -2559,20 +2558,20 @@
"label.vpc": "VPC",
"label.vpcs": "VPCs",
"label.vpc.id": "VPC ID",
-"label.vpc.offerings": "VPC offerings",
-"label.vpc.virtual.router": "VPC virtual router",
+"label.vpc.offerings": "VPC Offerings",
+"label.vpc.virtual.router": "VPC Virtual Router",
"label.vpc.restart.required": "VPC restart required",
"label.vpcid": "VPC",
"label.vpclimit": "VPC limits",
"label.vpcname": "VPC",
-"label.vpcoffering": "VPC offering",
-"label.vpcofferingid": "VPC offering",
+"label.vpcoffering": "VPC Offering",
+"label.vpcofferingid": "VPC Offering",
"label.vpn": "VPN",
"label.vpn.connection": "VPN connection",
"label.vpn.gateway": "VPN gateway",
"label.vpn.users": "VPN Users",
"label.vpncustomergateway": "IP address of the remote gateway",
-"label.vpncustomergatewayid": "VPN customer gateway",
+"label.vpncustomergatewayid": "VPN Customer Gateway",
"label.vsmipaddress": "Nexus 1000v IP address",
"label.vsmpassword": "Nexus 1000v password",
"label.vsmusername": "Nexus 1000v username",
@@ -2607,7 +2606,7 @@
"label.xenservertoolsversion61plus": "Original XS Version is 6.1+",
"label.yes": "Yes",
"label.yourinstance": "Your Instance",
-"label.your.autoscale.vmgroup": "Your autoscaling group",
+"label.your.autoscale.vmgroup": "Your Autoscaling Group",
"label.zone": "Zone",
"label.zone.dedicated": "Zone dedicated",
"label.zone.details": "Zone details",
@@ -2644,7 +2643,7 @@
"message.action.delete.autoscale.vmgroup": "Please confirm that you want to delete this autoscaling group.",
"message.action.delete.backup.offering": "Please confirm that you want to delete this backup offering?",
"message.action.delete.backup.repository": "Please confirm that you want to delete this backup repository?",
-"message.action.delete.cluster": "Please confirm that you want to delete this cluster.",
+"message.action.delete.cluster": "Please confirm that you want to delete this Cluster.",
"message.action.delete.domain": "Please confirm that you want to delete this domain.",
"message.action.delete.external.firewall": "Please confirm that you would like to remove this external firewall. Warning: If you are planning to add back the same external firewall, you must reset usage data on the device.",
"message.action.delete.external.load.balancer": "Please confirm that you would like to remove this external load balancer. Warning: If you are planning to add back the same external load balancer, you must reset usage data on the device.",
@@ -2661,7 +2660,7 @@
"message.action.delete.node": "Please confirm that you want to delete this node.",
"message.action.delete.oauth.provider": "Please confirm that you want to delete the OAuth provider.",
"message.action.delete.physical.network": "Please confirm that you want to delete this physical Network.",
-"message.action.delete.pod": "Please confirm that you want to delete this pod.",
+"message.action.delete.pod": "Please confirm that you want to delete this Pod.",
"message.action.delete.secondary.storage": "Please confirm that you want to delete this secondary storage.",
"message.action.delete.security.group": "Please confirm that you want to delete this security group.",
"message.action.delete.snapshot": "Please confirm that you want to delete this Snapshot.",
@@ -2669,7 +2668,7 @@
"message.action.delete.tungsten.router.table": "Please confirm that you want to remove Route Table from this Network?",
"message.action.delete.volume": "Please confirm that you want to delete this volume. Note: this will not delete any Snapshots of this volume.",
"message.action.delete.vpn.user": "Please confirm that you want to delete the VPN user.",
-"message.action.delete.zone": "Please confirm that you want to delete this zone.",
+"message.action.delete.zone": "Please confirm that you want to delete this Zone.",
"message.action.destroy.sharedfs": "Please confirm that you want to destroy this Shared FileSystem.
Caution: This will delete all the data of the Shared FileSystem as well.",
"message.action.destroy.instance": "Please confirm that you want to destroy the Instance.",
"message.action.destroy.instance.with.backups": "Please confirm that you want to destroy the Instance. There may be backups associated with the Instance which will not be deleted.",
@@ -2677,35 +2676,35 @@
"message.action.destroy.volume": "Please confirm that you want to destroy the volume.",
"message.action.disable.2FA.user.auth": "Please confirm that you want to disable User two factor authentication.",
"message.action.about.mandate.and.disable.2FA.user.auth": "Two factor authentication is mandated for the User, if this is disabled now User will need to setup two factor authentication again during next login.
Please confirm that you want to disable.",
-"message.action.disable.cluster": "Please confirm that you want to disable this cluster.",
+"message.action.disable.cluster": "Please confirm that you want to disable this Cluster.",
"message.action.disable.disk.offering": "Please confirm that you want to disable this disk offering.",
"message.action.disable.service.offering": "Please confirm that you want to disable this service offering.",
"message.action.disable.system.service.offering": "Please confirm that you want to disable this system service offering.",
"message.action.disable.physical.network": "Please confirm that you want to disable this physical Network.",
-"message.action.disable.pod": "Please confirm that you want to disable this pod.",
+"message.action.disable.pod": "Please confirm that you want to disable this Pod.",
"message.action.disable.static.nat": "Please confirm that you want to disable static NAT.",
-"message.action.disable.zone": "Please confirm that you want to disable this zone.",
+"message.action.disable.zone": "Please confirm that you want to disable this Zone.",
"message.action.download.iso": "Please confirm that you want to download this ISO.",
"message.action.download.snapshot": "Please confirm that you want to download this Snapshot.",
"message.action.download.template": "Please confirm that you want to download this Template.",
"message.action.edit.nfs.mount.options": "Changes to NFS mount options will only take affect on cancelling maintenance mode which will cause the storage pool to be remounted on all KVM hosts with the new mount options.",
-"message.action.enable.cluster": "Please confirm that you want to enable this cluster.",
+"message.action.enable.cluster": "Please confirm that you want to enable this Cluster.",
"message.action.enable.disk.offering": "Please confirm that you want to enable this disk offering.",
"message.action.enable.service.offering": "Please confirm that you want to enable this service offering.",
"message.action.enable.system.service.offering": "Please confirm that you want to enable this system service offering.",
"message.action.enable.physical.network": "Please confirm that you want to enable this physical Network.",
-"message.action.enable.pod": "Please confirm that you want to enable this pod.",
-"message.action.enable.zone": "Please confirm that you want to enable this zone.",
+"message.action.enable.pod": "Please confirm that you want to enable this Pod.",
+"message.action.enable.zone": "Please confirm that you want to enable this Zone.",
"message.action.expunge.sharedfs": "Please confirm that you want to expunge this Shared FileSystem.",
"message.action.expunge.instance": "Please confirm that you want to expunge this Instance.",
"message.action.expunge.instance.with.backups": "Please confirm that you want to expunge this Instance. There may be backups associated with the Instance which will not be deleted.",
"message.action.host.enable.maintenance.mode": "Enabling maintenance mode will cause a live migration of all running Instances on this host to any available host.",
"message.action.instance.reset.password": "Please confirm that you want to change the ROOT password for this Instance.",
-"message.action.manage.cluster": "Please confirm that you want to manage the cluster.",
+"message.action.manage.cluster": "Please confirm that you want to manage the Cluster.",
"message.action.patch.router": "Please confirm that you want to live patch the router.
This operation is equivalent updating the router packages and restarting the Network without cleanup.",
"message.action.patch.systemvm": "Please confirm that you want to patch the System VM.",
-"message.action.primary.storage.scope.cluster": "Please confirm that you want to change the scope from zone to the specified cluster.
This operation will update the database and disconnect the storage pool from all hosts that were previously connected to the primary storage and are not part of the specified cluster.",
-"message.action.primary.storage.scope.zone": "Please confirm that you want to change the scope from cluster to zone.
This operation will update the database and connect the storage pool to all hosts of the zone running the same hypervisor as set on the storage pool.",
+"message.action.primary.storage.scope.cluster": "Please confirm that you want to change the scope from Zone to the specified Cluster.
This operation will update the database and disconnect the storage pool from all hosts that were previously connected to the primary storage and are not part of the specified cluster.",
+"message.action.primary.storage.scope.zone": "Please confirm that you want to change the scope from Cluster to Zone.
This operation will update the database and connect the storage pool to all hosts of the zone running the same hypervisor as set on the storage pool.",
"message.action.primarystorage.enable.maintenance.mode": "Warning: placing the primary storage into maintenance mode will cause all Instances using volumes from it to be stopped. Do you want to continue?",
"message.action.quota.tariff.create.error.namerequired": "Please, inform a name for the quota tariff.",
"message.action.quota.tariff.create.error.usagetyperequired": "Please, select the usage type of the quota tariff.",
@@ -2727,7 +2726,7 @@
"message.action.revert.snapshot": "Please confirm that you want to revert the owning volume to this Snapshot.",
"message.action.router.health.checks": "Health checks result will be fetched from router.",
"message.action.router.health.checks.disabled.warning": "Please enable router health checks.",
-"message.action.scale.kubernetes.cluster.warning": "Please do not manually scale the cluster if cluster auto scaling is enabled.",
+"message.action.scale.kubernetes.cluster.warning": "Please do not manually scale the Cluster if cluster auto scaling is enabled.",
"message.action.secondary.storage.read.only": "Please confirm that you want to make this secondary storage read only.",
"message.action.secondary.storage.read.write": "Please confirm that you want to make this secondary storage read write.",
"message.action.secure.host": "This will restart the host agent and libvirtd process after applying new X509 certificates, please confirm?",
@@ -2740,7 +2739,7 @@
"message.action.stop.instance": "Please confirm that you want to stop this Instance.",
"message.action.stop.router": "All services provided by this virtual router will be interrupted. Please confirm that you want to stop this router.",
"message.action.stop.systemvm": "Please confirm that you want to stop this system VM.",
-"message.action.unmanage.cluster": "Please confirm that you want to unmanage the cluster.",
+"message.action.unmanage.cluster": "Please confirm that you want to unmanage the Cluster.",
"message.action.unmanage.instance": "Please confirm that you want to unmanage the Instance.",
"message.action.unmanage.instances": "Please confirm that you want to unmanage the Instances.",
"message.action.unmanage.virtualmachine": "Please confirm that you want to unmanage the Instance.",
@@ -2751,7 +2750,7 @@
"message.add.egress.rule.failed": "Adding new egress rule failed.",
"message.add.egress.rule.processing": "Adding new egress rule...",
"message.add.failed": "Adding failed.",
-"message.add.firewall": "Add a firewall to zone",
+"message.add.firewall": "Add a firewall to Zone",
"message.add.firewall.rule.failed": "Adding new Firewall rule failed",
"message.add.firewall.rule.processing": "Adding new Firewall rule...",
"message.add.firewallrule.failed": "Adding Firewall Rule failed",
@@ -2769,22 +2768,22 @@
"message.remove.ip.v6.firewall.rule.processing": "Removing IPv6 firewall rule...",
"message.remove.ip.v6.firewall.rule.success": "Removed IPv6 firewall rule",
"message.add.nsx.controller": "Add NSX Provider",
-"message.add.network": "Add a new network for zone: ",
-"message.add.network.acl.failed": "Adding network ACL list failed.",
-"message.add.network.acl.processing": "Adding network ACL list...",
+"message.add.network": "Add a new network for Zone: ",
+"message.add.network.acl.failed": "Adding network ACL failed.",
+"message.add.network.acl.processing": "Adding network ACL...",
"message.add.network.failed": "Adding network failed.",
"message.add.network.processing": "Adding network...",
"message.add.new.gateway.to.vpc": "Please specify the information to add a new gateway to this VPC.",
"message.add.physical.network.failed": "Adding physical network failed",
"message.add.physical.network.processing": "Adding a new physical network...",
-"message.add.pod": "Add a new pod for zone ",
-"message.add.pod.during.zone.creation": "Each zone must contain one or more pods. We will add the first pod now. A pod contains hosts and primary storage servers, which you will add in a later step. First, configure a range of reserved IP addresses for CloudStack's internal management traffic. The reserved IP range must be unique for each zone in the cloud.",
+"message.add.pod": "Add a new Pod for Zone ",
+"message.add.pod.during.zone.creation": "Each Zone must contain one or more Pods. We will add the first pod now. A pod contains hosts and primary storage servers, which you will add in a later step. First, configure a range of reserved IP addresses for CloudStack's internal management traffic. The reserved IP range must be unique for each zone in the cloud.",
"message.add.port.forward.failed": "Adding new port forwarding rule failed.",
"message.add.port.forward.processing": "Adding new port forwarding rule...",
"message.add.private.gateway.failed": "Adding private gateway failed.",
"message.add.private.gateway.processing": "Adding private gateway...",
"message.add.resource.description": "Add infrastructure resources",
-"message.add.resource.hint": "Add infrastructure resources - pods, clusters, primary/secondary storages.",
+"message.add.resource.hint": "Add infrastructure resources - Pods, Clusters, primary/secondary storages.",
"message.add.routing.firewall.rule.failed": "Failed to add IPv4 Routing firewall rule",
"message.add.routing.firewall.rule.processing": "Adding IPv4 Routing firewall rule...",
"message.add.routing.firewall.rule.success": "Added IPv4 Routing firewall rule",
@@ -2867,7 +2866,7 @@
"message.confirm.change.offering.for.volume": "Please confirm that you want to change disk offering for the volume",
"message.confirm.change.service.offering.for.sharedfs": "Please confirm that you want to change the service offering for the Shared FileSystem.",
"message.confirm.configure.ovs": "Are you sure you want to configure Ovs?",
-"message.confirm.delete.acl.list": "Are you sure you want to delete this ACL list?",
+"message.confirm.delete.acl": "Are you sure you want to delete this ACL?",
"message.confirm.delete.bigswitchbcf": "Please confirm that you would like to delete this BigSwitch BCF Controller.",
"message.confirm.delete.brocadevcs": "Please confirm that you would like to delete Brocade Vcs Switch.",
"message.confirm.delete.ciscoasa1000v": "Please confirm you want to delete CiscoASA1000v.",
@@ -2916,7 +2915,7 @@
"message.cpu.usage.info": "The CPU usage percentage can exceed 100% if the Instance has more than 1 vCPU or when CPU Cap is not enabled. This behavior happens according to the hypervisor being used (e.g: in KVM), due to how they account the stats",
"message.create.bucket.failed": "Failed to create bucket.",
"message.create.bucket.processing": "Bucket creation in progress",
-"message.create.compute.offering": "Compute offering created",
+"message.create.compute.offering": "Compute Offering created",
"message.create.sharedfs.failed": "Failed to create Shared FileSystem.",
"message.create.sharedfs.processing": "Shared FileSystem creation in progress.",
"message.create.tungsten.public.network": "Create Tungsten-Fabric public Network",
@@ -2928,7 +2927,7 @@
"message.create.snapshot.from.vmsnapshot.progress": "Snapshot creation in progress",
"message.create.template.failed": "Failed to create template.",
"message.create.template.processing": "Template creation in progress",
-"message.create.volume.failed": "Failed to create volume.",
+"message.create.volume.failed": "Failed to create Volume.",
"message.create.volume.processing": "Volume creation in progress",
"message.create.vpc.offering": "VPC offering created.",
"message.create.vpn.customer.gateway.failed": "VPN customer gateway creation failed.",
@@ -2938,23 +2937,23 @@
"message.creating.autoscale.scaledown.policy": "Creating ScaleDown policy",
"message.creating.autoscale.scaleup.conditions": "Creating ScaleUp conditions",
"message.creating.autoscale.scaleup.policy": "Creating ScaleUp policy",
-"message.creating.cluster": "Creating cluster",
+"message.creating.cluster": "Creating Cluster",
"message.creating.guest.network": "Creating guest Network",
"message.creating.physical.networks": "Creating physical Networks",
-"message.creating.pod": "Creating pod",
+"message.creating.pod": "Creating Pod",
"message.creating.primary.storage": "Creating primary storage",
"message.creating.secondary.storage": "Creating secondary storage",
-"message.creating.zone": "Creating zone",
+"message.creating.zone": "Creating Zone",
"message.data.migration": "Data migration",
"message.data.migration.progress": "Data migration between image stores",
"message.datacenter.description": "Name of the datacenter on vCenter.",
"message.datastore.description": "Name of the datastore on vCenter.",
-"message.dedicate.zone": "Dedicating zone",
+"message.dedicate.zone": "Dedicating Zone",
"message.dedicated.zone.released": "Zone dedication released.",
-"message.dedicating.cluster": "Dedicating cluster...",
+"message.dedicating.cluster": "Dedicating Cluster...",
"message.dedicating.host": "Dedicating host...",
-"message.dedicating.pod": "Dedicating pod...",
-"message.dedicating.zone": "Dedicating zone...",
+"message.dedicating.pod": "Dedicating Pod...",
+"message.dedicating.zone": "Dedicating Zone...",
"message.delete.account.confirm": "Please confirm that you want to delete this account by entering the name of the account below.",
"message.delete.account.failed": "Delete account failed",
"message.delete.account.processing": "Deleting account",
@@ -2993,27 +2992,27 @@
"message.deployasis": "Selected Template is Deploy As-Is i.e., the Instance is deployed by importing an OVA with vApps directly into vCenter. Root disk(s) resize is allowed only on stopped Instances for such Templates.",
"message.desc.advanced.zone": "This is recommended and allows more sophisticated Network topologies. This Network model provides the most flexibility in defining guest Networks and providing custom Network offerings such as firewall, VPN, or load balancer support.",
"message.desc.basic.zone": "Provide a single Network where each Instance is assigned an IP directly from the Network. Guest isolation can be provided through layer-3 means such as security groups (IP address source filtering).",
-"message.desc.core.zone": "Core Zones are intended for Datacenter based deployments and allow the full range of Networking and other functionality in Apache CloudStack. Core zones have a number of prerequisites and rely on the presence of shared storage and helper Instances.",
-"message.desc.edge.zone": "Edge Zones are lightweight zones, designed for deploying in edge computing scenarios. They are limited in functionality but have far fewer prerequisites than core zones.
Please refer to the Apache CloudStack documentation for more information on Zone Types
http://docs.cloudstack.apache.org/en/latest/installguide/configuration.html#adding-a-zone",
-"message.desc.cluster": "Each pod must contain one or more clusters. We will add the first cluster now. A cluster provides a way to group hosts. The hosts in a cluster all have identical hardware, run the same hypervisor, are on the same subnet, and access the same shared storage. Each cluster consists of one or more hosts and one or more primary storage servers.",
+"message.desc.core.zone": "Core Zones are intended for Datacenter based deployments and allow the full range of Networking and other functionality in Apache CloudStack. Core Zones have a number of prerequisites and rely on the presence of shared storage and helper Instances.",
+"message.desc.edge.zone": "Edge Zones are lightweight Zones, designed for deploying in edge computing scenarios. They are limited in functionality but have far fewer prerequisites than core zones.
Please refer to the Apache CloudStack documentation for more information on Zone Types
http://docs.cloudstack.apache.org/en/latest/installguide/configuration.html#adding-a-zone",
+"message.desc.cluster": "Each Pod must contain one or more Clusters. We will add the first cluster now. A cluster provides a way to group hosts. The hosts in a cluster all have identical hardware, run the same hypervisor, are on the same subnet, and access the same shared storage. Each cluster consists of one or more hosts and one or more primary storage servers.",
"message.desc.create.ssh.key.pair": "Please fill in the following data to create or register a ssh key pair.
(1) If public key is set, CloudStack will register the public key. You can use it through your private key.
(2) If public key is not set, CloudStack will create a new SSH key pair. In this case, please copy and save the private key. CloudStack will not keep it.
",
"message.desc.created.ssh.key.pair": "Created a SSH key pair.",
-"message.desc.host": "Each cluster must contain at least one host (computer) for guest Instances to run on. We will add the first host now. For a host to function in CloudStack, you must install hypervisor software on the host, assign an IP address to the host, and ensure the host is connected to the CloudStack management server.
Give the host's DNS or IP address, the user name (usually root) and password, and any labels you use to categorize hosts.",
+"message.desc.host": "Each Cluster must contain at least one host (computer) for guest Instances to run on. We will add the first host now. For a host to function in CloudStack, you must install hypervisor software on the host, assign an IP address to the host, and ensure the host is connected to the CloudStack management server.
Give the host's DNS or IP address, the user name (usually root) and password, and any labels you use to categorize hosts.",
"message.desc.importingestinstancewizard": "This feature only applies to libvirt based KVM instances. Only Stopped instances can be ingested",
"message.desc.import.ext.kvm.wizard": "Import libvirt domain from External KVM Host not managed by CloudStack",
"message.desc.import.local.kvm.wizard": "Import QCOW2 image from Local Storage of selected KVM Host",
"message.desc.import.shared.kvm.wizard": "Import QCOW2 image from selected Primary Storage Pool",
"message.desc.import.unmanage.volume": "Please choose a storage pool that you want to import or unmanage volumes. The storage pool should be in Up status.
This feature only supports KVM.",
"message.desc.importexportinstancewizard": "By choosing to manage an Instance, CloudStack takes over the orchestration of that Instance. Unmanaging an Instance removes CloudStack ability to manage it. In both cases, the Instance is left running and no changes are done to the VM on the hypervisor.
For KVM, managing a VM is an experimental feature.",
-"message.desc.importmigratefromvmwarewizard": "By selecting an existing or external VMware Datacenter and an instance to import, CloudStack migrates the selected instance from VMware to KVM on a conversion host using virt-v2v and imports it into a KVM cluster",
-"message.desc.primary.storage": "Each cluster must contain one or more primary storage servers. We will add the first one now. Primary storage contains the disk volumes for all the Instances running on hosts in the cluster. Use any standards-compliant protocol that is supported by the underlying hypervisor.",
+"message.desc.importmigratefromvmwarewizard": "By selecting an existing or external VMware Datacenter and an instance to import, CloudStack migrates the selected instance from VMware to KVM on a conversion host using virt-v2v and imports it into a KVM Cluster",
+"message.desc.primary.storage": "Each Cluster must contain one or more primary storage servers. We will add the first one now. Primary storage contains the disk volumes for all the Instances running on hosts in the cluster. Use any standards-compliant protocol that is supported by the underlying hypervisor.",
"message.desc.reset.ssh.key.pair": "Please specify a ssh key pair that you would like to add to this Instance.",
-"message.desc.secondary.storage": "Each zone must have at least one NFS or secondary storage server. We will add the first one now. Secondary storage stores Instance Templates, ISO images, and Instance disk volume Snapshots. This server must be available to all hosts in the zone.
Provide the IP address and exported path.",
-"message.desc.register.user.data": "Please fill in the following data to register a User data.",
+"message.desc.secondary.storage": "Each Zone must have at least one NFS or secondary storage server. We will add the first one now. Secondary storage stores Instance Templates, ISO images, and Instance disk volume Snapshots. This server must be available to all hosts in the zone.
Provide the IP address and exported path.",
+"message.desc.register.user.data": "Please fill in the following to register new User Data.",
"message.desc.registered.user.data": "Registered a User Data.",
-"message.desc.zone": "A zone is the largest organizational unit in CloudStack, and it typically corresponds to a single datacenter. Zones provide physical isolation and redundancy. A zone consists of one or more pods (each of which contains hosts and primary storage servers) and a secondary storage server which is shared by all pods in the zone.",
-"message.desc.zone.edge": "A zone is the largest organizational unit in CloudStack, and it typically corresponds to a single datacenter. Zones provide physical isolation and redundancy. An edge zone consists of one or more hosts (each of which provides local storage as primary storage servers). Only shared and L2 Networks can be deployed in such zones and functionalities that require secondary storages are not supported.",
-"message.drs.plan.description": "The maximum number of live migrations allowed for DRS. Configure DRS under the settings tab before generating a plan or to enable automatic DRS for the cluster.",
+"message.desc.zone": "A Zone is the largest organizational unit in CloudStack, and it typically corresponds to a single datacenter. Zones provide physical isolation and redundancy. A zone consists of one or more Pods (each of which contains hosts and primary storage servers) and a secondary storage server which is shared by all pods in the zone.",
+"message.desc.zone.edge": "A Zone is the largest organizational unit in CloudStack, and it typically corresponds to a single datacenter. Zones provide physical isolation and redundancy. An edge zone consists of one or more hosts (each of which provides local storage as primary storage servers). Only shared and L2 Networks can be deployed in such zones and functionalities that require secondary storages are not supported.",
+"message.drs.plan.description": "The maximum number of live migrations allowed for DRS. Configure DRS under the settings tab before generating a plan or to enable automatic DRS for the Cluster.",
"message.drs.plan.executed": "DRS plan executed successfully.",
"message.zone.edge.local.storage": "Local storage will be used by default for User Instances and virtual routers",
"message.detach.disk": "Are you sure you want to detach this disk?",
@@ -3071,8 +3070,8 @@
"message.error.cidr": "CIDR is required",
"message.error.cidr.or.cidrsize": "CIDR or cidr size is required",
"message.error.cloudian.console": "Single-Sign-On failed for Cloudian management console. Please ask your administrator to fix integration issues.",
-"message.error.cluster.description": "Please enter Kubernetes cluster description.",
-"message.error.cluster.name": "Please enter cluster name.",
+"message.error.cluster.description": "Please enter Kubernetes Cluster description.",
+"message.error.cluster.name": "Please enter Cluster name.",
"message.error.confirm.password": "Please confirm new password.",
"message.error.confirm.text": "Please enter the confirmation text",
"message.error.current.password": "Please enter current password.",
@@ -3113,7 +3112,7 @@
"message.error.ipv6.address": "Please enter a valid IP v6 address.",
"message.error.ipv6.gateway": "Please enter IpV6 Gateway",
"message.error.ipv6.gateway.format": "Please enter a valid IPv6 Gateway.",
-"message.error.kubecluster.name": "Please enter Kubernetes cluster name.",
+"message.error.kubecluster.name": "Please enter Kubernetes Cluster name.",
"message.error.kuberversion": "Please enter Kubernetes semantic version.",
"message.error.limit.value": "The value must not be less than",
"message.error.loading.setting": "There was an error loading these settings.",
@@ -3147,7 +3146,7 @@
"message.error.remove.vm.schedule": "Removing Instance Schedule failed",
"message.error.required.input": "Please enter input",
"message.error.reset.config": "Unable to reset config to default value",
-"message.error.retrieve.kubeconfig": "Unable to retrieve Kubernetes cluster config",
+"message.error.retrieve.kubeconfig": "Unable to retrieve Kubernetes Cluster config",
"message.error.routing.policy.term": "Community need to have the following format number:number",
"message.error.s3nfs.path": "Please enter S3 NFS Path",
"message.error.s3nfs.server": "Please enter S3 NFS Server",
@@ -3165,11 +3164,11 @@
"message.error.secret.key": "Please enter secret key.",
"message.error.select": "Please select option.",
"message.error.select.domain.to.dedicate": "Please select domain to dedicate to.",
-"message.error.select.zone.type": "Please select zone type below.",
+"message.error.select.zone.type": "Please select Zone type below.",
"message.error.server": "Please enter server.",
-"message.error.serviceoffering.for.cluster": "Please select service offering for Kubernetes cluster.",
+"message.error.serviceoffering.for.cluster": "Please select service offering for Kubernetes Cluster.",
"message.error.size": "Please enter size in GB.",
-"message.error.size.for.cluster": "Please enter size for Kubernetes cluster.",
+"message.error.size.for.cluster": "Please enter size for Kubernetes Cluster.",
"message.error.smb.password": "Please enter SMB password.",
"message.error.smb.username": "Please enter SMB username.",
"message.error.specify.stickiness.method": "Please specify a stickiness method",
@@ -3187,7 +3186,7 @@
"message.error.upload.template": "Template upload failed.",
"message.error.upload.template.description": "Only one Template can be uploaded at a time.",
"message.error.url": "Please enter URL.",
-"message.error.userdata": "Please enter Userdata",
+"message.error.user.data": "Please enter the User Data",
"message.error.username": "Enter your username.",
"message.error.valid.iops.range": "Please enter a valid IOPS range.",
"message.error.vcenter.datacenter": "Please enter vCenter datacenter.",
@@ -3195,16 +3194,16 @@
"message.error.vcenter.host": "Please enter vCenter host.",
"message.error.vcenter.password": "Please enter vCenter password.",
"message.error.vcenter.username": "Please enter vCenter username.",
-"message.error.version.for.cluster": "Please select Kubernetes version for Kubernetes cluster.",
+"message.error.version.for.cluster": "Please select Kubernetes version for Kubernetes Cluster.",
"message.error.vlan.range": "Please enter a valid VLAN/VNI range.",
"message.error.volume.name": "Please enter volume name.",
"message.error.volume": "Please enter volume.",
"message.error.volume.group": "Please enter volume group.",
-"message.error.zone": "Please select a zone.",
-"message.error.zone.combined": "All zones cannot be combined with any other zone.",
-"message.error.zone.for.cluster": "Please select zone for Kubernetes cluster.",
-"message.error.zone.name": "Please enter zone name.",
-"message.error.zone.type": "Please select zone type.",
+"message.error.zone": "Please select a Zone.",
+"message.error.zone.combined": "All Zones cannot be combined with any other zone.",
+"message.error.zone.for.cluster": "Please select Zone for Kubernetes Cluster.",
+"message.error.zone.name": "Please enter Zone name.",
+"message.error.zone.type": "Please select Zone type.",
"message.error.linstor.resourcegroup": "Please enter the Linstor Resource-Group.",
"message.error.fixed.offering.kvm": "It's not possible to scale up Instances that utilize KVM hypervisor with a fixed compute offering.",
"message.error.create.webhook.local.account": "Account must be provided for creating a Webhook with Local scope.",
@@ -3228,8 +3227,8 @@
"message.import.volume": "Please specify the domain, account or project name.
If not set, the volume will be imported for the caller.",
"message.info.cloudian.console": "Cloudian Management Console should open in another window.",
"message.installwizard.cloudstack.helptext.website": " * Project website:\t ",
-"message.infra.setup.nsx.description": "This zone must contain an NSX provider because the isolation method is NSX",
-"message.infra.setup.tungsten.description": "This zone must contain a Tungsten-Fabric provider because the isolation method is TF",
+"message.infra.setup.nsx.description": "This Zone must contain an NSX provider because the isolation method is NSX",
+"message.infra.setup.tungsten.description": "This Zone must contain a Tungsten-Fabric provider because the isolation method is TF",
"message.installwizard.cloudstack.helptext.document": " * Documentation:\t ",
"message.installwizard.cloudstack.helptext.header": "\nYou can find more information about Apache CloudStack™ on the pages listed below.\n",
"message.installwizard.cloudstack.helptext.issues": " * Report issues:\t ",
@@ -3237,20 +3236,20 @@
"message.installwizard.cloudstack.helptext.releasenotes": " * Release notes:\t ",
"message.installwizard.cloudstack.helptext.survey": " * Take the survey:\t ",
"message.installwizard.copy.whatiscloudstack": "CloudStack™ is a software platform that pools computing resources to build public, private, and hybrid Infrastructure as a Service (IaaS) clouds. CloudStack™ manages the Network, storage, and compute nodes that make up a cloud infrastructure. Use CloudStack™ to deploy, manage, and configure cloud computing environments.\n\nExtending beyond individual Instance images running on commodity hardware, CloudStack™ provides a turnkey cloud infrastructure software stack for delivering virtual datacenters as a service - delivering all of the essential components to build, deploy, and manage multi-tier and multi-tenant cloud applications.",
-"message.installwizard.tooltip.addpod.name": "A name for the pod.",
+"message.installwizard.tooltip.addpod.name": "A name for the Pod.",
"message.installwizard.tooltip.addpod.reservedsystemendip": "This is the IP range in the private Network that the CloudStack uses to manage Secondary Storage VMs and Console Proxy VMs. These IP addresses are taken from the same subnet as computing servers.",
-"message.installwizard.tooltip.addpod.reservedsystemgateway": "The gateway for the hosts in that pod.",
+"message.installwizard.tooltip.addpod.reservedsystemgateway": "The gateway for the hosts in that Pod.",
"message.installwizard.tooltip.addpod.reservedsystemstartip": "This is the IP range in the private Network that the CloudStack uses to manage Secondary Storage VMs and Console Proxy VMs. These IP addresses are taken from the same subnet as computing servers.",
-"message.installwizard.tooltip.configureguesttraffic.guestendip": "The range of IP addresses that will be available for allocation to guests in this zone. If one NIC is used, these IPs should be in the same CIDR as the pod CIDR.",
+"message.installwizard.tooltip.configureguesttraffic.guestendip": "The range of IP addresses that will be available for allocation to guests in this Zone. If one NIC is used, these IPs should be in the same CIDR as the Pod CIDR.",
"message.installwizard.tooltip.configureguesttraffic.guestgateway": "The gateway that the guests should use.",
"message.installwizard.tooltip.configureguesttraffic.guestnetmask": "The netmask in use on the subnet that the guests should use.",
-"message.installwizard.tooltip.configureguesttraffic.gueststartip": "The range of IP addresses that will be available for allocation to guests in this zone. If one NIC is used, these IPs should be in the same CIDR as the pod CIDR.",
+"message.installwizard.tooltip.configureguesttraffic.gueststartip": "The range of IP addresses that will be available for allocation to guests in this Zone. If one NIC is used, these IPs should be in the same CIDR as the Pod CIDR.",
"message.installwizard.tooltip.nsx.provider.hostname": "NSX Provider hostname / IP address not provided",
"message.installwizard.tooltip.nsx.provider.username": "NSX Provider username not provided",
"message.installwizard.tooltip.nsx.provider.password": "NSX Provider password not provided",
-"message.installwizard.tooltip.nsx.provider.edgecluster": "NSX Provider edge cluster information not provided",
+"message.installwizard.tooltip.nsx.provider.edgecluster": "NSX Provider edge Cluster information not provided",
"message.installwizard.tooltip.nsx.provider.tier0gateway": "NSX Provider tier-0 gateway information not provided",
-"message.installwizard.tooltip.nsx.provider.transportZone": "NSX Provider transport zone information not provided",
+"message.installwizard.tooltip.nsx.provider.transportZone": "NSX Provider transport Zone information not provided",
"message.installwizard.tooltip.tungsten.provider.gateway": "Tungsten provider gateway is required",
"message.installwizard.tooltip.tungsten.provider.hostname": "Tungsten provider hostname is required",
"message.installwizard.tooltip.tungsten.provider.introspectport": "Tungsten provider introspect port is required",
@@ -3266,14 +3265,14 @@
"message.ip.v6.prefix.delete": "IPv6 prefix deleted",
"message.iso.arch": "Please select an ISO architecture",
"message.iso.desc": "Disc image containing data or bootable media for OS.",
-"message.kubeconfig.cluster.not.available": "Kubernetes cluster kubeconfig not available currently.",
-"message.kubernetes.cluster.delete": "Please confirm that you want to destroy the cluster.",
-"message.kubernetes.cluster.scale": "Please select desired cluster configuration.",
-"message.kubernetes.cluster.start": "Please confirm that you want to start the cluster.",
-"message.kubernetes.cluster.stop": "Please confirm that you want to stop the cluster.",
+"message.kubeconfig.cluster.not.available": "Kubernetes Cluster kubeconfig not available currently.",
+"message.kubernetes.cluster.delete": "Please confirm that you want to destroy the Cluster.",
+"message.kubernetes.cluster.scale": "Please select desired Cluster configuration.",
+"message.kubernetes.cluster.start": "Please confirm that you want to start the Cluster.",
+"message.kubernetes.cluster.stop": "Please confirm that you want to stop the Cluster.",
"message.kubernetes.cluster.upgrade": "Please select new Kubernetes version.",
"message.kubernetes.version.delete": "Please confirm that you want to delete this Kubernetes version.",
-"message.l2.network.unsupported.for.nsx": "L2 networks aren't supported for NSX enabled zones",
+"message.l2.network.unsupported.for.nsx": "L2 networks aren't supported for NSX enabled Zones",
"message.launch.zone": "Zone is ready to launch; please proceed to the next step.",
"message.launch.zone.description": "Zone is ready to launch; please proceed to the next step.",
"message.launch.zone.hint": "Configure Network components and traffic including IP addresses.",
@@ -3298,8 +3297,8 @@
"message.lock.user": "Please confirm that you want to lock the User \"{user}\". By locking this User, they will no longer be able to manage their cloud resources. Existing resources can still be accessed.",
"message.lock.user.success": "Successfully locked User \"{user}\"",
"message.login.failed": "Login Failed",
-"message.migrate.instance.host.auto.assign": "Host for the Instance will be automatically chosen based on the suitability within the same cluster",
-"message.migrate.instance.to.host": "Please confirm that you want to migrate this Instance to another host. When migration is between hosts of different clusters volume(s) of the Instance may get migrated to suitable storage pools.",
+"message.migrate.instance.host.auto.assign": "Host for the Instance will be automatically chosen based on the suitability within the same Cluster",
+"message.migrate.instance.to.host": "Please confirm that you want to migrate this Instance to another host. When migration is between hosts of different Clusters volume(s) of the Instance may get migrated to suitable storage pools.",
"message.migrate.instance.to.ps": "Please confirm that you want to migrate this Instance to another primary storage.",
"message.migrate.resource.to.ss": "Please confirm that you want to migrate this resource to another secondary storage.",
"message.migrate.router.confirm": "Please confirm the host you wish to migrate the router to:",
@@ -3349,11 +3348,11 @@
"message.path": "Path : ",
"message.path.description": "NFS: exported path from the server. VMFS: /datacenter name/datastore name. SharedMountPoint: path where primary storage is mounted, such as /mnt/primary.",
"message.please.confirm.remove.ssh.key.pair": "Please confirm that you want to remove this SSH key pair.",
-"message.please.confirm.remove.user.data": "Please confirm that you want to remove this Userdata",
+"message.please.confirm.remove.user.data": "Please confirm that you want to remove this User Data",
"message.please.enter.valid.value": "Please enter a valid value.",
"message.please.enter.value": "Please enter values.",
"message.please.wait.while.autoscale.vmgroup.is.being.created": "Please wait while your AutoScaling Group is being created; this may take a while...",
-"message.please.wait.while.zone.is.being.created": "Please wait while your zone is being created; this may take a while...",
+"message.please.wait.while.zone.is.being.created": "Please wait while your Zone is being created; this may take a while...",
"message.pod.dedicated": "Pod dedicated.",
"message.pod.dedication.released": "Pod dedication released.",
"message.prepare.for.shutdown": "Please confirm that you would like to prep this Management server for shutdown. It will not accept any new Async Jobs but will NOT terminate after there are no pending jobs.",
@@ -3369,10 +3368,10 @@
"message.recover.vm": "Please confirm that you would like to recover this Instance.",
"message.reinstall.vm": "NOTE: Proceed with caution. This will cause the Instance to be reinstalled from the Template; data on the root disk will be lost. Extra data volumes, if any, will not be touched.",
"message.release.ip.failed": "Failed to release IP",
-"message.releasing.dedicated.cluster": "Releasing dedicated cluster...",
+"message.releasing.dedicated.cluster": "Releasing dedicated Cluster...",
"message.releasing.dedicated.host": "Releasing dedicated host...",
-"message.releasing.dedicated.pod": "Releasing dedicated pod...",
-"message.releasing.dedicated.zone": "Releasing dedicated zone...",
+"message.releasing.dedicated.pod": "Releasing dedicated Pod...",
+"message.releasing.dedicated.zone": "Releasing dedicated Zone...",
"message.remove.annotation": "Are you sure you want to delete the comment?",
"message.remove.egress.rule.failed": "Removing egress rule failed",
"message.remove.egress.rule.processing": "Deleting egress rule...",
@@ -3418,7 +3417,7 @@
"message.scaleup.policy.continue": "Please add at least a condition to ScaleUp policy to continue",
"message.scaleup.policy.duration.continue": "Please input a valid duration to ScaleUp policy to continue",
"message.scaleup.policy.name.continue": "Please input a name to ScaleUp policy to continue",
-"message.select.a.zone": "A zone typically corresponds to a single datacenter. Multiple zones help make the cloud more reliable by providing physical isolation and redundancy.",
+"message.select.a.zone": "A Zone typically corresponds to a single datacenter. Multiple zones help make the cloud more reliable by providing physical isolation and redundancy.",
"message.select.affinity.groups": "Please select any affinity groups you want this Instance to belong to:",
"message.select.bgp.peers": "Please select / deselect the BGP peers associated to the network or VPC:",
"message.select.deselect.desired.options": "Please select / deselect the desired options",
@@ -3426,28 +3425,28 @@
"message.select.destination.image.stores": "Please select Image Store(s) to which data is to be migrated to",
"message.select.disk.offering": "Please select a disk offering for disk",
"message.select.end.date.and.time": "Select an end date & time.",
-"message.select.kvm.host.instance.conversion": "(Optional) Select a KVM host in the zone to perform the instance conversion through virt-v2v",
-"message.select.kvm.host.instance.import": "(Optional) Select a KVM host in the cluster to perform the importing of the converted instance",
+"message.select.kvm.host.instance.conversion": "(Optional) Select a KVM host in the Zone to perform the instance conversion through virt-v2v",
+"message.select.kvm.host.instance.import": "(Optional) Select a KVM host in the Cluster to perform the importing of the converted instance",
"message.select.load.balancer.rule": "Please select a load balancer rule for your AutoScale Instance group.",
"message.select.migration.policy": "Please select a migration policy.",
"message.select.nic.network": "Please select a Network for NIC",
"message.select.security.groups": "Please select security group(s) for your new Instance.",
"message.select.start.date.and.time": "Select a start date & time.",
"message.select.temporary.storage.instance.conversion": "(Optional) Select a Storage temporary destination for the converted disks through virt-v2v",
-"message.select.zone.description": "Select type of zone basic/advanced.",
-"message.select.zone.hint": "This is the type of zone deployment that you want to use. Basic zone: provides a single Network where each Instance is assigned an IP directly from the Network. Guest isolation can be provided through layer-3 means such as security groups (IP address source filtering). Advanced zone: For more sophisticated Network topologies. This Network model provides the most flexibility in defining guest Networks and providing custom Network offerings such as firewall, VPN, or load balancer support.",
+"message.select.zone.description": "Select type of Zone basic/advanced.",
+"message.select.zone.hint": "This is the type of Zone deployment that you want to use. Basic zone: provides a single Network where each Instance is assigned an IP directly from the Network. Guest isolation can be provided through layer-3 means such as security groups (IP address source filtering). Advanced zone: For more sophisticated Network topologies. This Network model provides the most flexibility in defining guest Networks and providing custom Network offerings such as firewall, VPN, or load balancer support.",
"message.server": "Server : ",
"message.server.description": "NFS, iSCSI, or PreSetup: IP address or DNS name of the storage device. VMWare PreSetup: IP address or DNS name of the vCenter server. Linstor: http(s) url of the linstor-controller.",
"message.set.default.nic": "Please confirm that you would like to make this NIC the default for this Instance.",
"message.set.default.nic.manual": "Please manually update the default NIC on the Instance now.",
"message.setting.updated": "Setting Updated:",
"message.setting.update.delay": "The new value will take effect within 30 seconds.",
-"message.setup.physical.network.during.zone.creation": "When adding a zone, you need to set up one or more physical networks. Each physical network can carry one or more types of traffic, with certain restrictions on how they may be combined. Add or remove one or more traffic types onto each physical network.",
-"message.setup.physical.network.during.zone.creation.basic": "When adding a basic zone, you can set up one physical Network, which corresponds to a NIC on the hypervisor. The Network carries several types of traffic.
You may also add other traffic types onto the physical Network.",
+"message.setup.physical.network.during.zone.creation": "When adding a Zone, you need to set up one or more physical networks. Each physical network can carry one or more types of traffic, with certain restrictions on how they may be combined. Add or remove one or more traffic types onto each physical network.",
+"message.setup.physical.network.during.zone.creation.basic": "When adding a basic Zone, you can set up one physical Network, which corresponds to a NIC on the hypervisor. The Network carries several types of traffic.
You may also add other traffic types onto the physical Network.",
"message.shared.network.offering.warning": "Domain admins and regular Users can only create shared Networks from Network offering with the setting specifyvlan=false. Please contact an administrator to create a Network offering if this list is empty.",
-"message.shared.network.unsupported.for.nsx": "Shared networks aren't supported for NSX enabled zones",
+"message.shared.network.unsupported.for.nsx": "Shared networks aren't supported for NSX enabled Zones",
"message.shutdown.triggered": "A shutdown has been triggered. CloudStack will not accept new jobs",
-"message.snapshot.additional.zones": "Snapshots will always be created in its native zone - %x, here you can select additional zone(s) where it will be copied to at creation time",
+"message.snapshot.additional.zones": "Snapshots will always be created in its native Zone - %x, here you can select additional zone(s) where it will be copied to at creation time",
"message.sourcenatip.change.warning": "WARNING: Changing the sourcenat IP address of the network will cause connectivity downtime for the Instances with NICs in the Network.",
"message.sourcenatip.change.inhibited": "Changing the sourcenat to this IP of the Network to this address is inhibited as firewall rules are defined for it. This can include port forwarding or load balancing rules.\n - If this is an Isolated Network, please use updateNetwork/click the edit button.\n - If this is a VPC, first clear all other rules for this address.",
"message.specify.tag.key": "Please specify a tag key.",
@@ -3469,7 +3468,7 @@
"message.success.add.kuberversion": "Successfully added Kubernetes version",
"message.success.add.logical.router": "Successfully added Logical Router",
"message.success.add.network": "Successfully added Network",
-"message.success.add.network.acl": "Successfully added Network ACL list",
+"message.success.add.network.acl": "Successfully added Network ACL",
"message.success.add.network.static.route": "Successfully added Network Static Route",
"message.success.add.network.permissions": "Successfully added Network permissions",
"message.success.add.physical.network": "Successfully added Physical Network",
@@ -3513,7 +3512,7 @@
"message.success.create.internallb": "Successfully created Internal Load Balancer",
"message.success.create.isolated.network": "Successfully created isolated Network",
"message.success.create.keypair": "Successfully created SSH key pair",
-"message.success.create.kubernetes.cluter": "Successfully created Kubernetes cluster",
+"message.success.create.kubernetes.cluter": "Successfully created Kubernetes Cluster",
"message.success.create.l2.network": "Successfully created L2 Network",
"message.success.create.snapshot.from.vmsnapshot": "Successfully created Snapshot from Instance Snapshot",
"message.success.create.template": "Successfully created Template",
@@ -3555,7 +3554,7 @@
"message.success.register.iso": "Successfully registered ISO",
"message.success.register.keypair": "Successfully registered SSH key pair",
"message.success.register.template": "Successfully registered Template",
-"message.success.register.user.data": "Successfully registered Userdata",
+"message.success.register.user.data": "Successfully registered User Data",
"message.success.release.ip": "Successfully released IP",
"message.success.release.dedicated.bgp.peer": "Successfully released dedicated BGP peer",
"message.success.release.dedicated.ipv4.subnet": "Successfully released dedicated IPv4 subnet",
@@ -3578,7 +3577,7 @@
"message.success.remove.tungsten.routing.policy": "Successfully removed Tungsten-Fabric Routing Policy from Network",
"message.success.reset.network.permissions": "Successfully reset Network Permissions",
"message.success.resize.volume": "Successfully resized volume",
-"message.success.scale.kubernetes": "Successfully scaled Kubernetes cluster",
+"message.success.scale.kubernetes": "Successfully scaled Kubernetes Cluster",
"message.success.unmanage.instance": "Successfully unmanaged Instance",
"message.success.unmanage.volume": "Successfully unmanaged Volume",
"message.success.update.account": "Successfully updated Account",
@@ -3593,7 +3592,7 @@
"message.success.update.network": "Successfully updated Network",
"message.success.update.template": "Successfully updated Template",
"message.success.update.user": "Successfully updated User",
-"message.success.upgrade.kubernetes": "Successfully upgraded Kubernetes cluster",
+"message.success.upgrade.kubernetes": "Successfully upgraded Kubernetes Cluster",
"message.success.upload": "Successfully uploaded",
"message.success.upload.description": "This ISO file has been uploaded. Please check its status in the Templates menu.",
"message.success.upload.icon": "Successfully uploaded icon for ",
@@ -3608,9 +3607,9 @@
"message.template.import.vm.temporary": "If a temporary Template is used, the reset Instance operation will not work after importing it.",
"message.template.iso": "Please select a Template or ISO to continue.",
"message.template.type.change.warning": "WARNING: Changing the Template type to SYSTEM will disable further changes to the Template.",
-"message.tooltip.reserved.system.netmask": "The Network prefix that defines the pod subnet. Uses CIDR notation.",
+"message.tooltip.reserved.system.netmask": "The Network prefix that defines the Pod subnet. Uses CIDR notation.",
"message.traffic.type.deleted": "Successfully deleted traffic type",
-"message.traffic.type.to.basic.zone": "traffic type to basic zone",
+"message.traffic.type.to.basic.zone": "traffic type to basic Zone",
"message.trigger.shutdown": "Please confirm that you would like to trigger a shutdown on this Management server. It will not accept any new Async Jobs and will terminate after there are no pending jobs.",
"message.type.values.to.add": "Please add additional values by typing them in",
"message.update.autoscale.policy.failed": "Failed to update autoscale policy",
@@ -3709,11 +3708,11 @@
"message.warn.change.primary.storage.scope": "This feature is tested and supported for the following configurations:
KVM - NFS/Ceph - DefaultPrimary
VMware - NFS - DefaultPrimary
*There might be extra steps involved to make it work for other configurations.",
"message.warn.filetype": "jpg, jpeg, png, bmp and svg are the only supported image formats.",
"message.warn.importing.instance.without.nic": "WARNING: This Instance is being imported without NICs and many Network resources will not be available. Consider creating a NIC via vCenter before importing or as soon as the Instance is imported.",
-"message.warn.zone.mtu.update": "Please note that this limit won't affect pre-existing Network’s MTU settings",
+"message.warn.zone.mtu.update": "Please note that this limit won't affect pre-existing Network's MTU settings",
"message.webhook.deliveries.time.filter": "Webhook deliveries list can be filtered based on date-time. Select 'Custom' for specifying start and end date range.",
"message.zone.creation.complete": "Zone creation complete.",
-"message.zone.detail.description": "Populate zone details.",
-"message.zone.detail.hint": "A zone is the largest organizational unit in CloudStack, and it typically corresponds to a single datacenter. Zones provide physical isolation and redundancy. A zone consists of one or more pods (each of which contains hosts and primary storage servers) and a secondary storage server which is shared by all pods in the zone.",
+"message.zone.detail.description": "Populate Zone details.",
+"message.zone.detail.hint": "A Zone is the largest organizational unit in CloudStack, and it typically corresponds to a single datacenter. Zones provide physical isolation and redundancy. A zone consists of one or more Pods (each of which contains hosts and primary storage servers) and a secondary storage server which is shared by all pods in the zone.",
"message.validate.min": "Please enter a value greater than or equal to {0}.",
"message.action.delete.object.storage": "Please confirm that you want to delete this Object Store",
"message.bgp.peers.null": "Please note, if no BGP peers are selected, the VR will connect to
(1) dedicated BGP peers the owner can access, if the owner has dedicated BGP peers and account setting use.system.bgp.peers is set to false;
(2) all BGP peers the owner can access, otherwise.
",
diff --git a/ui/public/locales/es.json b/ui/public/locales/es.json
index ae4fa19f0334..ab57c9515316 100644
--- a/ui/public/locales/es.json
+++ b/ui/public/locales/es.json
@@ -14,12 +14,12 @@
"label.account.specific": "espec\u00edficas de la cuenta",
"label.accounts": "Cuentas",
"label.accounttype": "Tipo de Cuenta",
-"label.acl.export": "Export ACLs",
+"label.acl.export": "Export ACL rules",
"label.acl.id": "ID de ACL",
-"label.acl.list.rules": "Lista de Reglas ACL",
+"label.acl.rules": "Lista de Reglas ACL",
"label.acl.reason.description": "Enter the reason behind an ACL rule.",
"label.aclid": "ACL",
-"label.aclname": "Nombre de ACL",
+"label.acl.rule.name": "Nombre de ACL",
"label.acquire.new.ip": "Adquirir nueva IP",
"label.acquire.new.secondary.ip": "Adquirir nueva IP secundaria",
"label.action": "Acci\u00f3n",
@@ -119,8 +119,8 @@
"label.activeviewersessions": "Sesiones activas",
"label.add": "Agregar",
"label.add.account": "A\u00f1adir Cuenta",
-"label.add.acl": "Agregar ACL",
-"label.add.acl.list": "Agregar Lista ACL",
+"label.add.acl.rule": "Agregar ACL",
+"label.add.acl": "Agregar Lista ACL",
"label.add.affinity.group": "Agregar un nuevo grupo de afinidad",
"label.add.baremetal.dhcp.device": "Agregar dispositivo DHCP Baremetal",
"label.add.bigswitchbcf.device": "Agregar Controlador BigSwitch BCF",
@@ -142,12 +142,12 @@
"label.add.ip.range": "A\u00f1adir Rango IP",
"label.add.isolated.network": "Agregar Red Aislada",
"label.add.ldap.account": "Agregar cuenta LDAP",
-"label.add.list.name": "Nombre de la Lista ACL",
+"label.add.acl.name": "Nombre de la Lista ACL",
"label.add.more": "A\u00f1adir m\u00e1s",
"label.add.netscaler.device": "Agregar dispositivo Netscaler",
"label.add.network": "Agregar Red",
"label.add.network.acl": "Agregar ACL de Red",
-"label.add.network.acl.list": "Agregar Lista ACL de Red",
+"label.add.network.acl": "Agregar Lista ACL de Red",
"label.add.network.offering": "Agregar Oferta de Red",
"label.add.new.gateway": "Agregar nuevo gateway",
"label.add.new.tier": "Agregar un nuevo tier",
@@ -344,7 +344,7 @@
"label.default.use": "Uso por defecto",
"label.default.view": "Vista Por Defecto",
"label.delete": "Eliminar",
-"label.delete.acl.list": "Borrar Lista ACL",
+"label.delete.acl": "Borrar Lista ACL",
"label.delete.affinity.group": "Borrar Grupo de Afinidad",
"label.delete.alerts": "Eliminar alertas",
"label.delete.bigswitchbcf": "Remover Controlador BigSwitch BCF",
@@ -431,7 +431,7 @@
"label.driver": "Controlador",
"label.dynamicscalingenabled": "Escalado din\u00e1mico habilitado",
"label.edit": "Editar",
-"label.edit.acl.list": "Edit ACL List",
+"label.edit.acl": "Edit ACL",
"label.edit.acl.rule": "Editar regla ACL",
"label.edit.project.details": "Editar detalles de proyecto",
"label.edit.role": "Editar Rol",
@@ -947,7 +947,6 @@
"label.remove.vpc.offering": "Quitar Oferta VPC",
"label.removing": "Quitando..",
"label.replace.acl": "Reemplazar ACL",
-"label.replace.acl.list": "Reemplazar Lista ACL",
"label.report.bug": "Reportar un Error",
"label.required": "Requerido",
"label.requireshvm": "HVM",
@@ -1180,8 +1179,7 @@
"label.usehttps": "Use HTTPS",
"label.usenewdiskoffering": "Replace disk offering?",
"label.user": "Usuario",
-"label.userdata": "DatosUsuario",
-"label.userdatal2": "Datos de Usuario",
+"label.user.data": "DatosUsuario",
"label.username": "Nombre de usuario",
"label.users": "Usuarios",
"label.utilization": "Utilisation",
@@ -1361,7 +1359,7 @@
"message.confirm.archive.selected.alerts": "Por favor confirme que desea archivar las alertas seleccionadas",
"message.confirm.archive.selected.events": "Por favor confirme que desea archivar los eventos seleccionados",
"message.confirm.attach.disk": "\u00bf Est\u00e1 seguro que desea conectar el disco?",
-"message.confirm.delete.acl.list": "\u00bfEsta seguro que desea borrar esta lista de ACL?",
+"message.confirm.delete.acl": "\u00bfEsta seguro que desea borrar esta lista de ACL?",
"message.confirm.delete.bigswitchbcf": "Por favor confirme que desa borrar este Controlador BigSwitch BCF",
"message.confirm.delete.brocadevcs": "Por favor confirme que desa borrar este Switch Brocade Vcs",
"message.confirm.delete.ciscoasa1000v": "Por favor confirme que desea borrar CiscoASA1000v",
diff --git a/ui/public/locales/fr_FR.json b/ui/public/locales/fr_FR.json
index 48a0560f1761..424f4749aa35 100644
--- a/ui/public/locales/fr_FR.json
+++ b/ui/public/locales/fr_FR.json
@@ -14,12 +14,12 @@
"label.account.specific": "Sp\u00e9cifique au compte",
"label.accounts": "Comptes",
"label.accounttype": "Type Compte",
-"label.acl.export": "Export ACLs",
+"label.acl.export": "Export ACL rules",
"label.acl.id": "ID ACL",
-"label.acl.list.rules": "Liste r\u00e8gles ACL",
+"label.acl.rules": "Liste r\u00e8gles ACL",
"label.acl.reason.description": "Enter the reason behind an ACL rule.",
"label.aclid": "ACL",
-"label.aclname": "Nom ACL",
+"label.acl.rule.name": "Nom ACL",
"label.acquire.new.ip": "Acqu\u00e9rir nouvelle adr. IP",
"label.acquire.new.secondary.ip": "Acqu\u00e9rir nouvelle IP secondaire",
"label.action": "Action",
@@ -119,8 +119,8 @@
"label.activeviewersessions": "Sessions actives",
"label.add": "Ajouter",
"label.add.account": "Ajouter un compte",
-"label.add.acl": "Ajouter r\u00e8gle ACL",
-"label.add.acl.list": "Ajouter Liste ACL",
+"label.add.acl.rule": "Ajouter r\u00e8gle ACL",
+"label.add.acl": "Ajouter Liste ACL",
"label.add.affinity.group": "Ajouter nouveau groupe d'affinit\u00e9",
"label.add.baremetal.dhcp.device": "Ajouter un DHCP Baremetal",
"label.add.bigswitchbcf.device": "Ajouter un contr\u00f4leur BigSwitch BCF",
@@ -142,12 +142,12 @@
"label.add.ip.range": "Ajouter une plage IP",
"label.add.isolated.network": "Ajouter un r\u00e9seau isol\u00e9",
"label.add.ldap.account": "Ajouter un compte LDAP",
-"label.add.list.name": "Nom Liste ACL",
+"label.add.acl.name": "Nom Liste ACL",
"label.add.more": "Ajouter plus",
"label.add.netscaler.device": "Ajouter un Netscaler",
"label.add.network": "Ajouter un r\u00e9seau",
"label.add.network.acl": "Ajouter une r\u00e8gle d'acc\u00e8s r\u00e9seau ACL",
-"label.add.network.acl.list": "Ajouter Liste ACL r\u00e9seau",
+"label.add.network.acl": "Ajouter Liste ACL r\u00e9seau",
"label.add.network.offering": "Ajouter Offre R\u00e9seau",
"label.add.new.gateway": "Ajouter une nouvelle passerelle",
"label.add.new.tier": "Ajouter un nouveau tiers",
@@ -334,7 +334,7 @@
"label.default.use": "Utilisation par d\u00e9faut",
"label.default.view": "Vue par d\u00e9faut",
"label.delete": "Supprimer",
-"label.delete.acl.list": "Supprimer Liste ACL",
+"label.delete.acl": "Supprimer Liste ACL",
"label.delete.affinity.group": "Supprimer le groupe d'affinit\u00e9",
"label.delete.alerts": "Supprimer alertes",
"label.delete.bigswitchbcf": "Supprimer contr\u00f4leur BigSwitch BCF",
@@ -419,7 +419,7 @@
"label.dpd": "D\u00e9tection de pair mort",
"label.driver": "Pilote",
"label.edit": "Modifier",
-"label.edit.acl.list": "Edit ACL List",
+"label.edit.acl": "Edit ACL",
"label.edit.acl.rule": "Modifier r\u00e8gle ACL",
"label.edit.project.details": "Modifier les d\u00e9tails du projet",
"label.edit.role": "\u00c9diter R\u00f4le",
@@ -926,7 +926,6 @@
"label.remove.vpc.offering": "Supprimer offre VPC",
"label.removing": "Suppression",
"label.replace.acl": "Remplacer ACL",
-"label.replace.acl.list": "Remplacer Liste ACL",
"label.required": "Requis",
"label.requireshvm": "HVM",
"label.requiresupgrade": "Mise \u00e0 jour n\u00e9cessaire",
@@ -1152,8 +1151,7 @@
"label.usehttps": "Utiliser HTTPS",
"label.usenewdiskoffering": "Replace disk offering?",
"label.user": "Utilisateur",
-"label.userdata": "Donn\u00e9es Utilisateur",
-"label.userdatal2": "Donn\u00e9es utilisateur",
+"label.user.data": "Donn\u00e9es Utilisateur",
"label.username": "Identifiant",
"label.users": "Utilisateurs",
"label.utilization": "Utilisation",
@@ -1331,7 +1329,7 @@
"message.confirm.archive.selected.alerts": "Confirmer l'archivage des alertes s\u00e9lectionn\u00e9es",
"message.confirm.archive.selected.events": "Confirmez l'archivage des \u00e9v\u00e9nements s\u00e9lectionn\u00e9s",
"message.confirm.attach.disk": "Confirmer le rattachement de ce disque ?",
-"message.confirm.delete.acl.list": "Confirmer la suppression de cette liste ACL ?",
+"message.confirm.delete.acl": "Confirmer la suppression de cette liste ACL ?",
"message.confirm.delete.bigswitchbcf": "Confirmer que vous voulez supprimer ce contr\u00f4leur BigSwitch BCF",
"message.confirm.delete.brocadevcs": "Confirmer la suppression du switch Brocade Vcs",
"message.confirm.delete.ciscoasa1000v": "Confirmez la suppression du CiscoASA1000v",
diff --git a/ui/public/locales/hi.json b/ui/public/locales/hi.json
index 055909360b52..9d7440b92626 100644
--- a/ui/public/locales/hi.json
+++ b/ui/public/locales/hi.json
@@ -6,7 +6,7 @@
"label.accounts": "लेखा",
"label.accounttype": "खाता प्रकार",
"label.aclid": "ACL",
-"label.aclname": "ACL नाम",
+"label.acl.rule.name": "ACL नाम",
"label.actions": "क्रियाएँ",
"label.add": "जोड़ें",
"label.adding": "जोड़ना",
@@ -410,7 +410,7 @@
"label.usageunit": "Unit",
"label.usehttps": "HTTPS का उपयोग करें",
"label.user": "उपयोगकर्ता",
-"label.userdata": "Userdata",
+"label.user.data": "User Data",
"label.username": "उपयोगकर्ता नाम",
"label.users": "उपयोगकर्ता",
"label.uuid": "ID",
diff --git a/ui/public/locales/hu.json b/ui/public/locales/hu.json
index 48275ce81fc1..ae58379d343c 100644
--- a/ui/public/locales/hu.json
+++ b/ui/public/locales/hu.json
@@ -14,12 +14,12 @@
"label.account.specific": "Sz\u00e1mla-specifikus",
"label.accounts": "Sz\u00e1ml\u00e1k",
"label.accounttype": "Sz\u00e1mla t\u00edpus",
-"label.acl.export": "Export ACLs",
+"label.acl.export": "Export ACL rules",
"label.acl.id": "ACL ID",
-"label.acl.list.rules": "ACL List Rules",
+"label.acl.rules": "ACL Rules",
"label.acl.reason.description": "Enter the reason behind an ACL rule.",
"label.aclid": "ACL",
-"label.aclname": "ACL n\u00e9v",
+"label.acl.rule.name": "ACL n\u00e9v",
"label.acquire.new.ip": "\u00daj IP c\u00edm beszerz\u00e9se",
"label.acquire.new.secondary.ip": "\u00daj m\u00e1sodlagos IP c\u00edm beszerz\u00e9se",
"label.action": "M\u0171velet",
@@ -119,8 +119,8 @@
"label.activeviewersessions": "Akt\u00edv munkamenetek",
"label.add": "Felv\u00e9tel",
"label.add.account": "Sz\u00e1mla felv\u00e9tele",
-"label.add.acl": "ACL felv\u00e9tele",
-"label.add.acl.list": "ACL lista felv\u00e9tele",
+"label.add.acl.rule": "ACL felv\u00e9tele",
+"label.add.acl": "ACL Lista felv\u00e9tele",
"label.add.affinity.group": "\u00daj affin\u00edt\u00e1si csoport felv\u00e9tele",
"label.add.baremetal.dhcp.device": "Baremetal DHCP eszk\u00f6z felv\u00e9tele",
"label.add.bigswitchbcf.device": "BigSwitch BCF vez\u00e9rl\u0151 felv\u00e9tele",
@@ -142,12 +142,12 @@
"label.add.ip.range": "IP c\u00edmtartom\u00e1ny felv\u00e9tele",
"label.add.isolated.network": "Izol\u00e1lt h\u00e1l\u00f3zat felv\u00e9tele",
"label.add.ldap.account": "LDAP hozz\u00e1f\u00e9r\u00e9s felv\u00e9tele",
-"label.add.list.name": "ACL lista n\u00e9v",
+"label.add.acl.name": "ACL Lista n\u00e9v",
"label.add.more": "Tov\u00e1bbi felv\u00e9tele",
"label.add.netscaler.device": "Netscaler eszk\u00f6z felv\u00e9tele",
"label.add.network": "H\u00e1l\u00f3zat felv\u00e9tele",
"label.add.network.acl": "H\u00e1l\u00f3zati ACL felv\u00e9tele",
-"label.add.network.acl.list": "H\u00e1l\u00f3zati ACL lista felv\u00e9tele",
+"label.add.network.acl": "H\u00e1l\u00f3zati ACL Lista felv\u00e9tele",
"label.add.network.offering": "H\u00e1l\u00f3zati aj\u00e1nlat felv\u00e9tele",
"label.add.new.gateway": "\u00daj \u00e1tj\u00e1r\u00f3 felv\u00e9tele",
"label.add.new.tier": "\u00daj r\u00e9teg felv\u00e9tele",
@@ -334,7 +334,7 @@
"label.default.use": "Alap\u00e9rtelmezett haszn\u00e1lat",
"label.default.view": "Alap\u00e9rtelmezett n\u00e9zet",
"label.delete": "T\u00f6rl\u00e9s",
-"label.delete.acl.list": "ACL lista t\u00f6rl\u00e9se",
+"label.delete.acl": "ACL Lista t\u00f6rl\u00e9se",
"label.delete.affinity.group": "Affin\u00edt\u00e1si csoport t\u00f6rl\u00e9se",
"label.delete.alerts": "T\u00f6rl\u00e9s riaszt\u00e1sok",
"label.delete.bigswitchbcf": "BigSwitch BCF vez\u00e9rl\u0151 elt\u00e1vol\u00edt\u00e1sa",
@@ -419,7 +419,7 @@
"label.driver": "Driver",
"label.dynamicscalingenabled": "dinamikus m\u00e9retez\u00e9s enged\u00e9lyezve",
"label.edit": "Szerkeszt\u00e9s",
-"label.edit.acl.list": "Edit ACL List",
+"label.edit.acl": "Edit ACL",
"label.edit.acl.rule": "ACL szab\u00e1ly szerkeszt\u00e9se",
"label.edit.project.details": "Projekt r\u00e9szletek szerkeszt\u00e9se",
"label.edit.role": "Edit Role",
@@ -924,7 +924,6 @@
"label.remove.vpc.offering": "VPC aj\u00e1nlat t\u00f6rl\u00e9se",
"label.removing": "T\u00f6rl\u00e9s",
"label.replace.acl": "ACL csere",
-"label.replace.acl.list": "ACL lista cser\u00e9je",
"label.required": "Sz\u00fcks\u00e9ges",
"label.requireshvm": "HVM",
"label.requiresupgrade": "Friss\u00edt\u00e9st ig\u00e9nyel",
@@ -1150,8 +1149,7 @@
"label.usehttps": "HTTPS haszn\u00e1lata",
"label.usenewdiskoffering": "Replace disk offering?",
"label.user": "Felhaszn\u00e1l\u00f3",
-"label.userdata": "Felhaszn\u00e1l\u00f3 adat",
-"label.userdatal2": "Felhaszn\u00e1l\u00f3i adat",
+"label.user.data": "Felhaszn\u00e1l\u00f3 adat",
"label.username": "Felhaszn\u00e1l\u00f3n\u00e9v",
"label.users": "Felhaszn\u00e1l\u00f3k",
"label.utilization": "Utilisation",
@@ -1329,7 +1327,7 @@
"message.confirm.archive.selected.alerts": "Er\u0151s\u00edtsd meg, hogy le akarod archiv\u00e1lni a kiv\u00e1lasztott riaszt\u00e1sokat!",
"message.confirm.archive.selected.events": "Er\u0151s\u00edtsd meg, hogy archiv\u00e1lni szeretn\u00e9d a kiv\u00e1lasztott esem\u00e9nyeket!",
"message.confirm.attach.disk": "Biztosan csatolni szeretn\u00e9d a merevlemezt?",
-"message.confirm.delete.acl.list": "Biztosan t\u00f6r\u00f6lni akarod ezt a ACL list\u00e1t?",
+"message.confirm.delete.acl": "Biztosan t\u00f6r\u00f6lni akarod ezt a ACL List\u00e1t?",
"message.confirm.delete.bigswitchbcf": "Er\u0151s\u00edtsd meg, hogy t\u00f6r\u00f6lni szeretn\u00e9d ezt a BigSwitch BCF vez\u00e9rl\u0151t!",
"message.confirm.delete.brocadevcs": "Er\u0151s\u00edtsd meg, hogy t\u00f6r\u00f6lni szeretn\u00e9d a Brocade Vcs Switch-et",
"message.confirm.delete.ciscoasa1000v": "Er\u0151s\u00edtsd meg, hogy t\u00f6r\u00f6lni akarod a CiscoASA1000v-t",
@@ -1354,7 +1352,7 @@
"message.confirm.remove.selected.events": "Er\u0151s\u00edtsd meg, hogy t\u00f6r\u00f6lni szeretn\u00e9d a kiv\u00e1lasztott esem\u00e9nyeket",
"message.confirm.remove.vmware.datacenter": "Er\u0151s\u00edtsd meg, hogy el akarod t\u00e1vol\u00edtani a VMware adatk\u00f6zpontot!",
"message.confirm.remove.vpc.offering": "Biztos vagy abban, hogy t\u00f6r\u00f6lni akarod ezt a VPC aj\u00e1nlatot?",
-"message.confirm.replace.acl.new.one": "Le akarod cser\u00e9lni ez ACL list\u00e1t egy \u00fajjal?",
+"message.confirm.replace.acl.new.one": "Le akarod cser\u00e9lni ez ACL List\u00e1t egy \u00fajjal?",
"message.confirm.scale.up.router.vm": "Biztosan fel akarod m\u00e9retezni a router VM-et?",
"message.confirm.scale.up.system.vm": "Biztosan fel akarod m\u00e9retezni a rendszer VM-et?",
"message.confirm.start.lb.vm": "Er\u0151s\u00edtsd meg, hogy el akarod ind\u00edtani az LB VM-et!",
diff --git a/ui/public/locales/it_IT.json b/ui/public/locales/it_IT.json
index 844763eba3a9..a2907b71f235 100644
--- a/ui/public/locales/it_IT.json
+++ b/ui/public/locales/it_IT.json
@@ -14,12 +14,12 @@
"label.account.specific": "Specifico dell'Account",
"label.accounts": "Utenti",
"label.accounttype": "Account Type",
-"label.acl.export": "Export ACLs",
+"label.acl.export": "Export ACL rules",
"label.acl.id": "ACL ID",
-"label.acl.list.rules": "ACL List Rules",
+"label.acl.rules": "ACL Rules",
"label.acl.reason.description": "Enter the reason behind an ACL rule.",
"label.aclid": "ACL",
-"label.aclname": "ACL Name",
+"label.acl.rule.name": "ACL Name",
"label.acquire.new.ip": "Acquisizione nuovo indirizzo IP",
"label.acquire.new.secondary.ip": "Acquisizione nuovo IP secondario",
"label.action": "Action",
@@ -119,8 +119,8 @@
"label.activeviewersessions": "Sessioni Attive",
"label.add": "Add",
"label.add.account": "Aggiungi un Account",
-"label.add.acl": "Aggiungere ACL",
-"label.add.acl.list": "Add ACL List",
+"label.add.acl.rule": "Aggiungere ACL",
+"label.add.acl": "Add ACL",
"label.add.affinity.group": "Aggiungere un nuovo gruppo di affinit\u00e0",
"label.add.baremetal.dhcp.device": "Add Baremetal DHCP Device",
"label.add.bigswitchbcf.device": "Aggiungere Controller BigSwitch BCF",
@@ -142,12 +142,12 @@
"label.add.ip.range": "Aggiungere un IP Range",
"label.add.isolated.network": "Add Isolated Network",
"label.add.ldap.account": "Aggiungi un account LDAP",
-"label.add.list.name": "ACL List Name",
+"label.add.acl.name": "ACL Name",
"label.add.more": "Add More",
"label.add.netscaler.device": "Aggiungere device Netscaler",
"label.add.network": "Aggiungere una Rete",
"label.add.network.acl": "Aggiungere le ACL di rete",
-"label.add.network.acl.list": "Add Network ACL List",
+"label.add.network.acl": "Add Network ACL",
"label.add.network.offering": "Aggiungere offerta di rete",
"label.add.new.gateway": "Aggiungere un nuovo gateway",
"label.add.new.tier": "Aggiungere un nuovo livello",
@@ -334,7 +334,7 @@
"label.default.use": "Default Use",
"label.default.view": "Vista di default",
"label.delete": "Cancellare",
-"label.delete.acl.list": "Delete ACL List",
+"label.delete.acl": "Delete ACL",
"label.delete.affinity.group": "Cancellare Gruppo di Affinit\u00e0",
"label.delete.alerts": "Cancella allarmi",
"label.delete.bigswitchbcf": "Rimuovere Controller BigSwitch BCF",
@@ -419,7 +419,7 @@
"label.dpd": "Dead Peer Detection",
"label.driver": "Driver",
"label.edit": "Modifica",
-"label.edit.acl.list": "Edit ACL List",
+"label.edit.acl": "Edit ACL",
"label.edit.acl.rule": "Edit ACL rule",
"label.edit.project.details": "Modificare i dettagli del progetto",
"label.edit.role": "Edit Role",
@@ -924,7 +924,6 @@
"label.remove.vpc.offering": "Remove VPC offering",
"label.removing": "Rimozione",
"label.replace.acl": "Replace ACL",
-"label.replace.acl.list": "Replace ACL List",
"label.required": "Required",
"label.requireshvm": "HVM",
"label.requiresupgrade": "Requires Upgrade",
@@ -1150,8 +1149,7 @@
"label.usehttps": "Utilizzare HTTPS",
"label.usenewdiskoffering": "Replace disk offering?",
"label.user": "User",
-"label.userdata": "Userdata",
-"label.userdatal2": "User Data",
+"label.user.data": "User Data",
"label.username": "Username",
"label.users": "Users",
"label.utilization": "Utilisation",
@@ -1329,7 +1327,7 @@
"message.confirm.archive.selected.alerts": "Please confirm you would like to archive the selected alerts",
"message.confirm.archive.selected.events": "Please confirm you would like to archive the selected events",
"message.confirm.attach.disk": "Are you sure you want to attach disk?",
-"message.confirm.delete.acl.list": "Are you sure you want to delete this ACL list?",
+"message.confirm.delete.acl": "Are you sure you want to delete this ACL?",
"message.confirm.delete.bigswitchbcf": "Please confirm that you would like to delete this BigSwitch BCF Controller",
"message.confirm.delete.brocadevcs": "Please confirm that you would like to delete Brocade Vcs Switch",
"message.confirm.delete.ciscoasa1000v": "Please confirm you want to delete CiscoASA1000v",
diff --git a/ui/public/locales/ja_JP.json b/ui/public/locales/ja_JP.json
index 8357b9d49a28..3ab374a2a069 100644
--- a/ui/public/locales/ja_JP.json
+++ b/ui/public/locales/ja_JP.json
@@ -58,11 +58,11 @@
"label.access.kubernetes.nodes": "Kubernetesノードに接続",
"label.acl.export": "エクスポートACLs",
"label.acl.id": "ACL ID",
- "label.acl.list.rules": "ACLルールのリスト",
+ "label.acl.rules": "ACLルールのリスト",
"label.acl.reason.description": "ACLルールの理由を入力してください。",
"label.acl.replaced": "ACLが置き換えられました",
"label.aclid": "ACL",
- "label.aclname": "ACL名",
+ "label.acl.rule.name": "ACL名",
"label.acltotal": "ネットワークACL合計",
"label.acquire.new.ip": "新しいIPアドレスの取得",
"label.acquire.new.secondary.ip": "セカンダリIPアドレスの取得",
@@ -298,8 +298,8 @@
"label.add.account": "アカウント追加",
"label.add.accounts": "アカウント追加",
"label.add.accounts.to": "アカウントの追加先:",
- "label.add.acl": "ACL追加",
- "label.add.acl.list": "ACL一覧追加",
+ "label.add.acl.rule": "ACL追加",
+ "label.add.acl": "ACL一覧追加",
"label.add.affinity.group": "新しいアフィニティグループ追加",
"label.add.baremetal.dhcp.device": "ベアメタルDHCPデバイス追加",
"label.add.baremetal.rack.configuration": "ベアメタルラック設定追加",
@@ -333,14 +333,14 @@
"label.add.l2.guest.network": "L2ゲストネットワーク追加",
"label.add.ldap.account": "LDAPアカウント追加",
"label.add.ldap.list.users": "LDAPユーザー一覧",
- "label.add.list.name": "ACL一覧名",
+ "label.add.acl.name": "ACL一覧名",
"label.add.load.balancer": "ロードバランサー追加",
"label.add.management.ip.range": "マネージメントIP範囲追加",
"label.add.more": "その他の項目追加",
"label.add.netscaler.device": "NetScalerデバイス追加",
"label.add.network": "ネットワーク追加",
"label.add.network.acl": "ネットワークACL追加",
- "label.add.network.acl.list": "ネットワークACL一覧追加",
+ "label.add.network.acl": "ネットワークACL一覧追加",
"label.add.network.device": "ネットワークデバイス追加",
"label.add.network.offering": "ネットワークオファリング追加",
"label.add.new.f5": "新しいF5追加",
@@ -718,7 +718,7 @@
"label.default.view": "デフォルトビュー",
"label.defaultnetwork": "デフォルトネットワーク",
"label.delete": "削除",
- "label.delete.acl.list": "ACL一覧削除",
+ "label.delete.acl": "ACL一覧削除",
"label.delete.affinity.group": "アフィニティグループ削除",
"label.delete.alerts": "アラート削除",
"label.delete.backup": "バックアップ削除",
@@ -872,7 +872,7 @@
"label.dynamicscalingenabled": "ダイナミックスケーリング有効",
"label.dynamicscalingenabled.tooltip": "テンプレート、サービスオファリング、およびグローバル設定で動的スケーリングが有効になっている場合にのみ、VMは動的にスケーリングできます。",
"label.edit": "編集",
- "label.edit.acl.list": "ACL一覧編集",
+ "label.edit.acl": "ACL一覧編集",
"label.edit.acl.rule": "ACLルール編集",
"label.edit.affinity.group": "アフィニティグループ編集",
"label.edit.lb.rule": "LBルール編集",
@@ -1498,7 +1498,7 @@
"label.netscaler.vpx": "NetScaler VPXロードバランサー",
"label.network": "ネットワーク",
"label.network.acl": "ネットワークACL",
- "label.network.acl.lists": "ネットワークACL一覧",
+ "label.network.acls": "ネットワークACL一覧",
"label.network.acls": "ネットワークACL",
"label.network.addvm": "VMへのネットワーク追加",
"label.network.desc": "ネットワークの説明",
@@ -1871,7 +1871,6 @@
"label.removing": "削除しています",
"label.removing.user": "ユーザーを削除しています",
"label.replace.acl": "ACLの置き換え",
- "label.replace.acl.list": "ACL一覧の置き換え",
"label.report.bug": "問題レポート",
"label.required": "必須です",
"label.requireshvm": "HVM",
@@ -2321,8 +2320,7 @@
"label.user.details": "ユーザーの詳細",
"label.user.source": "ソース",
"label.user.vm": "ユーザーVM",
- "label.userdata": "ユーザーデータ",
- "label.userdatal2": "ユーザーデータ",
+ "label.user.data": "ユーザーデータ",
"label.username": "ユーザー名",
"label.users": "ユーザー",
"label.usersource": "ユーザータイプ",
@@ -2727,7 +2725,7 @@
"message.confirm.dedicate.host.domain.account": "このホストをドメイン/アカウント専用に設定してもよろしいですか?",
"message.confirm.dedicate.pod.domain.account": "このポッドをドメイン/アカウント専用に設定してもよろしいですか?",
"message.confirm.dedicate.zone": "このゾーンをドメイン/アカウント専用に設定してもよろしいですか?",
- "message.confirm.delete.acl.list": "このACL一覧を削除してもよろしいですか?",
+ "message.confirm.delete.acl": "このACL一覧を削除してもよろしいですか?",
"message.confirm.delete.alert": "このアラートを削除してもよろしいですか?",
"message.confirm.delete.baremetal.rack.configuration": "ベアメタルラック設定を削除してもよろしいですか?",
"message.confirm.delete.bigswitchbcf": "このBigSwitchBCFコントローラーを削除してもよろしいですか?",
diff --git a/ui/public/locales/ko_KR.json b/ui/public/locales/ko_KR.json
index f1fab4b584cf..cc9683633be7 100644
--- a/ui/public/locales/ko_KR.json
+++ b/ui/public/locales/ko_KR.json
@@ -32,10 +32,10 @@
"label.accounttype": "\uacc4\uc815 \uc720\ud615",
"label.acl.export": "ACL \ub0b4\ubcf4\ub0b4\uae30",
"label.acl.id": "ACL ID",
-"label.acl.list.rules": "ACL \ubaa9\ub85d \uaddc\uce59",
+"label.acl.rules": "ACL \ubaa9\ub85d \uaddc\uce59",
"label.acl.reason.description": "ACL \uaddc\uce59 \ub4a4\uc5d0 \uc124\uba85\uc744 \uc785\ub825\ud558\uc2ed\uc2dc\uc624.",
"label.aclid": "ACL",
-"label.aclname": "ACL \uc774\ub984",
+"label.acl.rule.name": "ACL \uc774\ub984",
"label.acquire.new.ip": "\uc0c8 IP \uc8fc\uc18c \uac00\uc838\uc624\uae30",
"label.acquire.new.secondary.ip": "\uc0c8 \ubcf4\uc870 IP \uc8fc\uc18c \uac00\uc838\uc624\uae30",
"label.acquiring.ip": "IP \uac00\uc838\uc624\uae30",
@@ -153,8 +153,8 @@
"label.activeviewersessions": "\ud65c\uc131 \uc138\uc158",
"label.add": "\ucd94\uac00",
"label.add.account": "\uacc4\uc815 \ucd94\uac00",
-"label.add.acl": "\uad8c\ud55c \uad00\ub9ac(ACL) \ucd94\uac00",
-"label.add.acl.list": "ACL \ubaa9\ub85d \ucd94\uac00",
+"label.add.acl.rule": "\uad8c\ud55c \uad00\ub9ac(ACL) \ucd94\uac00",
+"label.add.acl": "ACL \ubaa9\ub85d \ucd94\uac00",
"label.add.affinity.group": "\uc0c8 Affinity \uadf8\ub8f9 \ucd94\uac00",
"label.add.baremetal.dhcp.device": "Baremetal DHCP \uc7a5\uce58 \ucd94\uac00",
"label.add.bigswitchbcf.device": "BigSwitch BCF \ucee8\ud2b8\ub864\ub7ec \ucd94\uac00",
@@ -178,12 +178,12 @@
"label.add.isolated.network": "isolated \ub124\ud2b8\uc6cc\ud06c \ucd94\uac00",
"label.add.kubernetes.cluster": "\ucfe0\ubc84\ub124\ud14c\uc2a4 \ud074\ub7ec\uc2a4\ud130 \ucd94\uac00",
"label.add.ldap.account": "LDAP \uacc4\uc815 \ucd94\uac00",
-"label.add.list.name": "ACL \ubaa9\ub85d \uc774\ub984",
+"label.add.acl.name": "ACL \ubaa9\ub85d \uc774\ub984",
"label.add.more": "\ub2e4\ub978 \ud56d\ubaa9 \ucd94\uac00",
"label.add.netscaler.device": "Netscaler \uc7a5\uce58 \ucd94\uac00",
"label.add.network": "\ub124\ud2b8\uc6cc\ud06c \ucd94\uac00",
"label.add.network.acl": "\ub124\ud2b8\uc6cc\ud06c \uad8c\ud55c \uad00\ub9ac(ACL) \ucd94\uac00",
-"label.add.network.acl.list": "\ub124\ud2b8\uc6cc\ud06c ACL \ubaa9\ub85d \ucd94\uac00",
+"label.add.network.acl": "\ub124\ud2b8\uc6cc\ud06c ACL \ubaa9\ub85d \ucd94\uac00",
"label.add.network.offering": "\ub124\ud2b8\uc6cc\ud06c \uc624\ud37c\ub9c1 \ucd94\uac00",
"label.add.new.gateway": "\uc0c8 \uac8c\uc774\ud2b8\uc6e8\uc774 \ucd94\uac00\ud558\uae30",
"label.add.new.tier": "\uc0c8 \uc11c\ube0c\ub137 \ucd94\uac00",
@@ -436,7 +436,7 @@
"label.default.view": "\uae30\ubcf8 \ubcf4\uae30",
"label.defaultnetwork": "\uae30\ubcf8 \ub124\ud2b8\uc6cc\ud06c",
"label.delete": "\uc0ad\uc81c",
-"label.delete.acl.list": "ACL \ubaa9\ub85d \uc0ad\uc81c",
+"label.delete.acl": "ACL \ubaa9\ub85d \uc0ad\uc81c",
"label.delete.affinity.group": "Affinity \uadf8\ub8f9 \uc0ad\uc81c",
"label.delete.alerts": "\uc54c\ub9bc \uc0ad\uc81c",
"label.delete.backup": "\ubc31\uc5c5 \uc0ad\uc81c",
@@ -549,7 +549,7 @@
"label.dpd": "Dead \ud53c\uc5b4 \uac10\uc9c0",
"label.driver": "\ub4dc\ub77c\uc774\ubc84",
"label.edit": "\ud3b8\uc9d1",
-"label.edit.acl.list": "ACL \ubaa9\ub85d \ud3b8\uc9d1",
+"label.edit.acl": "ACL \ubaa9\ub85d \ud3b8\uc9d1",
"label.edit.acl.rule": "ACL \uaddc\uce59 \ud3b8\uc9d1",
"label.edit.project.details": "\ud504\ub85c\uc81d\ud2b8 \uc0c1\uc138 \ud3b8\uc9d1",
"label.edit.project.role": "\ud504\ub85c\uc81d\ud2b8 \uc5ed\ud560 \ud3b8\uc9d1",
@@ -985,7 +985,7 @@
"label.netscaler.vpx": "NetScaler VPX \ub85c\ub4dc\ubc38\ub7f0\uc11c",
"label.network": "\ub124\ud2b8\uc6cc\ud06c",
"label.network.acl": "\ub124\ud2b8\uc6cc\ud06c \uad8c\ud55c \uad00\ub9ac(ACL)",
-"label.network.acl.lists": "Network ACL \ubaa9\ub85d",
+"label.network.acls": "Network ACL \ubaa9\ub85d",
"label.network.addvm": "VM\uc5d0 \ub124\ud2b8\uc6cc\ud06c \ucd94\uac00",
"label.network.desc": "\ub124\ud2b8\uc6cc\ud06c \uc124\uba85",
"label.network.domain": "\ub124\ud2b8\uc6cc\ud06c \ub3c4\uba54\uc778",
@@ -1251,7 +1251,6 @@
"label.remove.vpc.offering": "VPC \uc624\ud37c\ub9c1 \uc0ad\uc81c",
"label.removing": "\uc0ad\uc81c\ud558\ub294 \uc911...",
"label.replace.acl": "ACL \uad50\uccb4",
-"label.replace.acl.list": "ACL \ubaa9\ub85d \uad50\uccb4",
"label.report.bug": "\uc774\uc288 \ub9ac\ud3ec\ud2b8",
"label.required": "\ud544\uc218 \uc0ac\ud56d",
"label.requireshvm": "HVM",
@@ -1560,8 +1559,7 @@
"label.usenewdiskoffering": "\ub514\uc2a4\ud06c \uc624\ud37c\ub9c1\uc744 \ubcc0\uacbd\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?",
"label.user": "\uc0ac\uc6a9\uc790",
"label.user.conflict": "\ucda9\ub3cc",
-"label.userdata": "\uc0ac\uc6a9\uc790 \ub370\uc774\ud130",
-"label.userdatal2": "\uc0ac\uc6a9\uc790 \ub370\uc774\ud130",
+"label.user.data": "\uc0ac\uc6a9\uc790 \ub370\uc774\ud130",
"label.username": "\uc0ac\uc6a9\uc790 \uc774\ub984",
"label.users": "\uc0ac\uc6a9\uc790",
"label.usersource": "\uc0ac\uc6a9\uc790 \uc720\ud615",
@@ -1818,7 +1816,7 @@
"message.confirm.archive.selected.events": "\uc120\ud0dd\ud55c \uc774\ubca4\ud2b8\ub97c \ubcf4\uad00\ud560 \uac83\uc778\uc9c0 \ud655\uc778\ud558\uc2ed\uc2dc\uc624.",
"message.confirm.attach.disk": "\ub514\uc2a4\ud06c\ub97c \uc5f0\uacb0 \ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?",
"message.confirm.configure.ovs": "Ovs\ub97c \uad6c\uc131\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?",
-"message.confirm.delete.acl.list": "\uc774 ACL \ubaa9\ub85d\uc744 \uc0ad\uc81c \ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?",
+"message.confirm.delete.acl": "\uc774 ACL \ubaa9\ub85d\uc744 \uc0ad\uc81c \ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?",
"message.confirm.delete.bigswitchbcf": "\uc774 BigSwitch BCF \ucee8\ud2b8\ub864\ub7ec\ub97c \uc0ad\uc81c\ud560 \uac83\uc778\uc9c0 \ud655\uc778\ud558\uc2ed\uc2dc\uc624.",
"message.confirm.delete.brocadevcs": "Brocade Vcs \uc2a4\uc704\uce58\ub97c \uc0ad\uc81c\ud560 \uac83\uc778\uc9c0 \ud655\uc778\ud558\uc2ed\uc2dc\uc624.",
"message.confirm.delete.ciscoasa1000v": "CiscoASA1000\uc744 \uc0ad\uc81c\ud560 \uac83\uc778\uc9c0 \ud655\uc778\ud558\uc2ed\uc2dc\uc624.",
diff --git a/ui/public/locales/nb_NO.json b/ui/public/locales/nb_NO.json
index ec51f7415d3a..586d1fc5b259 100644
--- a/ui/public/locales/nb_NO.json
+++ b/ui/public/locales/nb_NO.json
@@ -14,12 +14,12 @@
"label.account.specific": "Kontospesifikk",
"label.accounts": "Kontoer",
"label.accounttype": "Kontotype",
-"label.acl.export": "Export ACLs",
+"label.acl.export": "Export ACL rules",
"label.acl.id": "ACL ID",
-"label.acl.list.rules": "ACL Liste Regler",
+"label.acl.rules": "ACL Liste Regler",
"label.acl.reason.description": "Enter the reason behind an ACL rule.",
"label.aclid": "ACL",
-"label.aclname": "ACL Navn",
+"label.acl.rule.name": "ACL Navn",
"label.acquire.new.ip": "Tilegne ny IP",
"label.acquire.new.secondary.ip": "Tilegne ny sekund\u00e6r IP",
"label.action": "Handling",
@@ -119,8 +119,8 @@
"label.activeviewersessions": "Aktive sesjoner",
"label.add": "Legg til",
"label.add.account": "Legg til konto",
-"label.add.acl": "Legg til ACL",
-"label.add.acl.list": "Legg til ACL liste",
+"label.add.acl.rule": "Legg til ACL",
+"label.add.acl": "Legg til ACL liste",
"label.add.affinity.group": "Legg til affinitetsgruppe",
"label.add.baremetal.dhcp.device": "Legg Til Barmetall DHCP Enhet",
"label.add.bigswitchbcf.device": "Legg til BigSwitch BCF kontroller",
@@ -142,12 +142,12 @@
"label.add.ip.range": "Legg til IP-rekke",
"label.add.isolated.network": "Legg Til Isolert Nettverk",
"label.add.ldap.account": "Legg til LDAP-konto",
-"label.add.list.name": "ACL listenavn",
+"label.add.acl.name": "ACL listenavn",
"label.add.more": "Legg til mer",
"label.add.netscaler.device": "Legg til Netscaler enhet",
"label.add.network": "Legg til nettverk",
"label.add.network.acl": "Legg til nettverk ACL",
-"label.add.network.acl.list": "Legg til nettverk ACL liste",
+"label.add.network.acl": "Legg til nettverk ACL liste",
"label.add.network.offering": "Legg til nettverkstilbud",
"label.add.new.gateway": "Legg til ny gateway",
"label.add.new.tier": "Legg til ny gren",
@@ -334,7 +334,7 @@
"label.default.use": "Standard bruk",
"label.default.view": "Standardvisning",
"label.delete": "Slett",
-"label.delete.acl.list": "Slett ACL liste",
+"label.delete.acl": "Slett ACL liste",
"label.delete.affinity.group": "Slett affinitetsgruppe",
"label.delete.alerts": "Slette varsler",
"label.delete.bigswitchbcf": "Fjern BigSwitch BCF-kontroller",
@@ -419,7 +419,7 @@
"label.dpd": "D\u00f8d endepunkt-deteksjon",
"label.driver": "Driver",
"label.edit": "Editer",
-"label.edit.acl.list": "Edit ACL List",
+"label.edit.acl": "Edit ACL",
"label.edit.acl.rule": "Endre ACL regel",
"label.edit.project.details": "Editer prosjektdetaljer",
"label.edit.role": "Edit Role",
@@ -924,7 +924,6 @@
"label.remove.vpc.offering": "Fjern VPC tilbud",
"label.removing": "Fjerner",
"label.replace.acl": "Erstatt ACL",
-"label.replace.acl.list": "Erstatt ACL Liste",
"label.required": "P\u00e5krevd",
"label.requireshvm": "HVM",
"label.requiresupgrade": "Krever oppgradering",
@@ -1150,8 +1149,7 @@
"label.usehttps": "Bruk HTTPS",
"label.usenewdiskoffering": "Replace disk offering?",
"label.user": "Bruker",
-"label.userdata": "Brukerdata",
-"label.userdatal2": "Brukerdata",
+"label.user.data": "Brukerdata",
"label.username": "Brukernavn",
"label.users": "Brukere",
"label.utilization": "Utilisation",
@@ -1329,7 +1327,7 @@
"message.confirm.archive.selected.alerts": "Vennligst bekreft at du \u00f8nsker \u00e5 arkivere valgte varsler",
"message.confirm.archive.selected.events": "Vennligst bekreft at du vil arkivere valgte hendelser",
"message.confirm.attach.disk": "Er du sikker p\u00e5 at du vil tildele disk?",
-"message.confirm.delete.acl.list": "Er du sikker p\u00e5 at du \u00f8nsker \u00e5 slette denne ACL listen?",
+"message.confirm.delete.acl": "Er du sikker p\u00e5 at du \u00f8nsker \u00e5 slette denne ACL listen?",
"message.confirm.delete.bigswitchbcf": "Vennligst bekreft at du \u00f8nsker \u00e5 slette denne BigSwitch BCF Controlleren?",
"message.confirm.delete.brocadevcs": "Vennligst bekreft at du vil slette denne Brocade Vcs svitsjen",
"message.confirm.delete.ciscoasa1000v": "Vennligst bekreft at du vil slette CiscoASA1000v",
diff --git a/ui/public/locales/nl_NL.json b/ui/public/locales/nl_NL.json
index 6bd1bf671594..15b1bbb13941 100644
--- a/ui/public/locales/nl_NL.json
+++ b/ui/public/locales/nl_NL.json
@@ -14,12 +14,12 @@
"label.account.specific": "Account-specifiek",
"label.accounts": "Accounts",
"label.accounttype": "Account type",
-"label.acl.export": "Export ACLs",
+"label.acl.export": "Export ACL rules",
"label.acl.id": "ACL ID",
-"label.acl.list.rules": "ACL lijst regels",
+"label.acl.rules": "ACL lijst regels",
"label.acl.reason.description": "Enter the reason behind an ACL rule.",
"label.aclid": "ACL",
-"label.aclname": "ACL naam",
+"label.acl.rule.name": "ACL naam",
"label.acquire.new.ip": "Bemachtig nieuw IP",
"label.acquire.new.secondary.ip": "Verkrijg nieuw secundair IP",
"label.action": "Actie",
@@ -119,8 +119,8 @@
"label.activeviewersessions": "Actieve Sessies",
"label.add": "Voeg toe",
"label.add.account": "Voeg Account toe",
-"label.add.acl": "Voeg ACL toe",
-"label.add.acl.list": "voeg een ACL lijst toe",
+"label.add.acl.rule": "Voeg ACL toe",
+"label.add.acl": "voeg een ACL lijst toe",
"label.add.affinity.group": "Nieuwe affinity groep toevoegen",
"label.add.baremetal.dhcp.device": "Voeg Baremetal DHCP Apparaat toe",
"label.add.bigswitchbcf.device": "Voeg eenBigSwitch BCF controller toe",
@@ -142,12 +142,12 @@
"label.add.ip.range": "Voeg IP range toe",
"label.add.isolated.network": "Geisoleerd Netwerk Toevoegen",
"label.add.ldap.account": "Voeg LDAP account toe",
-"label.add.list.name": "ACL lijst naam",
+"label.add.acl.name": "ACL lijst naam",
"label.add.more": "Voeg meer toe",
"label.add.netscaler.device": "Voeg Netscaler apparaat toe",
"label.add.network": "Voeg Netwerk toe",
"label.add.network.acl": "Voeg netwerk ACL toe",
-"label.add.network.acl.list": "voeg netwerk ACL lijst toe",
+"label.add.network.acl": "voeg netwerk ACL lijst toe",
"label.add.network.offering": "Voeg netwerk aanbieding toe",
"label.add.new.gateway": "Voeg nieuwe gateway toe",
"label.add.new.tier": "Voeg nieuwe Tier toe",
@@ -334,7 +334,7 @@
"label.default.use": "Standaard Gebruik",
"label.default.view": "Standaard Weergave",
"label.delete": "Verwijder",
-"label.delete.acl.list": "verwijder ACL lijst",
+"label.delete.acl": "verwijder ACL lijst",
"label.delete.affinity.group": "Verwijder Affinity Groep",
"label.delete.alerts": "Verwijder waarschuwingen",
"label.delete.bigswitchbcf": "Verwijder BigSwitch BCF Controller",
@@ -420,7 +420,7 @@
"label.driver": "Driver",
"label.dynamicscalingenabled": "Dynamisch schalen ingeschakeld\n",
"label.edit": "Wijzig",
-"label.edit.acl.list": "Verander een ACL lijst",
+"label.edit.acl": "Verander een ACL lijst",
"label.edit.acl.rule": "wijzig ACL regel",
"label.edit.project.details": "Wijzig project details",
"label.edit.role": "Edit Role",
@@ -925,7 +925,6 @@
"label.remove.vpc.offering": "VPC aanbieding verwijderen",
"label.removing": "Verwijderen",
"label.replace.acl": "vervang ACL",
-"label.replace.acl.list": "vervang ACL lijst",
"label.required": "Vereist",
"label.requireshvm": "HVM",
"label.requiresupgrade": "Upgrade Benodigd",
@@ -1151,8 +1150,7 @@
"label.usehttps": "Gebruik HTTPS",
"label.usenewdiskoffering": "Replace disk offering?",
"label.user": "Gebruiker",
-"label.userdata": "Gebruikers gegevens",
-"label.userdatal2": "Gebruiker Data",
+"label.user.data": "Gebruiker Data",
"label.username": "Gebruikersnaam",
"label.users": "Gebruikers",
"label.utilization": "Utilisation",
@@ -1330,7 +1328,7 @@
"message.confirm.archive.selected.alerts": "bevestig dat u de geselecteerde meldingen wilt archiveren, alstublieft",
"message.confirm.archive.selected.events": "bevestig dat u de geselecteerde gebeurtenissen wilt archiveren, alstublieft",
"message.confirm.attach.disk": "Weet U zeker dat U een disk wilt koppelen?",
-"message.confirm.delete.acl.list": "Weet U zeker dat U dit ACL wilt verwijderen?",
+"message.confirm.delete.acl": "Weet U zeker dat U dit ACL wilt verwijderen?",
"message.confirm.delete.bigswitchbcf": "bevestig dat u deze BigSwitch BCF Controller wilt verwijderen, alstublieft",
"message.confirm.delete.brocadevcs": "bevestigd dat Brocade Vcs Switch wilt verwijderen, altublieft",
"message.confirm.delete.ciscoasa1000v": "bevestig dat u CiscoASA100v wilt verwijderen, alstublieft",
diff --git a/ui/public/locales/pl.json b/ui/public/locales/pl.json
index 6077da5928e0..fbbbf612bc1d 100644
--- a/ui/public/locales/pl.json
+++ b/ui/public/locales/pl.json
@@ -14,12 +14,12 @@
"label.account.specific": "Account-Specific",
"label.accounts": "Konta",
"label.accounttype": "Account Type",
-"label.acl.export": "Export ACLs",
+"label.acl.export": "Export ACL rules",
"label.acl.id": "ACL ID",
-"label.acl.list.rules": "ACL List Rules",
+"label.acl.rules": "ACL Rules",
"label.acl.reason.description": "Enter the reason behind an ACL rule.",
"label.aclid": "ACL",
-"label.aclname": "ACL Name",
+"label.acl.rule.name": "ACL Name",
"label.acquire.new.ip": "Acquire New IP",
"label.acquire.new.secondary.ip": "Acquire new secondary IP",
"label.action": "Action",
@@ -119,8 +119,8 @@
"label.activeviewersessions": "Active Sessions",
"label.add": "Dodaj",
"label.add.account": "Dodaj konto",
-"label.add.acl": "Dodaj ACL",
-"label.add.acl.list": "Add ACL List",
+"label.add.acl.rule": "Dodaj ACL",
+"label.add.acl": "Add ACL rule List",
"label.add.affinity.group": "Add new affinity group",
"label.add.baremetal.dhcp.device": "Add Baremetal DHCP Device",
"label.add.bigswitchbcf.device": "Add BigSwitch BCF Controller",
@@ -142,12 +142,12 @@
"label.add.ip.range": "Add IP Range",
"label.add.isolated.network": "Add Isolated Network",
"label.add.ldap.account": "Add LDAP account",
-"label.add.list.name": "ACL List Name",
+"label.add.acl.name": "ACL Name",
"label.add.more": "Dodaj wi\u0119cej",
"label.add.netscaler.device": "Add Netscaler device",
"label.add.network": "Dodaj sie\u0107",
"label.add.network.acl": "Add network ACL",
-"label.add.network.acl.list": "Add Network ACL List",
+"label.add.network.acl": "Add Network ACL",
"label.add.network.offering": "Add network offering",
"label.add.new.gateway": "Add new gateway",
"label.add.new.tier": "Add new tier",
@@ -334,7 +334,7 @@
"label.default.use": "Default Use",
"label.default.view": "Widok domy\u015blny",
"label.delete": "Usu\u0144",
-"label.delete.acl.list": "Delete ACL List",
+"label.delete.acl": "Delete ACL",
"label.delete.affinity.group": "Delete Affinity Group",
"label.delete.alerts": "Delete alerts",
"label.delete.bigswitchbcf": "Remove BigSwitch BCF Controller",
@@ -419,7 +419,7 @@
"label.dpd": "Dead Peer Detection",
"label.driver": "Driver",
"label.edit": "Edytuj",
-"label.edit.acl.list": "Edit ACL List",
+"label.edit.acl": "Edit ACL",
"label.edit.acl.rule": "Edit ACL rule",
"label.edit.project.details": "Zmie\u0144 szczeg\u00f3\u0142y projektu",
"label.edit.role": "Edit Role",
@@ -924,7 +924,6 @@
"label.remove.vpc.offering": "Remove VPC offering",
"label.removing": "Usuwanie",
"label.replace.acl": "Replace ACL",
-"label.replace.acl.list": "Replace ACL List",
"label.required": "Wymagane",
"label.requireshvm": "HVM",
"label.requiresupgrade": "Requires Upgrade",
@@ -1150,8 +1149,7 @@
"label.usehttps": "Use HTTPS",
"label.usenewdiskoffering": "Replace disk offering?",
"label.user": "U\u017cytkowni",
-"label.userdata": "Userdata",
-"label.userdatal2": "User Data",
+"label.user.data": "User Data",
"label.username": "Nazwa u\u017cytkownika",
"label.users": "U\u017cytkownicy",
"label.utilization": "Utilisation",
@@ -1329,7 +1327,7 @@
"message.confirm.archive.selected.alerts": "Please confirm you would like to archive the selected alerts",
"message.confirm.archive.selected.events": "Please confirm you would like to archive the selected events",
"message.confirm.attach.disk": "Are you sure you want to attach disk?",
-"message.confirm.delete.acl.list": "Are you sure you want to delete this ACL list?",
+"message.confirm.delete.acl": "Are you sure you want to delete this ACL?",
"message.confirm.delete.bigswitchbcf": "Please confirm that you would like to delete this BigSwitch BCF Controller",
"message.confirm.delete.brocadevcs": "Please confirm that you would like to delete Brocade Vcs Switch",
"message.confirm.delete.ciscoasa1000v": "Please confirm you want to delete CiscoASA1000v",
diff --git a/ui/public/locales/pt_BR.json b/ui/public/locales/pt_BR.json
index 307c7e8a1aea..4d95b341ab40 100644
--- a/ui/public/locales/pt_BR.json
+++ b/ui/public/locales/pt_BR.json
@@ -33,10 +33,10 @@
"label.accounttype": "Tipo de conta",
"label.acl.export": "Exportar ACLs",
"label.acl.id": "ACL ID",
-"label.acl.list.rules": "Lista de regras de ACL",
+"label.acl.rules": "Lista de regras de ACL",
"label.acl.reason.description": "Motivo para se utilizar a regra.",
"label.aclid": "ACL",
-"label.aclname": "Nome da ACL",
+"label.acl.rule.name": "Nome da ACL",
"label.acquire.new.ip": "Adquirir novo IP",
"label.acquire.new.secondary.ip": "Adquira um novo IP secund\u00e1rio",
"label.acquiring.ip": "Obtendo IP",
@@ -168,8 +168,8 @@
"label.activeviewersessions": "Sess\u00f5es ativas",
"label.add": "Adicionar",
"label.add.account": "Adicionar conta",
-"label.add.acl": "Adicionar ACL",
-"label.add.acl.list": "Adiciona lista ACL",
+"label.add.acl.rule": "Adicionar ACL",
+"label.add.acl": "Adiciona lista ACL",
"label.add.affinity.group": "Adicionar um grupo de afinidade",
"label.add.baremetal.dhcp.device": "Adicionar dispositivo DHCP baremetal",
"label.add.bigswitchbcf.device": "Adicionar controlador BigSwitch BCF",
@@ -193,12 +193,12 @@
"label.add.isolated.network": "Adiciona rede isolada",
"label.add.kubernetes.cluster": "Adicionar cluster Kubernetes",
"label.add.ldap.account": "Adicionar conta LDAP",
-"label.add.list.name": "Nome da lista ACL",
+"label.add.acl.name": "Nome da lista ACL",
"label.add.more": "Adicionar mais",
"label.add.netscaler.device": "Adicionar dispositivo Netscaler",
"label.add.network": "Adicionar rede",
"label.add.network.acl": "Adicione ACL de rede",
-"label.add.network.acl.list": "Adicionar lista de ACL de rede",
+"label.add.network.acl": "Adicionar lista de ACL de rede",
"label.add.network.offering": "Adicionar oferta de rede",
"label.add.new.gateway": "Adicionar novo gateway",
"label.add.new.tier": "Adicionar nova camada",
@@ -480,7 +480,7 @@
"label.default.view": "Visualiza\u00e7\u00e3o padr\u00e3o",
"label.defaultnetwork": "Rede padr\u00e3o",
"label.delete": "Remover",
-"label.delete.acl.list": "Apagar lista ACL",
+"label.delete.acl": "Apagar lista ACL",
"label.delete.affinity.group": "Apagar grupo de afinidade",
"label.delete.alerts": "Remover alertas",
"label.delete.backup": "Apagar backup",
@@ -607,7 +607,7 @@
"label.dynamicscalingenabled": "Escalonamento din\u00e2mico habilitado",
"label.dynamicscalingenabled.tooltip": "VM s\u00f3 pode ser dinamicamente escalonada quando o escalonamento din\u00e2mico estiver habilitado no template, oferta de computa\u00e7\u00e3o e nas configura\u00e7\u00e3oes globais",
"label.edit": "Editar",
-"label.edit.acl.list": "Editar lista ACL",
+"label.edit.acl": "Editar lista ACL",
"label.edit.acl.rule": "Editar regra ACL",
"label.edit.project.details": "Editar detalhes do projeto",
"label.edit.project.role": "Editar fun\u00e7\u00e3o do projeto",
@@ -1064,7 +1064,7 @@
"label.netscaler.vpx": "NetScaler VPX LoadBalancer",
"label.network": "Rede",
"label.network.acl": "ACL de rede",
-"label.network.acl.lists": "Lista de redes ACL",
+"label.network.acls": "Lista de redes ACL",
"label.network.addvm": "Adicionar rede para VM",
"label.network.desc": "Descri\u00e7\u00e3o de rede",
"label.network.domain": "Dom\u00ednio de rede",
@@ -1352,7 +1352,6 @@
"label.removed": "Removido",
"label.removing": "Removendo",
"label.replace.acl": "Substituir ACL",
-"label.replace.acl.list": "Substituir lista ACL",
"label.report.bug": "Reportar um problema",
"label.required": "Obrigat\u00f3rio",
"label.requireshvm": "HVM",
@@ -1697,8 +1696,7 @@
"label.usenewdiskoffering": "Substituir a oferta de disco?",
"label.user": "Usu\u00e1rio",
"label.user.conflict": "Conflito",
-"label.userdata": "Dados de usu\u00e1rio",
-"label.userdatal2": "Dados de usu\u00e1rio",
+"label.user.data": "Dados de usu\u00e1rio",
"label.username": "Nome de usu\u00e1rio",
"label.users": "Usu\u00e1rios",
"label.usersource": "Tipo de usu\u00e1rio",
@@ -1974,7 +1972,7 @@
"message.confirm.archive.selected.events": "Por favor confirme que voc\u00ea deseja arquivar os eventos selecionados",
"message.confirm.attach.disk": "Voc\u00ea tem certeza que deseja conectar este disco?",
"message.confirm.configure.ovs": "Voc\u00ea tem certeza de que quer configurar os Ovs?",
-"message.confirm.delete.acl.list": "Voc\u00ea tem certeza que deseja apagar esta lista ACL?",
+"message.confirm.delete.acl": "Voc\u00ea tem certeza que deseja apagar esta lista ACL?",
"message.confirm.delete.bigswitchbcf": "Por favor, confirme que voc\u00ea deseja deletar este controlador BigSwitch BCF",
"message.confirm.delete.brocadevcs": "Por favor confirme que voc\u00ea deseja remover o switch Brocade Vcs",
"message.confirm.delete.ciscoasa1000v": "Favor confirmar que voc\u00ea deseja apagar este CiscoASA1000v",
diff --git a/ui/public/locales/ru_RU.json b/ui/public/locales/ru_RU.json
index 46d70081f1b3..4fb3788bc511 100644
--- a/ui/public/locales/ru_RU.json
+++ b/ui/public/locales/ru_RU.json
@@ -14,12 +14,12 @@
"label.account.specific": "\u0421\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430 \u0430\u043a\u043a\u0430\u0443\u043d\u043d\u0442\u0430",
"label.accounts": "\u0423\u0447\u0451\u0442\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438",
"label.accounttype": "Account Type",
-"label.acl.export": "Export ACLs",
+"label.acl.export": "Export ACL rules",
"label.acl.id": "ACL ID",
-"label.acl.list.rules": "ACL List Rules",
+"label.acl.rules": "ACL Rules",
"label.acl.reason.description": "Enter the reason behind an ACL rule.",
"label.aclid": "ACL",
-"label.aclname": "ACL Name",
+"label.acl.rule.name": "ACL Name",
"label.acquire.new.ip": "\u041f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 IP",
"label.acquire.new.secondary.ip": "\u0417\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 IP-\u0430\u0434\u0440\u0435\u0441",
"label.action": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
@@ -119,8 +119,8 @@
"label.activeviewersessions": "\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u0441\u0435\u0441\u0441\u0438\u0438",
"label.add": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c",
"label.add.account": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0443\u0447\u0435\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c",
-"label.add.acl": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c ACL",
-"label.add.acl.list": "Add ACL List",
+"label.add.acl.rule": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c ACL",
+"label.add.acl": "Add ACL",
"label.add.affinity.group": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u0443\u044e affinity group",
"label.add.baremetal.dhcp.device": "Add Baremetal DHCP Device",
"label.add.bigswitchbcf.device": "Add BigSwitch BCF Controller",
@@ -142,12 +142,12 @@
"label.add.ip.range": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d \u0430\u0434\u0440\u0435\u0441\u043e\u0432",
"label.add.isolated.network": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0438\u0437\u043e\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u0441\u0435\u0442\u044c",
"label.add.ldap.account": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c LDAP \u0430\u043a\u043a\u0430\u0443\u043d\u0442",
-"label.add.list.name": "ACL List Name",
+"label.add.acl.name": "ACL Name",
"label.add.more": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0447\u0442\u043e-\u0442\u043e \u0435\u0449\u0435",
"label.add.netscaler.device": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c Netscaler \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e",
"label.add.network": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0435\u0442\u044c",
"label.add.network.acl": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0435\u0442\u0435\u0432\u0443\u044e ACL",
-"label.add.network.acl.list": "Add Network ACL List",
+"label.add.network.acl": "Add Network ACL",
"label.add.network.offering": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0435\u0442\u0435\u0432\u044b\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u044b",
"label.add.new.gateway": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0448\u043b\u044e\u0437",
"label.add.new.tier": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 Tier",
@@ -334,7 +334,7 @@
"label.default.use": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e",
"label.default.view": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u0432\u0438\u0434",
"label.delete": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c",
-"label.delete.acl.list": "Delete ACL List",
+"label.delete.acl": "Delete ACL",
"label.delete.affinity.group": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c affinity group",
"label.delete.alerts": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0442\u0440\u0435\u0432\u043e\u0433\u0438",
"label.delete.bigswitchbcf": "Remove BigSwitch BCF Controller",
@@ -418,7 +418,7 @@
"label.dpd": "Dead Peer Detection",
"label.driver": "Driver",
"label.edit": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c",
-"label.edit.acl.list": "Edit ACL List",
+"label.edit.acl": "Edit ACL",
"label.edit.acl.rule": "Edit ACL rule",
"label.edit.project.details": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0435\u0442\u0430\u043b\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0430",
"label.edit.role": "Edit Role",
@@ -923,7 +923,6 @@
"label.remove.vpc.offering": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0443\u0441\u043b\u0443\u0433\u0443 VPC",
"label.removing": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435",
"label.replace.acl": "Replace ACL",
-"label.replace.acl.list": "Replace ACL List",
"label.required": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f",
"label.requireshvm": "HVM",
"label.requiresupgrade": "Requires Upgrade",
@@ -1149,8 +1148,7 @@
"label.usehttps": "\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 HTTPS",
"label.usenewdiskoffering": "Replace disk offering?",
"label.user": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c",
-"label.userdata": "Userdata",
-"label.userdatal2": "User Data",
+"label.user.data": "User Data",
"label.username": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
"label.users": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438",
"label.utilization": "Utilisation",
@@ -1328,7 +1326,7 @@
"message.confirm.archive.selected.alerts": "Please confirm you would like to archive the selected alerts",
"message.confirm.archive.selected.events": "Please confirm you would like to archive the selected events",
"message.confirm.attach.disk": "Are you sure you want to attach disk?",
-"message.confirm.delete.acl.list": "Are you sure you want to delete this ACL list?",
+"message.confirm.delete.acl": "Are you sure you want to delete this ACL?",
"message.confirm.delete.bigswitchbcf": "Please confirm that you would like to delete this BigSwitch BCF Controller",
"message.confirm.delete.brocadevcs": "Please confirm that you would like to delete Brocade Vcs Switch",
"message.confirm.delete.ciscoasa1000v": "Please confirm you want to delete CiscoASA1000v",
diff --git a/ui/public/locales/zh_CN.json b/ui/public/locales/zh_CN.json
index fc3a456a8fb4..d09f960edf5d 100644
--- a/ui/public/locales/zh_CN.json
+++ b/ui/public/locales/zh_CN.json
@@ -66,12 +66,12 @@
"label.acl.export": "\u5BFC\u51FA ACL \u89C4\u5219",
"label.acl.id": "ACL \u6807\u8BC6\u7801",
- "label.acl.list.rules": "ACL\u5217\u8868\u7B56\u7565",
+ "label.acl.rules": "ACL\u5217\u8868\u7B56\u7565",
"label.acl.reason.description": "\u8F93\u5165\u5B9A\u4E49 ACL \u7B56\u7565\u7684\u539F\u56E0\u3002",
"label.acl.replaced": "ACL \u5DF2\u66FF\u6362",
"label.aclid": "\u8BBF\u95EE\u63A7\u5236\uFF08ACL\uFF09",
- "label.aclname": "ACL \u540D\u79F0",
+ "label.acl.rule.name": "ACL \u540D\u79F0",
"label.acltotal": "\u7F51\u7EDC ACL \u603B\u6570",
"label.acquire.new.ip": "\u83B7\u53D6\u65B0 IP \u5730\u5740",
"label.acquire.new.secondary.ip": "\u83B7\u53D6\u65B0\u4E8C\u7EA7 IP \u5730\u5740",
@@ -336,8 +336,8 @@
"label.add.account": "\u6DFB\u52A0\u5E10\u6237",
"label.add.accounts": "\u6DFB\u52A0\u5E10\u6237",
"label.add.accounts.to": "\u6DFB\u52A0\u5E10\u6237\u81F3",
- "label.add.acl": "\u6DFB\u52A0 ACL",
- "label.add.acl.list": "\u6DFB\u52A0 ACL \u5217\u8868",
+ "label.add.acl.rule": "\u6DFB\u52A0 ACL",
+ "label.add.acl": "\u6DFB\u52A0 ACL \u5217\u8868",
"label.add.affinity.group": "\u6DFB\u52A0\u65B0\u5173\u8054\u6027\u7EC4",
"label.add.baremetal.dhcp.device": "\u6DFB\u52A0\u88F8\u673A DHCP \u8BBE\u5907",
@@ -381,7 +381,7 @@
"label.add.l2.guest.network": "\u6DFB\u52A0 L2 \u6765\u5BBE\u7F51\u7EDC",
"label.add.ldap.account": "\u6DFB\u52A0 LDAP \u8D26\u6237",
"label.add.ldap.list.users": "\u5217\u51FA LDAP \u7528\u6237",
- "label.add.list.name": "ACL \u5217\u8868\u540D\u79F0",
+ "label.add.acl.name": "ACL \u5217\u8868\u540D\u79F0",
"label.add.load.balancer": "\u6DFB\u52A0\u8D1F\u8F7D\u5747\u8861\u5668",
"label.add.management.ip.range": "\u6DFB\u52A0\u7BA1\u7406 IP \u5730\u5740\u8303\u56F4",
@@ -389,7 +389,7 @@
"label.add.netscaler.device": "\u6DFB\u52A0 Netscaler \u8BBE\u5907",
"label.add.network": "\u6DFB\u52A0\u7F51\u7EDC",
"label.add.network.acl": "\u6DFB\u52A0\u7F51\u7EDC ACL",
- "label.add.network.acl.list": "\u6DFB\u52A0\u7F51\u7EDC ACL \u5217\u8868",
+ "label.add.network.acl": "\u6DFB\u52A0\u7F51\u7EDC ACL \u5217\u8868",
"label.add.network.device": "\u6DFB\u52A0\u7F51\u7EDC\u8BBE\u5907",
"label.add.network.offering": "\u6DFB\u52A0\u7F51\u7EDC\u65B9\u6848",
@@ -829,7 +829,7 @@
"label.defaultnetwork": "\u9ED8\u8BA4\u7F51\u7EDC",
"label.delete": "\u5220\u9664",
- "label.delete.acl.list": "\u5220\u9664 ACL \u5217\u8868",
+ "label.delete.acl": "\u5220\u9664 ACL \u5217\u8868",
"label.delete.affinity.group": "\u5220\u9664\u5173\u8054\u6027\u7EC4",
"label.delete.alerts": "\u5220\u9664\u8B66\u62A5",
"label.delete.backup": "\u5220\u9664\u5907\u4EFD",
@@ -1007,7 +1007,7 @@
"label.computeonly.offering.tooltip": "\u5728\u8BA1\u7B97\u65B9\u6848\u4E2D\u6307\u5B9A\u4E0E\u6839\u78C1\u76D8\u76F8\u5173\u7684\u4FE1\u606F\u6216\u5C06\u78C1\u76D8\u65B9\u6848\u76F4\u63A5\u94FE\u63A5\u5230\u8BA1\u7B97\u65B9\u6848\u7684\u9009\u9879",
"label.edit": "\u7F16\u8F91",
- "label.edit.acl.list": "\u7F16\u8F91 ACL \u5217\u8868",
+ "label.edit.acl": "\u7F16\u8F91 ACL \u5217\u8868",
"label.edit.acl.rule": "\u7F16\u8F91 ACL \u89C4\u5219",
"label.edit.affinity.group": "\u7F16\u8F91\u5173\u8054\u6027\u7EC4",
"label.edit.lb.rule": "\u7F16\u8F91\u8D1F\u8F7D\u5747\u8861\u5668\u89C4\u5219",
@@ -1717,7 +1717,7 @@
"label.netscaler.vpx": "NetScaler VPX \u8D1F\u8F7D\u5747\u8861\u5668",
"label.network": "\u7F51\u7EDC",
"label.network.acl": "\u7F51\u7EDC ACL",
- "label.network.acl.lists": "\u7F51\u7EDC ACL \u5217\u8868",
+ "label.network.acls": "\u7F51\u7EDC ACL \u5217\u8868",
"label.network.acls": "\u7F51\u7EDC ACL",
"label.network.addvm": "\u5C06\u7F51\u7EDC\u6DFB\u52A0\u5230\u865A\u62DF\u673A",
"label.network.desc": "\u7F51\u7EDC\u63CF\u8FF0",
@@ -2136,7 +2136,6 @@
"label.removing.user": "\u6B63\u5728\u5220\u9664\u7528\u6237",
"label.replace.acl": "\u66FF\u6362 ACL",
- "label.replace.acl.list": "\u66FF\u6362 ACL \u5217\u8868",
"label.report.bug": "\u62A5\u544A\u95EE\u9898",
"label.required": "\u5FC5\u586B\u9879",
@@ -2666,8 +2665,7 @@
"label.user.details": "\u7528\u6237\u8BE6\u60C5",
"label.user.source": "\u6765\u6E90",
"label.user.vm": "\u7528\u6237\u865A\u62DF\u673A",
- "label.userdata": "\u7528\u6237\u6570\u636E",
- "label.userdatal2": "\u7528\u6237\u6570\u636E",
+ "label.user.data": "\u7528\u6237\u6570\u636E",
"label.username": "\u7528\u6237\u540D",
"label.users": "\u7528\u6237",
"label.usersource": "\u7528\u6237\u7C7B\u578B",
@@ -3129,7 +3127,7 @@
"message.confirm.dedicate.pod.domain.account": "\u662F\u5426\u786E\u5B9E\u8981\u5C06\u6B64\u63D0\u4F9B\u70B9\u4E13\u7528\u4E8E\u57DF/\u5E10\u6237\uFF1F",
"message.confirm.dedicate.zone": "\u662F\u5426\u8981\u5C06\u6B64\u8D44\u6E90\u57DF\u4E13\u7528\u4E8E\u57DF/\u5E10\u6237\uFF1F",
- "message.confirm.delete.acl.list": "\u662F\u5426\u786E\u5B9E\u8981\u5220\u9664\u6B64 ACL \u5217\u8868\uFF1F",
+ "message.confirm.delete.acl": "\u662F\u5426\u786E\u5B9E\u8981\u5220\u9664\u6B64 ACL \u5217\u8868\uFF1F",
"message.confirm.delete.alert": "\u662F\u5426\u786E\u5B9E\u8981\u5220\u9664\u6B64\u8B66\u62A5\uFF1F",
"message.confirm.delete.baremetal.rack.configuration": "\u8BF7\u786E\u8BA4\u60A8\u786E\u5B9E\u8981\u5220\u9664 Baremetal Rack \u914D\u7F6E",
"message.confirm.delete.bigswitchbcf": "\u8BF7\u786E\u8BA4\u60A8\u786E\u5B9E\u8981\u5220\u9664\u6B64 BigSwitch BCF \u63A7\u5236\u5668",
diff --git a/ui/src/components/view/InfoCard.vue b/ui/src/components/view/InfoCard.vue
index 2ad7b96602f6..959ec7430115 100644
--- a/ui/src/components/view/InfoCard.vue
+++ b/ui/src/components/view/InfoCard.vue
@@ -663,7 +663,7 @@