Unverified Commit 45fb698b authored by bugclerk's avatar bugclerk Committed by GitHub
Browse files

NAS-126852: QA accessibility for new Dragonfish features (#9482)


(cherry picked from commit 9047bef655e60fe015e76524530f80430752de85)
Co-authored-by: default avatarOleksandr Karpov <Karpov4you@gmail.com>
parent 255c3254
Showing with 416 additions and 11 deletions
+416 -11
......@@ -73,6 +73,30 @@ export enum Role {
SupportWrite = 'SUPPORT_WRITE',
SystemAuditRead = 'SYSTEM_AUDIT_READ',
SystemAuditWrite = 'SYSTEM_AUDIT_WRITE',
AppsRead = 'APPS_READ',
AppsWrite = 'APPS_WRITE',
CatalogRead = 'CATALOG_READ',
CatalogWrite = 'CATALOG_WRITE',
CertificateAuthorityRead = 'CERTIFICATE_AUTHORITY_READ',
CertificateAuthorityWrite = 'CERTIFICATE_AUTHORITY_WRITE',
CertificateRead = 'CERTIFICATE_READ',
CertificateWrite = 'CERTIFICATE_WRITE',
ContainerRead = 'CONTAINER_READ',
ContainerWrite = 'CONTAINER_WRITE',
FailoverRead = 'FAILOVER_READ',
FailoverWrite = 'FAILOVER_WRITE',
IpmiRead = 'IPMI_READ',
IpmiWrite = 'IPMI_WRITE',
JbofRead = 'JBOF_READ',
JbofWrite = 'JBOF_WRITE',
KubernetesRead = 'KUBERNETES_READ',
KubernetesWrite = 'KUBERNETES_WRITE',
PoolScrubRead = 'POOL_SCRUB_READ',
PoolScrubWrite = 'POOL_SCRUB_WRITE',
VmDeviceRead = 'VM_DEVICE_READ',
VmDeviceWrite = 'VM_DEVICE_WRITE',
VmRead = 'VM_READ',
VmWrite = 'VM_WRITE',
}
export const roleNames = new Map<Role, string>([
......@@ -151,4 +175,28 @@ export const roleNames = new Map<Role, string>([
[Role.SupportWrite, T('Support Write')],
[Role.SystemAuditRead, T('System Audit Read')],
[Role.SystemAuditWrite, T('System Audit Write')],
[Role.AppsRead, T('Apps Read')],
[Role.AppsWrite, T('Apps Write')],
[Role.CatalogRead, T('Catalog Read')],
[Role.CatalogWrite, T('Catalog Write')],
[Role.CertificateAuthorityRead, T('Certificate Authority Read')],
[Role.CertificateAuthorityWrite, T('Certificate Authority Write')],
[Role.CertificateRead, T('Certificate Read')],
[Role.CertificateWrite, T('Certificate Write')],
[Role.ContainerRead, T('Container Read')],
[Role.ContainerWrite, T('Container Write')],
[Role.FailoverRead, T('Failover Read')],
[Role.FailoverWrite, T('Failover Write')],
[Role.IpmiRead, T('IPMI Read')],
[Role.IpmiWrite, T('IPMI Write')],
[Role.JbofRead, T('JBOF Read')],
[Role.JbofWrite, T('JBOF Write')],
[Role.KubernetesRead, T('Kubernetes Read')],
[Role.KubernetesWrite, T('Kubernetes Write')],
[Role.PoolScrubRead, T('Pool Scrub Read')],
[Role.PoolScrubWrite, T('Pool Scrub Write')],
[Role.VmDeviceRead, T('VM Device Read')],
[Role.VmDeviceWrite, T('VM Device Write')],
[Role.VmRead, T('VM Read')],
[Role.VmWrite, T('VM Write')],
]);
<ng-container *ngFor="let row of dataProvider.currentPage$ | async">
<tr
class="row"
tabindex="0"
[ixTest]="getTestAttr(row)"
[ngStyle]="{ cursor: detailsTemplate ? 'pointer' : null }"
[class.expanded]="isExpanded(row)"
[class.hidden]="isLoading"
(click)="onToggle(row)"
(keydown.enter)="onToggle(row)"
>
<td
*ngFor="let column of displayedColumns; index as idx"
......
......@@ -7,10 +7,15 @@
}
.row {
border-top: solid 1px var(--contrast-lighter);
border-top: solid 1px var(--lines);
height: 48px;
position: relative;
&:focus {
box-shadow: 0 0 0 1px var(--focus-bg) inset;
outline-width: 0;
}
td {
box-sizing: border-box;
font-size: 14px;
......
<div class="paginator">
<div class="page-size">
<span>{{ 'Items per page' | translate }}:</span>
<mat-select ixTest="pageSize" [value]="pageSize" (selectionChange)="onPageSizeChange($event)">
<mat-option *ngFor="let option of pageSizeOptions" [value]="option" [ixTest]="['pageSizeOption', option]">
{{ option }}
</mat-option>
</mat-select>
<mat-form-field>
<mat-select ixTest="pageSize" tabIndex="0" [value]="pageSize" (selectionChange)="onPageSizeChange($event)">
<mat-option *ngFor="let option of pageSizeOptions" [value]="option" [ixTest]="['pageSizeOption', option]">
{{ option }}
</mat-option>
</mat-select>
</mat-form-field>
</div>
<span class="pages">
<ng-container *ngIf="lastPage > firstPage">
......
:host ::ng-deep {
.mat-mdc-form-field-infix {
width: inherit;
}
}
.paginator {
align-items: center;
background: var(--bg2);
......
......@@ -145,17 +145,35 @@
<div class="label">{{ 'Actions' | translate }}</div>
</div>
<div class="details-item">
<a class="action" ixTest="cloud-sync" (click)="addCloudSyncTask()">
<a
class="action"
tabIndex="0"
ixTest="cloud-sync"
(click)="addCloudSyncTask()"
(keydown.enter)="addCloudSyncTask()"
>
{{ 'Cloud Sync to Storj or similar provider' | translate }}
</a>
</div>
<div class="details-item">
<a class="action" ixTest="replication" (click)="addReplicationTask()">
<a
class="action"
tabIndex="0"
ixTest="replication"
(click)="addReplicationTask()"
(keydown.enter)="addReplicationTask()"
>
{{ 'ZFS Replication to another TrueNAS' | translate }}
</a>
</div>
<div class="details-item">
<a class="action" ixTest="rsync" (click)="addRsyncTask()">
<a
class="action"
tabIndex="0"
ixTest="rsync"
(click)="addRsyncTask()"
(keydown.enter)="addRsyncTask()"
>
{{ 'Rsync to another server' | translate }}
</a>
</div>
......
......@@ -77,12 +77,24 @@
<div class="details-item">
<ix-icon class="icon" name="share"></ix-icon>
<div class="label">{{ 'Not Shared' | translate }}</div>
<a class="action" ixTest="create-smb-share" (click)="createSmbShare()">
<a
class="action"
tabindex="0"
ixTest="create-smb-share"
(click)="createSmbShare()"
(keydown.enter)="createSmbShare()"
>
{{ 'Create SMB Share' | translate }}
</a>
</div>
<div class="details-item">
<a class="action" ixTest="create-nfs-share" (click)="createNfsShare()">
<a
class="action"
tabindex="0"
ixTest="create-nfs-share"
(click)="createNfsShare()"
(keydown.enter)="createNfsShare()"
>
{{ 'Create NFS Share' | translate }}
</a>
</div>
......
......@@ -399,10 +399,12 @@
"Apply the same quota warning alert settings as the parent dataset.": "",
"Apply updates and reboot system after downloading.": "",
"Apps": "",
"Apps Read": "",
"Apps Service Not Configured": "",
"Apps Service Pending": "",
"Apps Service Running": "",
"Apps Service Stopped": "",
"Apps Write": "",
"Apr": "",
"Archive": "",
"Are you sure you want to abort the <b>{task}</b> task?": "",
......@@ -631,7 +633,9 @@
"Case Sensitivity": "",
"Catalog": "",
"Catalog Name": "",
"Catalog Read": "",
"Catalog URL": "",
"Catalog Write": "",
"Catalog deleted": "",
"Catalog is being added. This may take some time. You can minimize this dialog and process will continue in background": "",
"Catalogs": "",
......@@ -643,10 +647,14 @@
"Certificate Authorities": "",
"Certificate Authority": "",
"Certificate Authority (CA) to use for connecting to the key server. A valid CA public certificate is required to authenticate the connection. WARNING: for security reasons, please protect the Certificate Authority used for key server authentication.": "",
"Certificate Authority Read": "",
"Certificate Authority Write": "",
"Certificate Options": "",
"Certificate Read": "",
"Certificate Signing Request": "",
"Certificate Signing Requests": "",
"Certificate Subject": "",
"Certificate Write": "",
"Certificate authority created": "",
"Certificate has been created.": "",
"Certificate request signed": "",
......@@ -846,6 +854,8 @@
"Container": "",
"Container Images": "",
"Container Name": "",
"Container Read": "",
"Container Write": "",
"Containers": "",
"Content Commitment": "",
"Contents of the uploaded Service Account JSON file.": "",
......@@ -1606,6 +1616,8 @@
"Failover": "",
"Failover Configuration": "",
"Failover Group": "",
"Failover Read": "",
"Failover Write": "",
"Failover is administratively disabled.": "",
"Failover is in an error state.": "",
"Faulted": "",
......@@ -1866,6 +1878,8 @@
"IPMI Configuration": "",
"IPMI Events": "",
"IPMI Password Reset": "",
"IPMI Read": "",
"IPMI Write": "",
"IPv4": "",
"IPv4 Address": "",
"IPv4 Default Gateway": "",
......@@ -2013,6 +2027,8 @@
"Items Delete Failed": "",
"Items deleted": "",
"Items per page": "",
"JBOF Read": "",
"JBOF Write": "",
"Jan": "",
"Job {job} Completed Successfully": "",
"Job {method} Failed": "",
......@@ -2056,7 +2072,9 @@
"Keys for {id} datasets": "",
"Keys pending to be synced between KMIP server and TN database were cleared.": "",
"Keywords": "",
"Kubernetes Read": "",
"Kubernetes Settings": "",
"Kubernetes Write": "",
"LACPDU Rate": "",
"LDAP": "",
"LDAP - Primary Domain": "",
......@@ -2712,6 +2730,8 @@
"Pool Disks have {alerts} alerts and {smartTests} failed S.M.A.R.T. tests": "",
"Pool Name": "",
"Pool Options for {pool}": "",
"Pool Scrub Read": "",
"Pool Scrub Write": "",
"Pool Status": "",
"Pool contains {status} Data VDEVs": "",
"Pool created successfully": "",
......@@ -4204,7 +4224,11 @@
"VLAN interface": "",
"VLANs": "",
"VM": "",
"VM Device Read": "",
"VM Device Write": "",
"VM Read": "",
"VM Serial Shell": "",
"VM Write": "",
"VM system time. Default is <i>Local</i>.": "",
"VM updated successfully.": "",
"VMWare Sync": "",
......
......@@ -399,10 +399,12 @@
"Apply the same quota warning alert settings as the parent dataset.": "",
"Apply updates and reboot system after downloading.": "",
"Apps": "",
"Apps Read": "",
"Apps Service Not Configured": "",
"Apps Service Pending": "",
"Apps Service Running": "",
"Apps Service Stopped": "",
"Apps Write": "",
"Apr": "",
"Archive": "",
"Are you sure you want to abort the <b>{task}</b> task?": "",
......@@ -631,7 +633,9 @@
"Case Sensitivity": "",
"Catalog": "",
"Catalog Name": "",
"Catalog Read": "",
"Catalog URL": "",
"Catalog Write": "",
"Catalog deleted": "",
"Catalog is being added. This may take some time. You can minimize this dialog and process will continue in background": "",
"Catalogs": "",
......@@ -643,10 +647,14 @@
"Certificate Authorities": "",
"Certificate Authority": "",
"Certificate Authority (CA) to use for connecting to the key server. A valid CA public certificate is required to authenticate the connection. WARNING: for security reasons, please protect the Certificate Authority used for key server authentication.": "",
"Certificate Authority Read": "",
"Certificate Authority Write": "",
"Certificate Options": "",
"Certificate Read": "",
"Certificate Signing Request": "",
"Certificate Signing Requests": "",
"Certificate Subject": "",
"Certificate Write": "",
"Certificate authority created": "",
"Certificate has been created.": "",
"Certificate request signed": "",
......@@ -846,6 +854,8 @@
"Container": "",
"Container Images": "",
"Container Name": "",
"Container Read": "",
"Container Write": "",
"Containers": "",
"Content Commitment": "",
"Contents of the uploaded Service Account JSON file.": "",
......@@ -1606,6 +1616,8 @@
"Failover": "",
"Failover Configuration": "",
"Failover Group": "",
"Failover Read": "",
"Failover Write": "",
"Failover is administratively disabled.": "",
"Failover is in an error state.": "",
"Faulted": "",
......@@ -1866,6 +1878,8 @@
"IPMI Configuration": "",
"IPMI Events": "",
"IPMI Password Reset": "",
"IPMI Read": "",
"IPMI Write": "",
"IPv4": "",
"IPv4 Address": "",
"IPv4 Default Gateway": "",
......@@ -2013,6 +2027,8 @@
"Items Delete Failed": "",
"Items deleted": "",
"Items per page": "",
"JBOF Read": "",
"JBOF Write": "",
"Jan": "",
"Job {job} Completed Successfully": "",
"Job {method} Failed": "",
......@@ -2056,7 +2072,9 @@
"Keys for {id} datasets": "",
"Keys pending to be synced between KMIP server and TN database were cleared.": "",
"Keywords": "",
"Kubernetes Read": "",
"Kubernetes Settings": "",
"Kubernetes Write": "",
"LACPDU Rate": "",
"LDAP": "",
"LDAP - Primary Domain": "",
......@@ -2712,6 +2730,8 @@
"Pool Disks have {alerts} alerts and {smartTests} failed S.M.A.R.T. tests": "",
"Pool Name": "",
"Pool Options for {pool}": "",
"Pool Scrub Read": "",
"Pool Scrub Write": "",
"Pool Status": "",
"Pool contains {status} Data VDEVs": "",
"Pool created successfully": "",
......@@ -4204,7 +4224,11 @@
"VLAN interface": "",
"VLANs": "",
"VM": "",
"VM Device Read": "",
"VM Device Write": "",
"VM Read": "",
"VM Serial Shell": "",
"VM Write": "",
"VM system time. Default is <i>Local</i>.": "",
"VM updated successfully.": "",
"VMWare Sync": "",
......
......@@ -399,10 +399,12 @@
"Apply the same quota warning alert settings as the parent dataset.": "",
"Apply updates and reboot system after downloading.": "",
"Apps": "",
"Apps Read": "",
"Apps Service Not Configured": "",
"Apps Service Pending": "",
"Apps Service Running": "",
"Apps Service Stopped": "",
"Apps Write": "",
"Apr": "",
"Archive": "",
"Are you sure you want to abort the <b>{task}</b> task?": "",
......@@ -631,7 +633,9 @@
"Case Sensitivity": "",
"Catalog": "",
"Catalog Name": "",
"Catalog Read": "",
"Catalog URL": "",
"Catalog Write": "",
"Catalog deleted": "",
"Catalog is being added. This may take some time. You can minimize this dialog and process will continue in background": "",
"Catalogs": "",
......@@ -643,10 +647,14 @@
"Certificate Authorities": "",
"Certificate Authority": "",
"Certificate Authority (CA) to use for connecting to the key server. A valid CA public certificate is required to authenticate the connection. WARNING: for security reasons, please protect the Certificate Authority used for key server authentication.": "",
"Certificate Authority Read": "",
"Certificate Authority Write": "",
"Certificate Options": "",
"Certificate Read": "",
"Certificate Signing Request": "",
"Certificate Signing Requests": "",
"Certificate Subject": "",
"Certificate Write": "",
"Certificate authority created": "",
"Certificate has been created.": "",
"Certificate request signed": "",
......@@ -846,6 +854,8 @@
"Container": "",
"Container Images": "",
"Container Name": "",
"Container Read": "",
"Container Write": "",
"Containers": "",
"Content Commitment": "",
"Contents of the uploaded Service Account JSON file.": "",
......@@ -1606,6 +1616,8 @@
"Failover": "",
"Failover Configuration": "",
"Failover Group": "",
"Failover Read": "",
"Failover Write": "",
"Failover is administratively disabled.": "",
"Failover is in an error state.": "",
"Faulted": "",
......@@ -1866,6 +1878,8 @@
"IPMI Configuration": "",
"IPMI Events": "",
"IPMI Password Reset": "",
"IPMI Read": "",
"IPMI Write": "",
"IPv4": "",
"IPv4 Address": "",
"IPv4 Default Gateway": "",
......@@ -2013,6 +2027,8 @@
"Items Delete Failed": "",
"Items deleted": "",
"Items per page": "",
"JBOF Read": "",
"JBOF Write": "",
"Jan": "",
"Job {job} Completed Successfully": "",
"Job {method} Failed": "",
......@@ -2056,7 +2072,9 @@
"Keys for {id} datasets": "",
"Keys pending to be synced between KMIP server and TN database were cleared.": "",
"Keywords": "",
"Kubernetes Read": "",
"Kubernetes Settings": "",
"Kubernetes Write": "",
"LACPDU Rate": "",
"LDAP": "",
"LDAP - Primary Domain": "",
......@@ -2712,6 +2730,8 @@
"Pool Disks have {alerts} alerts and {smartTests} failed S.M.A.R.T. tests": "",
"Pool Name": "",
"Pool Options for {pool}": "",
"Pool Scrub Read": "",
"Pool Scrub Write": "",
"Pool Status": "",
"Pool contains {status} Data VDEVs": "",
"Pool created successfully": "",
......@@ -4204,7 +4224,11 @@
"VLAN interface": "",
"VLANs": "",
"VM": "",
"VM Device Read": "",
"VM Device Write": "",
"VM Read": "",
"VM Serial Shell": "",
"VM Write": "",
"VM system time. Default is <i>Local</i>.": "",
"VM updated successfully.": "",
"VMWare Sync": "",
......
......@@ -399,10 +399,12 @@
"Apply the same quota warning alert settings as the parent dataset.": "",
"Apply updates and reboot system after downloading.": "",
"Apps": "",
"Apps Read": "",
"Apps Service Not Configured": "",
"Apps Service Pending": "",
"Apps Service Running": "",
"Apps Service Stopped": "",
"Apps Write": "",
"Apr": "",
"Archive": "",
"Are you sure you want to abort the <b>{task}</b> task?": "",
......@@ -631,7 +633,9 @@
"Case Sensitivity": "",
"Catalog": "",
"Catalog Name": "",
"Catalog Read": "",
"Catalog URL": "",
"Catalog Write": "",
"Catalog deleted": "",
"Catalog is being added. This may take some time. You can minimize this dialog and process will continue in background": "",
"Catalogs": "",
......@@ -643,10 +647,14 @@
"Certificate Authorities": "",
"Certificate Authority": "",
"Certificate Authority (CA) to use for connecting to the key server. A valid CA public certificate is required to authenticate the connection. WARNING: for security reasons, please protect the Certificate Authority used for key server authentication.": "",
"Certificate Authority Read": "",
"Certificate Authority Write": "",
"Certificate Options": "",
"Certificate Read": "",
"Certificate Signing Request": "",
"Certificate Signing Requests": "",
"Certificate Subject": "",
"Certificate Write": "",
"Certificate authority created": "",
"Certificate has been created.": "",
"Certificate request signed": "",
......@@ -846,6 +854,8 @@
"Container": "",
"Container Images": "",
"Container Name": "",
"Container Read": "",
"Container Write": "",
"Containers": "",
"Content Commitment": "",
"Contents of the uploaded Service Account JSON file.": "",
......@@ -1606,6 +1616,8 @@
"Failover": "",
"Failover Configuration": "",
"Failover Group": "",
"Failover Read": "",
"Failover Write": "",
"Failover is administratively disabled.": "",
"Failover is in an error state.": "",
"Faulted": "",
......@@ -1866,6 +1878,8 @@
"IPMI Configuration": "",
"IPMI Events": "",
"IPMI Password Reset": "",
"IPMI Read": "",
"IPMI Write": "",
"IPv4": "",
"IPv4 Address": "",
"IPv4 Default Gateway": "",
......@@ -2013,6 +2027,8 @@
"Items Delete Failed": "",
"Items deleted": "",
"Items per page": "",
"JBOF Read": "",
"JBOF Write": "",
"Jan": "",
"Job {job} Completed Successfully": "",
"Job {method} Failed": "",
......@@ -2056,7 +2072,9 @@
"Keys for {id} datasets": "",
"Keys pending to be synced between KMIP server and TN database were cleared.": "",
"Keywords": "",
"Kubernetes Read": "",
"Kubernetes Settings": "",
"Kubernetes Write": "",
"LACPDU Rate": "",
"LDAP": "",
"LDAP - Primary Domain": "",
......@@ -2712,6 +2730,8 @@
"Pool Disks have {alerts} alerts and {smartTests} failed S.M.A.R.T. tests": "",
"Pool Name": "",
"Pool Options for {pool}": "",
"Pool Scrub Read": "",
"Pool Scrub Write": "",
"Pool Status": "",
"Pool contains {status} Data VDEVs": "",
"Pool created successfully": "",
......@@ -4204,7 +4224,11 @@
"VLAN interface": "",
"VLANs": "",
"VM": "",
"VM Device Read": "",
"VM Device Write": "",
"VM Read": "",
"VM Serial Shell": "",
"VM Write": "",
"VM system time. Default is <i>Local</i>.": "",
"VM updated successfully.": "",
"VMWare Sync": "",
......
......@@ -399,10 +399,12 @@
"Apply the same quota warning alert settings as the parent dataset.": "",
"Apply updates and reboot system after downloading.": "",
"Apps": "",
"Apps Read": "",
"Apps Service Not Configured": "",
"Apps Service Pending": "",
"Apps Service Running": "",
"Apps Service Stopped": "",
"Apps Write": "",
"Apr": "",
"Archive": "",
"Are you sure you want to abort the <b>{task}</b> task?": "",
......@@ -631,7 +633,9 @@
"Case Sensitivity": "",
"Catalog": "",
"Catalog Name": "",
"Catalog Read": "",
"Catalog URL": "",
"Catalog Write": "",
"Catalog deleted": "",
"Catalog is being added. This may take some time. You can minimize this dialog and process will continue in background": "",
"Catalogs": "",
......@@ -643,10 +647,14 @@
"Certificate Authorities": "",
"Certificate Authority": "",
"Certificate Authority (CA) to use for connecting to the key server. A valid CA public certificate is required to authenticate the connection. WARNING: for security reasons, please protect the Certificate Authority used for key server authentication.": "",
"Certificate Authority Read": "",
"Certificate Authority Write": "",
"Certificate Options": "",
"Certificate Read": "",
"Certificate Signing Request": "",
"Certificate Signing Requests": "",
"Certificate Subject": "",
"Certificate Write": "",
"Certificate authority created": "",
"Certificate has been created.": "",
"Certificate request signed": "",
......@@ -846,6 +854,8 @@
"Container": "",
"Container Images": "",
"Container Name": "",
"Container Read": "",
"Container Write": "",
"Containers": "",
"Content Commitment": "",
"Contents of the uploaded Service Account JSON file.": "",
......@@ -1606,6 +1616,8 @@
"Failover": "",
"Failover Configuration": "",
"Failover Group": "",
"Failover Read": "",
"Failover Write": "",
"Failover is administratively disabled.": "",
"Failover is in an error state.": "",
"Faulted": "",
......@@ -1866,6 +1878,8 @@
"IPMI Configuration": "",
"IPMI Events": "",
"IPMI Password Reset": "",
"IPMI Read": "",
"IPMI Write": "",
"IPv4": "",
"IPv4 Address": "",
"IPv4 Default Gateway": "",
......@@ -2013,6 +2027,8 @@
"Items Delete Failed": "",
"Items deleted": "",
"Items per page": "",
"JBOF Read": "",
"JBOF Write": "",
"Jan": "",
"Job {job} Completed Successfully": "",
"Job {method} Failed": "",
......@@ -2056,7 +2072,9 @@
"Keys for {id} datasets": "",
"Keys pending to be synced between KMIP server and TN database were cleared.": "",
"Keywords": "",
"Kubernetes Read": "",
"Kubernetes Settings": "",
"Kubernetes Write": "",
"LACPDU Rate": "",
"LDAP": "",
"LDAP - Primary Domain": "",
......@@ -2712,6 +2730,8 @@
"Pool Disks have {alerts} alerts and {smartTests} failed S.M.A.R.T. tests": "",
"Pool Name": "",
"Pool Options for {pool}": "",
"Pool Scrub Read": "",
"Pool Scrub Write": "",
"Pool Status": "",
"Pool contains {status} Data VDEVs": "",
"Pool created successfully": "",
......@@ -4204,7 +4224,11 @@
"VLAN interface": "",
"VLANs": "",
"VM": "",
"VM Device Read": "",
"VM Device Write": "",
"VM Read": "",
"VM Serial Shell": "",
"VM Write": "",
"VM system time. Default is <i>Local</i>.": "",
"VM updated successfully.": "",
"VMWare Sync": "",
......
......@@ -399,10 +399,12 @@
"Apply the same quota warning alert settings as the parent dataset.": "",
"Apply updates and reboot system after downloading.": "",
"Apps": "",
"Apps Read": "",
"Apps Service Not Configured": "",
"Apps Service Pending": "",
"Apps Service Running": "",
"Apps Service Stopped": "",
"Apps Write": "",
"Apr": "",
"Archive": "",
"Are you sure you want to abort the <b>{task}</b> task?": "",
......@@ -631,7 +633,9 @@
"Case Sensitivity": "",
"Catalog": "",
"Catalog Name": "",
"Catalog Read": "",
"Catalog URL": "",
"Catalog Write": "",
"Catalog deleted": "",
"Catalog is being added. This may take some time. You can minimize this dialog and process will continue in background": "",
"Catalogs": "",
......@@ -643,10 +647,14 @@
"Certificate Authorities": "",
"Certificate Authority": "",
"Certificate Authority (CA) to use for connecting to the key server. A valid CA public certificate is required to authenticate the connection. WARNING: for security reasons, please protect the Certificate Authority used for key server authentication.": "",
"Certificate Authority Read": "",
"Certificate Authority Write": "",
"Certificate Options": "",
"Certificate Read": "",
"Certificate Signing Request": "",
"Certificate Signing Requests": "",
"Certificate Subject": "",
"Certificate Write": "",
"Certificate authority created": "",
"Certificate has been created.": "",
"Certificate request signed": "",
......@@ -846,6 +854,8 @@
"Container": "",
"Container Images": "",
"Container Name": "",
"Container Read": "",
"Container Write": "",
"Containers": "",
"Content Commitment": "",
"Contents of the uploaded Service Account JSON file.": "",
......@@ -1606,6 +1616,8 @@
"Failover": "",
"Failover Configuration": "",
"Failover Group": "",
"Failover Read": "",
"Failover Write": "",
"Failover is administratively disabled.": "",
"Failover is in an error state.": "",
"Faulted": "",
......@@ -1866,6 +1878,8 @@
"IPMI Configuration": "",
"IPMI Events": "",
"IPMI Password Reset": "",
"IPMI Read": "",
"IPMI Write": "",
"IPv4": "",
"IPv4 Address": "",
"IPv4 Default Gateway": "",
......@@ -2013,6 +2027,8 @@
"Items Delete Failed": "",
"Items deleted": "",
"Items per page": "",
"JBOF Read": "",
"JBOF Write": "",
"Jan": "",
"Job {job} Completed Successfully": "",
"Job {method} Failed": "",
......@@ -2056,7 +2072,9 @@
"Keys for {id} datasets": "",
"Keys pending to be synced between KMIP server and TN database were cleared.": "",
"Keywords": "",
"Kubernetes Read": "",
"Kubernetes Settings": "",
"Kubernetes Write": "",
"LACPDU Rate": "",
"LDAP": "",
"LDAP - Primary Domain": "",
......@@ -2712,6 +2730,8 @@
"Pool Disks have {alerts} alerts and {smartTests} failed S.M.A.R.T. tests": "",
"Pool Name": "",
"Pool Options for {pool}": "",
"Pool Scrub Read": "",
"Pool Scrub Write": "",
"Pool Status": "",
"Pool contains {status} Data VDEVs": "",
"Pool created successfully": "",
......@@ -4204,7 +4224,11 @@
"VLAN interface": "",
"VLANs": "",
"VM": "",
"VM Device Read": "",
"VM Device Write": "",
"VM Read": "",
"VM Serial Shell": "",
"VM Write": "",
"VM system time. Default is <i>Local</i>.": "",
"VM updated successfully.": "",
"VMWare Sync": "",
......
......@@ -399,10 +399,12 @@
"Apply the same quota warning alert settings as the parent dataset.": "",
"Apply updates and reboot system after downloading.": "",
"Apps": "",
"Apps Read": "",
"Apps Service Not Configured": "",
"Apps Service Pending": "",
"Apps Service Running": "",
"Apps Service Stopped": "",
"Apps Write": "",
"Apr": "",
"Archive": "",
"Are you sure you want to abort the <b>{task}</b> task?": "",
......@@ -631,7 +633,9 @@
"Case Sensitivity": "",
"Catalog": "",
"Catalog Name": "",
"Catalog Read": "",
"Catalog URL": "",
"Catalog Write": "",
"Catalog deleted": "",
"Catalog is being added. This may take some time. You can minimize this dialog and process will continue in background": "",
"Catalogs": "",
......@@ -643,10 +647,14 @@
"Certificate Authorities": "",
"Certificate Authority": "",
"Certificate Authority (CA) to use for connecting to the key server. A valid CA public certificate is required to authenticate the connection. WARNING: for security reasons, please protect the Certificate Authority used for key server authentication.": "",
"Certificate Authority Read": "",
"Certificate Authority Write": "",
"Certificate Options": "",
"Certificate Read": "",
"Certificate Signing Request": "",
"Certificate Signing Requests": "",
"Certificate Subject": "",
"Certificate Write": "",
"Certificate authority created": "",
"Certificate has been created.": "",
"Certificate request signed": "",
......@@ -846,6 +854,8 @@
"Container": "",
"Container Images": "",
"Container Name": "",
"Container Read": "",
"Container Write": "",
"Containers": "",
"Content Commitment": "",
"Contents of the uploaded Service Account JSON file.": "",
......@@ -1606,6 +1616,8 @@
"Failover": "",
"Failover Configuration": "",
"Failover Group": "",
"Failover Read": "",
"Failover Write": "",
"Failover is administratively disabled.": "",
"Failover is in an error state.": "",
"Faulted": "",
......@@ -1866,6 +1878,8 @@
"IPMI Configuration": "",
"IPMI Events": "",
"IPMI Password Reset": "",
"IPMI Read": "",
"IPMI Write": "",
"IPv4": "",
"IPv4 Address": "",
"IPv4 Default Gateway": "",
......@@ -2013,6 +2027,8 @@
"Items Delete Failed": "",
"Items deleted": "",
"Items per page": "",
"JBOF Read": "",
"JBOF Write": "",
"Jan": "",
"Job {job} Completed Successfully": "",
"Job {method} Failed": "",
......@@ -2056,7 +2072,9 @@
"Keys for {id} datasets": "",
"Keys pending to be synced between KMIP server and TN database were cleared.": "",
"Keywords": "",
"Kubernetes Read": "",
"Kubernetes Settings": "",
"Kubernetes Write": "",
"LACPDU Rate": "",
"LDAP": "",
"LDAP - Primary Domain": "",
......@@ -2712,6 +2730,8 @@
"Pool Disks have {alerts} alerts and {smartTests} failed S.M.A.R.T. tests": "",
"Pool Name": "",
"Pool Options for {pool}": "",
"Pool Scrub Read": "",
"Pool Scrub Write": "",
"Pool Status": "",
"Pool contains {status} Data VDEVs": "",
"Pool created successfully": "",
......@@ -4204,7 +4224,11 @@
"VLAN interface": "",
"VLANs": "",
"VM": "",
"VM Device Read": "",
"VM Device Write": "",
"VM Read": "",
"VM Serial Shell": "",
"VM Write": "",
"VM system time. Default is <i>Local</i>.": "",
"VM updated successfully.": "",
"VMWare Sync": "",
......
......@@ -399,10 +399,12 @@
"Apply the same quota warning alert settings as the parent dataset.": "",
"Apply updates and reboot system after downloading.": "",
"Apps": "",
"Apps Read": "",
"Apps Service Not Configured": "",
"Apps Service Pending": "",
"Apps Service Running": "",
"Apps Service Stopped": "",
"Apps Write": "",
"Apr": "",
"Archive": "",
"Are you sure you want to abort the <b>{task}</b> task?": "",
......@@ -631,7 +633,9 @@
"Case Sensitivity": "",
"Catalog": "",
"Catalog Name": "",
"Catalog Read": "",
"Catalog URL": "",
"Catalog Write": "",
"Catalog deleted": "",
"Catalog is being added. This may take some time. You can minimize this dialog and process will continue in background": "",
"Catalogs": "",
......@@ -643,10 +647,14 @@
"Certificate Authorities": "",
"Certificate Authority": "",
"Certificate Authority (CA) to use for connecting to the key server. A valid CA public certificate is required to authenticate the connection. WARNING: for security reasons, please protect the Certificate Authority used for key server authentication.": "",
"Certificate Authority Read": "",
"Certificate Authority Write": "",
"Certificate Options": "",
"Certificate Read": "",
"Certificate Signing Request": "",
"Certificate Signing Requests": "",
"Certificate Subject": "",
"Certificate Write": "",
"Certificate authority created": "",
"Certificate has been created.": "",
"Certificate request signed": "",
......@@ -846,6 +854,8 @@
"Container": "",
"Container Images": "",
"Container Name": "",
"Container Read": "",
"Container Write": "",
"Containers": "",
"Content Commitment": "",
"Contents of the uploaded Service Account JSON file.": "",
......@@ -1606,6 +1616,8 @@
"Failover": "",
"Failover Configuration": "",
"Failover Group": "",
"Failover Read": "",
"Failover Write": "",
"Failover is administratively disabled.": "",
"Failover is in an error state.": "",
"Faulted": "",
......@@ -1866,6 +1878,8 @@
"IPMI Configuration": "",
"IPMI Events": "",
"IPMI Password Reset": "",
"IPMI Read": "",
"IPMI Write": "",
"IPv4": "",
"IPv4 Address": "",
"IPv4 Default Gateway": "",
......@@ -2013,6 +2027,8 @@
"Items Delete Failed": "",
"Items deleted": "",
"Items per page": "",
"JBOF Read": "",
"JBOF Write": "",
"Jan": "",
"Job {job} Completed Successfully": "",
"Job {method} Failed": "",
......@@ -2056,7 +2072,9 @@
"Keys for {id} datasets": "",
"Keys pending to be synced between KMIP server and TN database were cleared.": "",
"Keywords": "",
"Kubernetes Read": "",
"Kubernetes Settings": "",
"Kubernetes Write": "",
"LACPDU Rate": "",
"LDAP": "",
"LDAP - Primary Domain": "",
......@@ -2712,6 +2730,8 @@
"Pool Disks have {alerts} alerts and {smartTests} failed S.M.A.R.T. tests": "",
"Pool Name": "",
"Pool Options for {pool}": "",
"Pool Scrub Read": "",
"Pool Scrub Write": "",
"Pool Status": "",
"Pool contains {status} Data VDEVs": "",
"Pool created successfully": "",
......@@ -4204,7 +4224,11 @@
"VLAN interface": "",
"VLANs": "",
"VM": "",
"VM Device Read": "",
"VM Device Write": "",
"VM Read": "",
"VM Serial Shell": "",
"VM Write": "",
"VM system time. Default is <i>Local</i>.": "",
"VM updated successfully.": "",
"VMWare Sync": "",
......
......@@ -399,10 +399,12 @@
"Apply the same quota warning alert settings as the parent dataset.": "",
"Apply updates and reboot system after downloading.": "",
"Apps": "",
"Apps Read": "",
"Apps Service Not Configured": "",
"Apps Service Pending": "",
"Apps Service Running": "",
"Apps Service Stopped": "",
"Apps Write": "",
"Apr": "",
"Archive": "",
"Are you sure you want to abort the <b>{task}</b> task?": "",
......@@ -631,7 +633,9 @@
"Case Sensitivity": "",
"Catalog": "",
"Catalog Name": "",
"Catalog Read": "",
"Catalog URL": "",
"Catalog Write": "",
"Catalog deleted": "",
"Catalog is being added. This may take some time. You can minimize this dialog and process will continue in background": "",
"Catalogs": "",
......@@ -643,10 +647,14 @@
"Certificate Authorities": "",
"Certificate Authority": "",
"Certificate Authority (CA) to use for connecting to the key server. A valid CA public certificate is required to authenticate the connection. WARNING: for security reasons, please protect the Certificate Authority used for key server authentication.": "",
"Certificate Authority Read": "",
"Certificate Authority Write": "",
"Certificate Options": "",
"Certificate Read": "",
"Certificate Signing Request": "",
"Certificate Signing Requests": "",
"Certificate Subject": "",
"Certificate Write": "",
"Certificate authority created": "",
"Certificate has been created.": "",
"Certificate request signed": "",
......@@ -846,6 +854,8 @@
"Container": "",
"Container Images": "",
"Container Name": "",
"Container Read": "",
"Container Write": "",
"Containers": "",
"Content Commitment": "",
"Contents of the uploaded Service Account JSON file.": "",
......@@ -1606,6 +1616,8 @@
"Failover": "",
"Failover Configuration": "",
"Failover Group": "",
"Failover Read": "",
"Failover Write": "",
"Failover is administratively disabled.": "",
"Failover is in an error state.": "",
"Faulted": "",
......@@ -1866,6 +1878,8 @@
"IPMI Configuration": "",
"IPMI Events": "",
"IPMI Password Reset": "",
"IPMI Read": "",
"IPMI Write": "",
"IPv4": "",
"IPv4 Address": "",
"IPv4 Default Gateway": "",
......@@ -2013,6 +2027,8 @@
"Items Delete Failed": "",
"Items deleted": "",
"Items per page": "",
"JBOF Read": "",
"JBOF Write": "",
"Jan": "",
"Job {job} Completed Successfully": "",
"Job {method} Failed": "",
......@@ -2056,7 +2072,9 @@
"Keys for {id} datasets": "",
"Keys pending to be synced between KMIP server and TN database were cleared.": "",
"Keywords": "",
"Kubernetes Read": "",
"Kubernetes Settings": "",
"Kubernetes Write": "",
"LACPDU Rate": "",
"LDAP": "",
"LDAP - Primary Domain": "",
......@@ -2712,6 +2730,8 @@
"Pool Disks have {alerts} alerts and {smartTests} failed S.M.A.R.T. tests": "",
"Pool Name": "",
"Pool Options for {pool}": "",
"Pool Scrub Read": "",
"Pool Scrub Write": "",
"Pool Status": "",
"Pool contains {status} Data VDEVs": "",
"Pool created successfully": "",
......@@ -4204,7 +4224,11 @@
"VLAN interface": "",
"VLANs": "",
"VM": "",
"VM Device Read": "",
"VM Device Write": "",
"VM Read": "",
"VM Serial Shell": "",
"VM Write": "",
"VM system time. Default is <i>Local</i>.": "",
"VM updated successfully.": "",
"VMWare Sync": "",
......
......@@ -399,10 +399,12 @@
"Apply the same quota warning alert settings as the parent dataset.": "",
"Apply updates and reboot system after downloading.": "",
"Apps": "",
"Apps Read": "",
"Apps Service Not Configured": "",
"Apps Service Pending": "",
"Apps Service Running": "",
"Apps Service Stopped": "",
"Apps Write": "",
"Apr": "",
"Archive": "",
"Are you sure you want to abort the <b>{task}</b> task?": "",
......@@ -631,7 +633,9 @@
"Case Sensitivity": "",
"Catalog": "",
"Catalog Name": "",
"Catalog Read": "",
"Catalog URL": "",
"Catalog Write": "",
"Catalog deleted": "",
"Catalog is being added. This may take some time. You can minimize this dialog and process will continue in background": "",
"Catalogs": "",
......@@ -643,10 +647,14 @@
"Certificate Authorities": "",
"Certificate Authority": "",
"Certificate Authority (CA) to use for connecting to the key server. A valid CA public certificate is required to authenticate the connection. WARNING: for security reasons, please protect the Certificate Authority used for key server authentication.": "",
"Certificate Authority Read": "",
"Certificate Authority Write": "",
"Certificate Options": "",
"Certificate Read": "",
"Certificate Signing Request": "",
"Certificate Signing Requests": "",
"Certificate Subject": "",
"Certificate Write": "",
"Certificate authority created": "",
"Certificate has been created.": "",
"Certificate request signed": "",
......@@ -846,6 +854,8 @@
"Container": "",
"Container Images": "",
"Container Name": "",
"Container Read": "",
"Container Write": "",
"Containers": "",
"Content Commitment": "",
"Contents of the uploaded Service Account JSON file.": "",
......@@ -1606,6 +1616,8 @@
"Failover": "",
"Failover Configuration": "",
"Failover Group": "",
"Failover Read": "",
"Failover Write": "",
"Failover is administratively disabled.": "",
"Failover is in an error state.": "",
"Faulted": "",
......@@ -1866,6 +1878,8 @@
"IPMI Configuration": "",
"IPMI Events": "",
"IPMI Password Reset": "",
"IPMI Read": "",
"IPMI Write": "",
"IPv4": "",
"IPv4 Address": "",
"IPv4 Default Gateway": "",
......@@ -2013,6 +2027,8 @@
"Items Delete Failed": "",
"Items deleted": "",
"Items per page": "",
"JBOF Read": "",
"JBOF Write": "",
"Jan": "",
"Job {job} Completed Successfully": "",
"Job {method} Failed": "",
......@@ -2056,7 +2072,9 @@
"Keys for {id} datasets": "",
"Keys pending to be synced between KMIP server and TN database were cleared.": "",
"Keywords": "",
"Kubernetes Read": "",
"Kubernetes Settings": "",
"Kubernetes Write": "",
"LACPDU Rate": "",
"LDAP": "",
"LDAP - Primary Domain": "",
......@@ -2712,6 +2730,8 @@
"Pool Disks have {alerts} alerts and {smartTests} failed S.M.A.R.T. tests": "",
"Pool Name": "",
"Pool Options for {pool}": "",
"Pool Scrub Read": "",
"Pool Scrub Write": "",
"Pool Status": "",
"Pool contains {status} Data VDEVs": "",
"Pool created successfully": "",
......@@ -4204,7 +4224,11 @@
"VLAN interface": "",
"VLANs": "",
"VM": "",
"VM Device Read": "",
"VM Device Write": "",
"VM Read": "",
"VM Serial Shell": "",
"VM Write": "",
"VM system time. Default is <i>Local</i>.": "",
"VM updated successfully.": "",
"VMWare Sync": "",
......
......@@ -370,10 +370,12 @@
"Apply the same quota warning alert settings as the parent dataset.": "",
"Apply updates and reboot system after downloading.": "",
"Apps": "",
"Apps Read": "",
"Apps Service Not Configured": "",
"Apps Service Pending": "",
"Apps Service Running": "",
"Apps Service Stopped": "",
"Apps Write": "",
"Apr": "",
"Archive": "",
"Are you sure you want to abort the <b>{task}</b> task?": "",
......@@ -592,7 +594,9 @@
"Capture and attach screenshot to the review": "",
"Catalog": "",
"Catalog Name": "",
"Catalog Read": "",
"Catalog URL": "",
"Catalog Write": "",
"Catalog deleted": "",
"Catalog is being added. This may take some time. You can minimize this dialog and process will continue in background": "",
"Catalogs": "",
......@@ -602,10 +606,14 @@
"Certificate Authorities": "",
"Certificate Authority": "",
"Certificate Authority (CA) to use for connecting to the key server. A valid CA public certificate is required to authenticate the connection. WARNING: for security reasons, please protect the Certificate Authority used for key server authentication.": "",
"Certificate Authority Read": "",
"Certificate Authority Write": "",
"Certificate Options": "",
"Certificate Read": "",
"Certificate Signing Request": "",
"Certificate Signing Requests": "",
"Certificate Subject": "",
"Certificate Write": "",
"Certificate authority created": "",
"Certificate has been created.": "",
"Certificate request signed": "",
......@@ -784,6 +792,8 @@
"Container": "",
"Container Images": "",
"Container Name": "",
"Container Read": "",
"Container Write": "",
"Containers": "",
"Content Commitment": "",
"Contents of the uploaded Service Account JSON file.": "",
......@@ -1421,6 +1431,8 @@
"Failed S.M.A.R.T. Tests": "",
"Failed sending test alert!": "",
"Failover Configuration": "",
"Failover Read": "",
"Failover Write": "",
"Failover is in an error state.": "",
"Faulted": "",
"Features": "",
......@@ -1640,6 +1652,8 @@
"IPMI Configuration": "",
"IPMI Events": "",
"IPMI Password Reset": "",
"IPMI Read": "",
"IPMI Write": "",
"IPv4": "",
"IPv6": "",
"ISO save location": "",
......@@ -1763,6 +1777,8 @@
"Item": "",
"Items deleted": "",
"Items per page": "",
"JBOF Read": "",
"JBOF Write": "",
"Jan": "",
"Job {job} Completed Successfully": "",
"Job {method} Failed": "",
......@@ -1802,7 +1818,9 @@
"Keys for {id} datasets": "",
"Keys pending to be synced between KMIP server and TN database were cleared.": "",
"Keywords": "",
"Kubernetes Read": "",
"Kubernetes Settings": "",
"Kubernetes Write": "",
"LACPDU Rate": "",
"LDAP": "",
"LDAP - Primary Domain": "",
......@@ -2390,6 +2408,8 @@
"Pool Disks have {alerts} alerts and {smartTests} failed S.M.A.R.T. tests": "",
"Pool Name": "",
"Pool Options for {pool}": "",
"Pool Scrub Read": "",
"Pool Scrub Write": "",
"Pool contains {status} Data VDEVs": "",
"Pool created successfully": "",
"Pool has been unset.": "",
......@@ -3756,7 +3776,11 @@
"VLAN interface": "",
"VLANs": "",
"VM": "",
"VM Device Read": "",
"VM Device Write": "",
"VM Read": "",
"VM Serial Shell": "",
"VM Write": "",
"VM system time. Default is <i>Local</i>.": "",
"VM updated successfully.": "",
"VMWare Sync": "",
......
......@@ -399,10 +399,12 @@
"Apply the same quota warning alert settings as the parent dataset.": "",
"Apply updates and reboot system after downloading.": "",
"Apps": "",
"Apps Read": "",
"Apps Service Not Configured": "",
"Apps Service Pending": "",
"Apps Service Running": "",
"Apps Service Stopped": "",
"Apps Write": "",
"Apr": "",
"Archive": "",
"Are you sure you want to abort the <b>{task}</b> task?": "",
......@@ -631,7 +633,9 @@
"Case Sensitivity": "",
"Catalog": "",
"Catalog Name": "",
"Catalog Read": "",
"Catalog URL": "",
"Catalog Write": "",
"Catalog deleted": "",
"Catalog is being added. This may take some time. You can minimize this dialog and process will continue in background": "",
"Catalogs": "",
......@@ -643,10 +647,14 @@
"Certificate Authorities": "",
"Certificate Authority": "",
"Certificate Authority (CA) to use for connecting to the key server. A valid CA public certificate is required to authenticate the connection. WARNING: for security reasons, please protect the Certificate Authority used for key server authentication.": "",
"Certificate Authority Read": "",
"Certificate Authority Write": "",
"Certificate Options": "",
"Certificate Read": "",
"Certificate Signing Request": "",
"Certificate Signing Requests": "",
"Certificate Subject": "",
"Certificate Write": "",
"Certificate authority created": "",
"Certificate has been created.": "",
"Certificate request signed": "",
......@@ -846,6 +854,8 @@
"Container": "",
"Container Images": "",
"Container Name": "",
"Container Read": "",
"Container Write": "",
"Containers": "",
"Content Commitment": "",
"Contents of the uploaded Service Account JSON file.": "",
......@@ -1606,6 +1616,8 @@
"Failover": "",
"Failover Configuration": "",
"Failover Group": "",
"Failover Read": "",
"Failover Write": "",
"Failover is administratively disabled.": "",
"Failover is in an error state.": "",
"Faulted": "",
......@@ -1866,6 +1878,8 @@
"IPMI Configuration": "",
"IPMI Events": "",
"IPMI Password Reset": "",
"IPMI Read": "",
"IPMI Write": "",
"IPv4": "",
"IPv4 Address": "",
"IPv4 Default Gateway": "",
......@@ -2013,6 +2027,8 @@
"Items Delete Failed": "",
"Items deleted": "",
"Items per page": "",
"JBOF Read": "",
"JBOF Write": "",
"Jan": "",
"Job {job} Completed Successfully": "",
"Job {method} Failed": "",
......@@ -2056,7 +2072,9 @@
"Keys for {id} datasets": "",
"Keys pending to be synced between KMIP server and TN database were cleared.": "",
"Keywords": "",
"Kubernetes Read": "",
"Kubernetes Settings": "",
"Kubernetes Write": "",
"LACPDU Rate": "",
"LDAP": "",
"LDAP - Primary Domain": "",
......@@ -2712,6 +2730,8 @@
"Pool Disks have {alerts} alerts and {smartTests} failed S.M.A.R.T. tests": "",
"Pool Name": "",
"Pool Options for {pool}": "",
"Pool Scrub Read": "",
"Pool Scrub Write": "",
"Pool Status": "",
"Pool contains {status} Data VDEVs": "",
"Pool created successfully": "",
......@@ -4204,7 +4224,11 @@
"VLAN interface": "",
"VLANs": "",
"VM": "",
"VM Device Read": "",
"VM Device Write": "",
"VM Read": "",
"VM Serial Shell": "",
"VM Write": "",
"VM system time. Default is <i>Local</i>.": "",
"VM updated successfully.": "",
"VMWare Sync": "",
......
......@@ -399,10 +399,12 @@
"Apply the same quota warning alert settings as the parent dataset.": "",
"Apply updates and reboot system after downloading.": "",
"Apps": "",
"Apps Read": "",
"Apps Service Not Configured": "",
"Apps Service Pending": "",
"Apps Service Running": "",
"Apps Service Stopped": "",
"Apps Write": "",
"Apr": "",
"Archive": "",
"Are you sure you want to abort the <b>{task}</b> task?": "",
......@@ -631,7 +633,9 @@
"Case Sensitivity": "",
"Catalog": "",
"Catalog Name": "",
"Catalog Read": "",
"Catalog URL": "",
"Catalog Write": "",
"Catalog deleted": "",
"Catalog is being added. This may take some time. You can minimize this dialog and process will continue in background": "",
"Catalogs": "",
......@@ -643,10 +647,14 @@
"Certificate Authorities": "",
"Certificate Authority": "",
"Certificate Authority (CA) to use for connecting to the key server. A valid CA public certificate is required to authenticate the connection. WARNING: for security reasons, please protect the Certificate Authority used for key server authentication.": "",
"Certificate Authority Read": "",
"Certificate Authority Write": "",
"Certificate Options": "",
"Certificate Read": "",
"Certificate Signing Request": "",
"Certificate Signing Requests": "",
"Certificate Subject": "",
"Certificate Write": "",
"Certificate authority created": "",
"Certificate has been created.": "",
"Certificate request signed": "",
......@@ -846,6 +854,8 @@
"Container": "",
"Container Images": "",
"Container Name": "",
"Container Read": "",
"Container Write": "",
"Containers": "",
"Content Commitment": "",
"Contents of the uploaded Service Account JSON file.": "",
......@@ -1606,6 +1616,8 @@
"Failover": "",
"Failover Configuration": "",
"Failover Group": "",
"Failover Read": "",
"Failover Write": "",
"Failover is administratively disabled.": "",
"Failover is in an error state.": "",
"Faulted": "",
......@@ -1866,6 +1878,8 @@
"IPMI Configuration": "",
"IPMI Events": "",
"IPMI Password Reset": "",
"IPMI Read": "",
"IPMI Write": "",
"IPv4": "",
"IPv4 Address": "",
"IPv4 Default Gateway": "",
......@@ -2013,6 +2027,8 @@
"Items Delete Failed": "",
"Items deleted": "",
"Items per page": "",
"JBOF Read": "",
"JBOF Write": "",
"Jan": "",
"Job {job} Completed Successfully": "",
"Job {method} Failed": "",
......@@ -2056,7 +2072,9 @@
"Keys for {id} datasets": "",
"Keys pending to be synced between KMIP server and TN database were cleared.": "",
"Keywords": "",
"Kubernetes Read": "",
"Kubernetes Settings": "",
"Kubernetes Write": "",
"LACPDU Rate": "",
"LDAP": "",
"LDAP - Primary Domain": "",
......@@ -2712,6 +2730,8 @@
"Pool Disks have {alerts} alerts and {smartTests} failed S.M.A.R.T. tests": "",
"Pool Name": "",
"Pool Options for {pool}": "",
"Pool Scrub Read": "",
"Pool Scrub Write": "",
"Pool Status": "",
"Pool contains {status} Data VDEVs": "",
"Pool created successfully": "",
......@@ -4204,7 +4224,11 @@
"VLAN interface": "",
"VLANs": "",
"VM": "",
"VM Device Read": "",
"VM Device Write": "",
"VM Read": "",
"VM Serial Shell": "",
"VM Write": "",
"VM system time. Default is <i>Local</i>.": "",
"VM updated successfully.": "",
"VMWare Sync": "",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment