diff --git a/src/app/pages/credentials/users/user-api-keys/user-api-keys.component.html b/src/app/pages/credentials/users/user-api-keys/user-api-keys.component.html index 62e5c07b3d2..82b37153561 100644 --- a/src/app/pages/credentials/users/user-api-keys/user-api-keys.component.html +++ b/src/app/pages/credentials/users/user-api-keys/user-api-keys.component.html @@ -16,6 +16,10 @@ (click)="onSearch(searchInput.query)" >{{ 'Search' | translate }} + + {{ 'API Docs' | translate }} + + { table = await loader.getHarness(IxTableHarness); }); + it('renders a button to add new API key', async () => { + const addButton = await loader.getHarness(MatButtonHarness.with({ text: 'Add' })); + await addButton.click(); + + expect(spectator.inject(SlideInService).open).toHaveBeenCalledWith(ApiKeyFormComponent, { data: undefined }); + }); + + it('renders a button that opens API docs', async () => { + const docsButton = await loader.getHarness(MatButtonHarness.with({ text: 'API Docs' })); + const host = await docsButton.host(); + + expect(docsButton).toBeTruthy(); + expect(await host.getAttribute('href')).toBe('/api/docs'); + }); + it('should show table rows', async () => { const expectedRows = [ ['Name', 'Username', 'Local', 'Revoked', 'Created Date', 'Expires Date', ''], diff --git a/src/app/pages/credentials/users/user-api-keys/user-api-keys.component.ts b/src/app/pages/credentials/users/user-api-keys/user-api-keys.component.ts index 7f6fac570c1..25a859b2f70 100644 --- a/src/app/pages/credentials/users/user-api-keys/user-api-keys.component.ts +++ b/src/app/pages/credentials/users/user-api-keys/user-api-keys.component.ts @@ -1,6 +1,6 @@ import { AsyncPipe } from '@angular/common'; import { Component, OnInit, ChangeDetectionStrategy } from '@angular/core'; -import { MatButton } from '@angular/material/button'; +import { MatAnchor, MatButton } from '@angular/material/button'; import { ActivatedRoute } from '@angular/router'; import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'; import { TranslateModule, TranslateService } from '@ngx-translate/core'; @@ -67,6 +67,7 @@ import { ApiService } from 'app/services/websocket/api.service'; TranslateModule, AsyncPipe, PageHeaderComponent, + MatAnchor, ], }) export class UserApiKeysComponent implements OnInit { diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index 94eb88d618a..79f3b17d601 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -40,6 +40,7 @@ "A unique name to identify this keypair. Automatically generated keypairs are named after the object that generated the keypair with \" Key\" appended to the name.": "", "A username on the FTP Host system. This user must already exist on the FTP Host.": "", "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", + "API Docs": "", "API Key Read": "", "API Key Write": "", "Absent": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index 419123b5980..edead8565c3 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -69,6 +69,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key Read": "", "API Key Write": "", "ARN": "", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index 774a3a1ff15..c89e5642b6e 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -32,6 +32,7 @@ "ACME Server Directory URI": "", "AD Timeout": "", "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", + "API Docs": "", "API Key Read": "", "API Key Write": "", "ARN": "", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index 2e7938fd047..197ffe524c6 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -105,6 +105,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index 35788478703..a44af4cd1db 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -15,6 +15,7 @@ "ACME Server Directory URI": "", "AD Timeout": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key Read": "", "API Key Write": "", "Absent": "", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index 54630ad35ef..e4fb8b3a17d 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -4,6 +4,7 @@ "1m Average": "", "The system will restart to perform this operation! All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed. ": "", "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", + "API Docs": "", "API Key Read": "", "API Key Write": "", "Absent": "", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index 0676c6e5f0f..8679f1dc7da 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -102,6 +102,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index 4ba8cd36cb2..b51f05bdf49 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -93,6 +93,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key Read": "", "API Key Write": "", "API Key or Password": "", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index 0e7a12bb394..6182ba63bd4 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -27,6 +27,7 @@ "AD Timeout": "", "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key Read": "", "API Key Write": "", "Abort Job": "", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index 6b589b47df7..bc5af92d307 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -104,6 +104,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index 52d11c4e2f7..92efb69f8f5 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -1,5 +1,6 @@ { "": "", + "API Docs": "", "API Key Read": "", "API Key Write": "", "Absent": "", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index 7584dc00cd8..9865d7d9045 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -101,6 +101,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key Read": "", "API Key Write": "", "API Keys": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index 7a6c3ebf345..3b9d13cb008 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -61,6 +61,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key Read": "", "API Key Write": "", "ARN": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index 8c9ccbe50e5..94360c631e6 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -57,6 +57,7 @@ "ACME Server Directory URI": "", "AD Timeout": "", "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", + "API Docs": "", "API Key Read": "", "API Key Write": "", "Abort Job": "", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index 269ae456e03..154a9d64fc5 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -45,6 +45,7 @@ "AD Timeout": "", "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key Read": "", "API Key Write": "", "API Key or Password": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index b8e4e692824..18d0148507a 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -41,6 +41,7 @@ "AD Timeout": "", "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key Read": "", "API Key Write": "", "Abort Job": "", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index e0baf628293..5d4896389d9 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -109,6 +109,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key": "", "API Key Read": "", "API Key Write": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index 0ad37658db8..e4ba34df06b 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -3,6 +3,7 @@ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "", "...": "", "The system will restart to perform this operation! All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed. ": "", + "API Docs": "", "API Key Read": "", "API Key Write": "", "Absent": "", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index 0f2445c7dad..9fbe121cbd2 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -97,6 +97,7 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALERT": "", "ALL Initiators Allowed": "", + "API Docs": "", "API Key Read": "", "API Key Write": "", "ARN": "",
The system will restart to perform this operation!
All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.