From 57cbcf68997e1a13498614a119c23b3eed5b9d30 Mon Sep 17 00:00:00 2001 From: Ken Sternberg Date: Fri, 22 Dec 2023 09:21:57 -0800 Subject: [PATCH] web: project monolith, localization extracted --- web/lage.config.js | 5 +- web/package-lock.json | 73 +- web/package.json | 6 +- web/packages/localization/.gitignore | 1 + .../lit-localize.json | 2 +- web/packages/localization/package.json | 34 + .../scripts/pseudolocalize.ts | 0 web/packages/localization/src/locale-codes.js | 27 + .../localization/src/locale-codes.js.map | 1 + web/packages/localization/src/locale-codes.ts | 41 + web/packages/localization/src/locales/de.js | 1715 ++++++++++++++++ web/packages/localization/src/locales/en.js | 1723 +++++++++++++++++ web/packages/localization/src/locales/es.js | 1714 ++++++++++++++++ web/packages/localization/src/locales/fr.js | 1719 ++++++++++++++++ web/packages/localization/src/locales/pl.js | 1719 ++++++++++++++++ .../localization/src/locales/pseudo-LOCALE.js | 1666 ++++++++++++++++ web/packages/localization/src/locales/tr.js | 1714 ++++++++++++++++ .../localization/src/locales/zh-Hans.js | 1721 ++++++++++++++++ .../localization/src/locales/zh-Hant.js | 1714 ++++++++++++++++ .../localization/src/locales/zh_TW.js | 1666 ++++++++++++++++ web/packages/localization/tsconfig.json | 4 + .../{monolith => localization}/xliff/de.xlf | 8 +- .../{monolith => localization}/xliff/en.xlf | 8 +- .../{monolith => localization}/xliff/es.xlf | 8 +- .../{monolith => localization}/xliff/fr.xlf | 8 +- .../{monolith => localization}/xliff/nl.xlf | 10 +- .../{monolith => localization}/xliff/pl.xlf | 8 +- .../xliff/pseudo-LOCALE.xlf | 8 +- .../{monolith => localization}/xliff/tr.xlf | 8 +- .../xliff/zh-Hans.xlf | 8 +- .../xliff/zh-Hant.xlf | 8 +- .../xliff/zh_CN.xlf | 10 +- .../xliff/zh_TW.xlf | 8 +- web/packages/monolith/package.json | 21 +- .../ak-locale-context/configureLocale.ts | 2 +- .../elements/ak-locale-context/definitions.ts | 22 +- .../src/elements/ak-locale-context/helpers.ts | 6 +- web/packages/monolith/tsconfig.json | 1 - 38 files changed, 17282 insertions(+), 135 deletions(-) create mode 100644 web/packages/localization/.gitignore rename web/packages/{monolith => localization}/lit-localize.json (92%) create mode 100644 web/packages/localization/package.json rename web/packages/{monolith => localization}/scripts/pseudolocalize.ts (100%) create mode 100644 web/packages/localization/src/locale-codes.js create mode 100644 web/packages/localization/src/locale-codes.js.map create mode 100644 web/packages/localization/src/locale-codes.ts create mode 100644 web/packages/localization/src/locales/de.js create mode 100644 web/packages/localization/src/locales/en.js create mode 100644 web/packages/localization/src/locales/es.js create mode 100644 web/packages/localization/src/locales/fr.js create mode 100644 web/packages/localization/src/locales/pl.js create mode 100644 web/packages/localization/src/locales/pseudo-LOCALE.js create mode 100644 web/packages/localization/src/locales/tr.js create mode 100644 web/packages/localization/src/locales/zh-Hans.js create mode 100644 web/packages/localization/src/locales/zh-Hant.js create mode 100644 web/packages/localization/src/locales/zh_TW.js create mode 100644 web/packages/localization/tsconfig.json rename web/packages/{monolith => localization}/xliff/de.xlf (99%) rename web/packages/{monolith => localization}/xliff/en.xlf (99%) rename web/packages/{monolith => localization}/xliff/es.xlf (99%) rename web/packages/{monolith => localization}/xliff/fr.xlf (99%) rename web/packages/{monolith => localization}/xliff/nl.xlf (99%) rename web/packages/{monolith => localization}/xliff/pl.xlf (99%) rename web/packages/{monolith => localization}/xliff/pseudo-LOCALE.xlf (99%) rename web/packages/{monolith => localization}/xliff/tr.xlf (99%) rename web/packages/{monolith => localization}/xliff/zh-Hans.xlf (99%) rename web/packages/{monolith => localization}/xliff/zh-Hant.xlf (99%) rename web/packages/{monolith => localization}/xliff/zh_CN.xlf (99%) rename web/packages/{monolith => localization}/xliff/zh_TW.xlf (99%) diff --git a/web/lage.config.js b/web/lage.config.js index 9e238db0a..6282a7448 100644 --- a/web/lage.config.js +++ b/web/lage.config.js @@ -1,6 +1,7 @@ module.exports = { pipeline: { - build: ["^build"], - lint: ["^lint"], + "build": ["^build"], + "lint": ["^lint"], + "localize": ["^localization:extract"], }, }; diff --git a/web/package-lock.json b/web/package-lock.json index 366087beb..d1d5a2e90 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -9,7 +9,8 @@ "version": "0.0.0", "license": "MIT", "workspaces": [ - "packages/monolith" + "packages/monolith", + "packages/localization" ], "dependencies": { "@manypkg/cli": "^0.21.1", @@ -2148,12 +2149,10 @@ "cpu": [ "ppc64" ], - "dev": true, "optional": true, "os": [ "aix" ], - "peer": true, "engines": { "node": ">=12" } @@ -2671,6 +2670,10 @@ "node_modules/@goauthentik/api": { "version": "2023.10.5-1703167718" }, + "node_modules/@goauthentik/localization": { + "resolved": "packages/localization", + "link": true + }, "node_modules/@goauthentik/monolith": { "resolved": "packages/monolith", "link": true @@ -9830,10 +9833,9 @@ }, "node_modules/esbuild": { "version": "0.19.10", - "dev": true, + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.10.tgz", + "integrity": "sha512-S1Y27QGt/snkNYrRcswgRFqZjaTG5a5xM3EQo97uNBnH505pdzSNe/HLBq1v0RO7iK/ngdbhJB6mDAp0OK+iUA==", "hasInstallScript": true, - "license": "MIT", - "peer": true, "bin": { "esbuild": "bin/esbuild" }, @@ -9889,12 +9891,10 @@ "cpu": [ "arm" ], - "dev": true, "optional": true, "os": [ "android" ], - "peer": true, "engines": { "node": ">=12" } @@ -9906,12 +9906,10 @@ "cpu": [ "arm64" ], - "dev": true, "optional": true, "os": [ "android" ], - "peer": true, "engines": { "node": ">=12" } @@ -9923,12 +9921,10 @@ "cpu": [ "x64" ], - "dev": true, "optional": true, "os": [ "android" ], - "peer": true, "engines": { "node": ">=12" } @@ -9940,12 +9936,10 @@ "cpu": [ "x64" ], - "dev": true, "optional": true, "os": [ "darwin" ], - "peer": true, "engines": { "node": ">=12" } @@ -9957,12 +9951,10 @@ "cpu": [ "arm64" ], - "dev": true, "optional": true, "os": [ "freebsd" ], - "peer": true, "engines": { "node": ">=12" } @@ -9974,12 +9966,10 @@ "cpu": [ "x64" ], - "dev": true, "optional": true, "os": [ "freebsd" ], - "peer": true, "engines": { "node": ">=12" } @@ -9991,12 +9981,10 @@ "cpu": [ "arm" ], - "dev": true, "optional": true, "os": [ "linux" ], - "peer": true, "engines": { "node": ">=12" } @@ -10008,12 +9996,10 @@ "cpu": [ "ia32" ], - "dev": true, "optional": true, "os": [ "linux" ], - "peer": true, "engines": { "node": ">=12" } @@ -10025,12 +10011,10 @@ "cpu": [ "loong64" ], - "dev": true, "optional": true, "os": [ "linux" ], - "peer": true, "engines": { "node": ">=12" } @@ -10042,12 +10026,10 @@ "cpu": [ "mips64el" ], - "dev": true, "optional": true, "os": [ "linux" ], - "peer": true, "engines": { "node": ">=12" } @@ -10059,12 +10041,10 @@ "cpu": [ "ppc64" ], - "dev": true, "optional": true, "os": [ "linux" ], - "peer": true, "engines": { "node": ">=12" } @@ -10076,12 +10056,10 @@ "cpu": [ "riscv64" ], - "dev": true, "optional": true, "os": [ "linux" ], - "peer": true, "engines": { "node": ">=12" } @@ -10093,12 +10071,10 @@ "cpu": [ "s390x" ], - "dev": true, "optional": true, "os": [ "linux" ], - "peer": true, "engines": { "node": ">=12" } @@ -10110,12 +10086,10 @@ "cpu": [ "x64" ], - "dev": true, "optional": true, "os": [ "linux" ], - "peer": true, "engines": { "node": ">=12" } @@ -10127,12 +10101,10 @@ "cpu": [ "x64" ], - "dev": true, "optional": true, "os": [ "netbsd" ], - "peer": true, "engines": { "node": ">=12" } @@ -10144,12 +10116,10 @@ "cpu": [ "x64" ], - "dev": true, "optional": true, "os": [ "openbsd" ], - "peer": true, "engines": { "node": ">=12" } @@ -10161,12 +10131,10 @@ "cpu": [ "x64" ], - "dev": true, "optional": true, "os": [ "sunos" ], - "peer": true, "engines": { "node": ">=12" } @@ -10178,12 +10146,10 @@ "cpu": [ "arm64" ], - "dev": true, "optional": true, "os": [ "win32" ], - "peer": true, "engines": { "node": ">=12" } @@ -10195,12 +10161,10 @@ "cpu": [ "ia32" ], - "dev": true, "optional": true, "os": [ "win32" ], - "peer": true, "engines": { "node": ">=12" } @@ -10212,12 +10176,10 @@ "cpu": [ "x64" ], - "dev": true, "optional": true, "os": [ "win32" ], - "peer": true, "engines": { "node": ">=12" } @@ -17332,8 +17294,9 @@ }, "node_modules/typescript": { "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", "dev": true, - "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -18144,6 +18107,20 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "packages/localization": { + "name": "@goauthentik/localization", + "version": "0.0.0", + "license": "MIT", + "dependencies": { + "esbuild": "^0.19.10" + }, + "devDependencies": { + "@lit/localize-tools": "^0.7.1", + "prettier": "^3.1.1", + "pseudolocale": "^2.0.0", + "typescript": "^5.3.3" + } + }, "packages/monolith": { "name": "@goauthentik/monolith", "version": "0.0.0", @@ -18194,7 +18171,6 @@ "@hcaptcha/types": "^1.0.3", "@jackfranklin/rollup-plugin-markdown": "^0.4.0", "@jeysal/storybook-addon-css-user-preferences": "^0.2.0", - "@lit/localize-tools": "^0.7.1", "@rollup/plugin-babel": "^6.0.4", "@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-node-resolve": "^15.2.3", @@ -18226,7 +18202,6 @@ "lit-analyzer": "^2.0.2", "npm-run-all": "^4.1.5", "prettier": "^3.1.1", - "pseudolocale": "^2.0.0", "pyright": "=1.1.338", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/web/package.json b/web/package.json index fd23dc460..87ff134b1 100644 --- a/web/package.json +++ b/web/package.json @@ -5,7 +5,8 @@ "license": "MIT", "scripts": { "build": "lage build", - "lint": "lage lint" + "lint": "lage lint", + "localize": "lage localize" }, "optionalDependencies": { "@esbuild/darwin-arm64": "^0.19.10", @@ -17,7 +18,8 @@ "lage": "^2.7.9" }, "workspaces": [ - "packages/monolith" + "packages/monolith", + "packages/localization" ], "engines": { "node": ">=20" diff --git a/web/packages/localization/.gitignore b/web/packages/localization/.gitignore new file mode 100644 index 000000000..69f049729 --- /dev/null +++ b/web/packages/localization/.gitignore @@ -0,0 +1 @@ +scripts/pseudolocalize.js* diff --git a/web/packages/monolith/lit-localize.json b/web/packages/localization/lit-localize.json similarity index 92% rename from web/packages/monolith/lit-localize.json rename to web/packages/localization/lit-localize.json index 19a901a91..76627876e 100644 --- a/web/packages/monolith/lit-localize.json +++ b/web/packages/localization/lit-localize.json @@ -13,7 +13,7 @@ "zh-Hant", "de" ], - "tsConfig": "./tsconfig.json", + "inputFiles": ["../monolith/src/**/*.ts"], "output": { "mode": "runtime", "outputDir": "./src/locales", diff --git a/web/packages/localization/package.json b/web/packages/localization/package.json new file mode 100644 index 000000000..15c5096f6 --- /dev/null +++ b/web/packages/localization/package.json @@ -0,0 +1,34 @@ +{ + "name": "@goauthentik/localization", + "version": "0.0.0", + "private": true, + "license": "MIT", + "type": "module", + "main": "./src/locale-codes.js", + "scripts": { + "localization:extract": "lit-localize extract", + "extract": "run-s localization-extract", + "build:localize": "lit-localize build", + "build": "run-s build:localize compile", + "compile": "esbuild src/locale-codes.ts --outfile=src/locale-codes.js", + "prettier": "prettier --write ./src/**/* ./package.json ./lit-localize.json", + "pseudolocalize:build-extract-script": "cd scripts && tsc --esModuleInterop --module es2020 --moduleResolution 'node' pseudolocalize.ts && mv pseudolocalize.js pseudolocalize.mjs", + "pseudolocalize:extract": "node scripts/pseudolocalize.mjs", + "pseudolocalize": "run-s pseudolocalize:build-extract-script pseudolocalize:extract" + }, + "exports": { + ".": "./src/locale-codes.js", + "./*": "./src/locales/*" + }, + "files": [ + "./src/" + ], + "devDependencies": { + "@lit/localize-tools": "^0.7.1", + "npm-run-all": "^4.1.5", + "prettier": "^3.1.1", + "pseudolocale": "^2.0.0", + "typescript": "^5.3.3", + "esbuild": "^0.19.10" + } +} diff --git a/web/packages/monolith/scripts/pseudolocalize.ts b/web/packages/localization/scripts/pseudolocalize.ts similarity index 100% rename from web/packages/monolith/scripts/pseudolocalize.ts rename to web/packages/localization/scripts/pseudolocalize.ts diff --git a/web/packages/localization/src/locale-codes.js b/web/packages/localization/src/locale-codes.js new file mode 100644 index 000000000..979ef21fe --- /dev/null +++ b/web/packages/localization/src/locale-codes.js @@ -0,0 +1,27 @@ +"use strict"; +export const sourceLocale = `en`; +export const targetLocales = [ + `de`, + `en`, + `es`, + `fr`, + `pl`, + `pseudo-LOCALE`, + `tr`, + `zh_TW`, + `zh-Hans`, + `zh-Hant` +]; +export const allLocales = [ + `de`, + `en`, + `en`, + `es`, + `fr`, + `pl`, + `pseudo-LOCALE`, + `tr`, + `zh_TW`, + `zh-Hans`, + `zh-Hant` +]; diff --git a/web/packages/localization/src/locale-codes.js.map b/web/packages/localization/src/locale-codes.js.map new file mode 100644 index 000000000..8e0ee429c --- /dev/null +++ b/web/packages/localization/src/locale-codes.js.map @@ -0,0 +1 @@ +{"version":3,"file":"locale-codes.js","sourceRoot":"","sources":["locale-codes.ts"],"names":[],"mappings":"AAAA,mCAAmC;AACnC,iDAAiD;AAEjD;;GAEG;AACH,MAAM,CAAC,MAAM,YAAY,GAAG,IAAI,CAAC;AAEjC;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,eAAe;IACf,IAAI;IACJ,OAAO;IACP,SAAS;IACT,SAAS;CACD,CAAC;AAEX;;GAEG;AACH,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,eAAe;IACf,IAAI;IACJ,OAAO;IACP,SAAS;IACT,SAAS;CACD,CAAC"} \ No newline at end of file diff --git a/web/packages/localization/src/locale-codes.ts b/web/packages/localization/src/locale-codes.ts new file mode 100644 index 000000000..86337dc8d --- /dev/null +++ b/web/packages/localization/src/locale-codes.ts @@ -0,0 +1,41 @@ +// Do not modify this file by hand! +// Re-generate this file by running lit-localize. + +/** + * The locale code that templates in this source code are written in. + */ +export const sourceLocale = `en`; + +/** + * The other locale codes that this application is localized into. Sorted + * lexicographically. + */ +export const targetLocales = [ + `de`, + `en`, + `es`, + `fr`, + `pl`, + `pseudo-LOCALE`, + `tr`, + `zh_TW`, + `zh-Hans`, + `zh-Hant`, +] as const; + +/** + * All valid project locale codes. Sorted lexicographically. + */ +export const allLocales = [ + `de`, + `en`, + `en`, + `es`, + `fr`, + `pl`, + `pseudo-LOCALE`, + `tr`, + `zh_TW`, + `zh-Hans`, + `zh-Hant`, +] as const; diff --git a/web/packages/localization/src/locales/de.js b/web/packages/localization/src/locales/de.js new file mode 100644 index 000000000..4ac33c18d --- /dev/null +++ b/web/packages/localization/src/locales/de.js @@ -0,0 +1,1715 @@ + + // Do not modify this file by hand! + // Re-generate this file by running lit-localize + + import {html} from 'lit'; + import {str} from '@lit/localize'; + + /* eslint-disable no-irregular-whitespace */ + /* eslint-disable @typescript-eslint/no-explicit-any */ + + export const templates = { + 's004e9a2c90f23900': `Persistent`, +'s00c8354318addfa0': `Richtlinie / Richtlinien`, +'s01088b6625d2443b': `Callback URL`, +'s01a3a7f48ee4edaf': `Optionaler Anmeldevorgang, der unten auf der Seite verlinkt ist.`, +'s026555347e589f0e': `Feld für die Eindeutigkeit des Objekts`, +'s02839b01844d6ca8': `Erstellungsdatum`, +'s028be8989873f001': `Autorisiere URL`, +'s02b3fade1795d03f': `Verbindung zum LDAP Server auf Port 389:`, +'s02b632a9ac24a824': str`Überprüft: + ${0}`, +'s030ac0829bb50a49': str`Richtlinie + ${0}`, +'s037bc6d25a03c3c8': `Zustellungsart erfolgreich aktualisiert.`, +'s0382d73823585617': str` + ${0}: + ${1}`, +'s03907d7a66c6164e': `Anzeigename der Applikation`, +'s03970aa76a09982d': `Integration`, +'s039b6434e8a75560': str` + ${0}löschen`, +'s03f42eea72154959': `Anmeldename`, +'s03f49e598ffb11cc': `Polnisch`, +'s03fb3fa232f0434a': `Client Geheimnis`, +'s03fd2c252ad7972a': `E-Mail-Wiederherstellungslink`, +'s042baf59902a711f': `Richtlinie`, +'s04440099d97c0bef': `Stufe bearbeiten`, +'s045c3b86aae073c1': `Account löschen`, +'s04b7f8d6aaef3756': `Benutzer in der ausgewählten Gruppe können Suchanfragen stellen. Wenn keine Gruppe ausgewählt ist, sind keine LDAP-Suchen zulässig.`, +'s04c1210202f48dc9': `Bitte geben Sie Ihre Telefonnummer ein.`, +'s04c5a637328c9b67': str` + ${0}- + ${1}von + ${2}`, +'s05e395ff60af047b': `Warnung: Der Anbieter wird von keinem Outpost verwendet.`, +'s0639662111324466': `Richtlinien-Engine-Modus`, +'s065604a41e9d1584': `OAuth-Quelle aktualisieren`, +'s068d4dd16d9106d0': `Symbol`, +'s06c163334767a381': `Internes Konto erstellen`, +'s06c92148da82be0d': `Ändern Sie Ihr Passwort`, +'s06df3c3b6a503da8': `Feld des Benutzerobjekts, in das dieser Wert geschrieben wird.`, +'s072c6d12d3d37501': `HTTP-Basic Benutzername Schlüssel`, +'s079d388d3cbfa54f': `Logs überprüfen`, +'s081d3c4b47a6ff83': `Wenn festgelegt, können sich Benutzer mit diesem Ablauf selbst abmelden. Wenn kein Ablauf eingestellt ist, wird die Option nicht angezeigt.`, +'s086e1bbe7c97ea16': `Suchbasis`, +'s08a8716c214a0efb': `PEM-codierte Zertifikatsdaten.`, +'s08c91cb1a2cd3d97': `Wenn diese Option ausgewählt ist, wird ein Passwortfeld auf derselben Seite statt auf einer separaten Seite angezeigt. Dadurch werden Angriffe auf die Aufzählung von Benutzernamen verhindert.`, +'s091d3d07b5b3076f': `OK`, +'s09205907b5b56cda': `Nein`, +'s09240e07b5b8d640': `ID`, +'s09242207b5b8f83c': `IP`, +'s09353907b5c79284': `Zu`, +'s09810653c832e935': `Klicken Sie, um den Wert zu ändern`, +'s098237f7ccb4dc4a': `Der Ablauf-Cache wurde erfolgreich geleert`, +'s0a0ca63b967f1630': `Quellen`, +'s0a11c2ffb8309d1a': `Nicht gefunden`, +'s0a39e4f61ccafacb': `Regel erfolgreich aktualisiert.`, +'s0a5401d4419f9958': `Quelle verwenden`, +'s0a63a8be0b2b422c': `Arbeiter`, +'s0a72e65aef45b1e8': `Server URI`, +'s0ae0072614320ae2': `Hash-Telefonnummer`, +'s0ae3395d8f48e624': `Erfolgreich generierter Wiederherstellungslink`, +'s0af6301e76e2a2a5': `Umgebung erfolgreich aktualisiert.`, +'s0b15ff11a0049cfd': `LDAP DN, unter dem Bind-Requests und Suchanfragen gestellt werden können.`, +'s0b55a57f473ab8af': `Gruppe aktualisieren`, +'s0c135eba6017d94f': `Beschriftung neben/über der Eingabeaufforderung`, +'s0c3ac7f9383a8cfd': `Vorübergehend`, +'s0c8c4d2bb0a9162a': `Optionaler passwortloser Ablauf, der unten auf der Seite verlinkt ist. Nach der Konfiguration können Benutzer diesen Ablauf verwenden, um sich mit einem WebAuthn-Authentifikator zu authentifizieren, ohne Details einzugeben.`, +'s0d4268408182491d': `TLS verwenden`, +'s0d5d05bf3d122ced': `Twilio`, +'s0dfc6838c9d07677': `Ablauf der Konfiguration`, +'s0e03fe2dc5b9164b': `Wenn Ihre authentik-Instanz ein selbstsigniertes Zertifikat verwendet, setzen Sie diesen Wert.`, +'s0e15f678445dfc45': `Phase, die verwendet wird, um einen beliebigen Authentifikator zu validieren. Diese Phase sollte während Authentifizierungs- oder Autorisierungsabläufen verwendet werden.`, +'s0e516232f2ab4e04': `Per SMS versendete Token.`, +'s0eaf755fa88c8d97': `Phase(n)`, +'s0f2e070d38cd36df': `TLS-Authentifizierungszertifikat/SSH-Schlüsselpaar`, +'s0f4c6540c30bd8b4': `Bezeichnung`, +'s0fbf6dc6a1966408': `Weiter`, +'s10356fd921037fbf': `Standardabläufe`, +'s107bf77afb93c9b8': `Senden Sie Benachrichtigungen, wenn ein bestimmtes Ereignis erstellt und mit Richtlinien abgeglichen wird.`, +'s10922bd0ac765562': `Objekt wird GELÖSCHT`, +'s10929ca568ae10bc': `Anbieter`, +'s10d2dbc4613397f0': `Aktualisiert`, +'s11204eeb1e27ea8f': `ACS URL`, +'s11326fd2590f4e5e': `Standard`, +'s113c05ef9996ca4b': `Der System-Outpost ist nicht richtig konfiguriert.`, +'s119498d4e4cf59a6': `Betroffenes Modell:`, +'s11bc220e8fa9d797': `Berechtigungen`, +'s12146091b2b539a3': `Inhalt links`, +'s122f308b5f198ba7': `Zertifikat-Schlüsselpaar erfolgreich erstellt.`, +'s124f93a61ee772d6': `Erweiterte Protokolleinstellungen`, +'s128e7f5f34bfa155': `Phase, die zum Konfigurieren eines statischen Authentifikators (d. h. statischer Token) verwendet wird. Diese Phase sollte für Konfigurationsabläufe verwendet werden`, +'s1298e361e40ee1c5': `Beenden Sie den Identitätswechsel`, +'s12de1c06a1e18cc5': `Text (read-only): Einfaches Texteingabefeld, nicht editierbar`, +'s13de04774ff0f210': `Docker URL`, +'s14401ff4a0cba208': str`Aktualisieren von + ${0}fehlgeschlagen: + ${1}`, +'s145483489b87a622': `Abmelde-URL`, +'s14622ee6de586485': str`Loginversuch als + ${0}`, +'s14c552fb0a4c0186': `Anwendung benötigt die folgenden Berechtigungen:`, +'s14c8f36e180d6bbc': `Phase erfolgreich erstellt.`, +'s1575a15cee001915': `Zustellungsart erfolgreich erstellt.`, +'s164be9a7537b99f6': `Konfiguriere visuelle Einstellungen und Standards für verschiedene Domains.`, +'s1665454e31e14941': `X509 Betreff`, +'s16b9446e3a70e1f4': `Attribute`, +'s16bc281dce5685e8': `Authentifikator`, +'s17a679298216aca9': `Es sollten ausgewählte Quellen angezeigt werden, mit denen sich Benutzer authentifizieren können. Dies betrifft nur webbasierte Quellen, nicht LDAP.`, +'s17d1e337f6c11c1e': `Ansprüche in id_token berücksichtigen`, +'s17f3eaf3b07ece26': `Warnung: Der Anbieter wird nicht von einer Anwendung verwendet.`, +'s1823625e6f831d73': `Anpassung`, +'s1828fbfc2c56379c': `IP prüfen`, +'s18b910437b73e8e8': `Zurück zur Geräteauswahl`, +'s197420b40df164f8': `Weiterleitung folgen`, +'s199b55513a739f43': `OIDC Well-known URL`, +'s19b09f4fc72175d1': `Neue Quelle erstellen.`, +'s1a2797874b7fe852': `Name ID Eigenschaft`, +'s1a2f8f4b3861583b': `Außenposten erstellen`, +'s1ac2653a6492b435': str`" + ${0}", sollte " + ${1}" sein`, +'s1b07757762cda372': `Löschen Sie den Richtlinien-Cache`, +'s1b14062c44e5ef45': `Ablaufend`, +'s1b42b49e7b392013': `Einladung aktualisieren`, +'s1b448a4ea79d4eef': `Keine Ereignisse gefunden.`, +'s1b606acd76ba2c4c': `Umgebung aktualisieren`, +'s1b783856ab4aaaf3': `Keine weitere Einrichtung benötigt.`, +'s1b88fa3df4423292': `Letzte IP`, +'s1bf56ee106e9e711': `Bindung erfolgreich erstellt.`, +'s1c2a173db0e1ec61': `Betrachten Sie Objekte, die diesem Filter entsprechen, als Benutzer.`, +'s1c2fd8097e14a608': `Wiederherstellungsfluss. Wenn es leer gelassen wird, wird der erste anwendbare Fluss, sortiert nach dem Slug, verwendet.`, +'s1c33d22492029aba': `Objektfeld`, +'s1c6ba8d100453392': `Zeit in Minuten wie lange der verschickte Token gültig ist`, +'s1c8916418c334935': `ID-Token`, +'s1c8e9816dcae6d9c': `Der Anfang für gidNumbers, diese Zahl wird zu einer aus der group.Pk generierten Zahl addiert, um sicherzustellen, dass die Zahlen für POSIX-Gruppen nicht zu niedrig sind. Der Standardwert ist 4000, um sicherzustellen, dass wir nicht mit lokalen Gruppen oder primären Benutzergruppen kollidieren.`, +'s1cc0e66dbd2b5502': `Ablauf-Einstellungen`, +'s1cd198d689c66e4b': `API Zugriff`, +'s1cd264012278c047': `Ablauf-Ausführung`, +'s1cd617e7bbe278d0': `Abfrage zur Einwilligung von Benutzern. Die Einwilligung kann entweder permanent gelten oder in einer bestimmten Zeit ablaufen.`, +'s1cf2298d92c327a6': `Meine Anwendungen`, +'s1d30ff9ba938e68d': `Wartezeit (max.)`, +'s1d49ec5030447643': `Outpost(s)`, +'s1d6e16d86961c782': `Zertifikat Schlüsselpaar(e)`, +'s1d9d6c5b424fdc1f': `URL, an die die erste Login-Anfrage gesendet wird.`, +'s1e36813d3504ed48': `Bindung erfolgreich aktualisiert.`, +'s1e4c3de6e12cd87b': `Benutzername: Wie bei der Texteingabe, prüft jedoch auf doppelte Benutzernamen und verhindert diese.`, +'s1efbfc3937d565bd': `Hintergrund`, +'s1fc9c70610c4c67d': `Invalidierung`, +'s2035f889f576bca6': `Verbindungseinstellungen`, +'s207e8b106806d7e4': `Phasen-Verknüpfung`, +'s20a0ce62823bfa97': `Temporäre Benutzer danach löschen`, +'s211b75e868072162': `Stellen Sie dies auf die Domäne ein, für die die Authentifizierung gültig sein soll. Muss eine übergeordnete Domain der obigen URL sein. Wenn Sie Anwendungen als app1.domain.tld, app2.domain.tld ausführen, setzen Sie dies auf „domain.tld“.`, +'s216eb300543edd91': `Wählen Sie aus, bei welchem Server ein Benutzer Mitglied sein muss, um sich authentifizieren zu dürfen.`, +'s21b3058faf874368': `Obsolete Outposts`, +'s21d0e290c51a8ef9': `Symbolzeichensatz`, +'s21e3c227cc2c5873': `Trennzeichen: Statische Trennungslinie`, +'s2221fef80f4753a2': `TLS-Verifizierungszertifikat`, +'s2236dc563c2dbf76': `(Format: hours=-1;minutes=-2;seconds=-3).`, +'s22b10ed263b96194': `Dummy-Stage zum Testen verwendet. Zeigt eine einfache Schaltfläche zum Fortfahren und besteht immer.`, +'s23fd4411419fca06': `Gültigkeitsbereich, den der Client angeben kann, um auf diese Eigenschaften zuzugreifen.`, +'s240ff02ce3a53dee': `Integrationsschlüssel`, +'s24211f319e5b7e98': `Feld das eine einzigartige Kennung beinhaltet`, +'s2430e000b7cfefd0': `Benachrichtigung nur einmal senden, z. B. beim Senden eines Webhooks in einen Chat-Kanal`, +'s2474e7fb1aec9f05': `Testen`, +'s24875d5475e82526': `Quelle erfolgreich aktualisiert`, +'s24f405197ede5ebb': `Mit Plex erneut authentifizieren`, +'s252a52330d32b900': `Metadaten`, +'s2536ac8d32d2e63f': `Dauer, nach der ein Ereignis aus der Datenbank gelöscht wird.`, +'s2543cffd6ebb6803': `Ausführung von Systemtasks`, +'s256b8452664ccae4': `Konfigurieren Sie, wie der NameID-Wert erstellt wird. Wenn es leer gelassen wird, wird die NameIDPolicy der eingehenden Anfrage respektiert.`, +'s25d0cd75377daf75': `Authentifizierung weiterleiten (Domänenebene)`, +'s25ec2846f6b88214': `Webhook Zuordnung`, +'s26513c9dd154f041': `Immer nach Zustimmung fragen`, +'s2656433a3b1f7e86': `Meine Anwendungen`, +'s26bf2730430efbea': `Betreffmodus`, +'s271a7e04ff9865b1': `Kontrollieren Sie, wie authentik Informationen offenlegt und interpretiert.`, +'s275021658614ce9e': `API URL`, +'s27586544c447d9e3': `Benutzerereignisse`, +'s276d751eb7a186cc': `API Hostname`, +'s27976e94b05c6970': `Aktivieren`, +'s27ac7a47b390e3cb': `Zertifikat-Schlüsselpaare`, +'s2801a48ceac691b3': `Registrierungsablauf`, +'s289fce7e694b98ac': `SMTP Port`, +'s28f270859c5f4d51': `Die Host-IP des Docker-Hosts`, +'s29315e374008d0c5': `Benutzer dieser Gruppe werden als Superuser hinzugefügt.`, +'s293801033f9fc0d0': `Neue Stufe erstellen.`, +'s293aa6a6446fb153': `Exportieren`, +'s293ab4331c1dd387': `Dies ist der Benutzername, der mit Basic Auth verwendet werden soll, oder das Token, wenn es mit Bearer-Token verwendet wird`, +'s296fbffaaa7c910a': `Erforderlich`, +'s297a2075bd7e40db': `NameID Richtlinie`, +'s29ec5e7889f4787f': `Richtlinie erfolgreich aktualisiert.`, +'s2a0f60e74b478804': `Digest-Algorithmus`, +'s2a12e0b5527ff99a': `Durch Aktivieren dieses Schalters wird eine nach dem Benutzer benannte Gruppe mit dem Benutzer als Mitglied erstellt.`, +'s2a2d3e7c379e9518': `Zertifikat Betreff`, +'s2a369bc2febb5d55': `Wenn keine expliziten Umleitungs-URIs angegeben sind, wird die erste erfolgreich verwendete Umleitungs-URI gespeichert.`, +'s2a64d2dca3da9b0e': str`Gruppe + ${0}`, +'s2a957e843960b604': `Passwortfeld`, +'s2af5754090898640': `SAML Assertion gilt nicht am oder danach`, +'s2b088ba65eb69b7e': `Name des Formularfelds, das auch zum Speichern des Werts verwendet wird.`, +'s2b1bc31276c4c477': `Richtlinien / Gruppen / Nutzerverknüpfungen`, +'s2b7dbba348234a36': `Ihnen wurde ein Code per SMS gesendet.`, +'s2b952e9dc99cbded': `Das Login-Passwort wird automatisch von LDAP in Authentik synchronisiert. Aktivieren Sie diese Option nur, um Passwortänderungen in Authentik zurück in LDAP zu schreiben.`, +'s2ba5f4d8f3bd7c57': `Reihenfolge`, +'s2bc8aa1740d3da34': `Phasen Objekt`, +'s2be6121210e2a2f8': `Eingabeaufforderungen`, +'s2c0de3d35a7bc784': `Verwandte Objekte`, +'s2c8189544e3ea679': `Erneut versuchen`, +'s2ceb11be2290bb1b': `Abbrechen`, +'s2d34c87f67f66c6a': `Fenster`, +'s2d46e3a9ee8e0e7e': `Aktualisieren Sie den LDAP-Anbieter`, +'s2d5f69929bb7221d': str` + ${0}(" + ${1}", vom Typ + ${2})`, +'s2df0b65125600de9': `OIDC JWKS`, +'s2e3ef41a0edd8608': `Umfang`, +'s2e4818861000b13f': `Aufbau`, +'s2ec94a7c7f5bcd1b': `Gruppenobjektfilter`, +'s2f1bcfcc5cae94c3': `Ablauf erstellen`, +'s2f58bb9905d2b76f': `Zertifikat/Schlüssel für die Authentifizierung. Kann leer gelassen werden, wenn keine Authentifizierung erfolgt.`, +'s2f995efbb1e46b18': `Automatische Erkennung (basierend auf Ihrem Browser)`, +'s2fc3eb68c7ced3af': `Benutzerinfo-URL`, +'s30205d424e710818': `Quelle erfolgreich getrennt`, +'s303b5e552246e613': `Gleicht ein Ereignis mit einer Reihe von Kriterien ab. Wenn einer der konfigurierten Werte übereinstimmt, wird die Richtlinie bestanden.`, +'s3079ca1184e77573': `Gruppe erfolgreich erstellt.`, +'s30d1f50f476c3f48': `Ablauf Übersicht`, +'s310d8757ce319673': `Anmeldungen`, +'s31a2d43bc1cf1790': `Noch nicht synchronisiert.`, +'s31d15c6f16951464': `URL zur Authentifizierung`, +'s31d7f3ba04d306a5': `SSO URL`, +'s31ebc5431d677f5d': `SMTP Server`, +'s31fba571065f2c87': `Bewahren Sie diese Tokens an einem sicheren Ort auf.`, +'s322e34cfcba47155': `Nicht verfügbar`, +'s32a3efa23718e713': `API Anfragen`, +'s32f04d33924ce8ad': `Richtlinien-Ausführung`, +'s332a5235948c1a1d': `Einwilligung`, +'s3330adb3f0922f7b': `Benutzer Datenbank + Applikations Passwort`, +'s33318837e6c54a9b': `Trusted OIDC Sources`, +'s33683c3b1dbaf264': `Um stattdessen SSL zu verwenden, verwenden Sie 'ldaps://' und deaktivieren Sie diese Option.`, +'s3380d7cbcebe50f6': `Passwort-Phase`, +'s33aa05f435c29753': `Aktualisieren Sie das Zertifikatschlüsselpaar`, +'s33d48fb745f4d4ae': `Mindestanzahl an Großbuchstaben`, +'s33f85f24c0f5f008': `Speichern`, +'s341ab68d4130de20': `Keine Worker verbunden. Hintergrundaufgaben werden nicht ausgeführt.`, +'s342eccabf83c9bde': `History`, +'s34b23ebbac9f6ab9': `Benutzerüberprüfung`, +'s34be76c6b1eadbef': `Warnung`, +'s351246c52548086a': `Zertifikat herunterladen`, +'s354e0a9f146d2869': `Chinesisch (vereinfacht)`, +'s355b21b89ce5d9c5': `Details`, +'s3576aead3e68c5c9': `Ablauf exportieren`, +'s35e6e60e83a8c003': `Ablauf der Invalidierung`, +'s35f9df7668d5fa79': `Installationsdokumentation anzeigen`, +'s35fac2e5677d55cd': `Legt fest, ob dieser Benutzer als aktiv behandelt werden soll. Deaktivieren Sie dies, anstatt Konten zu löschen`, +'s3616cc78631f5893': str`Warnung: Sie sind im Begriff, den Benutzer zu löschen, als den Sie angemeldet sind ( + ${0}). Fahren Sie auf eigene Gefahr fort.`, +'s3626433940124897': `Favicon`, +'s3643189d1abbb7f4': `Code`, +'s3687049d1af562c4': `Kopieren`, +'s36cb242ac90353bc': `Felder`, +'s374abf1a54d87b67': `Hintergrund während der Ausführung.`, +'s3794c596ee7964ad': `Passwort ändern`, +'s37cbecaec58e2192': `Modus`, +'s37d9155b9f4cc7bd': `Konfigurieren Sie, wie der Flow-Executor mit einer ungültigen Antwort auf eine Abfrage umgehen soll.`, +'s37dbfe2133b74d2d': `Platzhalter aus Ausdruck interpretieren`, +'s37eb2f1b6e3c19c2': `Protokolleinstellungen`, +'s382a2aa3984474dd': `Erstellen`, +'s38887b94b3320533': `E-Mail-Adresse`, +'s388ee787bbf2271b': `Aufgabe mit Warnungen beendet`, +'s38c72e1cf120b8d8': `Einladung erstellen`, +'s38f774cd7e9b9dad': `Registrieren.`, +'s3914cb410fca44d4': `Importieren`, +'s3926da5b20cdf3b6': `URL, die zur Anforderung des anfänglichen Tokens verwendet wird. Diese URL ist nur für OAuth 1 erforderlich`, +'s399cc2d67d92e957': `Vertraulich`, +'s39c8c0bf4d927c9f': `IDP-initiierte Anmeldungen zulassen`, +'s3a135682bd30bdbb': `App Passwort erstellen`, +'s3a3fae99373ce56b': `Wählen Sie aus, welche Bereiche vom Client verwendet werden können. Der Client muss noch den Bereich für den Zugriff auf die Daten angeben.`, +'s3a5fec3d73ac9edc': `Zertifikat-Schlüsselpaar generieren`, +'s3ab772345f78aee0': `Ablauf-Inspektor`, +'s3b34d9930e33bd46': `Systemoperationen`, +'s3b58f8d2155ae90c': `Schlüsselfeld`, +'s3b68883dda2682ed': `SAML Assertion ist leer`, +'s3b7b519444181264': `Validierungsrichtlinien`, +'s3baf512851453712': `Twilio Konto SID`, +'s3bb51cabb02b997e': `Format: "Wochen=3;Tage=2;Stunden=3,Sekunden=2".`, +'s3bfa0258999fb629': `Negiert das Ergebnis der Bindung. Nachrichten sind nicht betroffen.`, +'s3c6de3f257e0c912': `Anfrage`, +'s3d197283cb019b5a': `Übersicht`, +'s3d34068a31cab30b': `Interne Host-SSL-Validierung`, +'s3de6db803012016a': `LDAP-Attributzuordnung`, +'s3e211d29fa10f843': `Referenz wird auf einen leeren Wert gesetzt`, +'s3e3bb9e7cb1de4fd': `Wählen Sie die hinzuzufügenden Benutzer aus`, +'s3e59b8b2debf0209': `Diese Phase kann in Registrierungsabläufe aufgenommen werden, um Einladungen anzunehmen.`, +'s3e87ce98ba3c4d80': `Konfigurieren Sie, wie lange Token gültig sind.`, +'s3ed5607ad78d4224': `Cache löschen`, +'s3ef3c252ada78076': `Fehlgeschlagene Anmeldungen`, +'s3feea7b49673bef2': `Keine Logeinträge.`, +'s3ffa320128991a45': `Stellen Unterstützung für Protokolle wie SAML und OAuth für zugewiesene Anwendungen bereit.`, +'s40b034801fcb843b': `Erlaubt/verweigert Anfragen auf der Grundlage der Reputation der Nutzer und/oder der IPs.`, +'s40b80eb4cc1f0e0c': `Verknüpfung bearbeiten`, +'s40bf151b56a64f51': `Server und Client sind mehr als 5 Sekunden voneinander entfernt.`, +'s40e2c72dae905a50': `Statisch: Statischer Wert, wird so angezeigt, wie er ist.`, +'s4165cd175bc4c0c4': `Läuft ab am`, +'s416a540b16275f2e': `Gruppe erstellen`, +'s41706a202b6c40f1': `Domain`, +'s41b105819b67ee7a': `Phasen`, +'s41e035c4bb8d15f2': `Allgemeiner Systemzustand`, +'s4207178ba0b99418': `Eine neuere Version des Frontends ist verfügbar.`, +'s420d2cdedcaf8cd0': `Authentifizierung mit Plex...`, +'s427f788ff333f45b': `Start URL`, +'s42a1ebe17efda727': `Feld`, +'s42cbd8dca939a9c7': `Prüfung`, +'s42fc6f4b64eff5d9': `Einzelne Eingabeaufforderungen, die für Eingabeaufforderungsphasen verwendet werden können.`, +'s43be3ce2439ffe9c': `Mindestanzahl von Ziffern`, +'s43c1f927936f0a02': `Behauptung nicht gültig am oder nach dem aktuellen Zeitpunkt + diesem Wert.`, +'s4409ada9c5c2a7f8': `Inaktiv`, +'s4414164d120de61a': str`Die folgenden Objekte verwenden + ${0}`, +'s44536d20bb5c8257': `Diese Einstellung betrifft nur neue Ereignisse, da die Ablaufzeit für jedes Ereignis gespeichert wird.`, +'s44c90273f08fb718': `Verwenden Sie diesen Anbieter mit auth_request von nginx oder forwardAuth von traefik. Pro Root-Domain wird nur ein einziger Anbieter benötigt. Sie können keine Autorisierung pro Anwendung vornehmen, aber Sie müssen nicht für jede Anwendung einen Anbieter erstellen.`, +'s44ea4e9a81ce730d': `E-Mail-Stufe`, +'s455de2f740b073fd': `Ereignisinfo`, +'s457c639088c547c5': `Anbieter erfolgreich erstellt.`, +'s45935843b1b5b496': `Das Formular hat keinen Wert zum Absenden zurückgegeben`, +'s45960273852a61b2': `Zeitlicher Termin`, +'s45cb501abd43ba52': `Generiere`, +'s45f9e7ce0897f9e5': `Mandant`, +'s4660da32fb311ac0': `Taiwanesisches Mandarin`, +'s473f0143efa3f706': `Diese Richtlinien steuern, welche Benutzer auf diese Anwendung zugreifen können.`, +'s47490298c17b753a': `Erhalten Sie eine Push-Benachrichtigung auf Ihrem Gerät.`, +'s4751df77cfd8a5f9': `Benutzername prüfen`, +'s476ffc07e6d66f18': `Token erfolgreich aktualisiert.`, +'s47a4983a2c6bb749': `Modell aktualisiert`, +'s47bd537a3bcebf19': `Privaten Schlüssel herunterladen`, +'s4802636d55022ed3': `Standard?`, +'s480c6c40a248f7d2': `SSL verwenden`, +'s482ae78809a6822b': `Ablauf, der von einem authentifizierten Benutzer verwendet wird, um sein Passwort zu konfigurieren. Wenn leer, kann der Benutzer sein Passwort nicht ändern.`, +'s485c05d34eb00415': `Lösche das aktuell festgelegte Symbol.`, +'s48cf8fd56b1237ed': `Ablauf erfolgreich aktualisiert.`, +'s494e1ed913d9351a': `Gruppe bearbeiten`, +'s49730f3d5751a433': `Laden...`, +'s4a1e774ab25aa232': `Interner Host`, +'s4a26798e1c3c37dd': `SSL-Zertifikate der Upstream-Server prüfen.`, +'s4a6aa26413287069': `Details erfolgreich aktualisiert.`, +'s4a87445f3108db7c': `Wählen Sie eine der folgenden Quellen aus, um sich anzumelden.`, +'s4acf840bc792c3ae': `Lokal (Benachrichtigungen werden innerhalb von authentik erstellt)`, +'s4aee34a672e5cfc0': `Erstellt von`, +'s4af8a3ce5a600855': `Lassen Sie den Benutzer sich mit seinem Benutzernamen oder seiner E-Mail-Adresse identifizieren.`, +'s4b5af7736aedd6c1': `Privater Schlüssel vorhanden?`, +'s4c24b2baa377e870': `Zertifikat-Schlüsselpaar erfolgreich aktualisiert.`, +'s4c4c504a48c3b7bd': `Traefik (eigenständig)`, +'s4caed5b7a7e5d89b': `Englisch`, +'s4cdae7635e757555': `Felder, mit denen sich ein Benutzer identifizieren kann. Wenn keine Felder ausgewählt sind, kann der Benutzer nur Quellen verwenden.`, +'s4d00e5de1c8213b7': `Client ID`, +'s4d00f1de1c82281b': `Client-IP`, +'s4d182bae8a578010': `SMS-basierte Authentifikatoren`, +'s4d31797d81e9cea3': `Explizite Einwilligung`, +'s4dcb9288f7e9e4d7': `Gruppieren Sie Benutzer und erteilen Sie ihnen Berechtigungen basierend auf der Mitgliedschaft.`, +'s4e28e2899e08a5f8': `Legt fest, wie authentik die Antwort an den Service Provider zurücksendet.`, +'s4e474b9e2e737dd1': `Proxy-Anbieter aktualisieren`, +'s4eb514ebcb80553d': `Übergeordnet`, +'s4f1ad6b48a5df506': `Logs`, +'s4f1af2b48a5e249a': `Logo`, +'s4ff2c202b4e5bdc5': `Eingebaut`, +'s502884e1977b2c06': `Nächste Phase`, +'s502d2473587032e1': `Keine Präferenz wird gesendet`, +'s505fbbdcbc6aa921': `Neue Gruppe hinzufügen`, +'s506beb486fa41241': `Applikationsgenehmigungen`, +'s50719dda8f90abf4': `Sichtbar in der URL`, +'s50911ec1c8aee99a': `Es konnten keine passenden Ereignisse gefunden werden.`, +'s50c312bea93b6925': `Richtlinie bearbeiten`, +'s50ebe627b4bc7d02': `Verknüpfung`, +'s5116b89f7db1fbec': `Erlaubte Weiterleitungs-URIs`, +'s512957aa09384646': `Starten`, +'s5140d157642d7362': `Keine (Regel deaktiviert)`, +'s5170f9ef331949c0': `Zeigen Sie dem Benutzer beliebige Eingabefelder, beispielsweise während der Registrierung. Daten werden im Flow-Kontext unter der Variablen „prompt_data“ gespeichert.`, +'s51da4de00984fe51': `API Auth Benutzername`, +'s51ea3a244c781b1f': `Objekte erstellt`, +'s51f92b6fa76656ca': `Defekte Outposts`, +'s523160b433311521': `Wenn aktiviert, können Nutzer Profildetails selbstständig ändern.`, +'s52b500138a2d2b8a': `Aktualisieren Sie die LDAP-Quelle`, +'s53ad3455d9523b54': `Benutzer erstellen`, +'s544142ce35050751': `Testrichtlinie`, +'s545d99afa61e4095': `Zeichen, die als Symbole betrachtet werden.`, +'s5462c7f56ed65e6c': `E-Mail: Textfeld mit E-Mail-Typ.`, +'s54cd35e6224ba65d': `Standardmäßig werden für Quellen nur Symbole angezeigt. Aktiviere diese Option, um den vollständigen Namen anzuzeigen.`, +'s54e7a23a95d99649': `Text: Einfaches Texteingabefeld`, +'s5515a897ae98bed9': `Zertifikate`, +'s554ce268e9727e79': `Sie können nur Anbieter auswählen, die zum Typ des Outposts passen.`, +'s5572ac4d2208f5ec': `Eingabeaufforderung erfolgreich erstellt.`, +'s55787f4dfcdce52b': `Signaturschlüssel`, +'s5590dbf7e425789d': `Beschriftung`, +'s5599c62bb78c631f': `Admin Interface`, +'s55d731be1ef66efe': `Base DN`, +'s55fa598b754cc3cc': str` + ${0}( + ${1})`, +'s5615bb595ad6ded6': `Verknüpfungstyp`, +'s56806e9f63efa298': `URIs weiterleiten`, +'s5694f9421c428227': `Bind Password`, +'s56fd9ed596c724fa': `Geheimer Schlüssel`, +'s57072ffb92b6c9c8': `Definieren Sie, wie Benachrichtigungen an Benutzer gesendet werden, z. B. E-Mail oder Webhook.`, +'s57337099d96ce6d2': `Immer neuen Benutzer erzeugen`, +'s57448f10eb973100': `Erstelle Einladungslinks um Benutzer zu registrieren und optional spezifische Attribute zu deren Konto hinzuzufügen.`, +'s584d1c38ad20d560': `Jedes HTML kann verwendet werden.`, +'s586d6bd2eca2da93': `Benutzer`, +'s587ba266269297ab': `Regelwerk Bindungen`, +'s588796ee929a2e4c': `Nutzerdetails`, +'s58888ef1ee9b5bb8': `Benutzerstatus`, +'s58c867aac77b9158': `Letzte Anmeldung`, +'s58cd9c2fe836d9c6': `Zurück zum Home`, +'s58d1eb482059da12': `Neuer Anbieter`, +'s58fd2aafa4261c55': `Anwendung erfolgreich aktualisiert.`, +'s592425143c4f5834': `SAN`, +'s592ab7d2bc1b8973': `Benutzerfelder`, +'s593db2c00d6516a2': `SMTP Passwort`, +'s5944355d69db1fb8': `Zusatz Gruppen-DN`, +'s59572c1be31a812e': `Ablaufpuffer löschen fehlgeschlagen`, +'s59691290a232c687': `Ausgewählte Richtlinien werden ausgeführt, wenn die Stufe zur Validierung der Daten übermittelt wird.`, +'s59b6028f19d15cda': `Keine Integrationen aktiv`, +'s59dc0eda07f9e2b6': `Eigenschaftszuordnung(en)`, +'s59f5eda30a904b75': `JWKS URL`, +'s5a13f4bbe004503f': `Überprüft, ob das Passwort des Benutzers der Anfrage in den letzten x Tagen geändert wurde, und lehnt es basierend auf den Einstellungen ab.`, +'s5a15a8f39c699273': `Übereinstimmungsereignisse, die von der ausgewählten Anwendung erstellt wurden. Wenn es leer gelassen wird, werden alle Anwendungen abgeglichen.`, +'s5a48d5171e1a1522': `Warnung: Keine Richtlinie zugewiesen`, +'s5acb607b40356974': `GID-Startnummer`, +'s5b1fb0d4c0daeba8': `Verknüpfung erstellen`, +'s5b6b6e2cb884d59f': `Duo Auth API`, +'s5be3b0567172e415': `Zertifikat zur Überprüfung`, +'s5be3c6d61cd9182f': `Benachrichtigungen`, +'s5c18cae48b93138c': `Sitzungen`, +'s5cd31f4a88adf180': `Benutzer bearbeiten`, +'s5d0a14d29ebad561': `Flow der zum Anlegen bereits neuer Nutzer verwendet wird`, +'s5d6af4c100ad321b': str` + ${0}erstellen`, +'s5d9f93f1fe1c19d3': `Traefik (Ingress)`, +'s5deac600e329de1b': `Logeinträge`, +'s5e169e1bac20b4a6': `Outposts`, +'s5e8250fb85d64c23': `Schließen`, +'s5e830ae7688d1219': `Phase, die zum Konfigurieren eines SMS-basierten TOTP-Authentifikators verwendet wird.`, +'s5eaf1d304e03ed4b': `Duo User ID`, +'s5f343a43e7ea9f91': `Fehler`, +'s5f4586bc1e2740e6': `Sucheingabe löschen`, +'s5f496533610103f2': `Anwendung authorisiert`, +'s5f5bf4ef2bd93c04': `Gruppenzuordnungen können nur überprüft werden, wenn der Benutzer beim Zugriff auf diese Quelle bereits angemeldet ist.`, +'s5fbaeb14f42815e5': `Authenticator-Anhang`, +'s5fc4269c2addee61': `Einzigartige Kennung zur Referenzierung des Token.`, +'s60cc554fde2676cb': `Ein nicht abnehmbarer Authentifikator, wie TouchID oder Windows Hello`, +'s60d891ed3ee9ebc5': `Quelle erfolgreich erstellt.`, +'s60edbcfac8ed1f90': `Der Anfang für uidNumbers, diese Zahl wird zu user.Pk hinzugefügt, um sicherzustellen, dass die Zahlen für POSIX-Benutzer nicht zu niedrig sind. Standardwert ist 2000, um sicherzustellen, dass wir nicht mit lokalen Benutzer kollidieren`, +'s6152026c364ad974': `Identitätsquellen, die entweder mit der Datenbank von authentik synchronisiert oder von Benutzern verwendet werden können, um sich selbst zu authentifizieren und zu registrieren.`, +'s618d4e53f455c834': `Verwende globale Einstellungen`, +'s61b6f3e6bc59c6dd': `Eingabeaufforderung erstellen`, +'s61ccefd661ac2296': `Wenn dieses Flag gesetzt ist, springt diese Stufe zur nächsten Stufe, wenn keine Einladung gegeben wird. Standardmäßig bricht diese Phase den Flow ab, wenn keine Einladung gegeben wird.`, +'s61e48919db20538a': `UPN`, +'s6238f519db67980d': `UID`, +'s624256f8a4bb4c89': `Mitteilungszustellungsart(en)`, +'s62ddcbaaa91d120d': `Reputation Punkte`, +'s62f7c59b0606a8d6': `Autorisierungsablauf`, +'s62f93cfcb45d5a06': `Administrationsrechte?`, +'s634d041fd954ab20': `API Auth Passwort`, +'s63cb05541b294335': `Ist Admin`, +'s63d894b1ddb06289': `Beschreibung`, +'s63d89a6ae0969c30': `Damit Benutzer ihr Passwort selbst zurücksetzen können, muss ein Wiederherstellungsablauf für die aktuell aktive Umgebung konfiguriert werden.`, +'s63e03c70f67ebf9c': `Kontext`, +'s63e71d20d1eaca93': `Deutsch`, +'s643d8f2e5e5e930d': `Zuordnung erfolgreich aktualisiert.`, +'s64a33dcdaf90af26': `Benutzerinformation`, +'s64ef2a6c2dd1d3d1': `Bearbeiten`, +'s65ca2f256ea09c11': `Zu bestehender Gruppe hinzufügen`, +'s65d507f1513c2f03': `Ermöglicht vom IdP initiierte Authentifizierungsströmen. Dies kann ein Sicherheitsrisiko darstellen, da keine Validierung der Anfrage-ID erfolgt.`, +'s65d67612999165e9': str`Ereignis + ${0}`, +'s662fcb3761ad9df7': `Bei Verwendung in Verbindung mit einer User Write-Phase verwenden Sie attributes.foo zum Schreiben von Attributen.`, +'s66722bc2ea775e05': `Deaktiviert`, +'s66ffc06300964849': `Benutzerobjektfilter`, +'s670ad066cc0e50a3': str`Anmelden um mit + ${0}fortzufahren.`, +'s67560d7e37d984c3': `Richtlinie / Benutzer / Gruppe`, +'s67664f8ee9aea98d': `Bitte geben Sie Ihren Code ein`, +'s67749057edb2586b': `Abmelden`, +'s677f1b675fc21bb1': `Geheimnis:`, +'s67dedada007d4067': str`Quelle konnte nicht getrennt werden: + ${0}`, +'s67e20cd8018d7e3c': `Aktuell eingestellt auf:`, +'s681074b6c1f19c08': `Nicht konfigurierte Aktion`, +'s6873bdbfa24615fb': `Webhook URL`, +'s68a50b1ee6efee7b': str` + ${0}ist verfügbar!`, +'s68d69ad0271c8ef6': `Neue Outpost-Integration erstellen.`, +'s68f935c9ca792016': `app1 läuft auf app1.example.com`, +'s693d975d38ff0214': `Signaturalgorithmus`, +'s6941a67f0038ba4c': `Stufen zur Konfiguration des Authenticators, wenn der Benutzer keine kompatiblen Geräte besitzt. Nachdem diese Konfigurationsstufe abgeschlossen ist, wird der Benutzer nicht mehr dazu aufgefordert.`, +'s69a56a3022c4be7f': `Umgebung(en)`, +'s69bd313dd12fc2f3': `Profil URL`, +'s6a406aecb2c0e5c5': `Registrieren`, +'s6a89bb10338369b4': `Zurück zur vorherigen Seite`, +'s6ab73c998850c5ab': `Ausdruck`, +'s6abff64e7ff7fde9': `Profilbild`, +'s6ac670086eb137c6': `Wiederherstellung`, +'s6ae0d087036e6d6d': `Wählen Sie eine Authentifizierungsmethode aus.`, +'s6b5002c605b39d6d': `Mitteilungszustellungsart erstellen`, +'s6b6e6eb037aef7da': `Verwenden Sie den Benutzernamen und das Passwort unten, um sich zu authentifizieren. Das Passwort kann später auf der Seite Tokens abgerufen werden.`, +'s6b79e73ca77148a0': `Outpostintegrationen`, +'s6b85380416964890': `Ergebnis verneinen`, +'s6ba50bb0842ba1e2': `Anwendungen`, +'s6c3daaac4eed12f9': `Versionsverlauf`, +'s6c410fedda2a575f': `Update verfügbar`, +'s6c607d74bdfe9f36': `Benutzerzuordnungen können nur überprüft werden, wenn der Benutzer beim Zugriff auf diese Quelle bereits angemeldet ist.`, +'s6c70a73265e14521': `Link zu einem Benutzer mit identischer E-Mail-Adresse. Kann Auswirkungen auf die Sicherheit haben, wenn eine Quelle E-Mail-Adressen nicht validiert`, +'s6c8f05e3be04f62a': `Gerät registrieren`, +'s6d3b4d0561ba1cff': `Herausgeber`, +'s6d5bce4321f57cda': `Abmeldung`, +'s6df42b3072a2d7e9': `Nginx (Ingress)`, +'s6dfb7283452f78fe': `Autorisierung`, +'s6dfd15978586d05f': str`Willkommen, + ${0}!`, +'s6e09a19aa3952509': `Meistgenutzte Apps`, +'s6e4c997a101b6abf': `mit aktuellem Nutzer`, +'s6e612e5a6a359bbb': `Optionaler privater Schlüssel. Wenn dies eingestellt ist, können Sie dieses Schlüsselpaar für die Verschlüsselung verwenden.`, +'s6e6e737601f44b2c': `Benachrichtigungen erfolgreich gelöscht`, +'s6f270e1668c036e9': `Outpost erfolgreich aktualisiert.`, +'s6f328f2d8382d998': `Einwilligung erlischt in`, +'s6f857299d5db1ecf': `Ablauf/Abläufe`, +'s6fcd9b5a87ceccd6': `Einstellungen öffnen`, +'s6fe64b4625517333': `Erstellt durch Authentik`, +'s7031e6928c44cedd': `Benutzeroberfläche`, +'s706af57c1af42c6d': `Versteckt: Verstecktes Feld, kann zum Einfügen von Daten in das Formular verwendet werden.`, +'s708d9a4a0db0be8f': `Status überprüfen`, +'s70f6471de355b98c': `HTTP-Basic Passwort Schlüssel`, +'s713d147e1761d0f0': `Aktuell!`, +'s713e8666ed70f8b3': `Neue Eigenschaftszuordnung erstellen.`, +'s71dcd9cf808449aa': `Token(s)`, +'s720594461542943f': `Benutzer hinzufügen`, +'s721d94ae700b5dfd': `Duo-Aktivierung`, +'s72559845d38bf688': `Konfiguriere, wie lange Zugangstoken gültig sind.`, +'s72c1c17a9bdc76ad': `Hilfetext`, +'s72e102414fec81a4': `Regel erfolgreich erstellt.`, +'s730182ad28374cda': `Objekt`, +'s7301a7069b7bc83e': `Widerrufen?`, +'s733f83ff9d50da30': `Konfigurieren Sie die maximal zulässige Zeitdrift für eine 'Assertion'`, +'s73c13e5a6f5e38a3': `Geräteklassen`, +'s74475586afc1fb0f': `Wählen Sie einen Typen.`, +'s745a55f9abf9f2e5': `Sidebar rechts`, +'s7468e87263dfff7e': `Kennung`, +'s7489f76224f8120d': `Forward Auth (einzelne Anwendung)`, +'s74f809a69e030351': `OpenID-Konfigurations-Aussteller`, +'s7520286c8419a266': `Optionale Daten, die in die Kontextvariable „prompt_data“ des Flows geladen werden. YAML oder JSON.`, +'s75a27f43413e02c5': `Französisch`, +'s75d5ff5dd8d3c6d2': `Gruppe erfolgreich aktualisiert.`, +'s7609ee54e8a7b05a': `Gültigkeitstage`, +'s764bccb30868bf62': `Die externe URL, unter der Sie auf die Anwendung zugreifen. Schließen Sie alle Nicht-Standard-Ports ein.`, +'s76768bebabb7d543': `Feld, das Mitglieder einer Gruppe enthält. Beachten Sie, dass bei Verwendung des Felds „memberUid“ davon ausgegangen wird, dass der Wert einen relativ definierten Namen enthält. z.B. 'memberUid=some-user' statt 'memberUid=cn=some-user,ou=groups,...'`, +'s7683363cdf78cf31': `Die Benutzerüberprüfung wird bevorzugt, falls verfügbar, aber nicht erforderlich.`, +'s76881c01b6a3a8c7': `Einwilligung(en)`, +'s76da2c978dcc5ef4': `Richtlinien-Cache erfolgreich geleert`, +'s76f5dca6404a1210': `Webhook (Slack/Discord)`, +'s773aa6621d7e37b7': `Umgebung erstellen`, +'s7754f0e34f27fb6e': `Beschreibung, die Benutzer sehen, wenn sie Einwilligen. Falls leer gelassen, werden Benutzer nicht informiert.`, +'s77994108c886b965': `Fehlgeschlagene Versuche vor Abbruch`, +'s77f572257f69a8db': `Ausnahme der Eigenschaftszuordnung`, +'s78c08391ffbfb8c0': `Diese Bindungen steuern, welche Benutzer auf diesen Ablauf zugreifen können.`, +'s78fd8c03f8c967f3': `Tokens`, +'s7968dbed9b106c29': `Keine Dienste verfügbar.`, +'s7989db5f4819af89': `Ablauf, der zum Abmelden genutzt wird. Wenn keiner angegeben ist, wird der erste anwendbare Ablauf, sortiert nach Slug, verwendet.`, +'s79ad406777feab1f': `Ablauf mit Einladung fortsetzen`, +'s79aed8154d7c472c': `Outpost erfolgreich erstellt.`, +'s79e8cc71a5975b04': `Nachricht`, +'s7a141f1b61074fbe': `Basic-Auth`, +'s7a322c89298dd27c': `Einladung erfolgreich aktualisiert.`, +'s7a4f059aaa029719': `Verbinden`, +'s7abc9d08b0f70fd6': `Statische Token`, +'s7b18721be331241e': `Wählen Sie, welche Zustellungsart genutzt werden soll um Benutzer zu benachrichtigen. Wenn keine gewählt wurde, werden Benachrichtigungen nur in der Authentik-Oberfläche angezeigt.`, +'s7b1fba26d245cb1c': `Falls eine externe Protokollierlösung zum archivieren genutzt wird, könnte dies auf „minutes=5“ gesetzt werden.`, +'s7b576aa71acb36a6': `Diagramm`, +'s7b7163270e57e8b4': `Aktualisieren`, +'s7bc8c327f1f7c82c': `Keine Objekte gefunden.`, +'s7bda44013984fc48': `Passwort festgelegt`, +'s7c05ee41d634aa45': `Für die Benutzererstellung verwendete Eigenschaftszuordnungen.`, +'s7c10976de6411844': `Token-Gültigkeit`, +'s7c27e113f90a89e0': `Wenn diese Option ausgewählt ist, werden die Signaturen eingehender Behauptungen anhand dieses Zertifikats validiert. Um nicht signierte Anfragen zuzulassen, belassen Sie die Standardeinstellung.`, +'s7c5774fad9d050ce': `Gruppe erstellen`, +'s7cb9aa9ee1783f00': `Gruppeneigenschaftszuordnungen`, +'s7d499be3b781a3ca': `Benutzer`, +'s7d684b6257284e55': `Punkt(e)`, +'s7def067ed3ad3ad9': `Cookie-Domain`, +'s7e537ad68d7c16e1': `Benutzer wurde geschrieben nach`, +'s7e5af9c6ba6f5cc6': `Wenn mehrere Stufen ausgewählt sind, kann der Benutzer wählen, welche er registrieren möchte.`, +'s7e87ab366c199345': `Bindung aktualisieren`, +'s7eb3d239e0b491ab': `Wählen Sie Gruppen aus, denen Benutzer hinzugefügt werden sollen`, +'s7ec7036b249f4f22': `Regelmäßiger Benutzer`, +'s7edad99c6b7bfe88': `Weiter zur nächsten Seite`, +'s7f4e4054fbe132e1': `Weitere globale Einstellungen`, +'s7f5869b3d14d7cbc': `Schnittstellen`, +'s7f9e79189a3d19e2': `Mandanten`, +'s7f9eb9c8bd26e8fd': `Gültige Umleitungs-URLs nach einem erfolgreichen Autorisierungsablauf. Geben Sie hier auch alle Ursprünge für implizite Flüsse an.`, +'s7fa236d26b798301': `Link senden`, +'s7fa4e5e409d43573': str`Fehler beim Erstellen der Anmeldedaten: + ${0}`, +'s802826db4e2c852e': `Warnung: Keine Einladungsphase ist an einen Ablauf gebunden. Einladungen funktionieren nicht wie erwartet.`, +'s803b0621006085be': `Aktualisieren Sie den SAML-Anbieter`, +'s80e6d6fe5ad458d3': `Symbol zurücksetzen`, +'s819509c33a7534ac': `Mitteilungszustellungsarten`, +'s81a87652ade099e4': `Benutzer-Matching-Modus`, +'s81ecf2d4386b8e84': `Weiter`, +'s81eff3409d572a21': `Allgemeine Systemausnahme`, +'s82188c9542510212': `Optionaler Wiederherstellungsablauf, der unten auf der Seite verlinkt ist.`, +'s8226f48cb1a80997': `Einladungen`, +'s832282d415294df4': `Ablauf importieren`, +'s835da49b4dc83a51': `Fehlgeschlagene Anmeldungen pro Tag im letzten Monat`, +'s836aa192b30c21da': `Ablauf der Abmeldung`, +'s838418d1a0815157': `Pass-Richtlinie?`, +'s838ed611b533b19e': `Schlüsselpaar, das zum Signieren ausgehender Anfragen verwendet wird. Leer lassen, um das Signieren zu deaktivieren.`, +'s839cb09cb2193da9': `Einladungslink`, +'s83d0f62ad1731a03': `Privater Schlüssel`, +'s84c5a011acd608c9': `Ereignisspeicherung`, +'s84d7d6ebbedcb586': `Zustand und Version`, +'s850a58c683682809': `Ausstellermodus`, +'s851c108679653d2a': `Bereichsname`, +'s85366fac18679f28': `Passwort vergessen?`, +'s858e7ac4b3cf955f': `Statische Token`, +'s859b2e00391da380': `Wähle 'Ja' um die Anzahl der Anmeldeaufforderungen zu reduzieren.`, +'s872d0e88ab34ed83': `Autorisierungs-URL`, +'s8763a33c3d46aaf5': `Outpost Status`, +'s87b7e3bc944c728c': `Aktiviere ausstehenden Benutzer bei Erfolg`, +'s8802553bc57617ee': `Outposts sind Installationen von authentik-Komponenten, die Unterstützung für unterschiedliche Umgebungen und Protokolle wie Reverse Proxies bereitsstellen.`, +'s883b544e2b4aa3b5': `Mindestanzahl an Kleinbuchstaben`, +'s8849ece8c65e3a18': `Dashboards`, +'s88870d7e499e848b': `Duo Admin API (optional)`, +'s88b8a2892635a2fc': `URL, die von Authentik zum Abrufen von Token verwendet wird.`, +'s890810efbe103cbc': `Ordnen Sie erstellte Ereignisse diesem Aktionstyp zu. Wenn es leer gelassen wird, werden alle Aktionstypen abgeglichen.`, +'s890e983a7be64da4': `Ergebnis`, +'s892d2731a6f22e59': `Privater Schlüssel, erworben von https://www.google.com/recaptcha/intro/v3.html.`, +'s8939f574b096054a': `Nicht Sie?`, +'s8a1d9403ca90989b': `Einladung verwendet`, +'s8a67b33a0d70d322': `Duo Gerät importieren`, +'s8aaad223e954f9ca': `Wenn diese Option aktiviert ist, werden Benutzerfelder unabhängig von ihrem Format abgeglichen.`, +'s8af61807443f32a4': `Aktionen`, +'s8af7239354f7e7b6': `Benutzer synchronisieren`, +'s8aff572e64b7936b': `E-Mail erneut senden.`, +'s8b0432eecbd8b034': `Aktualisieren`, +'s8b149b30b5b523ef': `Bekannte OIDC-Konfigurations-URL. Kann verwendet werden, um die obigen URLs automatisch zu konfigurieren.`, +'s8b2b2a43fcf688a3': `Eingabeaufforderung erfolgreich aktualisiert.`, +'s8b33660e2ed7212c': `Bei Verbindung via SSH wird dieses Schlüsselpaar zur Authentifizierung genutzt.`, +'s8b87df5664de7eb8': `Konfigurieren Sie, wie der Outpost die Benutzer des Core-Authentik-Servers abfragt.`, +'s8be4abc7ca71da6c': `UI-Einstellungen`, +'s8c05cccd470f6b5f': `Kein Ablauf für Einstellungen konfiguriert.`, +'s8ca0dbaec5d48563': `Es ist kein Wiederherstellungsablauf konfiguriert.`, +'s8cb7bb82e96d5d77': `Richtlinien`, +'s8cc920e6a8430a0d': `Melden Sie den aktuell ausstehenden Benutzer an.`, +'s8cda828dac449ea5': `Alles löschen`, +'s8ce8bdc9cc9c8604': `Einwilligung gilt unbegrenzt`, +'s8d08843f397d9e81': `Eine Liste aller Variablen finden Sie in der Dokumentation.`, +'s8d32d7b9e8ca60b1': `Für alle Anbieter wird dieselbe Kennung verwendet`, +'s8d7ecd944ebe834b': `Token wird von Authentik verwaltet.`, +'s8d857061510fe794': `Duo Push-Benachrichtigungen`, +'s8da88a8a5750bce1': `Duo-Authentifikatoren`, +'s8e01a852c1db8d29': `Nginx (Proxy-Manager)`, +'s8ecdbff1a7329b64': `mit Inspektor`, +'s8f12575f694e85a2': `Zusätzliche Bereichszuordnungen, die an den Proxy übergeben werden.`, +'s900b0d85b872d134': `Verknüpfen Sie Benutzer mit einer eindeutigen Kennung`, +'s909e876731a8febb': `Wählen Sie alle Zeilen aus`, +'s90c3b62194fe8508': `Outpost-Installationsinfo`, +'s9117fb5195e75151': `Hinweis`, +'s916b32ac64ea2b05': `Phase erfolgreich aktualisiert.`, +'s9193ef1a39a6c872': `Neu erstellte Benutzer als inaktiv markieren.`, +'s91e3a47599412f51': `Quellen`, +'s91f389c796720a81': `Server laden`, +'s91f70424f5d5d23e': `Slug`, +'s9222ca30ae7786e4': `Anwendung erfolgreich erstellt.`, +'s925936f647ae52cc': `Wird als Titel auf den Ablaufseiten angezeigt.`, +'s926e0ecf124fb01a': `Gültigkeit des Zugangsschlüssels`, +'s92ca679592a36b35': `Geheimnis wurde rotiert`, +'s92e241c9f3c101a2': `Verbindungsobjekt wird gelöscht`, +'s93574c03953f25dd': `Dieser Anbieter verhält sich wie ein transparenter Reverse-Proxy, außer dass Anforderungen authentifiziert werden müssen. Wenn Ihre Upstream-Anwendung HTTPS verwendet, stellen Sie sicher, dass Sie sich auch über HTTPS mit dem Outpost verbinden.`, +'s93c1e5fbe8184895': `Token erfolgreich erstellt.`, +'s93cea6ca1f93349d': `Nicht authentifizierte URLs`, +'s93cf77a59db53395': `Referenz wird auf den Standardwert zurückgesetzt`, +'s94333971a07803b9': `Weitere Einstellungen`, +'s949826fad0fe0909': `Aufgabe mit Fehlern beendet`, +'s951281efc92b03fc': `Wenn eines der oben ausgewählten Geräte innerhalb dieser Zeitspanne benutzt wurde, wird dieser Schritt übersprungen.`, +'s955c1fec1c6fb970': `Aktuell sind keine Phasen mit diesem Ablauf verknüpft.`, +'s95a032ae86881bf5': `Nutze Ablauf`, +'s964f6725aeb7662f': `Gruppe hinzufügen`, +'s965c503c3e42fdfe': `Aktiviert`, +'s968c90258dcf7562': `POST Bindung`, +'s96b2fefc550e4b1c': `Anbietertyp`, +'s96b3cddf33e1c853': str`Sie geben sich gerade als + ${0}aus. Klicken Sie zum Stoppen.`, +'s97d1b0070f50c07f': `Statische Token`, +'s97f2dc19fa556a6a': `SMS`, +'s97f5e0c138eae172': `Warnung: Provider ist keiner Applikation zugewiesen`, +'s980270d0fab7ecb3': `Phasenbindung aktualisieren`, +'s98b1cb8fb62909ec': `Gruppe`, +'s98c3bdf4fd5cdf65': `Benachrichtigungsregeln`, +'s991b750e2d5c4234': `Service Anbieter Bindung`, +'s992f8d1a776e763c': `Wenn diese Option leer bleibt, versucht authentik, die Start-URL auf der Grundlage des ausgewählten Anbieters zu extrahieren.`, +'s99f110d27e30b289': `Titel`, +'s9a34d1520e320465': `Phasenspezifische Einstellungen`, +'s9a393a04eaf1eb0e': `Stage Bindung erstellen`, +'s9ae089fd248e72db': `Zusätzlicher Benutzer-DN, dem Basis-DN vorangestellt.`, +'s9bd59e0ea70a3e4a': `Outpost aktualisieren`, +'s9bd9ba84819493d4': `Etwas ist schiefgelaufen. Bitte probiere es später wieder`, +'s9bf48a89367282cd': `Warnung: authentik-Domain ist nicht konfiguriert. Authentifizierungen werden nicht funktionieren.`, +'s9c29565c5ae1cc92': `Die Auswahl einer Integration ermöglicht die Verwaltung des Outposts durch Authentik.`, +'s9c3c272944dcfca3': `Nutzer erfolgreich erstellt.`, +'s9c6f61dc47bc4f0a': `Modell erstellt`, +'s9c73bd29b279d26b': `Identitätswechsel beenden`, +'s9d18948d25c68d66': `Zertifikat-Schlüsselpaar erfolgreich generiert.`, +'s9d2d00982edafabb': `Türkisch`, +'s9d8ad4b85287131f': `Ziffern`, +'s9d95f09deb601f34': str`Servervalidierung der Anmeldedaten fehlgeschlagen: + ${0}`, +'s9d96eb5ca93e6473': `OpenID-Konfigurations-URL`, +'s9db2c836ade1339c': `OIDC JWKS URL`, +'s9e568afec3810bfe': `Wiederherstellungsschlüssel`, +'s9e830cbc0b42a514': `Ablauf aktualisieren`, +'s9e9c8d99f4c26baf': `Wenn ein Benutzer erfolgreich von der E-Mail zurückkehrt, wird sein Konto aktiviert`, +'s9ea472b555374771': `Resident-Key-Anforderung`, +'s9ee20003cb116abf': `Passwortloser Ablauf`, +'s9f23ed1799b4d49a': `Konfigurieren Sie, welche Daten als eindeutige Benutzerkennung verwendet werden sollen. In den meisten Fällen sollte die Standardeinstellung in Ordnung sein.`, +'s9f26843287bb592d': `Gruppen`, +'s9f5a5f23312798f0': `Mitglieder`, +'s9f8aac89fe318acc': `Legen Sie optional den Wert „FriendlyName“ des Assertion-Attributs fest.`, +'s9f91cc8bcfabb40f': `SAML Assertion nicht gültig vor`, +'s9fb28be12e2c6317': `Administrator`, +'s9fdda7ea4642306c': `Gruppe(n)`, +'s9ff3121d30f88d52': `Normal`, +'s9ffa1ac03ce6fd20': `Ausführungsprotokollierung`, +'sa00cf67b54c44c71': `IP des Kubernetes-Service überprüfen, oder`, +'sa03aa46068460c95': `Benutzername oder Passwort vergessen?`, +'sa03fe48e892df2d8': `Die externe URL, bei der Sie sich authentifizieren. Unter dieser URL sollte der Authentik Core Server erreichbar sein.`, +'sa0b01f479f40c52d': `Gerät(e)`, +'sa0e0bdd7e244416b': `Verdächtige Anfrage`, +'sa11e92683c5860c7': `Anfrage wurde verweigert`, +'sa13e6c8310000e30': `Sitzungs-ID`, +'sa1b41e334ad89d94': `Geheimnis wurde angesehen`, +'sa248e1021d2c27b5': `Überprüfen Sie die E-Mail-Adresse des Benutzers, indem Sie ihm einen einmaligen Link senden. Kann auch für die Wiederherstellung verwendet werden, um die Authentizität des Benutzers zu überprüfen.`, +'sa266303caf1bd27f': `E-Mail gesendet`, +'sa29b5680cfafacc8': `Externer Host`, +'sa2b727168b090d34': `Flow-Cache löschen`, +'sa2c29dc5ed47b26d': `Benutzer auffordern einen Authenticator einzurichten`, +'sa2e4d6830226d3ec': `Bindings umleiten`, +'sa30c58514a3dc0fb': `Dem Benutzer den Zugang verweigern`, +'sa319e3bf44c85963': `Für die Gruppenerstellung verwendete Eigenschaftszuordnungen.`, +'sa33d061d2ade20aa': `Reputation`, +'sa3438c7bb4e9cce8': str` + ${0}ungelesen`, +'sa347e31efbb60be2': `Anwendung aktualisieren`, +'sa3599457b9418bc5': `Avatar des Benutzers`, +'sa3660d505e7011e0': `Autorisierte Applikation:`, +'sa3c1f6ac5e63a70f': `Flow der vor Authorisierung verwendet wird`, +'sa41aee3ae04c9216': `Bezeichnungen der Quellen anzeigen`, +'sa442044b586ec8bf': `Aktion`, +'sa45a194b58837e4f': `Aktiv`, +'sa48f81f001b893d2': `Benutzer`, +'sa4a8086275475714': `Registrierungsablauf wählen`, +'sa50a6326530d8a0d': `Zeige weniger`, +'sa578033f134a83b6': `Konfiguriere, wie lange Zugangsschlüssel gültig sind.`, +'sa57c393736e2732c': `Eigenschaftszuordnung testen`, +'sa599dbe5776897ad': `Geben Sie mehrere Server-URIs an, indem Sie sie durch ein Komma trennen.`, +'sa661ea7d7a50f2e9': `Neuen Anbieter erstellen.`, +'sa668bd79645c3e06': `Kubeconfig`, +'sa6905be242387f36': `Ausnahme`, +'sa6ab5184d6315895': `Von`, +'sa717841a602fe7d8': `Richtlinienpuffer löschen fehlgeschlagen`, +'sa738ce390bc24875': `Holen Sie sich diesen Wert von https://console.twilio.com`, +'sa7b56a80ab1801f0': `Twilio Authentifizierungs Token`, +'sa7fcf026bd25f231': `Kann das Format 'unix://' haben, wenn eine Verbindung zu einem lokalen Docker-Daemon hergestellt wird, oder 'ssh://', wenn eine Verbindung über SSH hergestellt wird, oder 'https://:2376', wenn eine Verbindung zu einem entfernten System hergestellt wird.`, +'sa800871782eba1ac': `Inhalt rechts`, +'sa81e2cdaf6921adc': `System`, +'sa879d5ce584875cf': `Richtlinienspezifische Einstellungen`, +'sa8c45b6b92a8ba1f': `Anwendung erstellen`, +'sa8d83cd8023e8e4d': `URL, die von Authentik verwendet wird, um Benutzerinformationen zu erhalten.`, +'sa8e255492bb6ae0d': `Outpostintegration(en)`, +'sa9020b93c3bd7235': `Anzahl der Versuche, die Benutzer haben, bevor der Ablauf abgebrochen wird. Um Benutzer auszuschließen kann eine Reputations-Richtlinie und eine user_write-Stufe genutzt werden.`, +'sa90b7809586c35ce': `Geben Sie entweder eine vollständige URL oder einen relativen Pfad ein oder geben Sie 'fa://fa-test' ein, um das Font Awesome-Icon "fa-test" zu verwenden`, +'sa95a538bfbb86111': str`Sind Sie sicher, dass Sie + ${0}" + ${1}" aktualisieren wollen?`, +'sa9b2a245441557dc': `Letzter Lauf`, +'sa9dbe2fb284e26fe': `Wiederherstellungslink an Benutzer senden`, +'saa0e2675da69651b': str`Die URL " + ${0}" wurde nicht gefunden.`, +'saa10777250a6deca': `Aktualisieren Sie die SAML-Quelle`, +'saa855c61e0403fe6': `Warnung: Die Anwendung wird von keinem Outpost verwendet.`, +'saaa3abe03c7260f9': `Langlaufende Operationen, die Authentik im Hintergrund ausführt.`, +'saae1c70e168b45b4': `Admin`, +'sab6bad52985c6676': `Das Branding wird im Seitentitel und an mehreren anderen Stellen angezeigt.`, +'sab6d24c5ec8dc361': `Name`, +'sab85321d3b0840b7': `API Anfrage fehlgeschlagen`, +'sababff57115130a0': str`Fehler: nicht unterstützte Quelleinstellungen: + ${0}`, +'sabaf0061f7e41b0b': `Geheimniss`, +'sabb56f74492e7e96': `Gerät aktualisieren`, +'sabd1bc9fb7da71e7': `Ausdruck mit Python.`, +'sabebdc7fa6a5bddb': `Nginx (eigenständig)`, +'sabf67834e35dede5': `Token Count`, +'sac1332e6f421526e': `Mitteilungszustellungsart aktualisieren`, +'sac17f177f884e238': `Eingeloggt bleiben?`, +'sac43cb9690260b86': `UID-Startnummer`, +'sac8252732f2edb19': `Datum`, +'sad09c62cb4ebae68': `Token kopieren`, +'sad130c2d925fb7bf': `Benutzer ändern`, +'sad3e3c8146fc920f': `Status`, +'sad59707375956ad2': `Fertig`, +'sad8550b8731518d8': `Session gültig nicht am oder nach`, +'sae1e1a59d22609c4': `Wenn diese Option aktiviert ist, werden die globalen E-Mail Verbindungseinstellungen benutzt und die unten angegebenen Einstellungen ignoriert`, +'sae239213b7c70376': `Zustand`, +'sae486938be80729c': `Alles funktioniert.`, +'sae5d87e99fe081e0': `Erforderlich`, +'sae5da213b7f896ed': `Phase`, +'saeff3596e1ac31b6': `Einrichtung`, +'saf1d289e3137c2ea': `CA, anhand derer das Zertifikat des Endpunkts überprüft wird. Kann leer gelassen werden, um keine Validierung durchzuführen.`, +'saf24e253b3b006d4': `So verbinden Sie sich`, +'saf31b3c610036ed6': `Wenn diese Option aktiviert ist, werden alle Ausführungen dieser Richtlinie protokolliert. Standardmäßig werden nur Ausführungsfehler protokolliert.`, +'saf5eb7596b3a355b': `Betrachten Sie Objekte, die diesem Filter entsprechen, als Gruppen.`, +'saf63a04c86018698': `-`, +'saf63d34c8601dd41': str` + ${0} + `, +'saf794c74c9ea731e': `Benutzereigenschaftszuordnungen`, +'saf7ce4165a1025f6': `Gruppen synchronisieren`, +'safc0e0656d572f4e': `Eine Richtlinie, die zum Testen verwendet wird. Gibt nach einer zufälligen Wartezeit immer das unten angegeben Ergebnis zurück.`, +'safcc54b2aedb1a17': `Wenn dies ausgewählt ist, läuft das Token ab. Nach Ablauf wird der Token rotiert.`, +'safd0363143a46a91': `Basic Auth`, +'sb0669da3df95837c': `Anmeldungen pro Tag im letzten Monat`, +'sb07bf992e3d00664': `Keine weiteren Daten vorhanden.`, +'sb0b86b8ca6ab13bd': `Anbieter`, +'sb157267c85fdff30': `Zertifikat`, +'sb15e8daacf26bdfc': `Token erstellen`, +'sb1751a1411d6874f': `Externe API URL`, +'sb17e8c70f9a05c77': `Falls Sie auf keine andere Methode zugreifen können.`, +'sb1c91762ae3a9bee': `Identitätswechsel gestarted`, +'sb1fe947f9ad27b9d': `Ablauf des Tokens`, +'sb24755ea94bef31d': `Aktuelles Hintergrundbild löschen`, +'sb25d9afe10941425': `Entscheidet, wofür dieser Flow verwendet wird. Beispielsweise wird der Authentifizierungsablauf umgeleitet, wenn ein nicht authentifizierter Benutzer authentik besucht.`, +'sb25e689e00c61829': `Verwenden Sie einen Code-basierten Authentifikator`, +'sb2b3b281954752c4': `Zugewiesen an Anwendung`, +'sb2bb6f93773a4594': `Benutzer-/Gruppenattribut, das für den Benutzerteil des HTTP-Basic-Headers verwendet wird. Wenn nicht festgelegt, wird die E-Mail-Adresse des Benutzers verwendet.`, +'sb2c57b2d347203dd': `Zeig mehr`, +'sb2f307e79d20bb56': `Aktueller Plankontext`, +'sb32e9c1faa0b8673': `Vor-Authentifizierungs Ablauf`, +'sb357ea19a722d827': `Post`, +'sb3651834cca86735': `Mindestanzahl an Sonderzeichen`, +'sb3fa80ccfa97ee54': `Phasenname`, +'sb4564c127ab8b921': `Fehlgeschlagene Anmeldung`, +'sb4a1d1c19438e929': `Authentik läuft auf auth.example.com`, +'sb4e50ca3cffdbc10': `Sidebar links`, +'sb546eb04425e07fa': `Angaben aktualisieren`, +'sb564f81eb057342e': `Anwendungs-Symbol`, +'sb59d68ed12d46377': `Wird geladen`, +'sb635ad3c2e357d3c': `Dies ist das Passwort, das mit der Basisauthentifizierung verwendet werden soll`, +'sb69119c9f0547bed': `Wiederherstellungslink kopieren`, +'sb69a4b0acd0895f2': `Abläufe`, +'sb6cbd4f92ebaf5d8': `Verwandt`, +'sb6d5146d5efb3058': `Zugangsschlüssel`, +'sb6d7128df5978cee': `Richtlinien-Ausnahme`, +'sb6d7d58cb0a1544e': `Kompatibilitätsmodus`, +'sb72ebab438cb2983': `Importieren Sie Zertifikate externer Anbieter oder erstellen Sie Zertifikate zum Signieren von Anfragen.`, +'sb7684e2910a33a1f': `Bind CN`, +'sb7794c2910b1a9ec': `Bind DN`, +'sb7a30abc1dcf6c36': `Aussteller`, +'sb8168ae309c66abc': `TOTP-Authentifikatoren`, +'sb85ffe141d7c229d': `Sessionsdauer`, +'sb8795b799c70776a': `Einmalbenutzung`, +'sb8bc2b8376c96a6b': `Zweck`, +'sb8c13bd58191cea2': `Bei der Verbindung zu einem LDAP-Server mit TLS werden Zertifikate standardmäßig nicht geprüft. Geben Sie ein Schlüsselpaar an, um das Remote-Zertifikat zu validieren.`, +'sb8d4f44a1d5b9a14': `Backends`, +'sb8dd788adf7b907b': `Proxy`, +'sb904f23f17b60c3a': `Ablauf erfolgreich importiert.`, +'sb932dead79567c7b': `Zugangstoken-URL`, +'sb96629f50f2e7fab': `Defekt`, +'sb9834316ffd4ae3e': `Gestapelt`, +'sb986f15fa9b17805': `Einwilligung erlischt.`, +'sba42248f3f27955c': `Benutzer Datenbank + Standardpasswort`, +'sba65ae54d6585c1a': `Ungelesene Benachrichtigungen`, +'sbab723b98dcfe23f': `Passenden Benutzer anzeigen`, +'sbad5b96fb855ef36': `Keine Richtlinien verknüpft.`, +'sbadde673052efc02': `Web-Zertifikat`, +'sbb3243352661428f': `Authentifizierungsablauf`, +'sbb57cd8a3ed12915': `Gültig für 360 Tage, danach rotiert das Passwort automatisch. Sie können das Passwort aus der Token-Liste kopieren.`, +'sbbb2180b6aed196e': `Von Nummer`, +'sbbb7318812d64e51': str`Fehler beim Erstellen der Anmeldedaten: + ${0}`, +'sbbb97b1c63507dc0': `Nummer`, +'sbbc1de43ab6c1f76': `Benachrichtigungsregel erstellen`, +'sbbc53e0e54d7946f': `Betreff`, +'sbc80eab557fbf782': `Suchgruppe`, +'sbcae51a6f06e53d4': `Suchmodus`, +'sbd19064fc3f405c1': `Prüfen Sie Ihren Posteingang auf eine Bestätigungsmail.`, +'sbd34d118bcb1aaf2': `API Token`, +'sbdc1176ff9f93da2': `Dies ist der vollständige Endpunkt, an den POST-Anforderungen gesendet werden.`, +'sbdeedc1c60306b35': `Nachrichten`, +'sbe3b416a356f1c91': `Ist aktiv`, +'sbe47a5bdeec19ab0': `Phasen Bindung(en)`, +'sbe9a51f29a4a2c5b': `Erfolgreich`, +'sbea3c1e4f2fd623d': `Art der Phase`, +'sbec40ef4e6f139b7': `(Format: hours=-1;minutes=-2;seconds=-3).`, +'sbecf8dc03c978d15': `Synchronisation erneut ausführen`, +'sbedb77365a066648': str`Letzte Synchronisierung: + ${0}`, +'sbf41e0db12834133': `Schließen Sie Benutzeransprüche aus Bereichen in das id_token ein, für Anwendungen, die nicht auf den userinfo-Endpunkt zugreifen.`, +'sbf5f4c5ba679e847': str`Anmelden über + ${0}.`, +'sc04e92d753742189': `6 Ziffern, weitestgehend kompatibel`, +'sc0829ee663ced008': `Verzeichnis`, +'sc0a0c87d5c556c38': `Telefonnummer`, +'sc10db51c9bb77d5c': `Benutzer Datenbank + LDAP Passwort`, +'sc1231049879b8d33': `Nutze, wenn aktiviert, die lokale Verbindung. Benötigt Docker socket/Kubernetes Integration.`, +'sc15d60377cc8aaac': `Aktuell sind keine Richtlinien mit diesem Objekt verknüpft.`, +'sc16e00a7a8b2fde2': `Zurück`, +'sc19838ca8c135c1b': `Branding-Einstellungen`, +'sc1a1ff47c058bb09': `Ereignisprotokoll`, +'sc1cb0eef9ed94e6a': `Neu erstellte Benutzer werden dieser Gruppe hinzugefügt, wenn eine Gruppe ausgewählt ist.`, +'sc1ce2f758935ff48': `Verwaltet durch Authentik`, +'sc1cfce89ebcf1bf9': `Signierzertifikat herunterladen`, +'sc1feadd25659c94d': `Absenderadresse`, +'sc21032b0d37882a0': `Wenn Ihre authentik_host-Einstellung nicht der URL entspricht, mit der Sie sich anmelden, fügen Sie diese Einstellung hinzu.`, +'sc25edca57df81461': `Authentifizierung`, +'sc265a3e29e1206e4': `Events`, +'sc297b2e13c28ecf9': `Freunden erlauben sich via Plex zu authentifizieren, auch wenn keine Server geteilt werden.`, +'sc2a1a40a1b4b0170': `Integration erfolgreich erstellt.`, +'sc2e03590269d5a10': `Neue Eigenschaft`, +'sc2f116c0ea77d58a': `Fehlermeldung`, +'sc2f1e5dd74c1b7df': `Erfolgreiche Anmeldungen`, +'sc3259eb55cf91e8c': `LDAP`, +'sc35581d9c1cd67ff': str`Im Namen von + ${0}`, +'sc381422c585b867f': `Schnellaktionen`, +'sc39fb3ff3753d5ab': `Verwaltete Zuordnungen ausblenden`, +'sc3c74f5273df459a': `Generisch`, +'sc3e0c240b159fbce': `Ablauf erfolgreich erstellt.`, +'sc3e1c4f1fff8e1ca': `Dieser Ablauf ist abgeschlossen.`, +'sc44bae5cde0083fa': `Aktionen der letzten Woche (pro 8 Stunden)`, +'sc4508175bf6b09dd': `Nicht authentifizierte Pfade`, +'sc4eedb434536bdb4': `Wird ein Konto gebraucht?`, +'sc54aafeea9c9bab0': `Verknüpfte Dienste`, +'sc554339ffc7b04e7': `Integration erfolgreich erstellt.`, +'sc5668cb23167e9bb': `Alternativ kannst Du auch auf diesen Link klicken, wenn Du Duo auf Deinem Gerät installiert hast:`, +'sc592307ea80f16b9': `Unbekannt`, +'sc5a4711395ffb043': `Phase zum Konfigurieren eines TOTP-Authentifikators (z. B. Authy/Google Authenticator)`, +'sc647dcb91f6958dd': `Nummer, von der die SMS gesendet wird`, +'sc6b4ebd37b7a91c7': `Tokens und App Passwörter`, +'sc6c57419ad3a01a8': `Schlüssel zum Signieren der Token.`, +'sc6e8a34361c7c272': `Authentifizierung weiterleiten (Domänenebene)`, +'sc741d9ebe07ad103': `Signierzertifikat`, +'sc741dfb09d3395f0': `Keine Anwendungen vorhanden.`, +'sc744f3691efe310d': `Interne Konten ausblenden`, +'sc764ddf60b5149de': `Optionale URL, falls der IDP Einmalabmeldung (SLO) unterstützt.`, +'sc7707b3ba3a2a7ca': `Token-URL anfordern`, +'sc7be80a7f8ec597e': `Ablaufdatum`, +'sc816360d6f5a1eeb': `Abläufe beschreiben eine Kette von Phasen zum Authentifizieren, Registrieren oder Wiederherstellen eines Benutzers. Phasen werden basierend auf den auf sie angewendeten Richtlinien ausgewählt.`, +'sc8da3cc71de63832': `Anmeldung`, +'sc8de93a7dc0d78ba': `Clienttyp`, +'sc8f286ac783c385d': `Installationsinfo anzeigen`, +'sc9175cb129fdc306': str`Aktualisiere + ${0}`, +'sc92d7cfb6ee1fec6': `Passwort erfolgreich aktualisiert.`, +'sc92ed9d5e01d3f24': `Benachrichtigungsregel(n)`, +'sc96dd9d2e7b05fc5': `Mindestlänge`, +'sc9c3578cce3cf7a8': `Externer Host`, +'sc9f69360b58706c7': `Modell gelöscht`, +'sc9fc206433f67588': `Reguläre Ausdrücke, für die keine Authentifizierung erforderlich ist. Jede neue Zeile wird als neuer Ausdruck interpretiert.`, +'sca2879d96f58a39c': `Einmal senden`, +'scab2900019953050': `Benutzer erfolgreich aktualisiert.`, +'scae166352a31032c': `Konfiguration Stufen`, +'scb317851cbcc6b12': `Interner Host`, +'scb43f5faeb6a7ca9': `Die Benutzerüberprüfung sollte nicht stattfinden.`, +'scb489a1a173ac3f0': `Ja`, +'scb5c9a7cc4ccd68d': `E-Mail-Info:`, +'scb6620fcd5bff04c': `Erweiterte Einstellungen`, +'scc286303aa9c6cb0': `Status synchronisieren`, +'scc733ba98740038a': `Aktualisierungsaufforderung`, +'sccbfc4dec0c8d80c': `Zugewiesen an Anwendung`, +'scd0cfe87af6f2ff2': `Schweregrad`, +'scd8062ff5e1326d8': `Erlaube bis zu N Einträge in der HIBP Datenbank.`, +'sce106606ae84d46f': `Eigenschaften`, +'sce8d867ca5f35304': `Passwort festlegen`, +'scea1f16238093e35': `Führt das Python-Snippet aus, um zu bestimmen, ob eine Anfrage zugelassen oder abgelehnt werden soll.`, +'scee721983b1c28d0': `Bestehenden Benutzer hinzufügen`, +'scef3f4ad80abbd22': `Konfigurieren Sie, wie der Außenposten Anfragen authentifiziert.`, +'scf2790cf3ad89283': `Der für die SAML Assertion verwendete Attributname. Kann eine URN OID, eine Schemareferenz oder eine beliebige andere Zeichenfolge sein. Wenn diese Eigenschaftszuordnung für die NameID-Eigenschaft verwendet wird, wird dieses Feld verworfen.`, +'scf5ce91bfba10a61': `Bitte geben Sie Ihr Passwort ein`, +'sd04376c4216c921f': `URL-Einstellungen`, +'sd06b47084fec0ec5': `Bearer Token`, +'sd07866d9f38b2c50': `Ablauf ausführen`, +'sd080b2370aa82967': `Reputation für IP und Benutzerkennungen. Die Punktzahl wird für jede fehlgeschlagene Anmeldung verringert und für jede erfolgreiche Anmeldung erhöht.`, +'sd0bc94e11935ee5a': `HTTPS wird nicht korrekt erkannt`, +'sd1031bddc66dc495': `Verknüpfen Sie Ihr Konto mit einem der unten aufgeführten Dienste, um das Anmelden mit dem Dienst, anstatt der üblichen Anmeldedaten zu ermöglichen.`, +'sd1146418b344f81f': `Benachrichtigungsregel aktualisieren`, +'sd1288ca57e221cf9': `Token aktualisieren`, +'sd14a19a19d507f9e': `Übergeordnete Gruppe für alle aus LDAP importierten Gruppen.`, +'sd18170637295bace': `Zusatz Benutzer-DN`, +'sd1a5560fde6f2271': `Anbieter erfolgreich importiert.`, +'sd1f44f1a8bc20e67': `E-Mail`, +'sd1f81284eeb7b503': `Datei`, +'sd20f6cd02c90867f': `Anwendung(en)`, +'sd216b08bafb297ee': `Ablauf zur Authentifizierung von Benutzern. Wenn es leer gelassen wird, wird der erste anwendbare Fluss, sortiert nach dem Slug, verwendet.`, +'sd2208cd1a767644b': `Verbindung trennen`, +'sd2223afb7d6b100d': `Typ`, +'sd2c58d7c6dddc515': `SAML-Metadaten`, +'sd3386a2ef42e80b9': `Download`, +'sd34be0d0fcb39971': `Anzeigename`, +'sd35ae4be63df1f9f': `Auswahl der Backends, mit denen das Kennwort getestet werden soll.`, +'sd39c5e998efecf93': `SAML-Attributsname`, +'sd3a853f63f45dcb0': `Erlauben`, +'sd4ac926e4ebb1cd7': `Gemeinsamer Name`, +'sd503fabef9691134': `Bei Verwendung des Proxy- oder Forward-Authentifizierungsmodus (Einzelanwendung) wird der angeforderte URL-Pfad mit den regulären Ausdrücken verglichen. Bei Verwendung von Forward Auth (Domänenmodus) wird die vollständige angeforderte URL einschließlich Schema und Host mit den regulären Ausdrücken abgeglichen.`, +'sd539548ca4c71619': `Zusätzliche Scopes`, +'sd5903cc8de68b3fc': `Kein Formular gefunden`, +'sd5a4b41c6c883b03': `Zielgruppe`, +'sd5ba2d61ee4796fe': `Einladung(en)`, +'sd6a025d66f2637d1': `Traditioneller Authentifikator`, +'sd6b8b4156f7df696': `Bild, das in der Seitenleiste/dem Header und in Abläufen zu sehen ist.`, +'sd6c3ddb62de0e8f7': `Zertifikat, das zum Signieren ausgehender Antworten an den Dienstanbieter verwendet wird.`, +'sd6cd7ce2310a73a4': `Überprüft den Wert aus der Richtlinienanforderung anhand mehrerer Regeln, die hauptsächlich zur Gewährleistung der Kennwortstärke verwendet werden.`, +'sd71081c23d1cd38b': `Zugang prüfen`, +'sd766cdc29b25ff95': `Authentifizierung mit Apple...`, +'sd7fa99e4d82b374a': `Der Wiederherstellungslink kann nicht per E-Mail gesendet werden, der Benutzer hat keine E-Mail-Adresse gespeichert.`, +'sd80b0b8aeae3abe3': `Rückschreiben des Benutzerkennworts`, +'sd8417b41ca27bc8f': `Neue Stufe`, +'sd8c5339b82b71507': `Wartezeit (min.)`, +'sd8d9451f86502d1a': `Geräteklassen, die zur Authentifizierung verwendet werden können.`, +'sd8f220c999726151': `Umleiten`, +'sd924045605feea63': `Läuft ab`, +'sd947d57c9a9b7108': `Offenes Problem auf GitHub...`, +'sd94db2b8c85d10a6': `SLO URL`, +'sd97d8d0906e6cc47': `Abgleich ohne Berücksichtigung der Groß-/Kleinschreibung`, +'sd9b556a84ae25690': `Testanfrage erfolgreich gesendet.`, +'sda4e78c19f5b6f35': `Die Ausführung der Richtlinie dauert eine zufällige Zeit. Dies steuert die Mindestzeit, die dafür benötigt wird.`, +'sda5e1499f93146ad': str`vor + ${0}Tagen`, +'sda796c87fa97ed4d': `Modellname`, +'sdae55084f6cb2662': `Geben Sie optional einen Gruppennamen ein. Anwendungen in gleicher Gruppe werden gruppiert angezeigt.`, +'sdae649fae731e838': `Checkbox`, +'sdb7b2173869822bc': `Die Benutzerüberprüfung muss erfolgen.`, +'sdbc08adee233f180': `Aktualisieren Sie den OAuth2-Anbieter`, +'sdbccb39a658f0e45': `Neue Richtlinie`, +'sdc1ef94016f0d855': `Integration erfolgreich aktualisiert.`, +'sdc30bddeda2f0225': `Validieren Sie das Passwort des Benutzers mit den ausgewählten Backends.`, +'sdc323c6af4ae9f01': `TOTP Config erfolgreich kopiert`, +'sdc673e73b5c13aea': `Löschen`, +'sdc70195469e83e3f': `8 Ziffern, nicht kompatibel mit Anwendungen wie Google Authenticator`, +'sdc9e222be9612939': `Quelle verknüpft`, +'sdcc7b2c109ce9775': `Token werden bei authentik für E-Mail-Validierungsphasen, Wiederherstellungsschlüssel und API-Zugriff verwendet.`, +'sdd1ff479d04ac140': `Öffentlich`, +'sdd4bd4224c4e943d': `authentik: Gebietsschema: Zeigt eine Liste von Gebietsschemas, die Authentik unterstützt.`, +'sdd6b8b56a811080e': `Zertifikat-Fingerabdruck (SHA256)`, +'sddb3b0176f437721': `API-Browser öffnen`, +'sddc8efe94cb8c210': `Phasen sind einzelne Schritte eines Flows, durch die ein Benutzer geführt wird. Eine Phase kann nur innerhalb eines Flows ausgeführt werden.`, +'sddcfc6ab24e3a6ed': `Registrierung`, +'sde0ad51b14f77cf6': `Redirect URIs/Origins (RegEx)`, +'sde47e4d8b9b21b59': `WebAuthn-Authentifikatoren`, +'sdefec5401bf67eba': `Verwenden Sie einen Sicherheitsschlüssel, um Ihre Identität nachzuweisen`, +'sdf1d8edef27236f0': `Ein "Roaming"-Authentifikator, wie ein YubiKey`, +'sdf22dcf939c27cc7': `Phasen Konfiguration`, +'sdf34a5599d66f85c': `Hintergrundbild`, +'sdf4e1c6a2f072600': `Erlaubte Anzahl`, +'sdfd22a21660f6002': `Provider erfolgreich aktualisiert.`, +'se085f35c8a9203a1': `LDAP Quelle`, +'se09ab93d69f7f45b': `Von keinem anderen Objekt verwendet.`, +'se09d055771f3a11d': `Generisches OpenID Connect`, +'se10bbf4cf861c81b': `Schlüsselpaar signieren`, +'se12969ade44cd2b6': `Neue Quelle`, +'se16ac750b81fa93d': str`Zugewiesen zu + ${0}Objekt(en).`, +'se17fcb1f159ee382': `Aktualisieren Sie die Plex-Quelle`, +'se19cc57dd8675498': `Schwellwert`, +'se1c85959463f53df': `Nutze diese Umgebung für jede Domain, die keine eigene Umgebung hat.`, +'se1e040b55319a0e8': `Zeitlimit`, +'se291dfd2a59d7842': `Richtlinienbindung(en)`, +'se2adaf0371ffcd65': `Machine-to-Machine-Authentifizierungseinstellungen`, +'se2b62f7e9017965e': `Traefik (Compose)`, +'se2c3cbf2ed1403f1': `Phasen Bindungen`, +'se2e9f5a32c93e5f7': `Letzte Validierungsschwelle`, +'se2f258b996f7279c': `Systemtask-Ausnahme`, +'se36b55dfcf5dc80b': `Aktiviere StartTLS`, +'se3e6af2ce24d80e8': `Chinesisch (traditionell)`, +'se409d01b52c4e12f': `Authentifizierung erneut versuchen`, +'se47baf2fd16b9d2b': `Schablone`, +'se4a9da0295597e73': `SMTP Benutzername`, +'se50a08ab71bb96ed': `Sofern eine gültige E-Mailadresse oder Benutzername angegeben wurde und diese Option aktiviert ist, wird das Profilbild und der Benutzername des Benutzers angezeigt. Ansonsten wird der vom Benutzer eingegebene Text angezeigt.`, +'se5498954255620b4': `E-Mail erfolgreich gesendet.`, +'se5973e7c8ba0fc71': `Bindungsmodus`, +'se5dc026819a32ff8': str`Benutzer + ${0}`, +'se5fd752dbbc3cd28': `Verwenden Sie einen Sicherheitsschlüssel`, +'se63f9d833700af49': `Sitzung(en)`, +'se68398e3c2c760b2': `Token`, +'se6d950402810c34f': `Eigenschaftszuordnung(en)`, +'se7430794fa89005a': `Auch bekannt als Entity ID. Standardmäßig wird die Metadaten-URL verwendet.`, +'se74ce42d41e392ba': `Der Abgleich erfolgt basierend auf dem Domänensuffix. Wenn Sie also domain.tld eingeben, wird foo.domain.tld immer noch übereinstimmen.`, +'se78364ee913ae2bd': `Neue Outpost-Integration`, +'se8987bdfb35e46b2': `Schlüssel`, +'se8a81c75b6e30a33': `Zu prüfender Feldschlüssel, die in den Aufforderungsstufen definierten Feldschlüssel sind verfügbar.`, +'se99efc0873031976': `Symbol im Browsertab.`, +'se9b1fec72ffd8f48': `Lokal`, +'se9d0f12f95b14095': `Optionale, durch Kommas getrennte SubjectAlt-Namen`, +'sea2f00b34b385a43': `Gerät erfolgreich aktualisiert.`, +'sea91c57b3d3969fe': `Systemzustand`, +'seb5ba88f21937c98': `Outposts prüfen`, +'sebda1d54a3f9f967': `Token URL`, +'sebf44d2471b608ad': `Ablauf der von einem authentifizierten Benutzer verwendet wird, um diese Phase zu konfigurieren. Wenn leer, kann der Benutzer diese Phase nicht konfigurieren.`, +'sec1808532fe107b9': `Erlauben Sie Benutzern die Verwendung von Anwendungen auf der Grundlage von Eigenschaften, erzwingen Sie Passwortkriterien und wende ausgewählte Stages an.`, +'sec7443a45fd141e5': `Eingabeaufforderung(en)`, +'sec97cdaf7af8648b': `Selbstdefinierte Attribute können mittels YAML oder JSON festgelegt werden.`, +'secbfd13bdae95a59': `Ablauf für Benutzereinstellungen`, +'secdb4b4c4e66aa38': `Gruppeninformationen`, +'sece294cd51a85745': `Legt fest, wie lange eine Sitzung dauert. Der Standardwert von 0 Sekunden bedeutet, dass die Sitzungen dauern, bis der Browser geschlossen wird.`, +'sed3512fe4560c7f4': `Benutzer als inaktiv anlegen`, +'sed8d4c3fd5f60e1f': `Integrationen erkunden`, +'sede0abbf2b612812': `Webhook (generic)`, +'see3ff55262fd6500': `URL, zu der Benutzer weitergeleitet werden um die Authorisierung zu bestätigen.`, +'sef49aec68fd1dc66': `Name`, +'sef50d248448e0df1': str`Ja ( + ${0})`, +'seffdf887fed7f668': `Zertifikat-Fingerabdruck (SHA1)`, +'sf05e384059a0a7c1': `Upstream-Host, an den die Anfragen weitergeleitet werden.`, +'sf1868dc19e3917bb': `Spanisch`, +'sf1e9d421f35b51e5': `Anwendung`, +'sf1ec4acb8d744ed9': `Alarm`, +'sf22a28f83cc45fcc': `Phase, die zum Konfigurieren eines Duo-basierten Authentifikators verwendet wird. Diese Phase sollte für Konfigurationsabläufe verwendet werden.`, +'sf22f7f8a9309b4ed': `Anwendungszugriff überprüfen`, +'sf232d42142eacc23': `Wenn diese Option aktiviert ist, wird die Einladung nach ihrer Benutzung gelöscht.`, +'sf29883ac9ec43085': `App Passwort`, +'sf325a4adba4d6278': `Gruppenmitgliedschaftsfeld`, +'sf339673f0f76a8bd': `Öffentlicher Schlüssel, erworben von https://www.google.com/recaptcha/intro/v3.html.`, +'sf3981f36525b0dbd': `Verbindung wird gelöscht`, +'sf3f9a0feaf083207': `An Gruppe gesendet`, +'sf4122b220926be97': `Version`, +'sf417c13d7a0f7995': `Download URL kopieren`, +'sf45a0d2f00bcc6ff': `Keine Registerkarten definiert`, +'sf466142da6a65052': `Identitätswechsel`, +'sf4de1644dcdb53d5': `Nutzer-/Gruppe-Attribut wird für den Passwort-Teil im HTTP-Basic Header verwendet.`, +'sf53a78d889b6c775': `Verwaltet von authentik (Discovered)`, +'sf54c562d8a10ce77': `Auch bekannt als EntityID.`, +'sf55c7c06dbc2c8c6': `Umgebung erfolgreich erstellt.`, +'sf55d28d4dff0e41b': `Ein Beispiel-Setup kann so aussehen:`, +'sf56998949bdf6b33': `Deaktivieren`, +'sf679b7a62808287e': `Ablaufdatum`, +'sf693300708a40d2c': `Neue Richtlinie erstellen.`, +'sf6e1665c7022a1f8': `Passwort`, +'sf6eb148db23d19de': str`Löschen von + ${0}fehlgeschlagen: + ${1}`, +'sf71dba2c30283a54': `Läuft ab?`, +'sf813a72d8fadd765': `In diesem Fall würden Sie die Authentifizierungs-URL auf auth.example.com und die Cookie-Domain auf example.com setzen.`, +'sf8c76d5fb408de7b': `Sie werden gleich zur folgenden URL weitergeleitet`, +'sf8f49cdbf0036343': `Fehler bei der Konfiguration`, +'sf90be97cb08f3d5a': `Platzhalter`, +'sf9aee319a006c9b4': `Hinzufügen`, +'sf9b1c0661a02d9f9': `Konfiguration`, +'sf9bddaf910f4eea5': `Zertifikat-Schlüsselpaar generieren`, +'sf9e61f4f8e90f0f1': `Status ändern`, +'sf9f2c719a04066ec': `App`, +'sfa88f413e287bb0f': `Phasen Typ`, +'sfab527528ea64618': `Stimmt mit der Client-IP des Ereignisses überein (strenge Übereinstimmung, verwenden Sie für die Netzwerkübereinstimmung eine Ausdrucksrichtlinie.`, +'sfac6f995c7670559': `Keine Phasen verknüpft.`, +'sfad8af8ce38104a3': `Höchstalter (in Tagen)`, +'sfae9f4ea5749a36b': `Zusätzlicher Gruppen-DN, dem Basis-DN vorangestellt.`, +'sfbadb77fbc61efb8': `Benutzer, die im letzten Monat pro Tag erstellt wurden`, +'sfbaeb0de54fbfdbb': `Flow der zur Authorisierung des Anbieter verwendet wird.`, +'sfc400b2d71e49d28': `Richtlinie erfolgreich erstellt.`, +'sfcebd18506f1e535': `Ablauf`, +'sfcfcf85a57eea78a': `TOTP-Gerät`, +'sfd13ca8ebd857c2e': `Erstelle eine neue Anwendung`, +'sfd1af96798dd8a5f': `Öffentlicher Schlüssel`, +'sfe199b2564b66054': str`Fehler beim Validieren der Assertion auf dem Server: + ${0}`, +'sfe1c86b42ba13376': `Bitte geben Sie Ihren TOTP-Code ein.`, +'sfe211545fd02f73e': `Überprüfung`, +'sfe388f0313f52da2': `Protokolleinstellungen`, +'sfe629863ba1338c2': `Verbindungsfehler, erneuter Verbindungsaufbau...`, +'sfe6977a3aea3ee6e': `Flow der zur Authorisierung bereits ersteller Nutzer verwendet wird`, +'sfe938c1585e0bf68': `Diese Bindungen steuern, ob diese Stufe auf den Ablauf angewendet wird.`, +'sfe99a8caa70232ab': `Authentifizierungsart`, +'sfeb779d4ccbc5a0e': `Wiederherstellungsfluss`, +'sfeb82261bcf99edd': `Intakte Outposts`, +'sfee06600c15082a9': `Entfernen Sie den Benutzer aus der aktuellen Sitzung.`, +'sfee91e08b8b47477': `Erlaubte Server`, +'sfefce784ec55868f': `Wählen Sie ein Objekt aus.`, +'sff3b708e23bb96b2': `Werten Sie Richtlinien aus, bevor die Phase dem Benutzer angezeigt wird.`, +'sff50532a2d85e32e': `Password ändern`, +'sff5bb7742c2896c8': `Ziel`, +'sff69c1a637f899a6': `Ablauf-Verknüpfung`, +'sff945d3f59b93c5e': `Multifaktor-Authentifzierungs Geräte`, +'sffa171e11d4ae513': `Zustellungsarten`, +'sffa721bb6aa3128d': `Suche...`, +'sffd2e553143d1b0e': `Halten Sie die Strg-/Befehlstaste gedrückt, um mehrere Elemente auszuwählen.`, +'sffeef5b119d8625c': `Verknüpfung erfolgreich erstellt.`, +'s0410779cb47de312': `Path template for users created. Use placeholders like \`%(slug)s\` to insert the source slug.`, +'sd73b202ec04eefd9': `Unknown intent`, +'s02240309358f557c': `Unknown severity`, +'se2d65e13768468e0': `Internal`, +'s84fcddede27b8e2a': `External`, +'s1a635369edaf4dc3': `Service account`, +'sff930bf2834e2201': `Service account (internal)`, +'s4ba4473f3d4ec896': `New version available`, +'s364c4f177a2f8322': `Open API drawer`, +'s9ba989e69344ff29': `Open Notification drawer`, +'sca7cfe2bef51b2a5': `Root`, +'s9d8b8aa2b404c2c8': `Settings`, +'s7cfe12cd14df9950': `Sign out`, +'sb4d7bae2440d9781': `User Statistics`, +'saab79cd956ee56a9': `Blueprints`, +'s1a65ee08832fbfe2': `Flows and Stages`, +'s6b2beba7ab637e9e': `Roles`, +'sb1a4e9b288e2f005': `Federation and Social login`, +'s7be2df39f727faa2': `Enterprise`, +'s2e109263b73c12d5': `Licenses`, +'sfffb0d0958bfbc42': `Manage users`, +'s66313b45b69cfc88': `Check the release notes`, +'sbdc4a833de9ca502': `Logins and authorizations over the last week (per 8 hours)`, +'s4a34a6be4c68ec87': `Users created`, +'s275c956687e2e656': `Failed logins`, +'s1a0e95458b44d7f8': `Any policy must match to grant access`, +'s7fc1ace65486dc25': `All policies must match to grant access`, +'s1cffe58249b04669': `Internal application name used in URLs.`, +'s350a616ff5e145ec': `Select a provider that this application should use.`, +'sc92ea8fbf9ba06a7': `Backchannel Providers`, +'s4c6534a118f52fdd': `Select backchannel providers which augment the functionality of the main provider.`, +'s19409e8712ddd369': `Add provider`, +'s2348f46ebf436671': `Open in new tab`, +'s8655c52824caac63': `If checked, the launch URL will open in a new browser tab or window from the user's application library.`, +'s070fdfb03034ca9b': `One hint, 'New Application Wizard', is currently hidden`, +'s61bd841e66966325': `External applications that use authentik as an identity provider via protocols like OAuth2 and SAML. All applications are shown here, even ones you cannot access.`, +'s1f7698c061c208c9': `Open`, +'sed02f831e653deb3': `Logins over the last week (per 8 hours)`, +'se8dca0132c66ae03': `Permissions`, +'s398f6ba74ba8943a': `Select providers to add to application`, +'see2bcbc11bb91960': `Successfully updated instance.`, +'s9e51d6de369f320b': `Successfully created instance.`, +'s92e91071c6a45eb4': `Disabled blueprints are never applied.`, +'sf63c89c0604c288f': `Local path`, +'sd6422f7004036cdd': `OCI Registry`, +'s2e532e19ed477a56': `Path`, +'s61eacb19db252f5e': `URL`, +'scbb7d3154da629f3': `OCI URL, in the format of oci://registry.domain.tld/path/to/manifest.`, +'s0195c0df7294228a': `See more about OCI support here:`, +'s74cb3d66f6a668e1': `Documentation`, +'sfae395b94a5a0040': `Blueprint`, +'s7e1342d37124b65b': `Configure the blueprint context, used for templating.`, +'s6ec8c9d11310300a': `Orphaned`, +'s6835db03209b4f94': `Automate and template configuration within authentik.`, +'s23de62f931f7d754': `Last applied`, +'s2708cac1f4942708': `Blueprint(s)`, +'s880b8b70b22f9977': `Update Blueprint`, +'sb8f855b49234b81b': `Apply`, +'sef3d102324bf8561': `Create Blueprint Instance`, +'s0e427111d750cc02': `Successfully updated license.`, +'s06ae64e621f302eb': `Successfully created license.`, +'s2905c425adae99bd': `Install ID`, +'sb18ec434a8a3aafb': `License key`, +'s9ce7cc01fb9b5b53': `Manage enterprise licenses`, +'sf9ebf11ac2645820': `No licenses found.`, +'sd49099e9522635f4': `License(s)`, +'s3be1d90ffa46b7f1': `Enterprise is in preview.`, +'sa1db89262360550b': `Send us feedback!`, +'s4015746f55a8d89f': `Get a license`, +'sb2cbd06f8e25b47e': `Go to Customer Portal`, +'sf58825457d61c429': `Forecast internal users`, +'sde9a3f41977ec1f8': str`Estimated user count one year from now based on ${0} current internal users and ${1} forecasted internal users.`, +'s4557b6b9da258643': `Forecast external users`, +'sf52479d6daa0a4a8': str`Estimated user count one year from now based on ${0} current external users and ${1} forecasted external users.`, +'sd22bd01bdf28c548': `Cumulative license expiry`, +'s0dd031b58ed4017c': str`Internal: ${0}`, +'s57b07e524f8f5c2a': str`External: ${0}`, +'sdeb6cee42435dd07': `Update License`, +'s6196153c4b0c1ea0': `Install`, +'s0285b4bd69130fa3': `Install License`, +'s3b3c333481944862': `Show details`, +'sb41b2cfbbc52565b': `Created`, +'s7513372fe60f6387': `Event volume`, +'sa55ee64c5c51df0f': `Select the group of users which the alerts are sent to. If no group is selected the rule is disabled.`, +'s5795b310ab271d20': `These bindings control upon which events this rule triggers. +Bindings to groups/users are checked against the user of the event.`, +'s6f367f5604d5056d': `Create and bind Stage`, +'scc2e420c54dc8089': `Bind existing stage`, +'sb36e4c05244278c1': `No requirement`, +'s7b105164d209f670': `Require authentication`, +'s239c2a351cde6d39': `Require no authentication.`, +'s98beadfeeb3acb66': `Require superuser.`, +'s047a5f0211fedc72': `Require Outpost (flow can only be executed from an outpost).`, +'sfad9279cc42c6b61': `Required authentication level for this flow.`, +'sb56674c9ea4f0588': `Behavior settings`, +'s14ace18ccf4fb86d': `Increases compatibility with password managers and mobile devices.`, +'scfbc2f1396ee8550': `Denied action`, +'sff38031cf061e3ae': `Will follow the ?next parameter if set, otherwise show a message`, +'s936bf4342b182ad4': `Will either follow the ?next parameter or redirect to the default interface`, +'s22b0e8c5277dd5a9': `Will notify the user the flow isn't applicable`, +'s2eeca5cfc99ef19b': `Decides the response when a policy denies access to this flow for a user.`, +'sbaf20067de176c90': `Appearance settings`, +'s3ebf4c166058afce': `Clear background`, +'s344c4a2a48997e18': `.yaml files, which can be found on goauthentik.io and can be exported by authentik.`, +'sc4fdeccf14be5378': `Execute`, +'sf12d588a76ba7e51': `Are you sure you want to clear the flow cache? + This will cause all flows to be re-evaluated on their next usage.`, +'s01794c0ee3629c1b': `Flow Info`, +'s77099d752f1ab773': `Related actions`, +'s0a61796c1956d32c': `Evaluate when flow is planned`, +'sf533f13321fee530': `Evaluate policies during the Flow planning process.`, +'s6336fa345e96dde9': `Evaluate when stage is run`, +'s0dc46deb8f181baf': `Invalid response behavior`, +'seb0805249661d15b': `Returns the error message and a similar challenge to the executor`, +'sd891d8463d0ebace': `Restarts the flow from the beginning`, +'s6b9a1dd402750a8a': `Restarts the flow from the beginning, while keeping the flow context`, +'sbc88fb27a4c3b894': `Configure how the flow executor should handle an invalid response to a challenge given by this bound stage.`, +'sde2bb5418562c5b2': `Unknown designation`, +'sb3182a87ded1bc91': `Unknown layout`, +'s96d2bb4be3f5e8aa': `Select roles to grant this groups' users' permissions from the selected roles.`, +'s005053d82b712e0a': `Notes`, +'s634448e4942cf452': `Edit the notes attribute of this group to add notes here.`, +'sa982875b258fea07': `Successfully added user to group(s).`, +'s1bd5920d8adf2bd5': `Groups to add`, +'sd9f67fbf3f86efcf': `Add group`, +'s5f71fa3c53828e30': `Remove from Group(s)`, +'sb4c9ed2a487b238f': str`Are you sure you want to remove user ${0} from the following groups?`, +'sea4f08110bb8f15d': `Remove`, +'sdb53ccdd6174e6e3': `Successfully added user(s).`, +'s306a35df5d0d38bb': `Users to add`, +'s424f57afae0caac4': `Add users`, +'s7220fcf4fec4e0df': `Remove Users(s)`, +'s5d7748b1d2363478': str`Are you sure you want to remove the selected users from the group ${0}?`, +'s4c41f3f4c23e8eaa': `Warning: This group is configured with superuser access. Added users will have superuser access.`, +'sd600334ec2c39b74': `Create user`, +'s824e0943a7104668': str`This user will be added to the group "${0}".`, +'s8afc8c5aafb392d3': `Radius`, +'s3abecf1e778c9625': `See more here:`, +'saa8939ac88a76f98': `Last seen`, +'s1e176e35c828318c': `Hostname`, +'sa43153d53ae65063': `Unknown type`, +'s9ee92717d7f63247': `Detailed health (one instance per column, data is cached so may be out of date)`, +'sa85cfb884c17d85d': `Verify Kubernetes API SSL Certificate`, +'s911a27022aba349f': `Create and bind Policy`, +'sddb040c47daae56b': `Bind existing policy`, +'s6b1ed7507f26cb4a': `Failure result`, +'s2e422519ed38f7d8': `Pass`, +'s81a45c4fd11e8e1a': `Don't pass`, +'s95b73e0f4e47eb9a': `Result used when policy execution fails.`, +'s15b46b78edebb20a': `Are you sure you want to clear the policy cache? This will cause all policies to be re-evaluated on their next usage.`, +'sb6c3bf5489d7556e': `Example context data`, +'s4a697f0b36c4fe83': `Active Directory User`, +'s9277b90db38e1983': `Active Directory Group`, +'sa6c0ba4910c7ad7f': `Assigned to application (backchannel) `, +'s0b3bf19b31dd6bac': `Try the new application wizard`, +'sa18e1c6e0e6f16cc': `The new application wizard greatly simplifies the steps required to create applications and providers.`, +'s01ef54f5d7c6ed47': `Try it now`, +'s9103a949a3963aa9': `Successfully updated role.`, +'sdf87c5661b31359e': `Successfully created role.`, +'s3484b1e6d0b5335f': `Manage roles which grant permissions to objects within authentik.`, +'s259de999919316db': `Role(s)`, +'sc615309d10a9228c': `RBAC is in preview.`, +'s2ffad156e8332f04': `Update Role`, +'sc5f923729564fbf3': `Create Role`, +'sf485014051ad0cf7': `Successfully assigned permission.`, +'sdeb90bfd8a80b86b': `Permissions to add`, +'s36247910d67421e1': `Select permissions`, +'sc92c1a54034e21cc': `Assign`, +'scd84d10ee9137070': `Assign permission to role`, +'s67e136af8fc1107b': `Assign permission`, +'sb923723d27df40ba': `Permission(s)`, +'sc5fb00b25c7f5a02': `Permission`, +'s14bfa8fd1bec8889': `Role doesn't have view permission so description cannot be retrieved.`, +'s7e796fe83982863f': str`Role ${0}`, +'s526e2c66bd51ff5f': `Role Info`, +'s9cc631505c17b028': `Assigned global permissions`, +'s8f85a0e678846080': `Assigned object permissions`, +'s254a9a23dc1635df': `Import devices`, +'s92921878e886e36d': `Duration`, +'se7e1ababbc4868b8': str`${0} seconds`, +'s14bf17e2a1a2c381': `Restart task`, +'s134177568525dbc8': `Device code flow`, +'s7b298427bdea81ae': `If set, the OAuth Device Code profile can be used, and the selected flow will be used to enter the code.`, +'s04bfd02201db5ab8': `Set custom attributes using YAML or JSON. Any attributes set here will be inherited by users, if the request is handled by this tenant.`, +'se31d92bea7f3a186': `Used to access the API programmatically`, +'sfd586951c75eb291': `App password.`, +'s59bf194136d0d13a': `Used to login using a flow executor`, +'se9c07cf256774d81': `Editing is disabled for managed tokens`, +'scc3487e74c5a3e89': `Copy token`, +'sec5cdfa358f9dbf7': `Warning: Adding the user to the selected group(s) will give them superuser permissions.`, +'s3d2a8b86a4f5a810': str`Successfully created user and added to group ${0}`, +'s5a802e46a033c8af': `User's primary identifier. 150 characters or fewer.`, +'se6a13beff646557b': str`Successfully updated ${0} ${1}`, +'sd8051c26e155f043': `Assign permission to user`, +'s1455753daa00f1bc': `User doesn't have view permission so description cannot be retrieved.`, +'sf05c700a1250824e': `Confirmed`, +'s9f9492d30a96b9c6': `User type`, +'scef2eb6a2bfe3110': `Internal users might be users such as company employees, which will get access to the full Enterprise feature set.`, +'sf66389b04fcc219c': `External users might be external consultants or B2C customers. These users don't get access to enterprise features.`, +'s77e8668a27dbc402': `Service accounts should be used for machine-to-machine authentication or other automations.`, +'saf6097bfa25205b8': `A copy of this recovery link has been placed in your clipboard`, +'s5b8ee296ed258568': `The current tenant must have a recovery flow configured to use a recovery link`, +'s510c7add9e24c306': `Hide deactivated user`, +'s0924f51b028233a3': `<No name set>`, +'s895514dda9cb9c94': `Create recovery link`, +'s94055b4eb957dc8f': `User folders`, +'s028d385389b5aac0': `Lock the user out of this system`, +'sd2122c514f0778b5': `Allow the user to log in and use this system`, +'s43fe853bf219a9b8': `Temporarily assume the identity of this user`, +'se28b5f3fcadaeeb1': `Enter a new password for this user`, +'s6f5bb31e2733ecd5': `Create a link for this user to reset their password`, +'se5c795faf2c07514': `Create Recovery Link`, +'sb57dbcda1929c642': `Edit the notes attribute of this user to add notes here.`, +'sb6770fa90be6d8b3': `OAuth Refresh Tokens`, +'s28b3de1561da72b3': `MFA Authenticators`, +'sa3a3e09b88ed9791': `Assigned permissions`, +'s67ac11d47f1ce794': `WebAuthn requires this page to be accessed via HTTPS.`, +'se9e9e1d6799b86a5': `WebAuthn not supported by browser.`, +'s71c5d51d5a357dbd': `Don't show this message again.`, +'sb3d4f79d9d8b71e5': `Submit`, +'s2da4aa7a9abeb653': `Pseudolocale (for testing)`, +'s2ed8eb02525a920a': str`${0} hour(s) ago`, +'s98327528f00365a7': `Failed to fetch data.`, +'s08df8d0a773a3ea0': `Remove item`, +'s7df5b92a3f93544f': `Warning: The current user count has exceeded the configured licenses.`, +'s0141f42936495787': `Click here for more info.`, +'se33b158a1ec02a09': str`Successfully deleted ${0} ${1}`, +'s5819a49638f6d7cb': str`Are you sure you want to delete ${0} ${1}?`, +'s04ceadb276bbe149': `Loading options...`, +'s90760e5e02e95dfe': `Refresh Tokens(s)`, +'sb37880a2a7288ef0': `Update Permissions`, +'saabeb4cab074b0b9': `User Object Permissions`, +'s8489d5559dda260c': `Role Object Permissions`, +'s5da52af9b083c29a': `Model`, +'s78ab26da7f067de8': `Select permissions to grant`, +'sca7fed2bef53cb99': `Role`, +'s5ee6f1b84e9ebc69': `Assign to new role`, +'s4afb26a8fae257e9': `Directly assigned`, +'sf79f8681e5ffaee2': `Assign to new user`, +'sfd44ce578f643145': `Failed to fetch objects.`, +'sde1907073fd96017': `(Current session)`, +'sbb8ad22c83d375b1': `The following keywords are supported:`, +'s7181a5504472e856': `Apply changes`, +'s4090dd0c0e45988b': `Request ID`, +'s4d7fe7be1c49896c': `You may close this page now.`, +'s28cbd874ba450b4e': `Less details`, +'s8fa26f65aed77c96': `More details`, +'s3fb39fc45e840f78': `Refer to documentation`, +'sf34026321b35315c': `Either no applications are defined, or you don’t have access to any.`, +'s3e99ea082ca5ade9': `Failed to fetch`, +'s2152f3482784705f': `Recent events`, +'scefe482c547fb3f3': str`Based on ${0}`, +'s1f1c857c0c4250e4': str`${0} day(s) ago`, +'s477de089b505a6ea': `SCIM Provider`, +'s8a75e83497a183a2': `Healthy`, +'sbf9c5c5a8e5efad4': `Failed`, +'se4cd073c125382af': `Unsynced / N/A`, +'se2b29e6cfe59414c': `UI Settings`, +'s4498e890d47a8066': `OAuth2/OIDC (Open Authorization/OpenID Connect)`, +'sc2cedfb22488ccb2': `Modern applications, APIs and Single-page applications.`, +'s4f2e195d09e2868c': `LDAP (Lightweight Directory Access Protocol)`, +'sffd5481034a1bd41': `Provide an LDAP interface for applications and users to authenticate against.`, +'s836148f721d8913b': `Transparent Reverse Proxy`, +'s945a6b94361ee45b': `For transparent reverse proxies with required authentication`, +'s7f5bb0c9923315ed': `Forward Auth (Single Application)`, +'sdc9a6ad1af30572c': `For nginx's auth_request or traefik's forwardAuth`, +'sf8008d2d6b064b95': `Forward Auth (Domain Level)`, +'sfc31264ef7ff86ef': `For nginx's auth_request or traefik's forwardAuth per root domain`, +'sfa8a1ffa9fee07d3': `SAML (Security Assertion Markup Language)`, +'s40830ec037f34626': `Configure SAML provider manually`, +'s848a23972e388662': `RADIUS (Remote Authentication Dial-In User Service)`, +'sea9fc40dfd1d18b1': `Configure RADIUS provider manually`, +'s3e902999ddf7b50e': `SCIM (System for Cross-domain Identity Management)`, +'sa1b0052ae095b9b3': `Configure SCIM provider manually`, +'s15831fa50a116545': `Saving Application...`, +'s823abdb61543a826': `Authentik was unable to save this application:`, +'s848288f8c2265aad': `Your application has been saved`, +'scda8dc24b561e205': `There was an error in the application.`, +'sdaca9c2c0361ed3a': `Review the application.`, +'sb50000a8fada5672': `There was an error in the provider.`, +'s21f95eaf151d4ce3': `Review the provider.`, +'s9fd39a5cb20b4e61': `There was an error`, +'s7a6b3453209e1066': `There was an error creating the application, but no error message was sent. Please review the server logs.`, +'s8915e64b8b999bfe': `Cached binding`, +'s842d690eb3c11762': `Flow is executed and session is cached in memory. Flow is executed when session expires`, +'s6a66759749bf31ed': `Direct binding`, +'se0adaf83627104fb': `Always execute the configured bind flow to authenticate the user`, +'s9065fcccd837a679': `Cached querying`, +'s30d0d0e6c626a234': `The outpost holds all users and groups in-memory and will refresh every 5 Minutes`, +'sffc14b8200a9f938': `Direct querying`, +'sdce4680288083fe3': `Always returns the latest data, but slower than cached querying`, +'s1889ba2eaeec2f1e': `When enabled, code-based multi-factor authentication can be used by appending a semicolon and the TOTP code to the password. This should only be enabled if all users that will bind to this provider have a TOTP device configured, as otherwise a password may incorrectly be rejected if it contains a semicolon.`, +'s4647b2c92638d6fd': `The certificate for the above configured Base DN. As a fallback, the provider uses a self-signed certificate.`, +'s2acef4f6ba39bf11': `DNS name for which the above configured certificate should be used. The certificate cannot be detected based on the base DN, as the SSL/TLS negotiation happens before such data is exchanged.`, +'s1a711c19cda48375': `Configure LDAP Provider`, +'s67d858051b34c38b': `Method's display Name.`, +'s319040353f479853': `Flow used for users to authenticate.`, +'s254d527e3a53dbb7': `Code-based MFA Support`, +'scd247ffad6e04ac0': `TLS Server name`, +'s9368e965b5c292ab': `Configure OAuth2/OpenId Provider`, +'sa72a3bd1e7e89926': `Flow used when a user access this provider and is not authenticated.`, +'sbea3db12fd799210': `Access Token validity`, +'s821f6014c1a435b9': `Refresh Token validity`, +'s00c2db16ea9bc263': `Configure how long refresh tokens are valid for.`, +'s22e566052f7bec81': `JWTs signed by certificates configured in the selected sources can be used to authenticate to this provider.`, +'sf5cbccdc6254c8dc': `Configure Proxy Provider`, +'sf6d46bb442b77e91': `AdditionalScopes`, +'sb488dee0be434f7e': `Authentication settings`, +'s23cee624c735f266': `Intercept header authentication`, +'sc007cca5af67eae0': `When enabled, authentik will intercept the Authorization header to authenticate the request.`, +'s36e630ba56617556': `Send HTTP-Basic Authentication`, +'s9d5796a4b9b7560e': `Send a custom HTTP-Basic Authentication header based on values from authentik.`, +'h10ef80d434185070': html`Use this provider with nginx's auth_request or traefik's + forwardAuth. Each application/domain needs its own provider. + Additionally, on each domain, /outpost.goauthentik.io must be + routed to the outpost (when using a managed outpost, this is done for you).`, +'s2c8c6f89089b31d4': `Configure Radius Provider`, +'sb95baab425322600': `Shared secret`, +'s9e9316a6b0c16231': `Client Networks`, +'s7f2dcf01f7a8c0b7': `List of CIDRs (comma-seperated) that clients can connect from. A more specific + CIDR will match before a looser one. Clients connecting from a non-specified CIDR + will be dropped.`, +'sfe906cde5dddc041': `Configure SAML Provider`, +'sb3defbacd01ad972': `Property mappings used for user mapping.`, +'s0dd00fbaba08748a': `Session not valid on or after current time + this value.`, +'s7ccce0ec8d228db6': `Configure SCIM Provider`, +'sb21f33b039c86322': `SCIM base url, usually ends in /v2.`, +'s33ed903c210a6209': `Token to authenticate with. Currently only bearer authentication is supported.`, +'sfc8bb104e2c05af8': `User filtering`, +'sc0d0890fbd46ef62': `Exclude service accounts`, +'s23ab136ad85f0ad2': `Only sync users within the selected group.`, +'sfdedc3b0b2b7ce3d': `Attribute mapping`, +'sd7728d2b6e1d25e9': `Property mappings used for group creation.`, +'s4bd386db7302bb22': `Create With Wizard`, +'s0c9670f429e74283': `New application`, +'s3ba9b8aeb686d9f7': `Match events created by selected model. When left empty, all models are matched.`, +'s9307f3dbb07a73b5': `Only fail the policy, don't invalidate user's password`, +'se2cc93bd2647baec': `Static rules`, +'s1293ad87acc7a609': `HaveIBeenPwned settings`, +'s3fd219b045193507': `zxcvbn settings`, +'s28d84abfbaf555ea': `Score threshold`, +'s7b3148ffba9f4527': `If the password's score is less than or equal this value, the policy will fail.`, +'sd94e99af8b41ff54': `0: Too guessable: risky password. (guesses &lt; 10^3)`, +'sc926385d1a624c3a': `1: Very guessable: protection from throttled online attacks. (guesses &lt; 10^6)`, +'s8aae61c41319602c': `2: Somewhat guessable: protection from unthrottled online attacks. (guesses &lt; 10^8)`, +'sc1f4b57e722a89d6': `3: Safely unguessable: moderate protection from offline slow-hash scenario. (guesses &lt; 10^10)`, +'sd47f3d3c9741343d': `4: Very unguessable: strong protection from offline slow-hash scenario. (guesses &gt;= 10^10)`, +'s2f8c4cf12350a36c': `Check static rules`, +'sd75a9a71309fb387': `Check haveibeenpwned.com`, +'se5cb18408df3284e': `For more info see:`, +'scef7abb8456b06d6': `Check zxcvbn`, +'sdfdb58cd232b363d': `Password strength estimator created by Dropbox, see:`, +'scf4afecb0f1e69b2': `Invalid login attempts will decrease the score for the client's IP, and the +username they are attempting to login as, by one.`, +'s8323a9af28e10502': `The policy passes when the reputation score is below the threshold, and +doesn't pass when either or both of the selected options are equal or above the threshold.`, +'s95f09b229a0a0bb0': `Confidential clients are capable of maintaining the confidentiality of their credentials such as client secrets`, +'s51c6b8403c2dc5d9': `Public clients are incapable of maintaining the confidentiality and should use methods like PKCE. `, +'sccc47f82044453f9': `Based on the User's hashed ID`, +'sbd5be4fb7442a34c': `Based on the User's ID`, +'sc9cf9ecaf9e5d67e': `Based on the User's UUID`, +'s4291727352c4f295': `Based on the User's username`, +'sd62cfc27ad4aa33b': `Based on the User's Email`, +'s55eb75bedf96be0f': `This is recommended over the UPN mode.`, +'sf80e9547166117e6': `Based on the User's UPN`, +'sde949d0ef44572eb': `Requires the user to have a 'upn' attribute set, and falls back to hashed user ID. Use this mode only if you have different UPN and Mail domains.`, +'sde56783222b527d6': `Each provider has a different issuer, based on the application slug`, +'sa8384c9c26731f83': `To allow any redirect URI, set this value to ".*". Be aware of the possible security implications this can have.`, +'s417b90913e05bc17': `Preview`, +'s453b0c150a7ca58e': `Example JWT payload (for currently authenticated user)`, +'sff0ac1ace2d90709': `Use this provider with nginx's auth_request or traefik's forwardAuth. Each application/domain needs its own provider. Additionally, on each domain, /outpost.goauthentik.io must be routed to the outpost (when using a managed outpost, this is done for you).`, +'s2345170f7e272668': `Unknown proxy mode`, +'s7ba9677d069e5f02': `Caddy (Standalone)`, +'s09b671b120443043': `Update Radius Provider`, +'scb58b8a60cad8762': `Default relay state`, +'s6827a456c9dfc6ee': `When using IDP-initiated logins, the relay state will be set to this value.`, +'s44b1f042790cd1a2': `SAML Configuration`, +'sba999428083abce3': `EntityID/Issuer`, +'scd2984ee5552643a': `SSO URL (Post)`, +'saa79b47f60c66458': `SSO URL (Redirect)`, +'s2da51a6287118ba8': `SSO URL (IdP-initiated Login)`, +'s0a57e911e457302b': `SLO URL (Post)`, +'s1e7308bb1ca323e1': `SLO URL (Redirect)`, +'s382b702673776873': `Example SAML attributes`, +'sea3bfc143ced73db': `NameID attribute`, +'s019555b5a442aa00': `Property mappings used to user mapping.`, +'sadadfe9dfa06d7dd': `No sync status.`, +'s2b1c81130a65a55b': `Sync currently running.`, +'s2f0f6691de0b0388': `Warning: Provider is not assigned to an application as backchannel provider.`, +'sc6c575c5ff64cdb1': `Update SCIM Provider`, +'s4476e9c50cfd13f4': `Global status`, +'sd21a971eea208533': `Vendor`, +'s1024166475850a65': `Use Server URI for SNI verification`, +'se65beb94fffc3c4b': `Required for servers using TLS 1.3+`, +'s000ee3e634868b3c': `TLS Client authentication certificate`, +'s5506b35a1bceb141': `Client certificate keypair to authenticate against the LDAP Server's Certificate.`, +'sfbc59ff17a73503d': `User path`, +'sf36170f71cea38c2': `Connectivity`, +'sf3fec8353106ac2f': str`OAuth Source ${0}`, +'s4b2a1b657c160f5b': `JSON Web Key URL. Keys from the URL will be used to validate JWTs from this source.`, +'s02de8d9e8583b480': `Raw JWKS data.`, +'sb35c08e3a541188f': `Also known as Client ID.`, +'sd46fd9b647cfea10': `Also known as Client Secret.`, +'sa61966cd83b4924c': `Additional scopes to be passed to the OAuth Provider, separated by space. To replace existing scopes, prefix with *.`, +'s5c1dc164c89ac13e': `Unknown provider type`, +'s2feae323f46479f8': `These bindings control which users can access this source. + You can only use policies here as access is checked before the user is authenticated.`, +'s995535e7af30d754': `Use the user's email address, but deny enrollment when the email address already exists`, +'s542ecb4130f6cea5': `Link to a user with identical username. Can have security implications when a username is used with another source`, +'s2a1debf34e5aeba4': `Use the user's username, but deny enrollment when the username already exists`, +'s81ce0d54727f42d2': `Unknown user matching mode`, +'s6f96a78d81ef277c': `Post-auto binding`, +'sc2c70fd56f5d0b48': `Post binding but the request is automatically sent and the user doesn't have to confirm.`, +'s3198c384c2f68b08': `Time offset when temporary users should be deleted. This only applies if your IDP uses the NameID Format 'transient', and the user doesn't log out manually.`, +'s5adafce329aaa853': `Authenticator type name`, +'s23e6a57201fba25e': `Display name of this authenticator, used by users when they enroll an authenticator.`, +'s7f13f4a2d0370cf6': `When using a Duo MFA, Access or Beyond plan, an Admin API application can be created. + This will allow authentik to import devices automatically.`, +'s71633a67e0d7c0e4': `Successfully imported device.`, +'s7d61705dfb120d7b': `The user in authentik this device will be assigned to.`, +'s003847d8bc01c676': `The user ID in Duo, can be found in the URL after clicking on a user.`, +'sbbc806ea3987c781': `Automatic import`, +'s77299a9d3dd932cd': str`Successfully imported ${0} devices.`, +'s6a615f6165ef01c9': `Start automatic import`, +'s9f83d7768aea548a': `Or manually import`, +'sa92398dba8b12d85': `Mapping`, +'s38162f615710c7b4': `Modify the payload sent to the custom provider.`, +'s9ca3310e1999fd5b': `If enabled, only a hash of the phone number will be saved. This can be done for data-protection reasons. Devices created from a stage with this enabled cannot be used with the authenticator validation stage.`, +'s7caa8f7edb920909': `The number of tokens generated whenever this stage is used. Every token generated per stage execution will be attached to a single static device.`, +'s4aacc4e0277c1042': `Token length`, +'s6931695c4f563bc4': `The length of the individual generated tokens. Can be increased to improve security.`, +'s1e0de9c4f66dc371': `WebAuthn User verification`, +'s24bce955914b1f0a': `Stage used to configure a WebAuthn authenticator (i.e. Yubikey, FaceID/Windows Hello).`, +'s6a3cf855140b9511': `Required: User verification must occur.`, +'sc498a3b05cfe2b08': `Preferred: User verification is preferred if available, but not required.`, +'s9d2239d2b0402795': `Discouraged: User verification should not occur.`, +'s428b7859907f6db2': `Required: The authenticator MUST create a dedicated credential. If it cannot, the RP is prepared for an error to occur`, +'s33e3766d4a02b042': `Preferred: The authenticator can create and store a dedicated credential, but if it doesn't that's alright too`, +'sfb852dd507c25c24': `Discouraged: The authenticator should not create a dedicated credential`, +'sfffba7b23d8fb40c': `This stage checks the user's current session against the Google reCaptcha (or compatible) service.`, +'s39e436de1dc4df4f': `JS URL`, +'s170b705c55ecb2ae': `URL to fetch JavaScript from, defaults to recaptcha. Can be replaced with any compatible alternative.`, +'sc8a79fddea3ab4a9': `URL used to validate captcha response, defaults to recaptcha. Can be replaced with any compatible alternative.`, +'se0c660020d9cf5b7': `Offset after which consent expires.`, +'s7f68101a50f526ee': `Statically deny the flow. To use this stage effectively, disable *Evaluate when flow is planned* on the respective binding.`, +'s1cc306d8e28c4464': `Deny message`, +'s6985c401e1100122': `Message shown when this stage is run.`, +'sdb861d9906f18ac2': `Throw error?`, +'s62e7f6ed7d9cb3ca': `Pretend user exists`, +'s52bdc80690a9a8dc': `When enabled, the stage will always accept the given user identifier and continue.`, +'s0295ce5d6f635d75': `Source settings`, +'sa84a7fd11ba85e88': `When selected, the invite will only be usable with the flow. By default the invite is accepted on all flows with invitation stages.`, +'sd18b18f91b804c3f': `Custom attributes`, +'s96dcf7ec8342c335': `Invitation not limited to any flow, and can be used with any enrollment flow.`, +'s63e54b86e2a2cc43': `Text Area: Multiline text input`, +'s4e5646b23e41231f': `Text Area (read-only): Multiline text input, but cannot be edited.`, +'s1c5574968b29ab1c': `Password: Masked input, multiple inputs of this type on the same prompt need to be identical.`, +'s34edeb18f887161d': `Radio Button Group (fixed choice)`, +'s57730b6870e8916c': `Dropdown (fixed choice)`, +'saf84e7732a9e1336': `Preview errors`, +'sb71ace8e9b35c749': `Data preview`, +'s4d53f4b7ff33bedd': `Unique name of this field, used for selecting fields in prompt stages.`, +'s4a953e6234cb4808': `When checked, the placeholder will be evaluated in the same way a property mapping is. + If the evaluation fails, the placeholder itself is returned.`, +'sf76ead4c4708dd06': `Optionally provide a short hint that describes the expected input value. + When creating a fixed choice field, enable interpreting as expression and return a + list to return multiple choices.`, +'saa7ba2057bd524a1': `Interpret initial value as expression`, +'sd60415c7666859f0': `When checked, the initial value will be evaluated in the same way a property mapping is. + If the evaluation fails, the initial value itself is returned.`, +'sa9c7044d9fd1f3e6': `Initial value`, +'seab35681cbf36755': `Optionally pre-fill the input with an initial value. + When creating a fixed choice field, enable interpreting as expression and + return a list to return multiple default choices.`, +'sbf4ef82e04772a4e': `Delete the currently pending user. CAUTION, this stage does not ask for confirmation. Use a consent stage to ensure the user is aware of their actions.`, +'sf7949fbbab2eb566': `Different browsers handle session cookies differently, and might not remove them even when the browser is closed.`, +'s53bbc3ae4b5fa1d0': `See here.`, +'s2512334108f06a5a': `Stay signed in offset`, +'s1608b2f94fa0dbd4': `If set to a duration above 0, the user will have the option to choose to "stay signed in", which will extend their session by the time specified here.`, +'s542a71bb8f41e057': `Terminate other sessions`, +'sa920231366378c90': `When enabled, all previous sessions of the user will be terminated.`, +'s927398c400970760': `Write any data from the flow's context's 'prompt_data' to the currently pending user. If no user + is pending, a new user is created, and data is written to them.`, +'sb379d861cbed0b47': `Never create users`, +'s81d673755a86a4f0': `When no user is present in the flow context, the stage will fail.`, +'s9940e3f073fbdbd4': `Create users when required`, +'s5414356cc10e80fe': `When no user is present in the the flow context, a new user is created.`, +'se80dd66f23b4fc39': `Create a new user even if a user is in the flow context.`, +'s89d1847b5e4ad225': `User path template`, +'s32babfed740fd3c1': `User type used for newly created users.`, +'s18269e3889d6fa54': `Path new users will be created under. If left blank, the default path will be used.`, +'s09f0c100d0ad2fec': `Open Wizard`, +'sf2ef885f7d0a101d': `Demo Wizard`, +'s77505ee5d2e45e53': `Run the demo wizard`, +'sdc5690be4a342985': `The token has been copied to your clipboard`, +'s7f3edfee24690c9f': `The token was displayed because authentik does not have permission to write to the clipboard`, +'sc1589121ae2f5f92': `Enter the code shown on your device.`, +'s455a8fc21077e7f9': `You've successfully authenticated your device.`, +'s2ddbebcb8a49b005': `Waiting for authentication...`, +'sb15fe7b9d09bb419': `If no Plex popup opens, click the button below.`, +'sbc625b4c669b9ce8': `Open login`, +'sc2ec367e3108fe65': `Duo activation QR code`, +'seb0c08d9f233bbfe': `Please enter the code you received via SMS`, +'sa84adff85b5e505c': `Open your two-factor authenticator app to view your authentication code.`, +'s844fea0bfb10a72a': `Authentication code`, +'s3cd84e82e83e35ad': `Please enter your code`, +'sbcf8604929b6a27a': `Sending Duo push notification`, +'s7073489bb01b3c24': `Application already has access to the following permissions:`, +'s98dc556f8bf707dc': `Application requires following new permissions:`, +'s091d5407b5b32e84': `Or`, + }; + \ No newline at end of file diff --git a/web/packages/localization/src/locales/en.js b/web/packages/localization/src/locales/en.js new file mode 100644 index 000000000..a5f28129a --- /dev/null +++ b/web/packages/localization/src/locales/en.js @@ -0,0 +1,1723 @@ + + // Do not modify this file by hand! + // Re-generate this file by running lit-localize + + import {html} from 'lit'; + import {str} from '@lit/localize'; + + /* eslint-disable no-irregular-whitespace */ + /* eslint-disable @typescript-eslint/no-explicit-any */ + + export const templates = { + 's003847d8bc01c676': `The user ID in Duo, can be found in the URL after clicking on a user.`, +'s004e9a2c90f23900': `Persistent`, +'s005053d82b712e0a': `Notes`, +'s00c2db16ea9bc263': `Configure how long refresh tokens are valid for.`, +'s00c8354318addfa0': `Policy / Policies`, +'s01088b6625d2443b': `Callback URL`, +'s019555b5a442aa00': `Property mappings used to user mapping.`, +'s0195c0df7294228a': `See more about OCI support here:`, +'s01a3a7f48ee4edaf': `Optional enrollment flow, which is linked at the bottom of the page.`, +'s01ef54f5d7c6ed47': `Try it now`, +'s02240309358f557c': `Unknown severity`, +'s026555347e589f0e': `Object uniqueness field`, +'s02839b01844d6ca8': `Creation Date`, +'s028be8989873f001': `Authorize URL`, +'s0295ce5d6f635d75': `Source settings`, +'s02b3fade1795d03f': `Connect to the LDAP Server on port 389:`, +'s02b632a9ac24a824': str`Last seen: + ${0}`, +'s02de8d9e8583b480': `Raw JWKS data.`, +'s030ac0829bb50a49': str`Policy + ${0}`, +'s037bc6d25a03c3c8': `Successfully updated transport.`, +'s0382d73823585617': str` + ${0}: + ${1}`, +'s03907d7a66c6164e': `Application's display Name.`, +'s03970aa76a09982d': `Integration`, +'s039b6434e8a75560': str`Delete + ${0}`, +'s03f42eea72154959': `Username`, +'s03f49e598ffb11cc': `Polish`, +'s03fb3fa232f0434a': `Client Secret`, +'s03fd2c252ad7972a': `Email recovery link`, +'s0410779cb47de312': `Path template for users created. Use placeholders like \`%(slug)s\` to insert the source slug.`, +'s042baf59902a711f': `Policy`, +'s04440099d97c0bef': `Edit Stage`, +'s045c3b86aae073c1': `Delete account`, +'s04b7f8d6aaef3756': `Users in the selected group can do search queries. If no group is selected, no LDAP Searches are allowed.`, +'s04bfd02201db5ab8': `Set custom attributes using YAML or JSON. Any attributes set here will be inherited by users, if the request is handled by this tenant.`, +'s04c1210202f48dc9': `Please enter your Phone number.`, +'s04c5a637328c9b67': str` + ${0}- + ${1}of + ${2}`, +'s04ceadb276bbe149': `Loading options...`, +'s05e395ff60af047b': `Warning: Provider is not used by any Outpost.`, +'s0639662111324466': `Policy engine mode`, +'s065604a41e9d1584': `Update OAuth Source`, +'s068d4dd16d9106d0': `Icon`, +'s06c163334767a381': `Create Service account`, +'s06c92148da82be0d': `Change your password`, +'s06df3c3b6a503da8': `Field of the user object this value is written to.`, +'s072c6d12d3d37501': `HTTP-Basic Username Key`, +'s079d388d3cbfa54f': `Check the logs`, +'s081d3c4b47a6ff83': `If set, users are able to unenroll themselves using this flow. If no flow is set, option is not shown.`, +'s086e1bbe7c97ea16': `Search base`, +'s08a8716c214a0efb': `PEM-encoded Certificate data.`, +'s08c91cb1a2cd3d97': `When selected, a password field is shown on the same page instead of a separate page. This prevents username enumeration attacks.`, +'s091d3d07b5b3076f': `OK`, +'s091d5407b5b32e84': `Or`, +'s09205907b5b56cda': `No`, +'s09240e07b5b8d640': `ID`, +'s09242207b5b8f83c': `IP`, +'s09353907b5c79284': `To`, +'s09810653c832e935': `Click to change value`, +'s098237f7ccb4dc4a': `Successfully cleared flow cache`, +'s09b671b120443043': `Update Radius Provider`, +'s0a0ca63b967f1630': `Source(s)`, +'s0a11c2ffb8309d1a': `Not found`, +'s0a39e4f61ccafacb': `Successfully updated rule.`, +'s0a5401d4419f9958': `Using source`, +'s0a57e911e457302b': `SLO URL (Post)`, +'s0a61796c1956d32c': `Evaluate when flow is planned`, +'s0a63a8be0b2b422c': `Workers`, +'s0a72e65aef45b1e8': `Server URI`, +'s0ae0072614320ae2': `Hash phone number`, +'s0ae3395d8f48e624': `Successfully generated recovery link`, +'s0af6301e76e2a2a5': `Successfully updated tenant.`, +'s0b15ff11a0049cfd': `LDAP DN under which bind requests and search requests can be made.`, +'s0b3bf19b31dd6bac': `Try the new application wizard`, +'s0b55a57f473ab8af': `Update Group`, +'s0c135eba6017d94f': `Label shown next to/above the prompt.`, +'s0c3ac7f9383a8cfd': `Transient`, +'s0c8c4d2bb0a9162a': `Optional passwordless flow, which is linked at the bottom of the page. When configured, users can use this flow to authenticate with a WebAuthn authenticator, without entering any details.`, +'s0c9670f429e74283': `New application`, +'s0d4268408182491d': `Use TLS`, +'s0d5d05bf3d122ced': `Twilio`, +'s0dc46deb8f181baf': `Invalid response behavior`, +'s0dd00fbaba08748a': `Session not valid on or after current time + this value.`, +'s0dfc6838c9d07677': `Configuration flow`, +'s0e03fe2dc5b9164b': `If your authentik Instance is using a self-signed certificate, set this value.`, +'s0e15f678445dfc45': `Stage used to validate any authenticator. This stage should be used during authentication or authorization flows.`, +'s0e516232f2ab4e04': `Tokens sent via SMS.`, +'s0eaf755fa88c8d97': `Stage(s)`, +'s0f2e070d38cd36df': `TLS Authentication Certificate/SSH Keypair`, +'s0f4c6540c30bd8b4': `Designation`, +'s0fbf6dc6a1966408': `Next`, +'s10356fd921037fbf': `Default flows`, +'s107bf77afb93c9b8': `Send notifications whenever a specific Event is created and matched by policies.`, +'s10922bd0ac765562': `object will be DELETED`, +'s10929ca568ae10bc': `Provider(s)`, +'s10d2dbc4613397f0': `Updated`, +'s11204eeb1e27ea8f': `ACS URL`, +'s11326fd2590f4e5e': `Default`, +'s113c05ef9996ca4b': `Embedded outpost is not configured correctly.`, +'s119498d4e4cf59a6': `Affected model:`, +'s11bc220e8fa9d797': `Authorizations`, +'s12146091b2b539a3': `Content left`, +'s122f308b5f198ba7': `Successfully created certificate-key pair.`, +'s124f93a61ee772d6': `Advanced protocol settings`, +'s128e7f5f34bfa155': `Stage used to configure a static authenticator (i.e. static tokens). This stage should be used for configuration flows.`, +'s1293ad87acc7a609': `HaveIBeenPwned settings`, +'s1298e361e40ee1c5': `Stop impersonation`, +'s12de1c06a1e18cc5': `Text (read-only): Simple Text input, but cannot be edited.`, +'s134177568525dbc8': `Device code flow`, +'s13de04774ff0f210': `Docker URL`, +'s14401ff4a0cba208': str`Failed to update + ${0}: + ${1}`, +'s145483489b87a622': `Logout URL`, +'s14622ee6de586485': str`Attempted to log in as + ${0}`, +'s14ace18ccf4fb86d': `Increases compatibility with password managers and mobile devices.`, +'s14c552fb0a4c0186': `Application requires following permissions:`, +'s14c8f36e180d6bbc': `Successfully created stage.`, +'s1575a15cee001915': `Successfully created transport.`, +'s1608b2f94fa0dbd4': `If set to a duration above 0, the user will have the option to choose to "stay signed in", which will extend their session by the time specified here.`, +'s164be9a7537b99f6': `Configure visual settings and defaults for different domains.`, +'s1665454e31e14941': `X509 Subject`, +'s16b9446e3a70e1f4': `Attributes`, +'s16bc281dce5685e8': `Authenticator`, +'s170b705c55ecb2ae': `URL to fetch JavaScript from, defaults to recaptcha. Can be replaced with any compatible alternative.`, +'s17a679298216aca9': `Select sources should be shown for users to authenticate with. This only affects web-based sources, not LDAP.`, +'s17d1e337f6c11c1e': `Include claims in id_token`, +'s17f3eaf3b07ece26': `Warning: Provider is not used by an Application.`, +'s1823625e6f831d73': `Customisation`, +'s18269e3889d6fa54': `Path new users will be created under. If left blank, the default path will be used.`, +'s1828fbfc2c56379c': `Check IP`, +'s18b910437b73e8e8': `Return to device picker`, +'s197420b40df164f8': `Follow redirect`, +'s199b55513a739f43': `OIDC Well-known URL`, +'s19b09f4fc72175d1': `Create a new source.`, +'s1a0e95458b44d7f8': `Any policy must match to grant access`, +'s1a2797874b7fe852': `NameID Property Mapping`, +'s1a2f8f4b3861583b': `Create Outpost`, +'s1ac2653a6492b435': str` + ${0}, should be + ${1}`, +'s1b07757762cda372': `Clear Policy cache`, +'s1b14062c44e5ef45': `Expiring`, +'s1b42b49e7b392013': `Update Invitation`, +'s1b448a4ea79d4eef': `No Events found.`, +'s1b606acd76ba2c4c': `Update Tenant`, +'s1b783856ab4aaaf3': `No additional setup is required.`, +'s1b88fa3df4423292': `Last IP`, +'s1bd5920d8adf2bd5': `Groups to add`, +'s1bf56ee106e9e711': `Successfully created binding.`, +'s1c2a173db0e1ec61': `Consider Objects matching this filter to be Users.`, +'s1c2fd8097e14a608': `Recovery flow. If left empty, the first applicable flow sorted by the slug is used.`, +'s1c33d22492029aba': `Object field`, +'s1c5574968b29ab1c': `Password: Masked input, multiple inputs of this type on the same prompt need to be identical.`, +'s1c6ba8d100453392': `Time in minutes the token sent is valid.`, +'s1c8916418c334935': `ID Token`, +'s1c8e9816dcae6d9c': `The start for gidNumbers, this number is added to a number generated from the group.Pk to make sure that the numbers aren't too low for POSIX groups. Default is 4000 to ensure that we don't collide with local groups or users primary groups gidNumber`, +'s1cc0e66dbd2b5502': `Flow settings`, +'s1cd198d689c66e4b': `API Access`, +'s1cd264012278c047': `Flow execution`, +'s1cd617e7bbe278d0': `Prompt for the user's consent. The consent can either be permanent or expire in a defined amount of time.`, +'s1cf2298d92c327a6': `My Applications`, +'s1d30ff9ba938e68d': `Wait (max)`, +'s1d49ec5030447643': `Outpost(s)`, +'s1d6e16d86961c782': `Certificate-Key Pair(s)`, +'s1d9d6c5b424fdc1f': `URL that the initial Login request is sent to.`, +'s1e0de9c4f66dc371': `WebAuthn User verification`, +'s1e176e35c828318c': `Hostname`, +'s1e36813d3504ed48': `Successfully updated binding.`, +'s1e4c3de6e12cd87b': `Username: Same as Text input, but checks for and prevents duplicate usernames.`, +'s1e7308bb1ca323e1': `SLO URL (Redirect)`, +'s1efbfc3937d565bd': `Background`, +'s1f1c857c0c4250e4': str` + ${0}day(s) ago`, +'s1fc9c70610c4c67d': `Invalidation`, +'s2035f889f576bca6': `Connection settings`, +'s207e8b106806d7e4': `Bind stage`, +'s20a0ce62823bfa97': `Delete temporary users after`, +'s211b75e868072162': `Set this to the domain you wish the authentication to be valid for. Must be a parent domain of the URL above. If you're running applications as app1.domain.tld, app2.domain.tld, set this to 'domain.tld'.`, +'s2152f3482784705f': `Recent events`, +'s216eb300543edd91': `Select which server a user has to be a member of to be allowed to authenticate.`, +'s21b3058faf874368': `Outdated outposts`, +'s21d0e290c51a8ef9': `Symbol charset`, +'s21e3c227cc2c5873': `Separator: Static Separator Line`, +'s2221fef80f4753a2': `TLS Verification Certificate`, +'s2236dc563c2dbf76': `(Format: hours=-1;minutes=-2;seconds=-3).`, +'s22b0e8c5277dd5a9': `Will notify the user the flow isn't applicable`, +'s22b10ed263b96194': `Dummy stage used for testing. Shows a simple continue button and always passes.`, +'s22e566052f7bec81': `JWTs signed by certificates configured in the selected sources can be used to authenticate to this provider.`, +'s2345170f7e272668': `Unknown proxy mode`, +'s2348f46ebf436671': `Open in new tab`, +'s239c2a351cde6d39': `Require no authentication.`, +'s23ab136ad85f0ad2': `Only sync users within the selected group.`, +'s23cee624c735f266': `Intercept header authentication`, +'s23de62f931f7d754': `Last applied`, +'s23e6a57201fba25e': `Display name of this authenticator, used by users when they enroll an authenticator.`, +'s23fd4411419fca06': `Scope which the client can specify to access these properties.`, +'s240ff02ce3a53dee': `Integration key`, +'s24211f319e5b7e98': `Field which contains a unique Identifier.`, +'s2430e000b7cfefd0': `Only send notification once, for example when sending a webhook into a chat channel.`, +'s2474e7fb1aec9f05': `Test`, +'s24875d5475e82526': `Successfully updated source.`, +'s24f405197ede5ebb': `Re-authenticate with plex`, +'s2512334108f06a5a': `Stay signed in offset`, +'s252a52330d32b900': `Metadata`, +'s2536ac8d32d2e63f': `Duration after which events will be deleted from the database.`, +'s2543cffd6ebb6803': `System task execution`, +'s256b8452664ccae4': `Configure how the NameID value will be created. When left empty, the NameIDPolicy of the incoming request will be respected.`, +'s25d0cd75377daf75': `Forward auth (domain level)`, +'s25ec2846f6b88214': `Webhook Mapping`, +'s26513c9dd154f041': `Always require consent`, +'s2656433a3b1f7e86': `My applications`, +'s26bf2730430efbea': `Subject mode`, +'s2708cac1f4942708': `Blueprint(s)`, +'s271a7e04ff9865b1': `Control how authentik exposes and interprets information.`, +'s275021658614ce9e': `API URL`, +'s27586544c447d9e3': `User events`, +'s276d751eb7a186cc': `API Hostname`, +'s27976e94b05c6970': `Activate`, +'s27ac7a47b390e3cb': `Certificate-Key Pairs`, +'s2801a48ceac691b3': `Enrollment flow`, +'s289fce7e694b98ac': `SMTP Port`, +'s28b3de1561da72b3': `MFA Authenticators`, +'s28d84abfbaf555ea': `Score threshold`, +'s28f270859c5f4d51': `The Host IP of the docker host`, +'s29315e374008d0c5': `Users added to this group will be superusers.`, +'s293801033f9fc0d0': `Create a new stage.`, +'s293aa6a6446fb153': `Export`, +'s293ab4331c1dd387': `This is the username to be used with basic auth or the token when used with bearer token`, +'s296fbffaaa7c910a': `Required.`, +'s297a2075bd7e40db': `NameID Policy`, +'s29ec5e7889f4787f': `Successfully updated policy.`, +'s2a0f60e74b478804': `Digest algorithm`, +'s2a12e0b5527ff99a': `Enabling this toggle will create a group named after the user, with the user as member.`, +'s2a1debf34e5aeba4': `Use the user's username, but deny enrollment when the username already exists`, +'s2a2d3e7c379e9518': `Certificate Subject`, +'s2a369bc2febb5d55': `If no explicit redirect URIs are specified, the first successfully used redirect URI will be saved.`, +'s2a64d2dca3da9b0e': str`Group + ${0}`, +'s2a957e843960b604': `Password field`, +'s2af5754090898640': `Assertion valid not on or after`, +'s2b088ba65eb69b7e': `Name of the form field, also used to store the value.`, +'s2b1bc31276c4c477': `Policy / Group / User Bindings`, +'s2b7dbba348234a36': `A code has been sent to you via SMS.`, +'s2b952e9dc99cbded': `Login password is synced from LDAP into authentik automatically. Enable this option only to write password changes in authentik back to LDAP.`, +'s2ba5f4d8f3bd7c57': `Order`, +'s2bc8aa1740d3da34': `Stage object`, +'s2be6121210e2a2f8': `Prompts`, +'s2c0de3d35a7bc784': `Related objects`, +'s2c8189544e3ea679': `Retry`, +'s2ceb11be2290bb1b': `Cancel`, +'s2d34c87f67f66c6a': `Windows`, +'s2d46e3a9ee8e0e7e': `Update LDAP Provider`, +'s2d5f69929bb7221d': str` + ${0}(" + ${1}", of type + ${2})`, +'s2da51a6287118ba8': `SSO URL (IdP-initiated Login)`, +'s2ddbebcb8a49b005': `Waiting for authentication...`, +'s2df0b65125600de9': `OIDC JWKS`, +'s2e3ef41a0edd8608': `Scopes`, +'s2e4818861000b13f': `Layout`, +'s2e532e19ed477a56': `Path`, +'s2ec94a7c7f5bcd1b': `Group object filter`, +'s2ed8eb02525a920a': str` + ${0}hour(s) ago`, +'s2eeca5cfc99ef19b': `Decides the response when a policy denies access to this flow for a user.`, +'s2f0f6691de0b0388': `Warning: Provider is not assigned to an application as backchannel provider.`, +'s2f1bcfcc5cae94c3': `Create Flow`, +'s2f58bb9905d2b76f': `Certificate/Key used for authentication. Can be left empty for no authentication.`, +'s2f8c4cf12350a36c': `Check static rules`, +'s2f995efbb1e46b18': `Auto-detect (based on your browser)`, +'s2fc3eb68c7ced3af': `Userinfo URL`, +'s30205d424e710818': `Successfully disconnected source`, +'s303b5e552246e613': `Matches an event against a set of criteria. If any of the configured values match, the policy passes.`, +'s306a35df5d0d38bb': `Users to add`, +'s3079ca1184e77573': `Successfully created group.`, +'s30d0d0e6c626a234': `The outpost holds all users and groups in-memory and will refresh every 5 Minutes`, +'s30d1f50f476c3f48': `Flow Overview`, +'s310d8757ce319673': `Logins`, +'s319040353f479853': `Flow used for users to authenticate.`, +'s3198c384c2f68b08': `Time offset when temporary users should be deleted. This only applies if your IDP uses the NameID Format 'transient', and the user doesn't log out manually.`, +'s31a2d43bc1cf1790': `Not synced yet.`, +'s31d15c6f16951464': `Authentication URL`, +'s31d7f3ba04d306a5': `SSO URL`, +'s31ebc5431d677f5d': `SMTP Host`, +'s31fba571065f2c87': `Make sure to keep these tokens in a safe place.`, +'s322e34cfcba47155': `Not available`, +'s32a3efa23718e713': `API Requests`, +'s32f04d33924ce8ad': `Policy execution`, +'s332a5235948c1a1d': `Consent`, +'s3330adb3f0922f7b': `User database + app passwords`, +'s33318837e6c54a9b': `Trusted OIDC Sources`, +'s33683c3b1dbaf264': `To use SSL instead, use 'ldaps://' and disable this option.`, +'s3380d7cbcebe50f6': `Password stage`, +'s33aa05f435c29753': `Update Certificate-Key Pair`, +'s33d48fb745f4d4ae': `Minimum amount of Uppercase Characters`, +'s33ed903c210a6209': `Token to authenticate with. Currently only bearer authentication is supported.`, +'s33f85f24c0f5f008': `Save`, +'s341ab68d4130de20': `No workers connected. Background tasks will not run.`, +'s342eccabf83c9bde': `Plan history`, +'s344c4a2a48997e18': `.yaml files, which can be found on goauthentik.io and can be exported by authentik.`, +'s34b23ebbac9f6ab9': `User verification`, +'s34be76c6b1eadbef': `Warning`, +'s34edeb18f887161d': `Radio Button Group (fixed choice)`, +'s350a616ff5e145ec': `Select a provider that this application should use.`, +'s351246c52548086a': `Download Certificate`, +'s354e0a9f146d2869': `Chinese (simplified)`, +'s355b21b89ce5d9c5': `Details`, +'s3576aead3e68c5c9': `Export flow`, +'s35e6e60e83a8c003': `Invalidation flow`, +'s35f9df7668d5fa79': `View deployment documentation`, +'s35fac2e5677d55cd': `Designates whether this user should be treated as active. Unselect this instead of deleting accounts.`, +'s3616cc78631f5893': str`Warning: You're about to delete the user you're logged in as ( + ${0}). Proceed at your own risk.`, +'s3626433940124897': `Favicon`, +'s3643189d1abbb7f4': `Code`, +'s3687049d1af562c4': `Copy`, +'s36cb242ac90353bc': `Fields`, +'s36e630ba56617556': `Send HTTP-Basic Authentication`, +'s374abf1a54d87b67': `Background shown during execution.`, +'s3794c596ee7964ad': `Update password`, +'s37cbecaec58e2192': `Mode`, +'s37d9155b9f4cc7bd': `Configure how the issuer field of the ID Token should be filled.`, +'s37dbfe2133b74d2d': `Interpret placeholder as expression`, +'s37eb2f1b6e3c19c2': `Protocol Settings`, +'s38162f615710c7b4': `Modify the payload sent to the custom provider.`, +'s382a2aa3984474dd': `Create`, +'s382b702673776873': `Example SAML attributes`, +'s38887b94b3320533': `Email address`, +'s388ee787bbf2271b': `Task finished with warnings`, +'s38c72e1cf120b8d8': `Create Invitation`, +'s38f774cd7e9b9dad': `Sign up.`, +'s3914cb410fca44d4': `Import`, +'s3926da5b20cdf3b6': `URL used to request the initial token. This URL is only required for OAuth 1.`, +'s398f6ba74ba8943a': `Select providers to add to application`, +'s399cc2d67d92e957': `Confidential`, +'s39c8c0bf4d927c9f': `Allow IDP-initiated logins`, +'s39e436de1dc4df4f': `JS URL`, +'s3a135682bd30bdbb': `Create App password`, +'s3a3fae99373ce56b': `Select which scopes can be used by the client. The client still has to specify the scope to access the data.`, +'s3a5fec3d73ac9edc': `Create Certificate-Key Pair`, +'s3ab772345f78aee0': `Flow inspector`, +'s3abecf1e778c9625': `See more here:`, +'s3b34d9930e33bd46': `System Tasks`, +'s3b58f8d2155ae90c': `Field Key`, +'s3b68883dda2682ed': `Assertions is empty`, +'s3b7b519444181264': `Validation Policies`, +'s3baf512851453712': `Twilio Account SID`, +'s3bb51cabb02b997e': `Format: "weeks=3;days=2;hours=3,seconds=2".`, +'s3bfa0258999fb629': `Negates the outcome of the binding. Messages are unaffected.`, +'s3c6de3f257e0c912': `Request`, +'s3cd84e82e83e35ad': `Please enter your code`, +'s3d197283cb019b5a': `Overview`, +'s3d34068a31cab30b': `Internal host SSL Validation`, +'s3de6db803012016a': `LDAP Attribute mapping`, +'s3e211d29fa10f843': `reference will be set to an empty value`, +'s3e3bb9e7cb1de4fd': `Select users to add`, +'s3e59b8b2debf0209': `This stage can be included in enrollment flows to accept invitations.`, +'s3e87ce98ba3c4d80': `Configure how long tokens are valid for.`, +'s3ebf4c166058afce': `Clear background`, +'s3ed5607ad78d4224': `Clear cache`, +'s3ef3c252ada78076': `Failed Logins`, +'s3fd219b045193507': `zxcvbn settings`, +'s3feea7b49673bef2': `No log messages.`, +'s3ffa320128991a45': `Provide support for protocols like SAML and OAuth to assigned applications.`, +'s4090dd0c0e45988b': `Request ID`, +'s40b034801fcb843b': `Allows/denys requests based on the users and/or the IPs reputation.`, +'s40b80eb4cc1f0e0c': `Edit Binding`, +'s40bf151b56a64f51': `Server and client are further than 5 seconds apart.`, +'s40e2c72dae905a50': `Static: Static value, displayed as-is.`, +'s4165cd175bc4c0c4': `Expires on`, +'s416a540b16275f2e': `Create Group`, +'s41706a202b6c40f1': `Domain`, +'s417b90913e05bc17': `Preview`, +'s41b105819b67ee7a': `Stages`, +'s41e035c4bb8d15f2': `General system status`, +'s4207178ba0b99418': `A newer version of the frontend is available.`, +'s420d2cdedcaf8cd0': `Authenticating with Plex...`, +'s427f788ff333f45b': `Launch URL`, +'s4291727352c4f295': `Based on the User's username`, +'s42a1ebe17efda727': `Field`, +'s42cbd8dca939a9c7': `Check`, +'s42fc6f4b64eff5d9': `Single Prompts that can be used for Prompt Stages.`, +'s43be3ce2439ffe9c': `Minimum amount of Digits`, +'s43c1f927936f0a02': `Assertion not valid on or after current time + this value.`, +'s4409ada9c5c2a7f8': `Inactive`, +'s4414164d120de61a': str`The following objects use + ${0}`, +'s44536d20bb5c8257': `This setting only affects new Events, as the expiration is saved per-event.`, +'s44b1f042790cd1a2': `SAML Configuration`, +'s44c90273f08fb718': `Use this provider with nginx's auth_request or traefik's forwardAuth. Only a single provider is required per root domain. You can't do per-application authorization, but you don't have to create a provider for each application.`, +'s44ea4e9a81ce730d': `Email stage`, +'s453b0c150a7ca58e': `Example JWT payload (for currently authenticated user)`, +'s455a8fc21077e7f9': `You've successfully authenticated your device.`, +'s455de2f740b073fd': `Event info`, +'s457c639088c547c5': `Successfully created provider.`, +'s45935843b1b5b496': `Form didn't return a promise for submitting`, +'s45960273852a61b2': `Date Time`, +'s45cb501abd43ba52': `Generate`, +'s45f9e7ce0897f9e5': `Tenant`, +'s4660da32fb311ac0': `Taiwanese Mandarin`, +'s473f0143efa3f706': `These policies control which users can access this application.`, +'s47490298c17b753a': `Receive a push notification on your device.`, +'s4751df77cfd8a5f9': `Check Username`, +'s476ffc07e6d66f18': `Successfully updated token.`, +'s477de089b505a6ea': `SCIM Provider`, +'s47a4983a2c6bb749': `Model updated`, +'s47bd537a3bcebf19': `Download Private key`, +'s4802636d55022ed3': `Default?`, +'s480c6c40a248f7d2': `Use SSL`, +'s482ae78809a6822b': `Flow used by an authenticated user to configure their password. If empty, user will not be able to configure change their password.`, +'s485c05d34eb00415': `Delete currently set icon.`, +'s48cf8fd56b1237ed': `Successfully updated flow.`, +'s494e1ed913d9351a': `Edit Group`, +'s49730f3d5751a433': `Loading...`, +'s4a1e774ab25aa232': `Internal Host`, +'s4a26798e1c3c37dd': `Validate SSL Certificates of upstream servers.`, +'s4a697f0b36c4fe83': `Active Directory User`, +'s4a6aa26413287069': `Successfully updated details`, +'s4a87445f3108db7c': `Select one of the sources below to login.`, +'s4acf840bc792c3ae': `Local (notifications will be created within authentik)`, +'s4aee34a672e5cfc0': `Created by`, +'s4af8a3ce5a600855': `Let the user identify themselves with their username or Email address.`, +'s4b2a1b657c160f5b': `JSON Web Key URL. Keys from the URL will be used to validate JWTs from this source.`, +'s4b5af7736aedd6c1': `Private key available?`, +'s4c24b2baa377e870': `Successfully updated certificate-key pair.`, +'s4c41f3f4c23e8eaa': `Warning: This group is configured with superuser access. Added users will have superuser access.`, +'s4c4c504a48c3b7bd': `Traefik (Standalone)`, +'s4c6534a118f52fdd': `Select backchannel providers which augment the functionality of the main provider.`, +'s4caed5b7a7e5d89b': `English`, +'s4cdae7635e757555': `Fields a user can identify themselves with. If no fields are selected, the user will only be able to use sources.`, +'s4d00e5de1c8213b7': `Client ID`, +'s4d00f1de1c82281b': `Client IP`, +'s4d182bae8a578010': `SMS-based Authenticators`, +'s4d31797d81e9cea3': `Explicit Consent`, +'s4d53f4b7ff33bedd': `Unique name of this field, used for selecting fields in prompt stages.`, +'s4d7fe7be1c49896c': `You may close this page now.`, +'s4dcb9288f7e9e4d7': `Group users together and give them permissions based on the membership.`, +'s4e28e2899e08a5f8': `Determines how authentik sends the response back to the Service Provider.`, +'s4e474b9e2e737dd1': `Update Proxy Provider`, +'s4e5646b23e41231f': `Text Area (read-only): Multiline text input, but cannot be edited.`, +'s4eb514ebcb80553d': `Parent`, +'s4f1ad6b48a5df506': `Logs`, +'s4f1af2b48a5e249a': `Logo`, +'s4ff2c202b4e5bdc5': `Built-in`, +'s502884e1977b2c06': `Next stage`, +'s502d2473587032e1': `No preference is sent`, +'s505fbbdcbc6aa921': `Add new group`, +'s506beb486fa41241': `Application authorizations`, +'s50719dda8f90abf4': `Visible in the URL.`, +'s50911ec1c8aee99a': `No matching events could be found.`, +'s50c312bea93b6925': `Edit Policy`, +'s50ebe627b4bc7d02': `Binding`, +'s510c7add9e24c306': `Hide deactivated user`, +'s5116b89f7db1fbec': `Allowed Redirect URIs`, +'s512957aa09384646': `Launch`, +'s5140d157642d7362': `None (rule disabled)`, +'s5170f9ef331949c0': `Show arbitrary input fields to the user, for example during enrollment. Data is saved in the flow context under the 'prompt_data' variable.`, +'s51c6b8403c2dc5d9': `Public clients are incapable of maintaining the confidentiality and should use methods like PKCE.`, +'s51da4de00984fe51': `API Auth Username`, +'s51ea3a244c781b1f': `Objects created`, +'s51f92b6fa76656ca': `Unhealthy outposts`, +'s523160b433311521': `If set, users are able to configure details of their profile.`, +'s52b500138a2d2b8a': `Update LDAP Source`, +'s53ad3455d9523b54': `Create User`, +'s53bbc3ae4b5fa1d0': `See here.`, +'s5414356cc10e80fe': `When no user is present in the the flow context, a new user is created.`, +'s542a71bb8f41e057': `Terminate other sessions`, +'s542ecb4130f6cea5': `Link to a user with identical username. Can have security implications when a username is used with another source`, +'s544142ce35050751': `Test Policy`, +'s545d99afa61e4095': `Characters which are considered as symbols.`, +'s5462c7f56ed65e6c': `Email: Text field with Email type.`, +'s54cd35e6224ba65d': `By default, only icons are shown for sources. Enable this to show their full names.`, +'s54e7a23a95d99649': `Text: Simple Text input`, +'s5515a897ae98bed9': `Certificates`, +'s554ce268e9727e79': `You can only select providers that match the type of the outpost.`, +'s5572ac4d2208f5ec': `Successfully created prompt.`, +'s55787f4dfcdce52b': `Signing Key`, +'s5590dbf7e425789d': `Label`, +'s5599c62bb78c631f': `Admin interface`, +'s55d731be1ef66efe': `Base DN`, +'s55eb75bedf96be0f': `This is recommended over the UPN mode.`, +'s55fa598b754cc3cc': str` + ${0}( + ${1})`, +'s5615bb595ad6ded6': `Binding Type`, +'s56806e9f63efa298': `Redirect URIs`, +'s5694f9421c428227': `Bind Password`, +'s56fd9ed596c724fa': `Secret key`, +'s57072ffb92b6c9c8': `Define how notifications are sent to users, like Email or Webhook.`, +'s57337099d96ce6d2': `Always create new users`, +'s57448f10eb973100': `Create Invitation Links to enroll Users, and optionally force specific attributes of their account.`, +'s57730b6870e8916c': `Dropdown (fixed choice)`, +'s584d1c38ad20d560': `Any HTML can be used.`, +'s586d6bd2eca2da93': `Users`, +'s587ba266269297ab': `Policy Bindings`, +'s588796ee929a2e4c': `User details`, +'s58888ef1ee9b5bb8': `User status`, +'s58c867aac77b9158': `Last login`, +'s58cd9c2fe836d9c6': `Return home`, +'s58d1eb482059da12': `New provider`, +'s58fd2aafa4261c55': `Successfully updated application.`, +'s592425143c4f5834': `Subject-alt name`, +'s592ab7d2bc1b8973': `User fields`, +'s593db2c00d6516a2': `SMTP Password`, +'s5944355d69db1fb8': `Addition Group DN`, +'s59572c1be31a812e': `Failed to delete flow cache`, +'s59691290a232c687': `Selected policies are executed when the stage is submitted to validate the data.`, +'s59b6028f19d15cda': `No integration active`, +'s59bf194136d0d13a': `Used to login using a flow executor`, +'s59dc0eda07f9e2b6': `Property Mapping(s)`, +'s59f5eda30a904b75': `JWKS URL`, +'s5a13f4bbe004503f': `Checks if the request's user's password has been changed in the last x days, and denys based on settings.`, +'s5a15a8f39c699273': `Match events created by selected application. When left empty, all applications are matched.`, +'s5a48d5171e1a1522': `Warning: Policy is not assigned.`, +'s5a802e46a033c8af': `User's primary identifier. 150 characters or fewer.`, +'s5acb607b40356974': `GID start number`, +'s5adafce329aaa853': `Authenticator type name`, +'s5b1fb0d4c0daeba8': `Create Binding`, +'s5b6b6e2cb884d59f': `Duo Auth API`, +'s5be3b0567172e415': `Verification Certificate`, +'s5be3c6d61cd9182f': `Notifications`, +'s5c18cae48b93138c': `Sessions`, +'s5c1dc164c89ac13e': `Unknown provider type`, +'s5cd31f4a88adf180': `Edit User`, +'s5d0a14d29ebad561': `Flow to use when enrolling new users.`, +'s5d6af4c100ad321b': str`Create + ${0}`, +'s5d7748b1d2363478': str`Are you sure you want to remove the selected users from the group + ${0}?`, +'s5d9f93f1fe1c19d3': `Traefik (Ingress)`, +'s5deac600e329de1b': `Log messages`, +'s5e169e1bac20b4a6': `Outposts`, +'s5e8250fb85d64c23': `Close`, +'s5e830ae7688d1219': `Stage used to configure an SMS-based TOTP authenticator.`, +'s5eaf1d304e03ed4b': `Duo User ID`, +'s5f343a43e7ea9f91': `Error`, +'s5f4586bc1e2740e6': `Clear search`, +'s5f496533610103f2': `Application authorized`, +'s5f5bf4ef2bd93c04': `Group mappings can only be checked if a user is already logged in when trying to access this source.`, +'s5f71fa3c53828e30': `Remove from Group(s)`, +'s5fbaeb14f42815e5': `Authenticator Attachment`, +'s5fc4269c2addee61': `Unique identifier the token is referenced by.`, +'s60cc554fde2676cb': `A non-removable authenticator, like TouchID or Windows Hello`, +'s60d891ed3ee9ebc5': `Successfully created source.`, +'s60edbcfac8ed1f90': `The start for uidNumbers, this number is added to the user.Pk to make sure that the numbers aren't too low for POSIX users. Default is 2000 to ensure that we don't collide with local users uidNumber`, +'s6152026c364ad974': `Sources of identities, which can either be synced into authentik's database, or can be used by users to authenticate and enroll themselves.`, +'s618d4e53f455c834': `Use global settings`, +'s61b6f3e6bc59c6dd': `Create Prompt`, +'s61ccefd661ac2296': `If this flag is set, this Stage will jump to the next Stage when no Invitation is given. By default this Stage will cancel the Flow when no invitation is given.`, +'s61e48919db20538a': `UPN`, +'s61eacb19db252f5e': `URL`, +'s6238f519db67980d': `UID`, +'s624256f8a4bb4c89': `Notification transport(s)`, +'s62ddcbaaa91d120d': `Reputation scores`, +'s62f7c59b0606a8d6': `Authorization flow`, +'s62f93cfcb45d5a06': `Superuser privileges?`, +'s6336fa345e96dde9': `Evaluate when stage is run`, +'s634448e4942cf452': `Edit the notes attribute of this group to add notes here.`, +'s634d041fd954ab20': `API Auth password`, +'s63cb05541b294335': `Is superuser`, +'s63d894b1ddb06289': `Description`, +'s63d89a6ae0969c30': `To let a user directly reset a their password, configure a recovery flow on the currently active tenant.`, +'s63e03c70f67ebf9c': `Context`, +'s63e54b86e2a2cc43': `Text Area: Multiline text input`, +'s63e71d20d1eaca93': `German`, +'s643d8f2e5e5e930d': `Successfully updated mapping.`, +'s64a33dcdaf90af26': `User Info`, +'s64ef2a6c2dd1d3d1': `Edit`, +'s65ca2f256ea09c11': `Add to existing group`, +'s65d507f1513c2f03': `Allows authentication flows initiated by the IdP. This can be a security risk, as no validation of the request ID is done.`, +'s65d67612999165e9': str`Event + ${0}`, +'s662fcb3761ad9df7': `When used in conjunction with a User Write stage, use attributes.foo to write attributes.`, +'s66722bc2ea775e05': `Disabled`, +'s66ffc06300964849': `User object filter`, +'s670ad066cc0e50a3': str`Login to continue to + ${0}.`, +'s67560d7e37d984c3': `Policy / User / Group`, +'s67664f8ee9aea98d': `Please enter your Code`, +'s67749057edb2586b': `Logout`, +'s677f1b675fc21bb1': `Secret:`, +'s67dedada007d4067': str`Failed to disconnected source: + ${0}`, +'s67e20cd8018d7e3c': `Currently set to:`, +'s681074b6c1f19c08': `Not configured action`, +'s6835db03209b4f94': `Automate and template configuration within authentik.`, +'s6873bdbfa24615fb': `Webhook URL`, +'s68a50b1ee6efee7b': str` + ${0}is available!`, +'s68d69ad0271c8ef6': `Create a new outpost integration.`, +'s68f935c9ca792016': `app1 running on app1.example.com`, +'s693d975d38ff0214': `Signature algorithm`, +'s6941a67f0038ba4c': `Stages used to configure Authenticator when user doesn't have any compatible devices. After this configuration Stage passes, the user is not prompted again.`, +'s69a56a3022c4be7f': `Tenant(s)`, +'s69bd313dd12fc2f3': `Profile URL`, +'s6a406aecb2c0e5c5': `Enroll`, +'s6a615f6165ef01c9': `Start automatic import`, +'s6a66759749bf31ed': `Direct binding`, +'s6a89bb10338369b4': `Go to previous page`, +'s6ab73c998850c5ab': `Expression`, +'s6abff64e7ff7fde9': `Avatar image`, +'s6ac670086eb137c6': `Recovery`, +'s6ae0d087036e6d6d': `Select an authentication method.`, +'s6b5002c605b39d6d': `Create Notification Transport`, +'s6b6e6eb037aef7da': `Use the username and password below to authenticate. The password can be retrieved later on the Tokens page.`, +'s6b79e73ca77148a0': `Outpost Integrations`, +'s6b85380416964890': `Negate result`, +'s6b9a1dd402750a8a': `Restarts the flow from the beginning, while keeping the flow context`, +'s6ba50bb0842ba1e2': `Applications`, +'s6c3daaac4eed12f9': `Changelog`, +'s6c410fedda2a575f': `Update available`, +'s6c607d74bdfe9f36': `User mappings can only be checked if a user is already logged in when trying to access this source.`, +'s6c70a73265e14521': `Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses`, +'s6c8f05e3be04f62a': `Register device`, +'s6d3b4d0561ba1cff': `Publisher`, +'s6d5bce4321f57cda': `Unenrollment`, +'s6df42b3072a2d7e9': `Nginx (Ingress)`, +'s6dfb7283452f78fe': `Authorization`, +'s6dfd15978586d05f': str`Welcome, + ${0}.`, +'s6e09a19aa3952509': `Apps with most usage`, +'s6e4c997a101b6abf': `with current user`, +'s6e612e5a6a359bbb': `Optional Private Key. If this is set, you can use this keypair for encryption.`, +'s6e6e737601f44b2c': `Successfully cleared notifications`, +'s6ec8c9d11310300a': `Orphaned`, +'s6f270e1668c036e9': `Successfully updated outpost.`, +'s6f328f2d8382d998': `Consent expires in`, +'s6f857299d5db1ecf': `Flow(s)`, +'s6f96a78d81ef277c': `Post-auto binding`, +'s6fcd9b5a87ceccd6': `Open settings`, +'s6fe64b4625517333': `Powered by authentik`, +'s7031e6928c44cedd': `User interface`, +'s706af57c1af42c6d': `Hidden: Hidden field, can be used to insert data into form.`, +'s7073489bb01b3c24': `Application already has access to the following permissions:`, +'s708d9a4a0db0be8f': `Check status`, +'s70f6471de355b98c': `HTTP-Basic Password Key`, +'s713d147e1761d0f0': `Up-to-date!`, +'s713e8666ed70f8b3': `Create a new property mapping.`, +'s71633a67e0d7c0e4': `Successfully imported device.`, +'s7181a5504472e856': `Apply changes`, +'s71dcd9cf808449aa': `Token(s)`, +'s720594461542943f': `Add User`, +'s721d94ae700b5dfd': `Duo activation`, +'s7220fcf4fec4e0df': `Remove Users(s)`, +'s72559845d38bf688': `Configure how long access tokens are valid for.`, +'s72c1c17a9bdc76ad': `Help text`, +'s72e102414fec81a4': `Successfully created rule.`, +'s730182ad28374cda': `Object`, +'s7301a7069b7bc83e': `Revoked?`, +'s733f83ff9d50da30': `Configure the maximum allowed time drift for an assertion.`, +'s73c13e5a6f5e38a3': `Device classes`, +'s74475586afc1fb0f': `Select type`, +'s745a55f9abf9f2e5': `Sidebar right`, +'s7468e87263dfff7e': `Identifier`, +'s7489f76224f8120d': `Forward auth (single application)`, +'s74cb3d66f6a668e1': `Documentation`, +'s74f809a69e030351': `OpenID Configuration Issuer`, +'s7520286c8419a266': `Optional data which is loaded into the flow's 'prompt_data' context variable. YAML or JSON.`, +'s75a27f43413e02c5': `French`, +'s75d5ff5dd8d3c6d2': `Successfully updated group.`, +'s7609ee54e8a7b05a': `Validity days`, +'s764bccb30868bf62': `The external URL you'll access the application at. Include any non-standard port.`, +'s76768bebabb7d543': `Field which contains members of a group. Note that if using the "memberUid" field, the value is assumed to contain a relative distinguished name. e.g. 'memberUid=some-user' instead of 'memberUid=cn=some-user,ou=groups,...'`, +'s7683363cdf78cf31': `User verification is preferred if available, but not required.`, +'s76881c01b6a3a8c7': `Consent(s)`, +'s76da2c978dcc5ef4': `Successfully cleared policy cache`, +'s76f5dca6404a1210': `Webhook (Slack/Discord)`, +'s77099d752f1ab773': `Related actions`, +'s77299a9d3dd932cd': str`Successfully imported + ${0}devices.`, +'s773aa6621d7e37b7': `Create Tenant`, +'s7754f0e34f27fb6e': `Description shown to the user when consenting. If left empty, the user won't be informed.`, +'s77994108c886b965': `Failed attempts before cancel`, +'s77f572257f69a8db': `Property Mapping exception`, +'s78c08391ffbfb8c0': `These bindings control which users can access this flow.`, +'s78fd8c03f8c967f3': `Tokens`, +'s7968dbed9b106c29': `No services available.`, +'s7989db5f4819af89': `Flow used to logout. If left empty, the first applicable flow sorted by the slug is used.`, +'s79ad406777feab1f': `Continue flow without invitation`, +'s79aed8154d7c472c': `Successfully created outpost.`, +'s79e8cc71a5975b04': `Message`, +'s7a141f1b61074fbe': `Basic-Auth`, +'s7a322c89298dd27c': `Successfully updated invitation.`, +'s7a4f059aaa029719': `Connect`, +'s7abc9d08b0f70fd6': `Static token`, +'s7b105164d209f670': `Require authentication`, +'s7b18721be331241e': `Select which transports should be used to notify the user. If none are selected, the notification will only be shown in the authentik UI.`, +'s7b1fba26d245cb1c': `When using an external logging solution for archiving, this can be set to "minutes=5".`, +'s7b298427bdea81ae': `If set, the OAuth Device Code profile can be used, and the selected flow will be used to enter the code.`, +'s7b3148ffba9f4527': `If the password's score is less than or equal this value, the policy will fail.`, +'s7b576aa71acb36a6': `Diagram`, +'s7b7163270e57e8b4': `Refresh`, +'s7ba9677d069e5f02': `Caddy (Standalone)`, +'s7bc8c327f1f7c82c': `No objects found.`, +'s7bda44013984fc48': `Password set`, +'s7c05ee41d634aa45': `Property mappings used to user creation.`, +'s7c10976de6411844': `Token validity`, +'s7c27e113f90a89e0': `When selected, incoming assertion's Signatures will be validated against this certificate. To allow unsigned Requests, leave on default.`, +'s7c5774fad9d050ce': `Create group`, +'s7cb9aa9ee1783f00': `Group Property Mappings`, +'s7d499be3b781a3ca': `User(s)`, +'s7d61705dfb120d7b': `The user in authentik this device will be assigned to.`, +'s7d684b6257284e55': `Score`, +'s7def067ed3ad3ad9': `Cookie domain`, +'s7e1342d37124b65b': `Configure the blueprint context, used for templating.`, +'s7e537ad68d7c16e1': `User was written to`, +'s7e5af9c6ba6f5cc6': `When multiple stages are selected, the user can choose which one they want to enroll.`, +'s7e87ab366c199345': `Update Binding`, +'s7eb3d239e0b491ab': `Select groups to add user to`, +'s7ec7036b249f4f22': `Regular user`, +'s7edad99c6b7bfe88': `Go to next page`, +'s7f4e4054fbe132e1': `Other global settings`, +'s7f5869b3d14d7cbc': `Provider`, +'s7f9e79189a3d19e2': `Tenants`, +'s7f9eb9c8bd26e8fd': `Valid redirect URLs after a successful authorization flow. Also specify any origins here for Implicit flows.`, +'s7fa236d26b798301': `Send link`, +'s7fa4e5e409d43573': str`Error creating credential: + ${0}`, +'s7fc1ace65486dc25': `All policies must match to grant access`, +'s802826db4e2c852e': `Warning: No invitation stage is bound to any flow. Invitations will not work as expected.`, +'s803b0621006085be': `Update SAML Provider`, +'s80e6d6fe5ad458d3': `Clear icon`, +'s819509c33a7534ac': `Notification Transports`, +'s81a87652ade099e4': `User matching mode`, +'s81ce0d54727f42d2': `Unknown user matching mode`, +'s81d673755a86a4f0': `When no user is present in the flow context, the stage will fail.`, +'s81ecf2d4386b8e84': `Continue`, +'s81eff3409d572a21': `General system exception`, +'s82188c9542510212': `Optional recovery flow, which is linked at the bottom of the page.`, +'s821f6014c1a435b9': `Refresh Token validity`, +'s8226f48cb1a80997': `Invitations`, +'s832282d415294df4': `Import Flow`, +'s835da49b4dc83a51': `Failed Logins per day in the last month`, +'s836aa192b30c21da': `Unenrollment flow`, +'s838418d1a0815157': `Pass policy?`, +'s838ed611b533b19e': `Keypair which is used to sign outgoing requests. Leave empty to disable signing.`, +'s839cb09cb2193da9': `Link to use the invitation.`, +'s83d0f62ad1731a03': `Private Key`, +'s842d690eb3c11762': `Flow is executed and session is cached in memory. Flow is executed when session expires`, +'s844fea0bfb10a72a': `Authentication code`, +'s84c5a011acd608c9': `Event retention`, +'s84d7d6ebbedcb586': `Health and Version`, +'s850a58c683682809': `Issuer mode`, +'s851c108679653d2a': `Scope name`, +'s85366fac18679f28': `Forgot password?`, +'s858e7ac4b3cf955f': `Static tokens`, +'s859b2e00391da380': `Select Yes to reduce the number of times you're asked to sign in.`, +'s8655c52824caac63': `If checked, the launch URL will open in a new browser tab or window from the user's application library.`, +'s872d0e88ab34ed83': `Authorization URL`, +'s8763a33c3d46aaf5': `Outpost status`, +'s87b7e3bc944c728c': `Activate pending user on success`, +'s8802553bc57617ee': `Outposts are deployments of authentik components to support different environments and protocols, like reverse proxies.`, +'s880b8b70b22f9977': `Update Blueprint`, +'s883b544e2b4aa3b5': `Minimum amount of Lowercase Characters`, +'s8849ece8c65e3a18': `Dashboards`, +'s88870d7e499e848b': `Duo Admin API (optional)`, +'s88b8a2892635a2fc': `URL used by authentik to retrieve tokens.`, +'s890810efbe103cbc': `Match created events with this action type. When left empty, all action types will be matched.`, +'s890e983a7be64da4': `Result`, +'s8915e64b8b999bfe': `Cached binding`, +'s892d2731a6f22e59': `Private key, acquired from https://www.google.com/recaptcha/intro/v3.html.`, +'s8939f574b096054a': `Not you?`, +'s89d1847b5e4ad225': `User path template`, +'s8a1d9403ca90989b': `Invitation used`, +'s8a67b33a0d70d322': `Import Duo device`, +'s8a75e83497a183a2': `Healthy`, +'s8aaad223e954f9ca': `When enabled, user fields are matched regardless of their casing.`, +'s8af61807443f32a4': `Actions`, +'s8af7239354f7e7b6': `Sync users`, +'s8afc8c5aafb392d3': `Radius`, +'s8aff572e64b7936b': `Send Email again.`, +'s8b0432eecbd8b034': `Update`, +'s8b149b30b5b523ef': `OIDC well-known configuration URL. Can be used to automatically configure the URLs above.`, +'s8b2b2a43fcf688a3': `Successfully updated prompt.`, +'s8b33660e2ed7212c': `When connecting via SSH, this keypair is used for authentication.`, +'s8b87df5664de7eb8': `Configure how the outpost queries the core authentik server's users.`, +'s8be4abc7ca71da6c': `UI settings`, +'s8c05cccd470f6b5f': `No settings flow configured.`, +'s8ca0dbaec5d48563': `No recovery flow is configured.`, +'s8cb7bb82e96d5d77': `Policies`, +'s8cc920e6a8430a0d': `Log the currently pending user in.`, +'s8cda828dac449ea5': `Clear all`, +'s8ce8bdc9cc9c8604': `Consent given last indefinitely`, +'s8d08843f397d9e81': `See documentation for a list of all variables.`, +'s8d32d7b9e8ca60b1': `Same identifier is used for all providers`, +'s8d7ecd944ebe834b': `Token is managed by authentik.`, +'s8d857061510fe794': `Duo push-notifications`, +'s8da88a8a5750bce1': `Duo Authenticators`, +'s8e01a852c1db8d29': `Nginx (Proxy Manager)`, +'s8ecdbff1a7329b64': `with inspector`, +'s8f12575f694e85a2': `Additional scope mappings, which are passed to the proxy.`, +'s900b0d85b872d134': `Link users on unique identifier`, +'s9065fcccd837a679': `Cached querying`, +'s90760e5e02e95dfe': `Refresh Tokens(s)`, +'s909e876731a8febb': `Select all rows`, +'s90c3b62194fe8508': `Outpost Deployment Info`, +'s9117fb5195e75151': `Notice`, +'s916b32ac64ea2b05': `Successfully updated stage.`, +'s9193ef1a39a6c872': `Mark newly created users as inactive.`, +'s91e3a47599412f51': `Sources`, +'s91f389c796720a81': `Load servers`, +'s91f70424f5d5d23e': `Slug`, +'s9222ca30ae7786e4': `Successfully created application.`, +'s925936f647ae52cc': `Shown as the Title in Flow pages.`, +'s926e0ecf124fb01a': `Access code validity`, +'s9277b90db38e1983': `Active Directory Group`, +'s92921878e886e36d': `Duration`, +'s92ca679592a36b35': `Secret was rotated`, +'s92e241c9f3c101a2': `connecting object will be deleted`, +'s92e91071c6a45eb4': `Disabled blueprints are never applied.`, +'s9307f3dbb07a73b5': `Only fail the policy, don't invalidate user's password`, +'s93574c03953f25dd': `This provider will behave like a transparent reverse-proxy, except requests must be authenticated. If your upstream application uses HTTPS, make sure to connect to the outpost using HTTPS as well.`, +'s936bf4342b182ad4': `Will either follow the ?next parameter or redirect to the default interface`, +'s93c1e5fbe8184895': `Successfully created token.`, +'s93cea6ca1f93349d': `Unauthenticated URLs`, +'s93cf77a59db53395': `reference will be reset to default value`, +'s94055b4eb957dc8f': `User folders`, +'s94333971a07803b9': `Additional settings`, +'s949826fad0fe0909': `Task finished with errors`, +'s951281efc92b03fc': `If any of the devices user of the types selected above have been used within this duration, this stage will be skipped.`, +'s955c1fec1c6fb970': `No stages are currently bound to this flow.`, +'s95a032ae86881bf5': `Using flow`, +'s95f09b229a0a0bb0': `Confidential clients are capable of maintaining the confidentiality of their credentials such as client secrets`, +'s964f6725aeb7662f': `Add Group`, +'s965c503c3e42fdfe': `Enabled`, +'s968c90258dcf7562': `Post binding`, +'s96b2fefc550e4b1c': `Provider Type`, +'s96b3cddf33e1c853': str`You're currently impersonating + ${0}. Click to stop.`, +'s96dcf7ec8342c335': `Invitation not limited to any flow, and can be used with any enrollment flow.`, +'s97d1b0070f50c07f': `Static Tokens`, +'s97f2dc19fa556a6a': `SMS`, +'s97f5e0c138eae172': `Warning: Provider not assigned to any application.`, +'s980270d0fab7ecb3': `Update Stage binding`, +'s98b1cb8fb62909ec': `Group`, +'s98beadfeeb3acb66': `Require superuser.`, +'s98c3bdf4fd5cdf65': `Notification Rules`, +'s98dc556f8bf707dc': `Application requires following new permissions:`, +'s991b750e2d5c4234': `Service Provider Binding`, +'s992f8d1a776e763c': `If left empty, authentik will try to extract the launch URL based on the selected provider.`, +'s9940e3f073fbdbd4': `Create users when required`, +'s995535e7af30d754': `Use the user's email address, but deny enrollment when the email address already exists`, +'s99f110d27e30b289': `Title`, +'s9a34d1520e320465': `Stage-specific settings`, +'s9a393a04eaf1eb0e': `Create Stage binding`, +'s9ae089fd248e72db': `Additional user DN, prepended to the Base DN.`, +'s9bd59e0ea70a3e4a': `Update Outpost`, +'s9bd9ba84819493d4': `Something went wrong! Please try again later.`, +'s9bf48a89367282cd': `Warning: authentik Domain is not configured, authentication will not work.`, +'s9c29565c5ae1cc92': `Selecting an integration enables the management of the outpost by authentik.`, +'s9c3c272944dcfca3': `Successfully created user.`, +'s9c6f61dc47bc4f0a': `Model created`, +'s9c73bd29b279d26b': `Impersonation ended`, +'s9ca3310e1999fd5b': `If enabled, only a hash of the phone number will be saved. This can be done for data-protection reasons. Devices created from a stage with this enabled cannot be used with the authenticator validation stage.`, +'s9d18948d25c68d66': `Successfully generated certificate-key pair.`, +'s9d2d00982edafabb': `Turkish`, +'s9d5796a4b9b7560e': `Send a custom HTTP-Basic Authentication header based on values from authentik.`, +'s9d8ad4b85287131f': `Digits`, +'s9d95f09deb601f34': str`Server validation of credential failed: + ${0}`, +'s9d96eb5ca93e6473': `OpenID Configuration URL`, +'s9db2c836ade1339c': `OIDC JWKS URL`, +'s9e51d6de369f320b': `Successfully created instance.`, +'s9e568afec3810bfe': `Recovery keys`, +'s9e830cbc0b42a514': `Update Flow`, +'s9e9316a6b0c16231': `Client Networks`, +'s9e9c8d99f4c26baf': `When a user returns from the email successfully, their account will be activated.`, +'s9ea472b555374771': `Resident key requirement`, +'s9ee20003cb116abf': `Passwordless flow`, +'s9ee92717d7f63247': `Detailed health (one instance per column, data is cached so may be out of date)`, +'s9f23ed1799b4d49a': `Configure what data should be used as unique User Identifier. For most cases, the default should be fine.`, +'s9f26843287bb592d': `Groups`, +'s9f5a5f23312798f0': `Members`, +'s9f83d7768aea548a': `Or manually import`, +'s9f8aac89fe318acc': `Optionally set the 'FriendlyName' value of the Assertion attribute.`, +'s9f91cc8bcfabb40f': `Assertion valid not before`, +'s9fb28be12e2c6317': `Superuser`, +'s9fdda7ea4642306c': `Group(s)`, +'s9ff3121d30f88d52': `Normal`, +'s9ffa1ac03ce6fd20': `Execution logging`, +'sa00cf67b54c44c71': `Check the IP of the Kubernetes service, or`, +'sa03aa46068460c95': `Forgot username or password?`, +'sa03fe48e892df2d8': `The external URL you'll authenticate at. The authentik core server should be reachable under this URL.`, +'sa0b01f479f40c52d': `Device(s)`, +'sa0e0bdd7e244416b': `Suspicious request`, +'sa11e92683c5860c7': `Request has been denied.`, +'sa13e6c8310000e30': `Session ID`, +'sa18e1c6e0e6f16cc': `The new application wizard greatly simplifies the steps required to create applications and providers.`, +'sa1b41e334ad89d94': `Secret was viewed`, +'sa248e1021d2c27b5': `Verify the user's email address by sending them a one-time-link. Can also be used for recovery to verify the user's authenticity.`, +'sa266303caf1bd27f': `Email sent`, +'sa29b5680cfafacc8': `External host`, +'sa2b727168b090d34': `Clear Flow cache`, +'sa2c29dc5ed47b26d': `Force the user to configure an authenticator`, +'sa2e4d6830226d3ec': `Redirect binding`, +'sa30c58514a3dc0fb': `Deny the user access`, +'sa319e3bf44c85963': `Property mappings used to group creation.`, +'sa33d061d2ade20aa': `Reputation`, +'sa3438c7bb4e9cce8': str` + ${0}unread`, +'sa347e31efbb60be2': `Update Application`, +'sa3599457b9418bc5': `User's avatar`, +'sa3660d505e7011e0': `Authorized application:`, +'sa3c1f6ac5e63a70f': `Flow used before authentication.`, +'sa41aee3ae04c9216': `Show sources' labels`, +'sa43153d53ae65063': `Unknown type`, +'sa442044b586ec8bf': `Action`, +'sa45a194b58837e4f': `Active`, +'sa48f81f001b893d2': `User`, +'sa4a8086275475714': `Select an enrollment flow`, +'sa50a6326530d8a0d': `Show less`, +'sa55ee64c5c51df0f': `Select the group of users which the alerts are sent to. If no group is selected the rule is disabled.`, +'sa578033f134a83b6': `Configure how long access codes are valid for.`, +'sa57c393736e2732c': `Test Property Mapping`, +'sa599dbe5776897ad': `Specify multiple server URIs by separating them with a comma.`, +'sa61966cd83b4924c': `Additional scopes to be passed to the OAuth Provider, separated by space. To replace existing scopes, prefix with *.`, +'sa661ea7d7a50f2e9': `Create a new provider.`, +'sa668bd79645c3e06': `Kubeconfig`, +'sa6905be242387f36': `Exception`, +'sa6ab5184d6315895': `From`, +'sa6c0ba4910c7ad7f': `Assigned to application (backchannel)`, +'sa717841a602fe7d8': `Failed to delete policy cache`, +'sa72a3bd1e7e89926': `Flow used when a user access this provider and is not authenticated.`, +'sa738ce390bc24875': `Get this value from https://console.twilio.com`, +'sa7b56a80ab1801f0': `Twilio Auth Token`, +'sa7fcf026bd25f231': `Can be in the format of 'unix://' when connecting to a local docker daemon, using 'ssh://' to connect via SSH, or 'https://:2376' when connecting to a remote system.`, +'sa800871782eba1ac': `Content right`, +'sa81e2cdaf6921adc': `System`, +'sa8384c9c26731f83': `To allow any redirect URI, set this value to ".*". Be aware of the possible security implications this can have.`, +'sa84a7fd11ba85e88': `When selected, the invite will only be usable with the flow. By default the invite is accepted on all flows with invitation stages.`, +'sa84adff85b5e505c': `Open your two-factor authenticator app to view your authentication code.`, +'sa85cfb884c17d85d': `Verify Kubernetes API SSL Certificate`, +'sa879d5ce584875cf': `Policy-specific settings`, +'sa8c45b6b92a8ba1f': `Create Application`, +'sa8d83cd8023e8e4d': `URL used by authentik to get user information.`, +'sa8e255492bb6ae0d': `Outpost integration(s)`, +'sa9020b93c3bd7235': `How many attempts a user has before the flow is canceled. To lock the user out, use a reputation policy and a user_write stage.`, +'sa90b7809586c35ce': `Either input a full URL, a relative path, or use 'fa://fa-test' to use the Font Awesome icon "fa-test".`, +'sa920231366378c90': `When enabled, all previous sessions of the user will be terminated.`, +'sa92398dba8b12d85': `Mapping`, +'sa95a538bfbb86111': str`Are you sure you want to update + ${0}" + ${1}"?`, +'sa982875b258fea07': `Successfully added user to group(s).`, +'sa9b2a245441557dc': `Last run`, +'sa9c7044d9fd1f3e6': `Initial value`, +'sa9dbe2fb284e26fe': `Send recovery link to user`, +'saa0e2675da69651b': str`The URL " + ${0}" was not found.`, +'saa10777250a6deca': `Update SAML Source`, +'saa79b47f60c66458': `SSO URL (Redirect)`, +'saa7ba2057bd524a1': `Interpret initial value as expression`, +'saa855c61e0403fe6': `Warning: Application is not used by any Outpost.`, +'saa8939ac88a76f98': `Last seen`, +'saaa3abe03c7260f9': `Long-running operations which authentik executes in the background.`, +'saab79cd956ee56a9': `Blueprints`, +'saae1c70e168b45b4': `Admin`, +'sab6bad52985c6676': `Branding shown in page title and several other places.`, +'sab6d24c5ec8dc361': `Friendly Name`, +'sab85321d3b0840b7': `API request failed`, +'sababff57115130a0': str`Error: unsupported source settings: + ${0}`, +'sabaf0061f7e41b0b': `Consumer secret`, +'sabb56f74492e7e96': `Update Device`, +'sabd1bc9fb7da71e7': `Expression using Python.`, +'sabebdc7fa6a5bddb': `Nginx (standalone)`, +'sabf67834e35dede5': `Token count`, +'sac1332e6f421526e': `Update Notification Transport`, +'sac17f177f884e238': `Stay signed in?`, +'sac43cb9690260b86': `UID start number`, +'sac8252732f2edb19': `Date`, +'sad09c62cb4ebae68': `Click to copy token`, +'sad130c2d925fb7bf': `Update User`, +'sad3e3c8146fc920f': `Status`, +'sad59707375956ad2': `Finish`, +'sad8550b8731518d8': `Session valid not on or after`, +'sae1e1a59d22609c4': `When enabled, global Email connection settings will be used and connection settings below will be ignored.`, +'sae239213b7c70376': `State`, +'sae486938be80729c': `Everything is ok.`, +'sae5d87e99fe081e0': `Required`, +'sae5da213b7f896ed': `Stage`, +'saeff3596e1ac31b6': `Setup`, +'saf1d289e3137c2ea': `CA which the endpoint's Certificate is verified against. Can be left empty for no validation.`, +'saf24e253b3b006d4': `How to connect`, +'saf31b3c610036ed6': `When this option is enabled, all executions of this policy will be logged. By default, only execution errors are logged.`, +'saf5eb7596b3a355b': `Consider Objects matching this filter to be Groups.`, +'saf63a04c86018698': `-`, +'saf63d34c8601dd41': str` + ${0} + `, +'saf794c74c9ea731e': `User Property Mappings`, +'saf7ce4165a1025f6': `Sync groups`, +'saf84e7732a9e1336': `Preview errors`, +'safc0e0656d572f4e': `A policy used for testing. Always returns the same result as specified below after waiting a random duration.`, +'safcc54b2aedb1a17': `If this is selected, the token will expire. Upon expiration, the token will be rotated.`, +'safd0363143a46a91': `Basic Auth`, +'sb0669da3df95837c': `Logins per day in the last month`, +'sb07bf992e3d00664': `No additional data available.`, +'sb0b86b8ca6ab13bd': `Providers`, +'sb157267c85fdff30': `Certificate`, +'sb15e8daacf26bdfc': `Create Token`, +'sb15fe7b9d09bb419': `If no Plex popup opens, click the button below.`, +'sb1751a1411d6874f': `External API URL`, +'sb17e8c70f9a05c77': `In case you can't access any other method.`, +'sb1c91762ae3a9bee': `Impersonation started`, +'sb1fe947f9ad27b9d': `Token expiry`, +'sb21f33b039c86322': `SCIM base url, usually ends in /v2.`, +'sb24755ea94bef31d': `Delete currently set background image.`, +'sb25d9afe10941425': `Decides what this Flow is used for. For example, the Authentication flow is redirect to when an un-authenticated user visits authentik.`, +'sb25e689e00c61829': `Use a code-based authenticator.`, +'sb2b3b281954752c4': `Assigned to application`, +'sb2bb6f93773a4594': `User/Group Attribute used for the user part of the HTTP-Basic Header. If not set, the user's Email address is used.`, +'sb2c57b2d347203dd': `Show more`, +'sb2f307e79d20bb56': `Current plan context`, +'sb3182a87ded1bc91': `Unknown layout`, +'sb32e9c1faa0b8673': `Pre-authentication flow`, +'sb357ea19a722d827': `Post`, +'sb3651834cca86735': `Minimum amount of Symbols Characters`, +'sb36e4c05244278c1': `No requirement`, +'sb379d861cbed0b47': `Never create users`, +'sb3fa80ccfa97ee54': `Stage name`, +'sb41b2cfbbc52565b': `Created`, +'sb4564c127ab8b921': `Failed login`, +'sb488dee0be434f7e': `Authentication settings`, +'sb4a1d1c19438e929': `authentik running on auth.example.com`, +'sb4c9ed2a487b238f': str`Are you sure you want to remove user + ${0}from the following groups?`, +'sb4e50ca3cffdbc10': `Sidebar left`, +'sb546eb04425e07fa': `Update details`, +'sb564f81eb057342e': `Application Icon`, +'sb56674c9ea4f0588': `Behavior settings`, +'sb57dbcda1929c642': `Edit the notes attribute of this user to add notes here.`, +'sb59d68ed12d46377': `Loading`, +'sb635ad3c2e357d3c': `This is the password to be used with basic auth`, +'sb6770fa90be6d8b3': `OAuth Refresh Tokens`, +'sb69119c9f0547bed': `Copy recovery link`, +'sb69a4b0acd0895f2': `Flows`, +'sb6c3bf5489d7556e': `Example context data`, +'sb6cbd4f92ebaf5d8': `Related`, +'sb6d5146d5efb3058': `Access Key`, +'sb6d7128df5978cee': `Policy exception`, +'sb6d7d58cb0a1544e': `Compatibility mode`, +'sb71ace8e9b35c749': `Data preview`, +'sb72ebab438cb2983': `Import certificates of external providers or create certificates to sign requests with.`, +'sb7684e2910a33a1f': `Bind CN`, +'sb7794c2910b1a9ec': `Bind DN`, +'sb7a30abc1dcf6c36': `Issuer`, +'sb8168ae309c66abc': `TOTP Authenticators`, +'sb85ffe141d7c229d': `Session duration`, +'sb8795b799c70776a': `Single use`, +'sb8bc2b8376c96a6b': `Intent`, +'sb8c13bd58191cea2': `When connecting to an LDAP Server with TLS, certificates are not checked by default. Specify a keypair to validate the remote certificate.`, +'sb8d4f44a1d5b9a14': `Backends`, +'sb8dd788adf7b907b': `Proxy`, +'sb904f23f17b60c3a': `Successfully imported flow.`, +'sb932dead79567c7b': `Access token URL`, +'sb95baab425322600': `Shared secret`, +'sb96629f50f2e7fab': `Unhealthy`, +'sb9834316ffd4ae3e': `Stacked`, +'sb986f15fa9b17805': `Consent expires.`, +'sba42248f3f27955c': `User database + standard password`, +'sba65ae54d6585c1a': `Unread notifications`, +'sba999428083abce3': `EntityID/Issuer`, +'sbab723b98dcfe23f': `Show matched user`, +'sbad5b96fb855ef36': `No Policies bound.`, +'sbadde673052efc02': `Web Certificate`, +'sbaf20067de176c90': `Appearance settings`, +'sbb3243352661428f': `Authentication flow`, +'sbb57cd8a3ed12915': `Valid for 360 days, after which the password will automatically rotate. You can copy the password from the Token List.`, +'sbb8ad22c83d375b1': `The following keywords are supported:`, +'sbbb2180b6aed196e': `From number`, +'sbbb7318812d64e51': str`Error when creating credential: + ${0}`, +'sbbb97b1c63507dc0': `Number`, +'sbbc1de43ab6c1f76': `Create Notification Rule`, +'sbbc53e0e54d7946f': `Subject`, +'sbbc806ea3987c781': `Automatic import`, +'sbc625b4c669b9ce8': `Open login`, +'sbc80eab557fbf782': `Search group`, +'sbc88fb27a4c3b894': `Configure how the flow executor should handle an invalid response to a challenge given by this bound stage.`, +'sbcae51a6f06e53d4': `Search mode`, +'sbcf8604929b6a27a': `Sending Duo push notification`, +'sbd19064fc3f405c1': `Check your Inbox for a verification email.`, +'sbd34d118bcb1aaf2': `API Token`, +'sbd5be4fb7442a34c': `Based on the User's ID`, +'sbdc1176ff9f93da2': `This is the full endpoint to send POST requests to.`, +'sbdc4a833de9ca502': `Logins and authorizations over the last week (per 8 hours)`, +'sbdeedc1c60306b35': `Messages`, +'sbe3b416a356f1c91': `Is active`, +'sbe47a5bdeec19ab0': `Stage binding(s)`, +'sbe9a51f29a4a2c5b': `Successful`, +'sbea3c1e4f2fd623d': `Stage kind`, +'sbea3db12fd799210': `Access Token validity`, +'sbec40ef4e6f139b7': `(Format: hours=1;minutes=2;seconds=3).`, +'sbecf8dc03c978d15': `Run sync again`, +'sbedb77365a066648': str`Last sync: + ${0}`, +'sbf41e0db12834133': `Include User claims from scopes in the id_token, for applications that don't access the userinfo endpoint.`, +'sbf5f4c5ba679e847': str`Logging in via + ${0}.`, +'sbf9c5c5a8e5efad4': `Failed`, +'sc007cca5af67eae0': `When enabled, authentik will intercept the Authorization header to authenticate the request.`, +'sc04e92d753742189': `6 digits, widely compatible`, +'sc0829ee663ced008': `Directory`, +'sc0a0c87d5c556c38': `Phone number`, +'sc0d0890fbd46ef62': `Exclude service accounts`, +'sc10db51c9bb77d5c': `User database + LDAP password`, +'sc1231049879b8d33': `If enabled, use the local connection. Required Docker socket/Kubernetes Integration.`, +'sc1589121ae2f5f92': `Enter the code shown on your device.`, +'sc15d60377cc8aaac': `No policies are currently bound to this object.`, +'sc16e00a7a8b2fde2': `Back`, +'sc19838ca8c135c1b': `Branding settings`, +'sc1a1ff47c058bb09': `Event Log`, +'sc1cb0eef9ed94e6a': `Newly created users are added to this group, if a group is selected.`, +'sc1ce2f758935ff48': `Managed by authentik`, +'sc1cfce89ebcf1bf9': `Download signing certificate`, +'sc1feadd25659c94d': `From address`, +'sc21032b0d37882a0': `If your authentik_host setting does not match the URL you want to login with, add this setting.`, +'sc25edca57df81461': `Authentication`, +'sc265a3e29e1206e4': `Events`, +'sc297b2e13c28ecf9': `Allow friends to authenticate via Plex, even if you don't share any servers`, +'sc2a1a40a1b4b0170': `Successfully created integration.`, +'sc2c70fd56f5d0b48': `Post binding but the request is automatically sent and the user doesn't have to confirm.`, +'sc2cedfb22488ccb2': `Modern applications, APIs and Single-page applications.`, +'sc2e03590269d5a10': `New property mapping`, +'sc2ec367e3108fe65': `Duo activation QR code`, +'sc2f116c0ea77d58a': `Error message`, +'sc2f1e5dd74c1b7df': `Successful Logins`, +'sc3259eb55cf91e8c': `LDAP`, +'sc35581d9c1cd67ff': str`On behalf of + ${0}`, +'sc381422c585b867f': `Quick actions`, +'sc39fb3ff3753d5ab': `Hide managed mappings`, +'sc3c74f5273df459a': `Generic`, +'sc3e0c240b159fbce': `Successfully created flow.`, +'sc3e1c4f1fff8e1ca': `This flow is completed.`, +'sc44bae5cde0083fa': `Actions over the last week (per 8 hours)`, +'sc4508175bf6b09dd': `Unauthenticated Paths`, +'sc4eedb434536bdb4': `Need an account?`, +'sc54aafeea9c9bab0': `Connected services`, +'sc554339ffc7b04e7': `Successfully created invitation.`, +'sc5668cb23167e9bb': `Alternatively, if your current device has Duo installed, click on this link:`, +'sc592307ea80f16b9': `Unknown`, +'sc5a4711395ffb043': `Stage used to configure a TOTP authenticator (i.e. Authy/Google Authenticator).`, +'sc647dcb91f6958dd': `Number the SMS will be sent from.`, +'sc6b4ebd37b7a91c7': `Tokens and App passwords`, +'sc6c57419ad3a01a8': `Key used to sign the tokens.`, +'sc6c575c5ff64cdb1': `Update SCIM Provider`, +'sc6e8a34361c7c272': `Forward auth (domain-level)`, +'sc741d9ebe07ad103': `Signing Certificate`, +'sc741dfb09d3395f0': `No Applications available.`, +'sc744f3691efe310d': `Hide service-accounts`, +'sc764ddf60b5149de': `Optional URL if the IDP supports Single-Logout.`, +'sc7707b3ba3a2a7ca': `Request token URL`, +'sc7be80a7f8ec597e': `Expiry date`, +'sc816360d6f5a1eeb': `Flows describe a chain of Stages to authenticate, enroll or recover a user. Stages are chosen based on policies applied to them.`, +'sc8a79fddea3ab4a9': `URL used to validate captcha response, defaults to recaptcha. Can be replaced with any compatible alternative.`, +'sc8da3cc71de63832': `Login`, +'sc8de93a7dc0d78ba': `Client type`, +'sc8f286ac783c385d': `View Deployment Info`, +'sc9175cb129fdc306': str`Update + ${0}`, +'sc92d7cfb6ee1fec6': `Successfully updated password.`, +'sc92ea8fbf9ba06a7': `Backchannel Providers`, +'sc92ed9d5e01d3f24': `Notification rule(s)`, +'sc96dd9d2e7b05fc5': `Minimum length`, +'sc9c3578cce3cf7a8': `External Host`, +'sc9cf9ecaf9e5d67e': `Based on the User's UUID`, +'sc9f69360b58706c7': `Model deleted`, +'sc9fc206433f67588': `Regular expressions for which authentication is not required. Each new line is interpreted as a new expression.`, +'sca2879d96f58a39c': `Send once`, +'sca7cfe2bef51b2a5': `Root`, +'scab2900019953050': `Successfully updated user.`, +'scae166352a31032c': `Configuration stages`, +'scb317851cbcc6b12': `Internal host`, +'scb43f5faeb6a7ca9': `User verification should not occur.`, +'scb489a1a173ac3f0': `Yes`, +'scb5c9a7cc4ccd68d': `Email info:`, +'scb6620fcd5bff04c': `Advanced settings`, +'scbb7d3154da629f3': `OCI URL, in the format of oci://registry.domain.tld/path/to/manifest.`, +'scc286303aa9c6cb0': `Sync status`, +'scc2e420c54dc8089': `Bind existing stage`, +'scc733ba98740038a': `Update Prompt`, +'sccbfc4dec0c8d80c': `Assigned to application`, +'sccc47f82044453f9': `Based on the User's hashed ID`, +'scd0cfe87af6f2ff2': `Severity`, +'scd2984ee5552643a': `SSO URL (Post)`, +'scd8062ff5e1326d8': `Allow up to N occurrences in the HIBP database.`, +'sce106606ae84d46f': `Property Mappings`, +'sce8d867ca5f35304': `Set password`, +'scea1f16238093e35': `Executes the python snippet to determine whether to allow or deny a request.`, +'scee721983b1c28d0': `Add existing user`, +'scef3f4ad80abbd22': `Configure how the outpost authenticates requests.`, +'scef7abb8456b06d6': `Check zxcvbn`, +'scefe482c547fb3f3': str`Based on + ${0}`, +'scf2790cf3ad89283': `Attribute name used for SAML Assertions. Can be a URN OID, a schema reference, or a any other string. If this property mapping is used for NameID Property, this field is discarded.`, +'scf5ce91bfba10a61': `Please enter your password`, +'scfbc2f1396ee8550': `Denied action`, +'sd04376c4216c921f': `URL settings`, +'sd06b47084fec0ec5': `Bearer Token`, +'sd07866d9f38b2c50': `Execute flow`, +'sd080b2370aa82967': `Reputation for IP and user identifiers. Scores are decreased for each failed login and increased for each successful login.`, +'sd0bc94e11935ee5a': `HTTPS is not detected correctly`, +'sd1031bddc66dc495': `Connect your user account to the services listed below, to allow you to login using the service instead of traditional credentials.`, +'sd1146418b344f81f': `Update Notification Rule`, +'sd1288ca57e221cf9': `Update Token`, +'sd14a19a19d507f9e': `Parent group for all the groups imported from LDAP.`, +'sd18170637295bace': `Addition User DN`, +'sd1a5560fde6f2271': `Successfully imported provider.`, +'sd1f44f1a8bc20e67': `Email`, +'sd1f81284eeb7b503': `File`, +'sd20f6cd02c90867f': `Application(s)`, +'sd216b08bafb297ee': `Flow used to authenticate users. If left empty, the first applicable flow sorted by the slug is used.`, +'sd2208cd1a767644b': `Disconnect`, +'sd2223afb7d6b100d': `Type`, +'sd2c58d7c6dddc515': `SAML Metadata`, +'sd3386a2ef42e80b9': `Download`, +'sd34be0d0fcb39971': `User's display name.`, +'sd35ae4be63df1f9f': `Selection of backends to test the password against.`, +'sd39c5e998efecf93': `SAML Attribute Name`, +'sd3a853f63f45dcb0': `Passing`, +'sd4ac926e4ebb1cd7': `Common Name`, +'sd503fabef9691134': `When using proxy or forward auth (single application) mode, the requested URL Path is checked against the regular expressions. When using forward auth (domain mode), the full requested URL including scheme and host is matched against the regular expressions.`, +'sd539548ca4c71619': `Additional scopes`, +'sd5903cc8de68b3fc': `No form found`, +'sd5a4b41c6c883b03': `Audience`, +'sd5ba2d61ee4796fe': `Invitation(s)`, +'sd600334ec2c39b74': `Create user`, +'sd62cfc27ad4aa33b': `Based on the User's Email`, +'sd6422f7004036cdd': `OCI Registry`, +'sd6a025d66f2637d1': `Traditional authenticator`, +'sd6b8b4156f7df696': `Icon shown in sidebar/header and flow executor.`, +'sd6c3ddb62de0e8f7': `Certificate used to sign outgoing Responses going to the Service Provider.`, +'sd6cd7ce2310a73a4': `Checks the value from the policy request against several rules, mostly used to ensure password strength.`, +'sd71081c23d1cd38b': `Check access`, +'sd73b202ec04eefd9': `Unknown intent`, +'sd75a9a71309fb387': `Check haveibeenpwned.com`, +'sd766cdc29b25ff95': `Authenticating with Apple...`, +'sd7fa99e4d82b374a': `Recovery link cannot be emailed, user has no email address saved.`, +'sd80b0b8aeae3abe3': `User password writeback`, +'sd8417b41ca27bc8f': `New stage`, +'sd891d8463d0ebace': `Restarts the flow from the beginning`, +'sd8c5339b82b71507': `Wait (min)`, +'sd8d9451f86502d1a': `Device classes which can be used to authenticate.`, +'sd8f220c999726151': `Redirect`, +'sd924045605feea63': `Expires`, +'sd947d57c9a9b7108': `Open issue on GitHub...`, +'sd94db2b8c85d10a6': `SLO URL`, +'sd97d8d0906e6cc47': `Case insensitive matching`, +'sd9b556a84ae25690': `Successfully sent test-request.`, +'sda4e78c19f5b6f35': `The policy takes a random time to execute. This controls the minimum time it will take.`, +'sda5e1499f93146ad': str` + ${0}days ago`, +'sda796c87fa97ed4d': `Model Name`, +'sdae55084f6cb2662': `Optionally enter a group name. Applications with identical groups are shown grouped together.`, +'sdae649fae731e838': `Checkbox`, +'sdb53ccdd6174e6e3': `Successfully added user(s).`, +'sdb7b2173869822bc': `User verification must occur.`, +'sdb861d9906f18ac2': `Throw error?`, +'sdbc08adee233f180': `Update OAuth2 Provider`, +'sdbccb39a658f0e45': `New policy`, +'sdc1ef94016f0d855': `Successfully updated integration.`, +'sdc30bddeda2f0225': `Validate the user's password against the selected backend(s).`, +'sdc323c6af4ae9f01': `Successfully copied TOTP Config.`, +'sdc673e73b5c13aea': `Delete`, +'sdc70195469e83e3f': `8 digits, not compatible with apps like Google Authenticator`, +'sdc9e222be9612939': `Source linked`, +'sdcc7b2c109ce9775': `Tokens are used throughout authentik for Email validation stages, Recovery keys and API access.`, +'sdce4680288083fe3': `Always returns the latest data, but slower than cached querying`, +'sdd1ff479d04ac140': `Public`, +'sdd4bd4224c4e943d': `authentik: Locale: Displays a list of locales authentik supports.`, +'sdd6b8b56a811080e': `Certificate Fingerprint (SHA256)`, +'sddb040c47daae56b': `Bind existing policy`, +'sddb3b0176f437721': `Open API Browser`, +'sddc8efe94cb8c210': `Stages are single steps of a Flow that a user is guided through. A stage can only be executed from within a flow.`, +'sddcfc6ab24e3a6ed': `Enrollment`, +'sde0ad51b14f77cf6': `Redirect URIs/Origins (RegEx)`, +'sde1907073fd96017': `(Current session)`, +'sde2bb5418562c5b2': `Unknown designation`, +'sde47e4d8b9b21b59': `WebAuthn Authenticators`, +'sde56783222b527d6': `Each provider has a different issuer, based on the application slug`, +'sde949d0ef44572eb': `Requires the user to have a 'upn' attribute set, and falls back to hashed user ID. Use this mode only if you have different UPN and Mail domains.`, +'sdefec5401bf67eba': `Use a security key to prove your identity.`, +'sdf1d8edef27236f0': `A "roaming" authenticator, like a YubiKey`, +'sdf22dcf939c27cc7': `Stage Configuration`, +'sdf34a5599d66f85c': `Background image`, +'sdf4e1c6a2f072600': `Allowed count`, +'sdfd22a21660f6002': `Successfully updated provider.`, +'sdfdb58cd232b363d': `Password strength estimator created by Dropbox, see:`, +'se085f35c8a9203a1': `LDAP Source`, +'se09ab93d69f7f45b': `Not used by any other object.`, +'se09d055771f3a11d': `Generic OpenID Connect`, +'se0adaf83627104fb': `Always execute the configured bind flow to authenticate the user`, +'se0c660020d9cf5b7': `Offset after which consent expires.`, +'se10bbf4cf861c81b': `Signing keypair`, +'se12969ade44cd2b6': `New source`, +'se16ac750b81fa93d': str`Assigned to + ${0}object(s).`, +'se17fcb1f159ee382': `Update Plex Source`, +'se19cc57dd8675498': `Threshold`, +'se1c85959463f53df': `Use this tenant for each domain that doesn't have a dedicated tenant.`, +'se1e040b55319a0e8': `Timeout`, +'se291dfd2a59d7842': `Policy binding(s)`, +'se2adaf0371ffcd65': `Machine-to-Machine authentication settings`, +'se2b62f7e9017965e': `Traefik (Compose)`, +'se2c3cbf2ed1403f1': `Stage Bindings`, +'se2cc93bd2647baec': `Static rules`, +'se2d65e13768468e0': `Internal`, +'se2e9f5a32c93e5f7': `Last validation threshold`, +'se2f258b996f7279c': `System task exception`, +'se31d92bea7f3a186': `Used to access the API programmatically`, +'se36b55dfcf5dc80b': `Enable StartTLS`, +'se3e6af2ce24d80e8': `Chinese (traditional)`, +'se409d01b52c4e12f': `Retry authentication`, +'se47baf2fd16b9d2b': `Template`, +'se4a9da0295597e73': `SMTP Username`, +'se4cd073c125382af': `Unsynced / N/A`, +'se50a08ab71bb96ed': `When a valid username/email has been entered, and this option is enabled, the user's username and avatar will be shown. Otherwise, the text that the user entered will be shown.`, +'se5498954255620b4': `Successfully sent email.`, +'se5973e7c8ba0fc71': `Bind mode`, +'se5cb18408df3284e': `For more info see:`, +'se5dc026819a32ff8': str`User + ${0}`, +'se5fd752dbbc3cd28': `Use a security key`, +'se63f9d833700af49': `Session(s)`, +'se68398e3c2c760b2': `Token`, +'se6d950402810c34f': `Property mappings`, +'se7430794fa89005a': `Also known as Entity ID. Defaults the Metadata URL.`, +'se74ce42d41e392ba': `Matching is done based on domain suffix, so if you enter domain.tld, foo.domain.tld will still match.`, +'se78364ee913ae2bd': `New outpost integration`, +'se7e1ababbc4868b8': str` + ${0}seconds`, +'se80dd66f23b4fc39': `Create a new user even if a user is in the flow context.`, +'se8987bdfb35e46b2': `Consumer key`, +'se8a81c75b6e30a33': `Field key to check, field keys defined in Prompt stages are available.`, +'se8dca0132c66ae03': `Permissions`, +'se99efc0873031976': `Icon shown in the browser tab.`, +'se9b1fec72ffd8f48': `Local`, +'se9d0f12f95b14095': `Optional, comma-separated SubjectAlt Names.`, +'sea2f00b34b385a43': `Successfully updated device.`, +'sea3bfc143ced73db': `NameID attribute`, +'sea4f08110bb8f15d': `Remove`, +'sea91c57b3d3969fe': `System status`, +'seb0805249661d15b': `Returns the error message and a similar challenge to the executor`, +'seb0c08d9f233bbfe': `Please enter the code you received via SMS`, +'seb5ba88f21937c98': `Check outposts.`, +'sebda1d54a3f9f967': `Token URL`, +'sebf44d2471b608ad': `Flow used by an authenticated user to configure this Stage. If empty, user will not be able to configure this stage.`, +'sec1808532fe107b9': `Allow users to use Applications based on properties, enforce Password Criteria and selectively apply Stages.`, +'sec5cdfa358f9dbf7': `Warning: Adding the user to the selected group(s) will give them superuser permissions.`, +'sec7443a45fd141e5': `Prompt(s)`, +'sec97cdaf7af8648b': `Set custom attributes using YAML or JSON.`, +'secbfd13bdae95a59': `User settings flow`, +'secdb4b4c4e66aa38': `Group Info`, +'sece294cd51a85745': `Determines how long a session lasts. Default of 0 seconds means that the sessions lasts until the browser is closed.`, +'sed02f831e653deb3': `Logins over the last week (per 8 hours)`, +'sed3512fe4560c7f4': `Create users as inactive`, +'sed8d4c3fd5f60e1f': `Explore integrations`, +'sede0abbf2b612812': `Webhook (generic)`, +'see2bcbc11bb91960': `Successfully updated instance.`, +'see3ff55262fd6500': `URL the user is redirect to to consent the authorization.`, +'sef3d102324bf8561': `Create Blueprint Instance`, +'sef49aec68fd1dc66': `Name`, +'sef50d248448e0df1': str`Yes ( + ${0})`, +'seffdf887fed7f668': `Certificate Fingerprint (SHA1)`, +'sf05c700a1250824e': `Confirmed`, +'sf05e384059a0a7c1': `Upstream host that the requests are forwarded to.`, +'sf1868dc19e3917bb': `Spanish`, +'sf1e9d421f35b51e5': `Application`, +'sf1ec4acb8d744ed9': `Alert`, +'sf22a28f83cc45fcc': `Stage used to configure a duo-based authenticator. This stage should be used for configuration flows.`, +'sf22f7f8a9309b4ed': `Check Application access`, +'sf232d42142eacc23': `When enabled, the invitation will be deleted after usage.`, +'sf29883ac9ec43085': `App password`, +'sf325a4adba4d6278': `Group membership field`, +'sf339673f0f76a8bd': `Public key, acquired from https://www.google.com/recaptcha/intro/v3.html.`, +'sf3981f36525b0dbd': `connection will be deleted`, +'sf3f9a0feaf083207': `Sent to group`, +'sf3fec8353106ac2f': str`OAuth Source + ${0}`, +'sf4122b220926be97': `Version`, +'sf417c13d7a0f7995': `Copy download URL`, +'sf45a0d2f00bcc6ff': `no tabs defined`, +'sf466142da6a65052': `Impersonate`, +'sf4de1644dcdb53d5': `User/Group Attribute used for the password part of the HTTP-Basic Header.`, +'sf533f13321fee530': `Evaluate policies during the Flow planning process.`, +'sf53a78d889b6c775': `Managed by authentik (Discovered)`, +'sf54c562d8a10ce77': `Also known as EntityID.`, +'sf55c7c06dbc2c8c6': `Successfully created tenant.`, +'sf55d28d4dff0e41b': `An example setup can look like this:`, +'sf56998949bdf6b33': `Deactivate`, +'sf63c89c0604c288f': `Local path`, +'sf679b7a62808287e': `Expiry`, +'sf693300708a40d2c': `Create a new policy.`, +'sf6e1665c7022a1f8': `Password`, +'sf6eb148db23d19de': str`Failed to delete + ${0}: + ${1}`, +'sf71dba2c30283a54': `Expires?`, +'sf7949fbbab2eb566': `Different browsers handle session cookies differently, and might not remove them even when the browser is closed.`, +'sf80e9547166117e6': `Based on the User's UPN`, +'sf813a72d8fadd765': `In this case, you'd set the Authentication URL to auth.example.com and Cookie domain to example.com.`, +'sf8c76d5fb408de7b': `You're about to be redirect to the following URL.`, +'sf8f49cdbf0036343': `Configuration error`, +'sf90be97cb08f3d5a': `Placeholder`, +'sf9aee319a006c9b4': `Add`, +'sf9b1c0661a02d9f9': `Configuration`, +'sf9bddaf910f4eea5': `Generate Certificate-Key Pair`, +'sf9e61f4f8e90f0f1': `Change status`, +'sf9f2c719a04066ec': `App`, +'sfa88f413e287bb0f': `Stage type`, +'sfab527528ea64618': `Matches Event's Client IP (strict matching, for network matching use an Expression Policy.`, +'sfac6f995c7670559': `No Stages bound`, +'sfad8af8ce38104a3': `Maximum age (in days)`, +'sfad9279cc42c6b61': `Required authentication level for this flow.`, +'sfae395b94a5a0040': `Blueprint`, +'sfae9f4ea5749a36b': `Additional group DN, prepended to the Base DN.`, +'sfbadb77fbc61efb8': `Users created per day in the last month`, +'sfbaeb0de54fbfdbb': `Flow used when authorizing this provider.`, +'sfbc59ff17a73503d': `User path`, +'sfc400b2d71e49d28': `Successfully created policy.`, +'sfc8bb104e2c05af8': `User filtering`, +'sfcebd18506f1e535': `Flow`, +'sfcfcf85a57eea78a': `TOTP Device`, +'sfd13ca8ebd857c2e': `Create a new application`, +'sfd1af96798dd8a5f': `Public Key`, +'sfd44ce578f643145': `Failed to fetch objects.`, +'sfd586951c75eb291': `App password.`, +'sfdedc3b0b2b7ce3d': `Attribute mapping`, +'sfe199b2564b66054': str`Error when validating assertion on server: + ${0}`, +'sfe1c86b42ba13376': `Please enter your TOTP Code`, +'sfe211545fd02f73e': `Verification`, +'sfe388f0313f52da2': `Protocol settings`, +'sfe629863ba1338c2': `Connection error, reconnecting...`, +'sfe6977a3aea3ee6e': `Flow to use when authenticating existing users.`, +'sfe938c1585e0bf68': `These bindings control if this stage will be applied to the flow.`, +'sfe99a8caa70232ab': `Authentication Type`, +'sfeb779d4ccbc5a0e': `Recovery flow`, +'sfeb82261bcf99edd': `Healthy outposts`, +'sfee06600c15082a9': `Remove the user from the current session.`, +'sfee91e08b8b47477': `Allowed servers`, +'sfefce784ec55868f': `Select an object.`, +'sff38031cf061e3ae': `Will follow the ?next parameter if set, otherwise show a message`, +'sff3b708e23bb96b2': `Evaluate policies before the Stage is present to the user.`, +'sff50532a2d85e32e': `Change password`, +'sff5bb7742c2896c8': `Target`, +'sff69c1a637f899a6': `Bind flow`, +'sff945d3f59b93c5e': `MFA Devices`, +'sffa171e11d4ae513': `Transports`, +'sffa721bb6aa3128d': `Search...`, +'sffc14b8200a9f938': `Direct querying`, +'sffd2e553143d1b0e': `Hold control/command to select multiple items.`, +'sffd5481034a1bd41': `Provide an LDAP interface for applications and users to authenticate against.`, +'sffeef5b119d8625c': `Successfully created mapping.`, +'sfffb0d0958bfbc42': `Manage users`, +'sfffba7b23d8fb40c': `This stage checks the user's current session against the Google reCaptcha (or compatible) service.`, +'s84fcddede27b8e2a': `External`, +'s1a635369edaf4dc3': `Service account`, +'sff930bf2834e2201': `Service account (internal)`, +'s4ba4473f3d4ec896': `New version available`, +'s364c4f177a2f8322': `Open API drawer`, +'s9ba989e69344ff29': `Open Notification drawer`, +'s9d8b8aa2b404c2c8': `Settings`, +'s7cfe12cd14df9950': `Sign out`, +'sb4d7bae2440d9781': `User Statistics`, +'s1a65ee08832fbfe2': `Flows and Stages`, +'s6b2beba7ab637e9e': `Roles`, +'sb1a4e9b288e2f005': `Federation and Social login`, +'s7be2df39f727faa2': `Enterprise`, +'s2e109263b73c12d5': `Licenses`, +'s66313b45b69cfc88': `Check the release notes`, +'s4a34a6be4c68ec87': `Users created`, +'s275c956687e2e656': `Failed logins`, +'s1cffe58249b04669': `Internal application name used in URLs.`, +'s19409e8712ddd369': `Add provider`, +'s070fdfb03034ca9b': `One hint, 'New Application Wizard', is currently hidden`, +'s61bd841e66966325': `External applications that use authentik as an identity provider via protocols like OAuth2 and SAML. All applications are shown here, even ones you cannot access.`, +'s1f7698c061c208c9': `Open`, +'sb8f855b49234b81b': `Apply`, +'s0e427111d750cc02': `Successfully updated license.`, +'s06ae64e621f302eb': `Successfully created license.`, +'s2905c425adae99bd': `Install ID`, +'sb18ec434a8a3aafb': `License key`, +'s9ce7cc01fb9b5b53': `Manage enterprise licenses`, +'sf9ebf11ac2645820': `No licenses found.`, +'sd49099e9522635f4': `License(s)`, +'s3be1d90ffa46b7f1': `Enterprise is in preview.`, +'sa1db89262360550b': `Send us feedback!`, +'s4015746f55a8d89f': `Get a license`, +'sb2cbd06f8e25b47e': `Go to Customer Portal`, +'sf58825457d61c429': `Forecast internal users`, +'sde9a3f41977ec1f8': str`Estimated user count one year from now based on ${0} current internal users and ${1} forecasted internal users.`, +'s4557b6b9da258643': `Forecast external users`, +'sf52479d6daa0a4a8': str`Estimated user count one year from now based on ${0} current external users and ${1} forecasted external users.`, +'sd22bd01bdf28c548': `Cumulative license expiry`, +'s0dd031b58ed4017c': str`Internal: ${0}`, +'s57b07e524f8f5c2a': str`External: ${0}`, +'sdeb6cee42435dd07': `Update License`, +'s6196153c4b0c1ea0': `Install`, +'s0285b4bd69130fa3': `Install License`, +'s3b3c333481944862': `Show details`, +'s7513372fe60f6387': `Event volume`, +'s5795b310ab271d20': `These bindings control upon which events this rule triggers. +Bindings to groups/users are checked against the user of the event.`, +'s6f367f5604d5056d': `Create and bind Stage`, +'s047a5f0211fedc72': `Require Outpost (flow can only be executed from an outpost).`, +'sc4fdeccf14be5378': `Execute`, +'sf12d588a76ba7e51': `Are you sure you want to clear the flow cache? + This will cause all flows to be re-evaluated on their next usage.`, +'s01794c0ee3629c1b': `Flow Info`, +'s96d2bb4be3f5e8aa': `Select roles to grant this groups' users' permissions from the selected roles.`, +'sd9f67fbf3f86efcf': `Add group`, +'s424f57afae0caac4': `Add users`, +'s824e0943a7104668': str`This user will be added to the group "${0}".`, +'s911a27022aba349f': `Create and bind Policy`, +'s6b1ed7507f26cb4a': `Failure result`, +'s2e422519ed38f7d8': `Pass`, +'s81a45c4fd11e8e1a': `Don't pass`, +'s95b73e0f4e47eb9a': `Result used when policy execution fails.`, +'s15b46b78edebb20a': `Are you sure you want to clear the policy cache? This will cause all policies to be re-evaluated on their next usage.`, +'s9103a949a3963aa9': `Successfully updated role.`, +'sdf87c5661b31359e': `Successfully created role.`, +'s3484b1e6d0b5335f': `Manage roles which grant permissions to objects within authentik.`, +'s259de999919316db': `Role(s)`, +'sc615309d10a9228c': `RBAC is in preview.`, +'s2ffad156e8332f04': `Update Role`, +'sc5f923729564fbf3': `Create Role`, +'sf485014051ad0cf7': `Successfully assigned permission.`, +'sdeb90bfd8a80b86b': `Permissions to add`, +'s36247910d67421e1': `Select permissions`, +'sc92c1a54034e21cc': `Assign`, +'scd84d10ee9137070': `Assign permission to role`, +'s67e136af8fc1107b': `Assign permission`, +'sb923723d27df40ba': `Permission(s)`, +'sc5fb00b25c7f5a02': `Permission`, +'s14bfa8fd1bec8889': `Role doesn't have view permission so description cannot be retrieved.`, +'s7e796fe83982863f': str`Role ${0}`, +'s526e2c66bd51ff5f': `Role Info`, +'s9cc631505c17b028': `Assigned global permissions`, +'s8f85a0e678846080': `Assigned object permissions`, +'s254a9a23dc1635df': `Import devices`, +'s14bf17e2a1a2c381': `Restart task`, +'se9c07cf256774d81': `Editing is disabled for managed tokens`, +'scc3487e74c5a3e89': `Copy token`, +'s3d2a8b86a4f5a810': str`Successfully created user and added to group ${0}`, +'se6a13beff646557b': str`Successfully updated ${0} ${1}`, +'sd8051c26e155f043': `Assign permission to user`, +'s1455753daa00f1bc': `User doesn't have view permission so description cannot be retrieved.`, +'s9f9492d30a96b9c6': `User type`, +'scef2eb6a2bfe3110': `Internal users might be users such as company employees, which will get access to the full Enterprise feature set.`, +'sf66389b04fcc219c': `External users might be external consultants or B2C customers. These users don't get access to enterprise features.`, +'s77e8668a27dbc402': `Service accounts should be used for machine-to-machine authentication or other automations.`, +'saf6097bfa25205b8': `A copy of this recovery link has been placed in your clipboard`, +'s5b8ee296ed258568': `The current tenant must have a recovery flow configured to use a recovery link`, +'s0924f51b028233a3': `<No name set>`, +'s895514dda9cb9c94': `Create recovery link`, +'s028d385389b5aac0': `Lock the user out of this system`, +'sd2122c514f0778b5': `Allow the user to log in and use this system`, +'s43fe853bf219a9b8': `Temporarily assume the identity of this user`, +'se28b5f3fcadaeeb1': `Enter a new password for this user`, +'s6f5bb31e2733ecd5': `Create a link for this user to reset their password`, +'se5c795faf2c07514': `Create Recovery Link`, +'sa3a3e09b88ed9791': `Assigned permissions`, +'s67ac11d47f1ce794': `WebAuthn requires this page to be accessed via HTTPS.`, +'se9e9e1d6799b86a5': `WebAuthn not supported by browser.`, +'s71c5d51d5a357dbd': `Don't show this message again.`, +'sb3d4f79d9d8b71e5': `Submit`, +'s2da4aa7a9abeb653': `Pseudolocale (for testing)`, +'s98327528f00365a7': `Failed to fetch data.`, +'s08df8d0a773a3ea0': `Remove item`, +'s7df5b92a3f93544f': `Warning: The current user count has exceeded the configured licenses.`, +'s0141f42936495787': `Click here for more info.`, +'se33b158a1ec02a09': str`Successfully deleted ${0} ${1}`, +'s5819a49638f6d7cb': str`Are you sure you want to delete ${0} ${1}?`, +'sb37880a2a7288ef0': `Update Permissions`, +'saabeb4cab074b0b9': `User Object Permissions`, +'s8489d5559dda260c': `Role Object Permissions`, +'s5da52af9b083c29a': `Model`, +'s78ab26da7f067de8': `Select permissions to grant`, +'sca7fed2bef53cb99': `Role`, +'s5ee6f1b84e9ebc69': `Assign to new role`, +'s4afb26a8fae257e9': `Directly assigned`, +'sf79f8681e5ffaee2': `Assign to new user`, +'s28cbd874ba450b4e': `Less details`, +'s8fa26f65aed77c96': `More details`, +'s3fb39fc45e840f78': `Refer to documentation`, +'sf34026321b35315c': `Either no applications are defined, or you don’t have access to any.`, +'s3e99ea082ca5ade9': `Failed to fetch`, +'se2b29e6cfe59414c': `UI Settings`, +'s4498e890d47a8066': `OAuth2/OIDC (Open Authorization/OpenID Connect)`, +'s4f2e195d09e2868c': `LDAP (Lightweight Directory Access Protocol)`, +'s836148f721d8913b': `Transparent Reverse Proxy`, +'s945a6b94361ee45b': `For transparent reverse proxies with required authentication`, +'s7f5bb0c9923315ed': `Forward Auth (Single Application)`, +'sdc9a6ad1af30572c': `For nginx's auth_request or traefik's forwardAuth`, +'sf8008d2d6b064b95': `Forward Auth (Domain Level)`, +'sfc31264ef7ff86ef': `For nginx's auth_request or traefik's forwardAuth per root domain`, +'sfa8a1ffa9fee07d3': `SAML (Security Assertion Markup Language)`, +'s40830ec037f34626': `Configure SAML provider manually`, +'s848a23972e388662': `RADIUS (Remote Authentication Dial-In User Service)`, +'sea9fc40dfd1d18b1': `Configure RADIUS provider manually`, +'s3e902999ddf7b50e': `SCIM (System for Cross-domain Identity Management)`, +'sa1b0052ae095b9b3': `Configure SCIM provider manually`, +'s15831fa50a116545': `Saving Application...`, +'s823abdb61543a826': `Authentik was unable to save this application:`, +'s848288f8c2265aad': `Your application has been saved`, +'scda8dc24b561e205': `There was an error in the application.`, +'sdaca9c2c0361ed3a': `Review the application.`, +'sb50000a8fada5672': `There was an error in the provider.`, +'s21f95eaf151d4ce3': `Review the provider.`, +'s9fd39a5cb20b4e61': `There was an error`, +'s7a6b3453209e1066': `There was an error creating the application, but no error message was sent. Please review the server logs.`, +'s1889ba2eaeec2f1e': `When enabled, code-based multi-factor authentication can be used by appending a semicolon and the TOTP code to the password. This should only be enabled if all users that will bind to this provider have a TOTP device configured, as otherwise a password may incorrectly be rejected if it contains a semicolon.`, +'s4647b2c92638d6fd': `The certificate for the above configured Base DN. As a fallback, the provider uses a self-signed certificate.`, +'s2acef4f6ba39bf11': `DNS name for which the above configured certificate should be used. The certificate cannot be detected based on the base DN, as the SSL/TLS negotiation happens before such data is exchanged.`, +'s1a711c19cda48375': `Configure LDAP Provider`, +'s67d858051b34c38b': `Method's display Name.`, +'s254d527e3a53dbb7': `Code-based MFA Support`, +'scd247ffad6e04ac0': `TLS Server name`, +'s9368e965b5c292ab': `Configure OAuth2/OpenId Provider`, +'sf5cbccdc6254c8dc': `Configure Proxy Provider`, +'sf6d46bb442b77e91': `AdditionalScopes`, +'h10ef80d434185070': html`Use this provider with nginx's auth_request or traefik's + forwardAuth. Each application/domain needs its own provider. + Additionally, on each domain, /outpost.goauthentik.io must be + routed to the outpost (when using a managed outpost, this is done for you).`, +'s2c8c6f89089b31d4': `Configure Radius Provider`, +'s7f2dcf01f7a8c0b7': `List of CIDRs (comma-seperated) that clients can connect from. A more specific + CIDR will match before a looser one. Clients connecting from a non-specified CIDR + will be dropped.`, +'sfe906cde5dddc041': `Configure SAML Provider`, +'sb3defbacd01ad972': `Property mappings used for user mapping.`, +'s7ccce0ec8d228db6': `Configure SCIM Provider`, +'sd7728d2b6e1d25e9': `Property mappings used for group creation.`, +'s4bd386db7302bb22': `Create With Wizard`, +'s3ba9b8aeb686d9f7': `Match events created by selected model. When left empty, all models are matched.`, +'sd94e99af8b41ff54': `0: Too guessable: risky password. (guesses &lt; 10^3)`, +'sc926385d1a624c3a': `1: Very guessable: protection from throttled online attacks. (guesses &lt; 10^6)`, +'s8aae61c41319602c': `2: Somewhat guessable: protection from unthrottled online attacks. (guesses &lt; 10^8)`, +'sc1f4b57e722a89d6': `3: Safely unguessable: moderate protection from offline slow-hash scenario. (guesses &lt; 10^10)`, +'sd47f3d3c9741343d': `4: Very unguessable: strong protection from offline slow-hash scenario. (guesses &gt;= 10^10)`, +'scf4afecb0f1e69b2': `Invalid login attempts will decrease the score for the client's IP, and the +username they are attempting to login as, by one.`, +'s8323a9af28e10502': `The policy passes when the reputation score is below the threshold, and +doesn't pass when either or both of the selected options are equal or above the threshold.`, +'sff0ac1ace2d90709': `Use this provider with nginx's auth_request or traefik's forwardAuth. Each application/domain needs its own provider. Additionally, on each domain, /outpost.goauthentik.io must be routed to the outpost (when using a managed outpost, this is done for you).`, +'scb58b8a60cad8762': `Default relay state`, +'s6827a456c9dfc6ee': `When using IDP-initiated logins, the relay state will be set to this value.`, +'sadadfe9dfa06d7dd': `No sync status.`, +'s2b1c81130a65a55b': `Sync currently running.`, +'s4476e9c50cfd13f4': `Global status`, +'sd21a971eea208533': `Vendor`, +'s1024166475850a65': `Use Server URI for SNI verification`, +'se65beb94fffc3c4b': `Required for servers using TLS 1.3+`, +'s000ee3e634868b3c': `TLS Client authentication certificate`, +'s5506b35a1bceb141': `Client certificate keypair to authenticate against the LDAP Server's Certificate.`, +'sf36170f71cea38c2': `Connectivity`, +'sb35c08e3a541188f': `Also known as Client ID.`, +'sd46fd9b647cfea10': `Also known as Client Secret.`, +'s2feae323f46479f8': `These bindings control which users can access this source. + You can only use policies here as access is checked before the user is authenticated.`, +'s7f13f4a2d0370cf6': `When using a Duo MFA, Access or Beyond plan, an Admin API application can be created. + This will allow authentik to import devices automatically.`, +'s7caa8f7edb920909': `The number of tokens generated whenever this stage is used. Every token generated per stage execution will be attached to a single static device.`, +'s4aacc4e0277c1042': `Token length`, +'s6931695c4f563bc4': `The length of the individual generated tokens. Can be increased to improve security.`, +'s24bce955914b1f0a': `Stage used to configure a WebAuthn authenticator (i.e. Yubikey, FaceID/Windows Hello).`, +'s6a3cf855140b9511': `Required: User verification must occur.`, +'sc498a3b05cfe2b08': `Preferred: User verification is preferred if available, but not required.`, +'s9d2239d2b0402795': `Discouraged: User verification should not occur.`, +'s428b7859907f6db2': `Required: The authenticator MUST create a dedicated credential. If it cannot, the RP is prepared for an error to occur`, +'s33e3766d4a02b042': `Preferred: The authenticator can create and store a dedicated credential, but if it doesn't that's alright too`, +'sfb852dd507c25c24': `Discouraged: The authenticator should not create a dedicated credential`, +'s7f68101a50f526ee': `Statically deny the flow. To use this stage effectively, disable *Evaluate when flow is planned* on the respective binding.`, +'s1cc306d8e28c4464': `Deny message`, +'s6985c401e1100122': `Message shown when this stage is run.`, +'s62e7f6ed7d9cb3ca': `Pretend user exists`, +'s52bdc80690a9a8dc': `When enabled, the stage will always accept the given user identifier and continue.`, +'sd18b18f91b804c3f': `Custom attributes`, +'s4a953e6234cb4808': `When checked, the placeholder will be evaluated in the same way a property mapping is. + If the evaluation fails, the placeholder itself is returned.`, +'sf76ead4c4708dd06': `Optionally provide a short hint that describes the expected input value. + When creating a fixed choice field, enable interpreting as expression and return a + list to return multiple choices.`, +'sd60415c7666859f0': `When checked, the initial value will be evaluated in the same way a property mapping is. + If the evaluation fails, the initial value itself is returned.`, +'seab35681cbf36755': `Optionally pre-fill the input with an initial value. + When creating a fixed choice field, enable interpreting as expression and + return a list to return multiple default choices.`, +'sbf4ef82e04772a4e': `Delete the currently pending user. CAUTION, this stage does not ask for confirmation. Use a consent stage to ensure the user is aware of their actions.`, +'s927398c400970760': `Write any data from the flow's context's 'prompt_data' to the currently pending user. If no user + is pending, a new user is created, and data is written to them.`, +'s32babfed740fd3c1': `User type used for newly created users.`, +'s09f0c100d0ad2fec': `Open Wizard`, +'sf2ef885f7d0a101d': `Demo Wizard`, +'s77505ee5d2e45e53': `Run the demo wizard`, +'sdc5690be4a342985': `The token has been copied to your clipboard`, +'s7f3edfee24690c9f': `The token was displayed because authentik does not have permission to write to the clipboard`, + }; + \ No newline at end of file diff --git a/web/packages/localization/src/locales/es.js b/web/packages/localization/src/locales/es.js new file mode 100644 index 000000000..b6b902767 --- /dev/null +++ b/web/packages/localization/src/locales/es.js @@ -0,0 +1,1714 @@ + + // Do not modify this file by hand! + // Re-generate this file by running lit-localize + + import {html} from 'lit'; + import {str} from '@lit/localize'; + + /* eslint-disable no-irregular-whitespace */ + /* eslint-disable @typescript-eslint/no-explicit-any */ + + export const templates = { + 's004e9a2c90f23900': `persistente`, +'s00c8354318addfa0': `Políticas/políticas`, +'s01088b6625d2443b': `URL de devolución de llamada`, +'s01a3a7f48ee4edaf': `Flujo de inscripción opcional, que se enlaza en la parte inferior de la página.`, +'s026555347e589f0e': `Campo de unicidad de objetos`, +'s02839b01844d6ca8': `Fecha de creación`, +'s028be8989873f001': `Autorizar URL`, +'s02b3fade1795d03f': `Conéctese al servidor LDAP en el puerto 389:`, +'s02b632a9ac24a824': str`Visto por última vez: + ${0}`, +'s030ac0829bb50a49': str`Política + ${0}`, +'s037bc6d25a03c3c8': `Se ha actualizado correctamente el transporte.`, +'s0382d73823585617': str` + ${0}: + ${1}`, +'s03907d7a66c6164e': `Nombre para mostrar de la aplicación.`, +'s03970aa76a09982d': `Integración`, +'s039b6434e8a75560': str`Eliminar + ${0}`, +'s03f42eea72154959': `Nombre usuario`, +'s03fb3fa232f0434a': `Secreto del cliente`, +'s03fd2c252ad7972a': `Enlace de recuperación de correo`, +'s042baf59902a711f': `Política`, +'s04440099d97c0bef': `Editar etapa`, +'s045c3b86aae073c1': `Eliminar cuenta`, +'s04b7f8d6aaef3756': `Los usuarios del grupo seleccionado pueden realizar consultas de búsqueda. Si no se selecciona ningún grupo, no se permiten búsquedas LDAP.`, +'s04c1210202f48dc9': `Por favor, introduzca su número de teléfono.`, +'s04c5a637328c9b67': str` + ${0}- + ${1}de + ${2}`, +'s05e395ff60af047b': `Advertencia: ningún puesto avanzado utiliza el proveedor.`, +'s0639662111324466': `Modo de motor de políticas`, +'s065604a41e9d1584': `Actualizar fuente de OAuth`, +'s068d4dd16d9106d0': `Icono`, +'s06c163334767a381': `Crear cuenta de servicio`, +'s06c92148da82be0d': `Cambia tu contraseña`, +'s06df3c3b6a503da8': `Campo del objeto de usuario en el que se escribe este valor.`, +'s072c6d12d3d37501': `Clave de nombre de usuario básica HTTP`, +'s079d388d3cbfa54f': `Comprobar los registros`, +'s081d3c4b47a6ff83': `Si se establece, los usuarios pueden darse de baja ellos mismos mediante este flujo. Si no se establece ningún flujo, no se muestra la opción.`, +'s086e1bbe7c97ea16': `Base de búsqueda`, +'s08a8716c214a0efb': `Datos del certificado codificados en PEM.`, +'s08c91cb1a2cd3d97': `Cuando se selecciona, se muestra un campo de contraseña en la misma página en lugar de en una página separada. Esto evita ataques de enumeración de nombres de usuario.`, +'s091d3d07b5b3076f': `DE ACUERDO`, +'s09205907b5b56cda': `No`, +'s09240e07b5b8d640': `ID`, +'s09242207b5b8f83c': `IP`, +'s09353907b5c79284': `Para`, +'s09810653c832e935': `Haga clic para cambiar el valor`, +'s098237f7ccb4dc4a': `Se borró correctamente la memoria caché`, +'s0a0ca63b967f1630': `Fuente (s)`, +'s0a11c2ffb8309d1a': `No se ha encontrado`, +'s0a39e4f61ccafacb': `La regla se ha actualizado correctamente.`, +'s0a5401d4419f9958': `Uso de la fuente`, +'s0a63a8be0b2b422c': `Trabajadores`, +'s0a72e65aef45b1e8': `URI de servidor`, +'s0ae3395d8f48e624': `Enlace de recuperación generado correctamente`, +'s0af6301e76e2a2a5': `Se actualizó correctamente el inquilino`, +'s0b15ff11a0049cfd': `DN de LDAP con el que se pueden realizar solicitudes de enlace y solicitudes de búsqueda.`, +'s0b55a57f473ab8af': `Grupo de actualización`, +'s0c135eba6017d94f': `La etiqueta se muestra al lado o encima de la solicitud.`, +'s0c3ac7f9383a8cfd': `transitorio`, +'s0c8c4d2bb0a9162a': `Flujo sin contraseña opcional, que se vincula en la parte inferior de la página. Cuando se configura, los usuarios pueden usar este flujo para autenticarse con un autenticador WebAuthn, sin introducir ningún detalle.`, +'s0d4268408182491d': `Usar TLS`, +'s0d5d05bf3d122ced': `Twilio`, +'s0dfc6838c9d07677': `Flujo de configuración`, +'s0e03fe2dc5b9164b': `Si la instancia de authentik utiliza un certificado autofirmado, defina este valor.`, +'s0e15f678445dfc45': `Etapa utilizada para validar cualquier autenticador. Esta etapa se debe usar durante los flujos de autenticación o autorización.`, +'s0e516232f2ab4e04': `Tokens enviados por SMS.`, +'s0eaf755fa88c8d97': `Etapa (s)`, +'s0f2e070d38cd36df': `Certificado de autenticación TLS/par de claves SSH`, +'s0f4c6540c30bd8b4': `Designación`, +'s10356fd921037fbf': `Flujos predeterminados`, +'s107bf77afb93c9b8': `Envía notificaciones siempre que se cree un evento específico y las políticas coincidan con ellas.`, +'s10922bd0ac765562': `objeto se ELIMINARÁ`, +'s10929ca568ae10bc': `Proveedor (s)`, +'s10d2dbc4613397f0': `Actualizado`, +'s11204eeb1e27ea8f': `URL`, +'s11326fd2590f4e5e': `Predeterminado`, +'s113c05ef9996ca4b': `El puesto avanzado integrado no está configurado correctamente.`, +'s119498d4e4cf59a6': `Modelo afectado:`, +'s11bc220e8fa9d797': `Autorizaciones`, +'s122f308b5f198ba7': `Se creó correctamente el par de claves de certificado.`, +'s124f93a61ee772d6': `Configuración de protocolo avanzada`, +'s128e7f5f34bfa155': `Etapa utilizada para configurar un autenticador estático (es decir, tokens estáticos). Esta etapa se debe usar para los flujos de configuración.`, +'s1298e361e40ee1c5': `Detener la suplantación`, +'s12de1c06a1e18cc5': `Texto (solo lectura): entrada de texto simple, pero no se puede editar.`, +'s13de04774ff0f210': `URL de Docker`, +'s14401ff4a0cba208': str`No se pudo actualizar + ${0}: + ${1}`, +'s145483489b87a622': `URL de cierre de sesión`, +'s14622ee6de586485': str`Se intentó iniciar sesión como + ${0}`, +'s14c552fb0a4c0186': `La aplicación requiere los siguientes permisos:`, +'s14c8f36e180d6bbc': `Se ha creado correctamente la etapa.`, +'s1575a15cee001915': `Se ha creado el transporte correctamente.`, +'s164be9a7537b99f6': `Configure los ajustes visuales y los valores predeterminados para los diferentes dominios.`, +'s1665454e31e14941': `Asunto X509`, +'s16b9446e3a70e1f4': `atributos`, +'s16bc281dce5685e8': `Autenticador`, +'s17a679298216aca9': `Se deben mostrar las fuentes seleccionadas para que los usuarios se autentiquen con ellas. Esto solo afecta a las fuentes basadas en web, no a LDAP.`, +'s17d1e337f6c11c1e': `Incluir reclamos en id_token`, +'s17f3eaf3b07ece26': `Advertencia: Una aplicación no utiliza el proveedor.`, +'s1823625e6f831d73': `Personalización`, +'s1828fbfc2c56379c': `Comprobar IP`, +'s18b910437b73e8e8': `Regresar al selector de dispositivos`, +'s197420b40df164f8': `Seguir la redirección`, +'s1a2797874b7fe852': `Asignación de propiedades NameID`, +'s1a2f8f4b3861583b': `Crear puesto avanzado`, +'s1ac2653a6492b435': str` + ${0}, debe ser + ${1}`, +'s1b07757762cda372': `Borrar caché de políticas`, +'s1b14062c44e5ef45': `A punto de vencer`, +'s1b448a4ea79d4eef': `No se han encontrado eventos.`, +'s1b606acd76ba2c4c': `Actualizar inquilino`, +'s1b783856ab4aaaf3': `No se requiere ninguna configuración adicional.`, +'s1b88fa3df4423292': `Última IP`, +'s1bf56ee106e9e711': `Se ha creado correctamente el enlace.`, +'s1c2a173db0e1ec61': `Considere que los objetos que coinciden con este filtro son usuarios.`, +'s1c2fd8097e14a608': `Flujo de recuperación. Si se deja vacío, se usa el primer flujo aplicable clasificado por la carga.`, +'s1c33d22492029aba': `Campo objeto`, +'s1c6ba8d100453392': `El tiempo en minutos que se envía el token es válido.`, +'s1c8916418c334935': `Token de identificación`, +'s1c8e9816dcae6d9c': `El comienzo de GIDNumbers, este número se agrega a un número generado por el grupo.pk para asegurarse de que los números no sean demasiado bajos para los grupos POSIX. El valor predeterminado es 4000 para garantizar que no choquemos con los grupos locales o los grupos principales de los usuarios (GIDNumber).`, +'s1cc0e66dbd2b5502': `Configuración de flujo`, +'s1cd198d689c66e4b': `Acceso a la API`, +'s1cd264012278c047': `Ejecución de flujo`, +'s1cd617e7bbe278d0': `Solicitar el consentimiento del usuario. El consentimiento puede ser permanente o caducar en un período de tiempo definido.`, +'s1cf2298d92c327a6': `Mis aplicaciones`, +'s1d30ff9ba938e68d': `Espera (máx.)`, +'s1d49ec5030447643': `Puesto (s) avanzado (s)`, +'s1d6e16d86961c782': `Par (s) de claves de certificado`, +'s1d9d6c5b424fdc1f': `URL a la que se envía la solicitud de inicio de sesión inicial.`, +'s1e36813d3504ed48': `Se actualizó correctamente el enlace.`, +'s1e4c3de6e12cd87b': `Nombre de usuario: igual que la entrada de texto, pero comprueba y evita los nombres de usuario duplicados.`, +'s1efbfc3937d565bd': `Fondo`, +'s1fc9c70610c4c67d': `Invalidación`, +'s2035f889f576bca6': `Configuración de conexión`, +'s207e8b106806d7e4': `Etapa Bind`, +'s20a0ce62823bfa97': `Eliminar usuarios temporales después`, +'s211b75e868072162': `Defina esto en el dominio para el que desea que la autenticación sea válida. Debe ser un dominio principal de la URL anterior. Si ejecuta aplicaciones como app1.domain.tld, app2.domain.tld, defina esto en «domain.tld».`, +'s216eb300543edd91': `Seleccione el servidor del que debe pertenecer un usuario para que se le permita autenticarse.`, +'s21b3058faf874368': `Puestos avanzados anticuados`, +'s21d0e290c51a8ef9': `Juego de caracteres de símbolo`, +'s21e3c227cc2c5873': `Separador: Línea separadora estática`, +'s2221fef80f4753a2': `Certificado de verificación de TLS`, +'s2236dc563c2dbf76': `(Formato: horas = -1; minutos = -2; segundos = -3).`, +'s22b10ed263b96194': `Escenario ficticio utilizado para las pruebas. Muestra un botón de continuar simple y siempre pasa.`, +'s23fd4411419fca06': `Ámbito que el cliente puede especificar para acceder a estas propiedades.`, +'s240ff02ce3a53dee': `Clave de integración`, +'s24211f319e5b7e98': `Campo que contiene un identificador único.`, +'s2430e000b7cfefd0': `Envía notificaciones solo una vez, por ejemplo, al enviar un webhook a un canal de chat.`, +'s2474e7fb1aec9f05': `Prueba`, +'s24875d5475e82526': `La fuente se actualizó correctamente.`, +'s24f405197ede5ebb': `Vuelva a autenticarse con plex`, +'s252a52330d32b900': `Metadatos`, +'s2536ac8d32d2e63f': `Duración tras la cual los eventos se eliminarán de la base de datos.`, +'s2543cffd6ebb6803': `Ejecución de tareas del sistema`, +'s256b8452664ccae4': `Configure cómo se creará el valor NameID. Cuando se deja vacío, se respetará la NameIDPolicy de la solicitud entrante.`, +'s25d0cd75377daf75': `Autenticación directa (nivel de dominio)`, +'s25ec2846f6b88214': `Mapeo de webhook`, +'s26513c9dd154f041': `Exigir siempre el consentimiento`, +'s2656433a3b1f7e86': `Mis solicitudes`, +'s26bf2730430efbea': `Modo asignatura`, +'s271a7e04ff9865b1': `Controla cómo authentik expone e interpreta la información.`, +'s27586544c447d9e3': `Eventos del usuario`, +'s276d751eb7a186cc': `Nombre de host de API`, +'s27976e94b05c6970': `Activar`, +'s27ac7a47b390e3cb': `Pares de claves de certificado`, +'s2801a48ceac691b3': `Flujo de inscripción`, +'s289fce7e694b98ac': `Puerto SMTP`, +'s28f270859c5f4d51': `La IP de host del host de docker`, +'s29315e374008d0c5': `Los usuarios añadidos a este grupo serán superusuarios.`, +'s293aa6a6446fb153': `Exportar`, +'s293ab4331c1dd387': `Este es el nombre de usuario que se utilizará con la autenticación básica o el token cuando se usa con el token del portador`, +'s296fbffaaa7c910a': `Necesario.`, +'s297a2075bd7e40db': `Política de NameID`, +'s29ec5e7889f4787f': `La política se ha actualizado correctamente.`, +'s2a0f60e74b478804': `algoritmo de resumen`, +'s2a12e0b5527ff99a': `Al habilitar esta opción, se creará un grupo con el nombre del usuario, con el usuario como miembro.`, +'s2a2d3e7c379e9518': `Asunto del certificado`, +'s2a369bc2febb5d55': `Si no se especifican URI de redireccionamiento explícitos, se guardará el primer URI de redireccionamiento utilizado correctamente.`, +'s2a64d2dca3da9b0e': str`Grupo + ${0}`, +'s2a957e843960b604': `Campo de contraseña`, +'s2af5754090898640': `Afirmación válida no el o después`, +'s2b088ba65eb69b7e': `Nombre del campo del formulario, que también se utiliza para almacenar el valor.`, +'s2b1bc31276c4c477': `Vinculaciones de políticas/grupos/usuarios`, +'s2b7dbba348234a36': `Se le ha enviado un código por SMS.`, +'s2b952e9dc99cbded': `La contraseña de inicio de sesión se sincroniza automáticamente desde LDAP en authentik. Habilite esta opción solo para volver a escribir los cambios de contraseña en authentik en LDAP.`, +'s2ba5f4d8f3bd7c57': `Orden`, +'s2bc8aa1740d3da34': `Objeto escénico`, +'s2be6121210e2a2f8': `Indicaciones`, +'s2c0de3d35a7bc784': `Objetos relacionados`, +'s2c8189544e3ea679': `Intentar de nuevo`, +'s2ceb11be2290bb1b': `Cancelar`, +'s2d34c87f67f66c6a': `Windows`, +'s2d46e3a9ee8e0e7e': `Actualizar proveedor LDAP`, +'s2d5f69929bb7221d': str` + ${0}(« + ${1}», de tipo + ${2})`, +'s2e3ef41a0edd8608': `Ámbitos`, +'s2ec94a7c7f5bcd1b': `Filtro de objetos de grupo`, +'s2f1bcfcc5cae94c3': `Crear flujo`, +'s2f58bb9905d2b76f': `Certificado/clave utilizados para la autenticación. Se puede dejar en blanco si no se realiza ninguna autenticación.`, +'s2f995efbb1e46b18': `Detección automática (según su navegador)`, +'s2fc3eb68c7ced3af': `URL de información de usuario`, +'s303b5e552246e613': `Coincide con un evento con un conjunto de criterios. Si alguno de los valores configurados coincide, se aprueba la política.`, +'s3079ca1184e77573': `Se ha creado el grupo correctamente.`, +'s30d1f50f476c3f48': `Descripción general del flujo`, +'s310d8757ce319673': `Inicios de sesión`, +'s31a2d43bc1cf1790': `Aún no se ha sincronizado.`, +'s31d15c6f16951464': `URL de autenticación`, +'s31d7f3ba04d306a5': `URL SSO`, +'s31ebc5431d677f5d': `Host SMTP`, +'s31fba571065f2c87': `Asegúrese de guardar estas fichas en un lugar seguro.`, +'s322e34cfcba47155': `No disponible`, +'s32a3efa23718e713': `Solicitudes de API`, +'s32f04d33924ce8ad': `Ejecución de políticas`, +'s332a5235948c1a1d': `Consentimiento`, +'s3330adb3f0922f7b': `Base de datos de usuario+contraseñas`, +'s33683c3b1dbaf264': `Para usar SSL en su lugar, use 'ldaps: //' y deshabilite esta opción.`, +'s3380d7cbcebe50f6': `Etapa de contraseña`, +'s33aa05f435c29753': `Actualizar par de claves de certificado`, +'s33d48fb745f4d4ae': `Cantidad mínima de caracteres en mayúscula`, +'s33f85f24c0f5f008': `Guardar`, +'s341ab68d4130de20': `No hay trabajadores conectados. No se ejecutarán tareas en segundo plano.`, +'s342eccabf83c9bde': `Historial del plan`, +'s344c4a2a48997e18': `.yaml, que se pueden encontrar en goauthentik.io y que authentik puede exportar.`, +'s34b23ebbac9f6ab9': `Verificación del usuario`, +'s34be76c6b1eadbef': `Aviso`, +'s351246c52548086a': `Descargar certificado`, +'s3576aead3e68c5c9': `Flujo de exportación`, +'s35e6e60e83a8c003': `Flujo de invalidación`, +'s35f9df7668d5fa79': `Ver la documentación de implementación`, +'s35fac2e5677d55cd': `Designa si este usuario debe tratarse como activo. Deseleccione esto en lugar de eliminar cuentas.`, +'s3616cc78631f5893': str`Advertencia: Vas a eliminar el usuario con el que iniciaste sesión ( + ${0}). Proceda bajo su propio riesgo.`, +'s3626433940124897': `Favicon`, +'s3643189d1abbb7f4': `Código`, +'s3687049d1af562c4': `Copia`, +'s36cb242ac90353bc': `Campos`, +'s374abf1a54d87b67': `Se muestra el fondo durante la ejecución.`, +'s3794c596ee7964ad': `Actualizar contraseña`, +'s37cbecaec58e2192': `Moda`, +'s37d9155b9f4cc7bd': `Configure cómo se debe rellenar el campo emisor del token de ID.`, +'s37eb2f1b6e3c19c2': `Configuración de protocolo`, +'s382a2aa3984474dd': `Crear`, +'s38887b94b3320533': `Dirección de correo electrónico`, +'s388ee787bbf2271b': `Tarea finalizada con advertencias`, +'s38c72e1cf120b8d8': `Crear invitación`, +'s38f774cd7e9b9dad': `Inscríbete.`, +'s3914cb410fca44d4': `Importación`, +'s3926da5b20cdf3b6': `URL utilizada para solicitar el token inicial. Esta URL solo es necesaria para OAuth 1.`, +'s399cc2d67d92e957': `Confidencial`, +'s39c8c0bf4d927c9f': `Permitir inicios de sesión iniciados por el proveedor`, +'s3a135682bd30bdbb': `Crear contraseña de aplicación`, +'s3a3fae99373ce56b': `Seleccione los ámbitos que puede utilizar el cliente. El cliente aún tiene que especificar el alcance para acceder a los datos.`, +'s3a5fec3d73ac9edc': `Crear par de claves de certificado`, +'s3ab772345f78aee0': `inspector de flujo`, +'s3b34d9930e33bd46': `Tareas del sistema`, +'s3b58f8d2155ae90c': `Clave de campo`, +'s3b68883dda2682ed': `Las afirmaciones están vacías`, +'s3b7b519444181264': `Políticas de validación`, +'s3baf512851453712': `SID de cuenta Twilio`, +'s3bb51cabb02b997e': `Formato: «semanas = 3; días = 2; horas = 3, segundos = 2».`, +'s3bfa0258999fb629': `Niega el resultado de la unión. Los mensajes no se ven afectados.`, +'s3c6de3f257e0c912': `Solicitud`, +'s3d197283cb019b5a': `Resumen`, +'s3d34068a31cab30b': `Validación SSL de host interno`, +'s3de6db803012016a': `Mapeo de atributos LDAP`, +'s3e211d29fa10f843': `la referencia se establecerá en un valor vacío`, +'s3e3bb9e7cb1de4fd': `Seleccione los usuarios que desea añadir`, +'s3e59b8b2debf0209': `Esta etapa se puede incluir en los flujos de inscripción para aceptar invitaciones.`, +'s3e87ce98ba3c4d80': `Configure durante cuánto tiempo son válidos los tokens.`, +'s3ed5607ad78d4224': `Limpiar caché`, +'s3ef3c252ada78076': `inicios de sesión fallidos`, +'s3ffa320128991a45': `Proporcionar soporte para protocolos como SAML y OAuth a las aplicaciones asignadas.`, +'s40b034801fcb843b': `Permitir/denegar solicitudes en función de los usuarios y/o la reputación de las IP.`, +'s40b80eb4cc1f0e0c': `Editar enlace`, +'s40bf151b56a64f51': `El servidor y el cliente están separados por más de 5 segundos.`, +'s40e2c72dae905a50': `Estático: valor estático, que se muestra tal cual.`, +'s4165cd175bc4c0c4': `Caduca el`, +'s416a540b16275f2e': `Crear grupo`, +'s41706a202b6c40f1': `Dominio`, +'s41b105819b67ee7a': `Etapas`, +'s41e035c4bb8d15f2': `Situación general del sistema`, +'s4207178ba0b99418': `Está disponible una versión más reciente de la interfaz.`, +'s420d2cdedcaf8cd0': `Autenticando con Plex...`, +'s427f788ff333f45b': `URL de lanzamiento`, +'s42a1ebe17efda727': `Campo`, +'s42cbd8dca939a9c7': `Comprobar`, +'s42fc6f4b64eff5d9': `Indicaciones únicas que se pueden utilizar para las etapas de selección dinámica.`, +'s43be3ce2439ffe9c': `Cantidad mínima de dígitos`, +'s4409ada9c5c2a7f8': `Inactivo`, +'s4414164d120de61a': str`Los siguientes objetos usan + ${0}`, +'s44536d20bb5c8257': `Esta configuración solo afecta a los eventos nuevos, ya que la caducidad se guarda por evento.`, +'s44c90273f08fb718': `Use este proveedor con auth_request de nginx o ForwardAuth de traefik. Solo se requiere un único proveedor por dominio raíz. No puede realizar la autorización por solicitud, pero no tiene que crear un proveedor para cada solicitud.`, +'s44ea4e9a81ce730d': `Etapa de correo electrónico`, +'s455de2f740b073fd': `Información del evento`, +'s457c639088c547c5': `El proveedor se creó correctamente.`, +'s45935843b1b5b496': `El formulario no devolvió una promesa para enviarla`, +'s45960273852a61b2': `Fecha y hora`, +'s45cb501abd43ba52': `Generar`, +'s45f9e7ce0897f9e5': `inquilino`, +'s473f0143efa3f706': `Estas políticas controlan qué usuarios pueden acceder a esta aplicación.`, +'s47490298c17b753a': `Reciba una notificación push en su dispositivo.`, +'s4751df77cfd8a5f9': `Verificar nombre de usuario`, +'s476ffc07e6d66f18': `El token se actualizó correctamente.`, +'s47a4983a2c6bb749': `Modelo actualizado`, +'s47bd537a3bcebf19': `Descargar clave privada`, +'s4802636d55022ed3': `¿Por defecto?`, +'s480c6c40a248f7d2': `Usar SSL`, +'s482ae78809a6822b': `Flujo utilizado por un usuario autenticado para configurar su contraseña. Si está vacío, el usuario no podrá configurar el cambio de contraseña.`, +'s485c05d34eb00415': `Eliminar el icono configurado actualmente.`, +'s48cf8fd56b1237ed': `Se actualizó correctamente el flujo.`, +'s494e1ed913d9351a': `Editar grupo`, +'s49730f3d5751a433': `Cargando...`, +'s4a1e774ab25aa232': `Anfitrión interno`, +'s4a26798e1c3c37dd': `Validar los certificados SSL de los servidores ascendentes.`, +'s4a87445f3108db7c': `Seleccione una de las fuentes a continuación para iniciar sesión.`, +'s4aee34a672e5cfc0': `Creado por`, +'s4af8a3ce5a600855': `Permite que el usuario se identifique con su nombre de usuario o dirección de correo electrónico.`, +'s4b5af7736aedd6c1': `¿Clave privada disponible?`, +'s4c24b2baa377e870': `Se actualizó correctamente el par de claves de certificado.`, +'s4c4c504a48c3b7bd': `Traefik (autónomo)`, +'s4caed5b7a7e5d89b': `Inglés`, +'s4cdae7635e757555': `Campos con los que un usuario puede identificarse. Si no se seleccionan campos, el usuario solo podrá usar fuentes.`, +'s4d00e5de1c8213b7': `ID de cliente`, +'s4d00f1de1c82281b': `IP del cliente`, +'s4d182bae8a578010': `Autenticadores basados en SMS`, +'s4d31797d81e9cea3': `Consentimiento explícito`, +'s4dcb9288f7e9e4d7': `Agrupe a los usuarios y otorgue permisos en función de la membresía.`, +'s4e28e2899e08a5f8': `Determina cómo authentik devuelve la respuesta al proveedor de servicios.`, +'s4e474b9e2e737dd1': `Actualizar proveedor de proxy`, +'s4eb514ebcb80553d': `Padre`, +'s4f1ad6b48a5df506': `troncos`, +'s4f1af2b48a5e249a': `Logotipo`, +'s4ff2c202b4e5bdc5': `Incorporado`, +'s502884e1977b2c06': `Próxima etapa`, +'s502d2473587032e1': `No se envía ninguna preferencia`, +'s506beb486fa41241': `Autorizaciones de solicitudes`, +'s50719dda8f90abf4': `Visible en la URL.`, +'s50911ec1c8aee99a': `No se han encontrado eventos coincidentes.`, +'s50c312bea93b6925': `Modificar política`, +'s50ebe627b4bc7d02': `Vinculante`, +'s5116b89f7db1fbec': `URI de redireccionamiento permitidos`, +'s512957aa09384646': `Lanzamiento`, +'s5140d157642d7362': `Ninguno (regla deshabilitada)`, +'s5170f9ef331949c0': `Mostrar campos de entrada arbitrarios al usuario, por ejemplo, durante la inscripción. Los datos se guardan en el contexto de flujo en la variable «prompt_data».`, +'s51da4de00984fe51': `Nombre de usuario de autenticación de API`, +'s51ea3a244c781b1f': `Objetos creados`, +'s51f92b6fa76656ca': `Puestos avanzados insalubres`, +'s52b500138a2d2b8a': `Actualizar fuente LDAP`, +'s53ad3455d9523b54': `Crear usuario`, +'s544142ce35050751': `Política de pruebas`, +'s545d99afa61e4095': `Personajes que se consideran símbolos.`, +'s5462c7f56ed65e6c': `Correo electrónico: campo de texto con tipo de correo electrónico.`, +'s54cd35e6224ba65d': `De forma predeterminada, solo se muestran los iconos de las fuentes. Actívela para mostrar sus nombres completos.`, +'s54e7a23a95d99649': `Texto: entrada de texto simple`, +'s5515a897ae98bed9': `Certificados`, +'s554ce268e9727e79': `Solo puede seleccionar proveedores que coincidan con el tipo de puesto avanzado.`, +'s5572ac4d2208f5ec': `Se ha creado el mensaje correctamente.`, +'s55787f4dfcdce52b': `Clave de firma`, +'s5590dbf7e425789d': `Etiqueta`, +'s5599c62bb78c631f': `Interfaz de administrador`, +'s55d731be1ef66efe': `DN base`, +'s55fa598b754cc3cc': str` + ${0}( + ${1})`, +'s5615bb595ad6ded6': `Tipo de enlace`, +'s56806e9f63efa298': `Redirigir los URI`, +'s5694f9421c428227': `Enlazar contraseña`, +'s56fd9ed596c724fa': `Clave secreta`, +'s57072ffb92b6c9c8': `Defina cómo se envían las notificaciones a los usuarios, como el correo electrónico o el webhook.`, +'s57448f10eb973100': `Cree enlaces de invitación para inscribir usuarios y, opcionalmente, forzar atributos específicos de su cuenta.`, +'s584d1c38ad20d560': `Se puede usar cualquier código HTML.`, +'s586d6bd2eca2da93': `Usuarios`, +'s587ba266269297ab': `Vinculaciones de políticas`, +'s588796ee929a2e4c': `Detalles del usuario`, +'s58888ef1ee9b5bb8': `Estado del usuario`, +'s58c867aac77b9158': `Último inicio de sesión`, +'s58cd9c2fe836d9c6': `Regresar a casa`, +'s58fd2aafa4261c55': `La aplicación se actualizó correctamente.`, +'s592425143c4f5834': `Nombre de asunto ALT`, +'s592ab7d2bc1b8973': `Campos de usuario`, +'s593db2c00d6516a2': `Contraseña SMTP`, +'s5944355d69db1fb8': `DN de grupo de adición`, +'s59572c1be31a812e': `No se pudo eliminar la caché de flujo`, +'s59691290a232c687': `Las políticas seleccionadas se ejecutan cuando se envía la etapa para validar los datos.`, +'s59b6028f19d15cda': `Sin integración activa`, +'s59dc0eda07f9e2b6': `Mapeo (s) de propiedades`, +'s5a13f4bbe004503f': `Comprueba si la contraseña del usuario de la solicitud se ha cambiado en los últimos x días y la rechaza según la configuración.`, +'s5a15a8f39c699273': `Coincidir con eventos creados por la aplicación seleccionada. Cuando se deja vacío, todas las solicitudes coinciden.`, +'s5a48d5171e1a1522': `Advertencia: la política no está asignada.`, +'s5acb607b40356974': `Número inicial de GID`, +'s5b1fb0d4c0daeba8': `Crear enlace`, +'s5be3b0567172e415': `Certificado de verificación`, +'s5be3c6d61cd9182f': `Notificaciones`, +'s5c18cae48b93138c': `Sesiones`, +'s5cd31f4a88adf180': `Editar usuario`, +'s5d0a14d29ebad561': `Flujo que se utilizará al inscribir nuevos usuarios.`, +'s5d6af4c100ad321b': str`Crear + ${0}`, +'s5d9f93f1fe1c19d3': `Traefik (entrada)`, +'s5e169e1bac20b4a6': `Puestos avanzados`, +'s5e8250fb85d64c23': `Cerrar`, +'s5e830ae7688d1219': `Etapa utilizada para configurar un autenticador TOTP basado en SMS.`, +'s5f343a43e7ea9f91': `Error`, +'s5f496533610103f2': `Solicitud autorizada`, +'s5fbaeb14f42815e5': `Adjunto de autenticador`, +'s5fc4269c2addee61': `Identificador único por el que se hace referencia al token.`, +'s60cc554fde2676cb': `Un autenticador no extraíble, como TouchID o Windows Hello`, +'s60d891ed3ee9ebc5': `La fuente se creó correctamente.`, +'s60edbcfac8ed1f90': `El comienzo de UIDNumbers, este número se agrega a User.pk para asegurarse de que los números no sean demasiado bajos para los usuarios de POSIX. El valor predeterminado es 2000 para garantizar que no colisionemos con el UIDNumber de los usuarios locales`, +'s6152026c364ad974': `Fuentes de identidades, que se pueden sincronizar en la base de datos de authentik o que los usuarios pueden utilizar para autenticarse e inscribirse ellos mismos.`, +'s618d4e53f455c834': `Usar la configuración global`, +'s61b6f3e6bc59c6dd': `Crear solicitud`, +'s61ccefd661ac2296': `Si se establece esta bandera, esta etapa saltará a la siguiente etapa cuando no se dé ninguna invitación. De forma predeterminada, esta etapa cancelará el flujo cuando no se dé ninguna invitación.`, +'s61e48919db20538a': `UPN`, +'s6238f519db67980d': `UID`, +'s624256f8a4bb4c89': `Transporte (s) de notificación`, +'s62ddcbaaa91d120d': `Puntuación de reputación`, +'s62f7c59b0606a8d6': `Flujo de autorización`, +'s62f93cfcb45d5a06': `¿Los privilegios de superusuario?`, +'s634d041fd954ab20': `Contraseña de autenticación de API`, +'s63cb05541b294335': `Es superusuario`, +'s63d894b1ddb06289': `Descripción`, +'s63d89a6ae0969c30': `Para permitir que un usuario restablezca directamente su contraseña, configure un flujo de recuperación en el inquilino activo actualmente.`, +'s63e03c70f67ebf9c': `Contexto`, +'s643d8f2e5e5e930d': `Se ha actualizado correctamente la asignación.`, +'s64a33dcdaf90af26': `Información del usuario`, +'s64ef2a6c2dd1d3d1': `Editar`, +'s65d507f1513c2f03': `Permite los flujos de autenticación iniciados por el IdP. Esto puede suponer un riesgo para la seguridad, ya que no se valida el identificador de la solicitud.`, +'s65d67612999165e9': str`Evento + ${0}`, +'s662fcb3761ad9df7': `Cuando se usa junto con una etapa User Write, use attribues.foo para escribir atributos.`, +'s66722bc2ea775e05': `Discapacitado`, +'s66ffc06300964849': `Filtro de objetos de usuario`, +'s670ad066cc0e50a3': str`Inicie sesión para continuar en + ${0}.`, +'s67560d7e37d984c3': `Política/Usuario/Grupo`, +'s67664f8ee9aea98d': `Por favor, introduzca su código`, +'s67749057edb2586b': `Cerrar sesión`, +'s677f1b675fc21bb1': `Secreto:`, +'s67e20cd8018d7e3c': `Configurado actualmente en:`, +'s681074b6c1f19c08': `Acción no configurada`, +'s6873bdbfa24615fb': `URL de webhook`, +'s68a50b1ee6efee7b': str` + ${0}está disponible.`, +'s68f935c9ca792016': `app1 que se ejecuta en app1.example.com`, +'s693d975d38ff0214': `algoritmo de firma`, +'s69a56a3022c4be7f': `Inquilino (s)`, +'s69bd313dd12fc2f3': `URL del perfil`, +'s6a406aecb2c0e5c5': `Enrolar`, +'s6a89bb10338369b4': `Ir a la página anterior`, +'s6ab73c998850c5ab': `Expresión`, +'s6abff64e7ff7fde9': `Imagen de avatar`, +'s6ac670086eb137c6': `Recuperación`, +'s6ae0d087036e6d6d': `Seleccione un método de autenticación.`, +'s6b5002c605b39d6d': `Crear transporte de notificaciones`, +'s6b6e6eb037aef7da': `Use el nombre de usuario y la contraseña a continuación para autenticarse. La contraseña se puede recuperar más adelante en la página Tokens.`, +'s6b79e73ca77148a0': `Integraciones de Outpost`, +'s6b85380416964890': `Negar el resultado`, +'s6ba50bb0842ba1e2': `Aplicaciones`, +'s6c3daaac4eed12f9': `Registro de cambios`, +'s6c410fedda2a575f': `Actualización disponible`, +'s6c70a73265e14521': `Enlace a un usuario con una dirección de correo electrónico idéntica. Puede tener implicaciones de seguridad cuando una fuente no valida las direcciones de correo electrónico`, +'s6c8f05e3be04f62a': `Registrar dispositivo`, +'s6d3b4d0561ba1cff': `Editorial`, +'s6d5bce4321f57cda': `Anular la inscripción`, +'s6df42b3072a2d7e9': `Nginx (entrada)`, +'s6dfb7283452f78fe': `Autorización`, +'s6dfd15978586d05f': str`Bienvenido, + ${0}.`, +'s6e09a19aa3952509': `Aplicaciones con mayor uso`, +'s6e612e5a6a359bbb': `Clave privada opcional. Si está configurado, puede usar este par de claves para el cifrado.`, +'s6e6e737601f44b2c': `Notificaciones eliminadas correctamente`, +'s6f270e1668c036e9': `Se actualizó correctamente el puesto avanzado.`, +'s6f328f2d8382d998': `El consentimiento vence en`, +'s6f857299d5db1ecf': `Flujo (s)`, +'s6fe64b4625517333': `Desarrollado por authentik`, +'s7031e6928c44cedd': `Interfaz de usuario`, +'s706af57c1af42c6d': `Oculto: campo oculto, se puede utilizar para insertar datos en el formulario.`, +'s708d9a4a0db0be8f': `Comprobar el estado`, +'s70f6471de355b98c': `Clave de contraseña básica HTTP`, +'s713d147e1761d0f0': `¡Actuales!`, +'s71dcd9cf808449aa': `Token (s)`, +'s721d94ae700b5dfd': `Activación dúo`, +'s72559845d38bf688': `Configure durante cuánto tiempo son válidos los tokens de acceso.`, +'s72c1c17a9bdc76ad': `Texto de ayuda`, +'s72e102414fec81a4': `La regla se creó correctamente.`, +'s730182ad28374cda': `Objeto`, +'s7301a7069b7bc83e': `¿Revocado?`, +'s733f83ff9d50da30': `Configure la desviación de tiempo máxima permitida para una afirmación.`, +'s73c13e5a6f5e38a3': `Clases de dispositivos`, +'s7468e87263dfff7e': `Identificador`, +'s7489f76224f8120d': `Autenticación directa (aplicación única)`, +'s74f809a69e030351': `Emisor de configuración de OpenID`, +'s7520286c8419a266': `Datos opcionales que se cargan en la variable de contexto «prompt_data» del flujo. YAML o JSON.`, +'s75a27f43413e02c5': `francés`, +'s75d5ff5dd8d3c6d2': `El grupo se actualizó correctamente.`, +'s7609ee54e8a7b05a': `Días de validez`, +'s764bccb30868bf62': `La URL externa en la que accederás a la aplicación. Incluya cualquier puerto no estándar.`, +'s76768bebabb7d543': `Campo que contiene los miembros de un grupo. Tenga en cuenta que si se utiliza el campo «MemberUID», se supone que el valor contiene un nombre distintivo relativo. Por ejemplo, 'memberUid=alguno-usuario' en lugar de 'memberUid=CN=alguno-usuario, ou=grupos,... '`, +'s7683363cdf78cf31': `Se prefiere la verificación del usuario si está disponible, pero no es obligatoria.`, +'s76881c01b6a3a8c7': `Consentimiento (s)`, +'s76da2c978dcc5ef4': `La caché de directivas se borró`, +'s76f5dca6404a1210': `Webhook (Slack/Discord)`, +'s773aa6621d7e37b7': `Crear inquilino`, +'s7754f0e34f27fb6e': `Descripción que se muestra al usuario al dar su consentimiento. Si se deja vacío, no se informará al usuario.`, +'s77994108c886b965': `Intentos fallidos antes de cancelar`, +'s77f572257f69a8db': `excepción de asignación de propiedades`, +'s78c08391ffbfb8c0': `Estos enlaces controlan qué usuarios pueden acceder a este flujo.`, +'s78fd8c03f8c967f3': `Fichas`, +'s7968dbed9b106c29': `No hay servicios disponibles.`, +'s7989db5f4819af89': `Flujo utilizado para cerrar sesión. Si se deja vacío, se usa el primer flujo aplicable clasificado por la carga.`, +'s79ad406777feab1f': `Continuar el flujo sin invitación`, +'s79aed8154d7c472c': `Puesto avanzado creado correctamente.`, +'s79e8cc71a5975b04': `Mensaje`, +'s7a141f1b61074fbe': `Autenticación básica`, +'s7a322c89298dd27c': `La invitación se actualizó correctamente.`, +'s7a4f059aaa029719': `Conectar`, +'s7abc9d08b0f70fd6': `Token estático`, +'s7b18721be331241e': `Seleccione qué transportes se deben usar para notificar al usuario. Si no se selecciona ninguno, la notificación solo se mostrará en la interfaz de usuario de authentik.`, +'s7b1fba26d245cb1c': `Cuando se utiliza una solución de registro externa para archivar, se puede establecer en «minutes = 5".`, +'s7b576aa71acb36a6': `Diagrama`, +'s7b7163270e57e8b4': `Actualizar`, +'s7bc8c327f1f7c82c': `No se han encontrado objetos.`, +'s7bda44013984fc48': `Conjunto de contraseñas`, +'s7c05ee41d634aa45': `Asignaciones de propiedades utilizadas para la creación de usuarios.`, +'s7c10976de6411844': `Validez del token`, +'s7c27e113f90a89e0': `Cuando se selecciona, las firmas de la aserción entrante se validarán con este certificado. Para permitir solicitudes sin firmar, déjelo en el valor predeterminado.`, +'s7c5774fad9d050ce': `Crear grupo`, +'s7cb9aa9ee1783f00': `Asignaciones de propiedades de grupos`, +'s7d499be3b781a3ca': `Usuario (s)`, +'s7d684b6257284e55': `Puntuación`, +'s7def067ed3ad3ad9': `Dominio de cookies`, +'s7e537ad68d7c16e1': `Se escribió al usuario a`, +'s7e87ab366c199345': `Enlace de actualización`, +'s7eb3d239e0b491ab': `Seleccione los grupos a los que añadir usuarios`, +'s7ec7036b249f4f22': `Usuario habitual`, +'s7edad99c6b7bfe88': `Ir a la página siguiente`, +'s7f4e4054fbe132e1': `Otros ajustes globales`, +'s7f5869b3d14d7cbc': `Proveedor`, +'s7f9e79189a3d19e2': `Inquilinos`, +'s7f9eb9c8bd26e8fd': `URL de redireccionamiento válidas después de un flujo de autorización correcto. Especifique también cualquier origen aquí para los flujos implícitos.`, +'s7fa236d26b798301': `Enviar enlace`, +'s7fa4e5e409d43573': str`Error creando la credencial: + ${0}`, +'s802826db4e2c852e': `Advertencia: ninguna etapa de invitación está vinculada a ningún flujo. Las invitaciones no funcionarán como se esperaba.`, +'s803b0621006085be': `Actualizar proveedor SAML`, +'s80e6d6fe5ad458d3': `Ícono Borrar`, +'s819509c33a7534ac': `Transportes de notificación`, +'s81a87652ade099e4': `Modo de coincidencia de usuarios`, +'s81ecf2d4386b8e84': `Continuar`, +'s81eff3409d572a21': `Excepción general del sistema`, +'s82188c9542510212': `Flujo de recuperación opcional, que se enlaza en la parte inferior de la página.`, +'s8226f48cb1a80997': `Invitaciones`, +'s832282d415294df4': `Flujo de importación`, +'s835da49b4dc83a51': `Inicios de sesión fallidos por día en el último mes`, +'s836aa192b30c21da': `Flujo de cancelación de inscripción`, +'s838418d1a0815157': `¿Política de pases?`, +'s838ed611b533b19e': `Keypair que se usa para firmar solicitudes salientes. Déjelo vacío para deshabilitar la firma.`, +'s839cb09cb2193da9': `Enlace para usar la invitación.`, +'s83d0f62ad1731a03': `Clave privada`, +'s84c5a011acd608c9': `Retención de eventos`, +'s84d7d6ebbedcb586': `Salud y versión`, +'s850a58c683682809': `Modo emisor`, +'s851c108679653d2a': `Nombre del ámbito`, +'s85366fac18679f28': `¿Has olvidado tu contraseña`, +'s858e7ac4b3cf955f': `Fichas estáticas`, +'s872d0e88ab34ed83': `URL de autorización`, +'s8763a33c3d46aaf5': `Estado de avanzada`, +'s87b7e3bc944c728c': `Activar usuario pendiente en caso de éxito`, +'s8802553bc57617ee': `Los puestos avanzados son implementaciones de componentes auténticos para admitir diferentes entornos y protocolos, como proxies inversos.`, +'s883b544e2b4aa3b5': `Cantidad mínima de caracteres en minúscula`, +'s8849ece8c65e3a18': `Paneles`, +'s88b8a2892635a2fc': `URL utilizada por authentik para recuperar tokens.`, +'s890810efbe103cbc': `Haga coincidir los eventos creados con este tipo de acción. Cuando se deja vacío, todos los tipos de acción coincidirán.`, +'s890e983a7be64da4': `Resultado`, +'s892d2731a6f22e59': `Clave privada, adquirida en https://www.google.com/recaptcha/intro/v3.html.`, +'s8939f574b096054a': `¿Tú no?`, +'s8a1d9403ca90989b': `Invitación utilizada`, +'s8aaad223e954f9ca': `Cuando se habilita, los campos de usuario coinciden independientemente de su carcasa.`, +'s8af61807443f32a4': `Acciones`, +'s8af7239354f7e7b6': `Sincronizar usuarios`, +'s8aff572e64b7936b': `Vuelve a enviar el correo electrónico.`, +'s8b0432eecbd8b034': `Actualización`, +'s8b2b2a43fcf688a3': `Se actualizó correctamente el mensaje.`, +'s8b33660e2ed7212c': `Cuando se conecta a través de SSH, este par de claves se usa para la autenticación.`, +'s8b87df5664de7eb8': `Configure la forma en que el puesto avanzado consulta a los usuarios del servidor auténtico principal.`, +'s8be4abc7ca71da6c': `Configuración de IU`, +'s8ca0dbaec5d48563': `No se configura ningún flujo de recuperación.`, +'s8cb7bb82e96d5d77': `Políticas`, +'s8cc920e6a8430a0d': `Registra al usuario pendiente en ese momento.`, +'s8cda828dac449ea5': `Borrar todo`, +'s8ce8bdc9cc9c8604': `El último consentimiento otorgado indefinidamente`, +'s8d08843f397d9e81': `Consulte la documentación para obtener una lista de todas las variables.`, +'s8d32d7b9e8ca60b1': `Se usa el mismo identificador para todos los proveedores`, +'s8d7ecd944ebe834b': `El token es administrado por authentik.`, +'s8d857061510fe794': `Notificaciones push dúo`, +'s8da88a8a5750bce1': `Autenticadores duo`, +'s8e01a852c1db8d29': `Nginx (administrador de proxy)`, +'s8ecdbff1a7329b64': `con inspector`, +'s8f12575f694e85a2': `Asignaciones de ámbitos adicionales, que se pasan al proxy.`, +'s900b0d85b872d134': `Vincular usuarios en un identificador único`, +'s909e876731a8febb': `Seleccionar todas las filas`, +'s90c3b62194fe8508': `Información de implementación de Outpost`, +'s9117fb5195e75151': `Notificación`, +'s916b32ac64ea2b05': `Se ha actualizado correctamente la fase.`, +'s9193ef1a39a6c872': `Marque los usuarios recién creados como inactivos.`, +'s91e3a47599412f51': `Fuentes`, +'s91f389c796720a81': `Servidores de carga`, +'s91f70424f5d5d23e': `babosa`, +'s9222ca30ae7786e4': `La aplicación se creó correctamente.`, +'s925936f647ae52cc': `Se muestra como título en las páginas de flujo.`, +'s926e0ecf124fb01a': `Validez código de acceso`, +'s92ca679592a36b35': `Se ha rotado el`, +'s92e241c9f3c101a2': `se eliminará el objeto de conexión`, +'s93574c03953f25dd': `Este proveedor se comportará como un proxy inverso transparente, excepto que las solicitudes deben autenticarse. Si su aplicación ascendente usa HTTPS, asegúrese de conectarse al puesto avanzado también mediante HTTPS.`, +'s93c1e5fbe8184895': `El token se creó correctamente.`, +'s93cea6ca1f93349d': `URL no autenticadas`, +'s93cf77a59db53395': `la referencia se restablecerá al valor predeterminado`, +'s94333971a07803b9': `Configuraciones adicionales`, +'s949826fad0fe0909': `La tarea ha finalizado con errores`, +'s955c1fec1c6fb970': `Actualmente, no hay etapas vinculadas a este flujo.`, +'s95a032ae86881bf5': `Uso del flujo`, +'s965c503c3e42fdfe': `Habilitado`, +'s968c90258dcf7562': `Encuadernación`, +'s96b2fefc550e4b1c': `Tipo de proveedor`, +'s96b3cddf33e1c853': str`Estás suplantando a + ${0}. Haga clic para parar.`, +'s97d1b0070f50c07f': `Fichas estáticas`, +'s97f2dc19fa556a6a': `SMS`, +'s97f5e0c138eae172': `Advertencia: el proveedor no está asignado a ninguna aplicación.`, +'s980270d0fab7ecb3': `Enlace Update Stage`, +'s98b1cb8fb62909ec': `Grupo`, +'s98c3bdf4fd5cdf65': `Reglas de notificación`, +'s991b750e2d5c4234': `Enlace de proveedores de servicios`, +'s992f8d1a776e763c': `Si se deja vacío, authentik intentará extraer la URL de inicio en función del proveedor seleccionado.`, +'s99f110d27e30b289': `Título`, +'s9a34d1520e320465': `Configuraciones específicas de cada etapa`, +'s9a393a04eaf1eb0e': `Crear enlace de escenario`, +'s9ae089fd248e72db': `DN de usuario adicional, antepuesto al DN base.`, +'s9bd59e0ea70a3e4a': `Actualización Outpost`, +'s9bd9ba84819493d4': `¡Algo salió mal! Inténtelo de nuevo más tarde.`, +'s9bf48a89367282cd': `Advertencia: el dominio authentik no está configurado, la autenticación no funcionará.`, +'s9c29565c5ae1cc92': `La selección de una integración permite la gestión del puesto avanzado por authentik.`, +'s9c3c272944dcfca3': `Se creó correctamente el usuario.`, +'s9c6f61dc47bc4f0a': `Modelo creado`, +'s9c73bd29b279d26b': `Finalizó la suplantación`, +'s9d18948d25c68d66': `Se ha generado correctamente el par de claves de certificado.`, +'s9d2d00982edafabb': `turco`, +'s9d8ad4b85287131f': `dígitos`, +'s9d95f09deb601f34': str`No se pudo validar la credencial en el servidor: + ${0}`, +'s9d96eb5ca93e6473': `URL de configuración de OpenID`, +'s9e568afec3810bfe': `Teclas de recuperación`, +'s9e830cbc0b42a514': `Flujo de actualización`, +'s9e9c8d99f4c26baf': `Cuando un usuario regresa del correo electrónico con éxito, su cuenta se activará.`, +'s9ea472b555374771': `Requisito clave residente`, +'s9ee20003cb116abf': `Flujo sin contraseña`, +'s9f23ed1799b4d49a': `Configure qué datos deben usarse como identificador de usuario único. En la mayoría de los casos, el valor predeterminado debería estar bien.`, +'s9f26843287bb592d': `Grupos`, +'s9f5a5f23312798f0': `Miembros`, +'s9f8aac89fe318acc': `Si lo desea, defina el valor «FriendlyName» del atributo Assertion.`, +'s9f91cc8bcfabb40f': `Afirmación válida no antes`, +'s9fb28be12e2c6317': `Superusuario`, +'s9fdda7ea4642306c': `Grupo (s)`, +'s9ff3121d30f88d52': `Normal`, +'s9ffa1ac03ce6fd20': `Registro de ejecución`, +'sa00cf67b54c44c71': `Comprueba la IP del servicio de Kubernetes, o`, +'sa03aa46068460c95': `¿Olvidó su nombre de usuario`, +'sa03fe48e892df2d8': `La URL externa en la que te autenticarás. Se debe poder acceder al servidor principal de authentik en esta URL.`, +'sa0b01f479f40c52d': `Dispositivo (s)`, +'sa0e0bdd7e244416b': `Solicitud sospechosa`, +'sa11e92683c5860c7': `Se ha denegado la solicitud.`, +'sa13e6c8310000e30': `ID de sesión`, +'sa1b41e334ad89d94': `Se ha visto el secreto`, +'sa248e1021d2c27b5': `Verifique la dirección de correo electrónico del usuario enviándole un enlace único. También se puede utilizar para la recuperación para verificar la autenticidad del usuario.`, +'sa266303caf1bd27f': `Correo electrónico enviado`, +'sa29b5680cfafacc8': `Anfitrión externo`, +'sa2b727168b090d34': `Borrar caché de flujo`, +'sa2c29dc5ed47b26d': `Obligar al usuario a configurar un autenticador`, +'sa2e4d6830226d3ec': `Enlace de redirección`, +'sa30c58514a3dc0fb': `Denegar el acceso al usuario`, +'sa319e3bf44c85963': `Asignaciones de propiedades utilizadas para la creación de grupos.`, +'sa33d061d2ade20aa': `Reputación`, +'sa3438c7bb4e9cce8': str` + ${0}sin leer`, +'sa347e31efbb60be2': `Aplicación de actualización`, +'sa3599457b9418bc5': `Avatar del usuario`, +'sa3660d505e7011e0': `Solicitud autorizada:`, +'sa3c1f6ac5e63a70f': `Flujo utilizado antes de la autenticación.`, +'sa41aee3ae04c9216': `Mostrar etiquetas de fuentes`, +'sa442044b586ec8bf': `Acción`, +'sa45a194b58837e4f': `Activo`, +'sa48f81f001b893d2': `Usuario`, +'sa4a8086275475714': `Seleccione un flujo de inscripción`, +'sa50a6326530d8a0d': `Mostrar menos`, +'sa578033f134a83b6': `Configure durante cuánto tiempo son válidos los códigos de acceso.`, +'sa57c393736e2732c': `Asignación de propiedades de`, +'sa599dbe5776897ad': `Especifique los URI de varios servidores separándolos con una coma.`, +'sa668bd79645c3e06': `Configuración de Kube`, +'sa6905be242387f36': `Excepción`, +'sa6ab5184d6315895': `Desde`, +'sa717841a602fe7d8': `No se pudo eliminar la caché de directivas`, +'sa738ce390bc24875': `Obtenga este valor de https://console.twilio.com`, +'sa7b56a80ab1801f0': `Token de autenticación de Twilio`, +'sa7fcf026bd25f231': `Puede tener el formato de 'unix: //' cuando se conecta a un daemon de docker local, usando 'ssh: //' para conectarse a través de SSH, o 'https://:2376' cuando se conecta a un sistema remoto.`, +'sa81e2cdaf6921adc': `Sistema`, +'sa879d5ce584875cf': `Configuración específica de políticas`, +'sa8c45b6b92a8ba1f': `Crear aplicación`, +'sa8d83cd8023e8e4d': `URL utilizada por authentik para obtener información del usuario.`, +'sa8e255492bb6ae0d': `Integración (s) avanzada (s)`, +'sa9020b93c3bd7235': `Cuántos intentos tiene un usuario antes de que se cancele el flujo. Para bloquear al usuario, usa una política de reputación y una etapa user_write.`, +'sa90b7809586c35ce': `Ingrese una URL completa, una ruta relativa o use 'fa: //fa-test' para usar el ícono Font Awesome «fa-test».`, +'sa95a538bfbb86111': str`¿Seguro que quieres actualizar + ${0}« + ${1}»?`, +'sa9b2a245441557dc': `Última ejecución`, +'sa9dbe2fb284e26fe': `Enviar enlace de recuperación al usuario`, +'saa0e2675da69651b': str`No se encontró la URL « + ${0}».`, +'saa10777250a6deca': `Actualizar fuente SAML`, +'saa855c61e0403fe6': `Advertencia: La aplicación no es utilizada por ningún puesto avanzado.`, +'saaa3abe03c7260f9': `Operaciones de larga ejecución que authentik se ejecuta en segundo plano.`, +'saae1c70e168b45b4': `Admin`, +'sab6bad52985c6676': `La marca se muestra en el título de la página y en otros lugares.`, +'sab6d24c5ec8dc361': `Nombre descriptivo`, +'sab85321d3b0840b7': `Solicitud de API fallida`, +'sababff57115130a0': str`Error: configuración de origen no admitida: + ${0}`, +'sabaf0061f7e41b0b': `Secreto del consumidor`, +'sabb56f74492e7e96': `Actualizar dispositivo`, +'sabd1bc9fb7da71e7': `Expresión con Python.`, +'sabebdc7fa6a5bddb': `Nginx (independiente)`, +'sabf67834e35dede5': `Recuento de tokens`, +'sac1332e6f421526e': `Transporte de notificaciones de actualización`, +'sac43cb9690260b86': `Número inicial de UID`, +'sac8252732f2edb19': `Fecha`, +'sad09c62cb4ebae68': `Haga clic para copiar el token`, +'sad130c2d925fb7bf': `Actualizar usuario`, +'sad3e3c8146fc920f': `Estatus`, +'sad8550b8731518d8': `Sesión válida no el día o después`, +'sae1e1a59d22609c4': `Cuando se habilita, se utilizará la configuración global de conexión de correo electrónico y se ignorarán las configuraciones de conexión que se indican a continuación`, +'sae239213b7c70376': `Estado`, +'sae486938be80729c': `Está todo bien.`, +'sae5d87e99fe081e0': `Requerido`, +'sae5da213b7f896ed': `Escenario`, +'saeff3596e1ac31b6': `Configuración`, +'saf1d289e3137c2ea': `CA con la que se verifica el certificado del punto final. Se puede dejar vacío para que no se valide.`, +'saf24e253b3b006d4': `Cómo conectarse`, +'saf31b3c610036ed6': `Cuando se habilita esta opción, se registrarán todas las ejecuciones de esta política. De forma predeterminada, solo se registran los errores de ejecución.`, +'saf5eb7596b3a355b': `Considere que los objetos que coinciden con este filtro son grupos.`, +'saf63a04c86018698': `-`, +'saf63d34c8601dd41': str` + ${0} + `, +'saf794c74c9ea731e': `Asignaciones de propiedades de usuario`, +'saf7ce4165a1025f6': `Sincronizar grupos`, +'safc0e0656d572f4e': `Una política utilizada para las pruebas. Siempre devuelve el mismo resultado que se especifica a continuación después de esperar una duración aleatoria.`, +'safcc54b2aedb1a17': `Si se selecciona, el token caducará. Al expirar, el token se rotará.`, +'safd0363143a46a91': `Autenticación básica`, +'sb0669da3df95837c': `Inicios de sesión por día en el último mes`, +'sb07bf992e3d00664': `No hay datos adicionales disponibles.`, +'sb0b86b8ca6ab13bd': `Proveedores`, +'sb157267c85fdff30': `Certificado`, +'sb15e8daacf26bdfc': `Crear token`, +'sb1751a1411d6874f': `URL de API externa`, +'sb17e8c70f9a05c77': `En caso de que no puedas acceder a ningún otro método.`, +'sb1c91762ae3a9bee': `Se ha iniciado la suplantación`, +'sb1fe947f9ad27b9d': `Caducidad del token`, +'sb24755ea94bef31d': `Elimina la imagen de fondo configurada actualmente.`, +'sb25d9afe10941425': `Decide para qué se utiliza este flujo. Por ejemplo, el flujo de autenticación se redirige a cuando un usuario no autenticado visita authentick.`, +'sb25e689e00c61829': `Use un autenticador basado en código.`, +'sb2b3b281954752c4': `Asignado a la aplicación`, +'sb2bb6f93773a4594': `Atributo de usuario/grupo utilizado para la parte de usuario del encabezado HTTP-Basic. Si no se establece, se utiliza la dirección de correo electrónico del usuario.`, +'sb2c57b2d347203dd': `Mostrar más`, +'sb2f307e79d20bb56': `Contexto actual del plan`, +'sb32e9c1faa0b8673': `Flujo de autenticación previa`, +'sb357ea19a722d827': `Publicar`, +'sb3651834cca86735': `Cantidad mínima de caracteres de símbolos`, +'sb3fa80ccfa97ee54': `Nombre artístico`, +'sb4564c127ab8b921': `Inicio de sesión incorrecto`, +'sb4a1d1c19438e929': `authentik ejecutándose en auth.example.com`, +'sb546eb04425e07fa': `Detalles de actualización`, +'sb564f81eb057342e': `Icono de aplicación`, +'sb59d68ed12d46377': `Cargando`, +'sb635ad3c2e357d3c': `Esta es la contraseña que se utilizará con la autenticación básica`, +'sb69119c9f0547bed': `Enlace de recuperación de copia`, +'sb69a4b0acd0895f2': `Flujos`, +'sb6cbd4f92ebaf5d8': `Relacionado`, +'sb6d5146d5efb3058': `Clave de acceso`, +'sb6d7128df5978cee': `Excepción de política`, +'sb6d7d58cb0a1544e': `Modo de compatibilidad`, +'sb72ebab438cb2983': `Importe certificados de proveedores externos o cree certificados para firmar solicitudes con ellos.`, +'sb7684e2910a33a1f': `Enlazar CN`, +'sb7794c2910b1a9ec': `Enlazar DN`, +'sb7a30abc1dcf6c36': `Emisor`, +'sb8168ae309c66abc': `Autenticadores TOTP`, +'sb85ffe141d7c229d': `Duración de la sesión`, +'sb8795b799c70776a': `De un solo uso`, +'sb8bc2b8376c96a6b': `Intención`, +'sb8c13bd58191cea2': `Al conectarse a un servidor LDAP con TLS, los certificados no se comprueban de forma predeterminada. Especifique un par de claves para validar el certificado remoto.`, +'sb8d4f44a1d5b9a14': `Backends`, +'sb8dd788adf7b907b': `Proxy`, +'sb904f23f17b60c3a': `El flujo se importó correctamente.`, +'sb932dead79567c7b': `URL de token de acceso`, +'sb96629f50f2e7fab': `Insalubres`, +'sb986f15fa9b17805': `El consentimiento caduca.`, +'sba42248f3f27955c': `Base de datos de usuarios + contraseña estándar`, +'sba65ae54d6585c1a': `Notificaciones sin leer`, +'sbab723b98dcfe23f': `Mostrar usuario coincidente`, +'sbad5b96fb855ef36': `Sin políticas vinculadas.`, +'sbadde673052efc02': `Certificado web`, +'sbb3243352661428f': `Flujo de autenticación`, +'sbb57cd8a3ed12915': `Válido durante 360 días, después de lo cual la contraseña cambiará automáticamente. Puede copiar la contraseña de la lista de tokens.`, +'sbbb2180b6aed196e': `Desde el número`, +'sbbb7318812d64e51': str`Error al crear la credencial: + ${0}`, +'sbbb97b1c63507dc0': `Número`, +'sbbc1de43ab6c1f76': `Crear regla de notificación`, +'sbbc53e0e54d7946f': `Asunto`, +'sbc80eab557fbf782': `Grupo de búsqueda`, +'sbcae51a6f06e53d4': `Modo de búsqueda`, +'sbd19064fc3f405c1': `Busca un correo electrónico de verificación en tu bandeja de entrada.`, +'sbdc1176ff9f93da2': `Este es el punto final completo al que enviar solicitudes POST.`, +'sbdeedc1c60306b35': `Mensajes`, +'sbe3b416a356f1c91': `Está activo`, +'sbe47a5bdeec19ab0': `Encuadernación (s)`, +'sbe9a51f29a4a2c5b': `Éxito`, +'sbea3c1e4f2fd623d': `Tipo de escenario`, +'sbec40ef4e6f139b7': `(Formato: horas = 1; minutos = 2; segundos = 3).`, +'sbecf8dc03c978d15': `Vuelve a ejecutar la sincronización`, +'sbedb77365a066648': str`Última sincronización: + ${0}`, +'sbf41e0db12834133': `Incluya las notificaciones de los usuarios de los ámbitos en id_token, para aplicaciones que no acceden al extremo userinfo.`, +'sbf5f4c5ba679e847': str`Iniciar sesión a través de + ${0}.`, +'sc04e92d753742189': `6 dígitos, ampliamente compatible`, +'sc0829ee663ced008': `Directorio`, +'sc0a0c87d5c556c38': `Número de teléfono`, +'sc10db51c9bb77d5c': `Base de datos de usuarios+contraseña`, +'sc1231049879b8d33': `Si está habilitada, use la conexión local. Se requiere la integración de Docker Socket/Kubernetes.`, +'sc15d60377cc8aaac': `Actualmente, no hay políticas vinculadas a este objeto.`, +'sc19838ca8c135c1b': `Configuración de marca`, +'sc1a1ff47c058bb09': `Registro de eventos`, +'sc1cb0eef9ed94e6a': `Los usuarios recién creados se agregan a este grupo, si se selecciona un grupo.`, +'sc1ce2f758935ff48': `Administrado por authentik`, +'sc1cfce89ebcf1bf9': `Descargar certificado de firma`, +'sc1feadd25659c94d': `Dirección del remitente`, +'sc21032b0d37882a0': `Si la configuración de authentik_host no coincide con la URL con la que desea iniciar sesión, añada esta configuración.`, +'sc25edca57df81461': `autenticación`, +'sc265a3e29e1206e4': `Eventos`, +'sc297b2e13c28ecf9': `Permite que tus amigos se autentiquen a través de Plex, incluso si no compartes ningún servidor`, +'sc2a1a40a1b4b0170': `La integración se creó correctamente.`, +'sc2f116c0ea77d58a': `Mensaje de error`, +'sc2f1e5dd74c1b7df': `Inicios de sesión exitosos`, +'sc3259eb55cf91e8c': `LDAP`, +'sc35581d9c1cd67ff': str`En nombre de + ${0}`, +'sc381422c585b867f': `Acciones rápidas`, +'sc39fb3ff3753d5ab': `Ocultar asignaciones administradas`, +'sc3c74f5273df459a': `Genérico`, +'sc3e0c240b159fbce': `El flujo se creó correctamente.`, +'sc3e1c4f1fff8e1ca': `Este flujo se ha completado.`, +'sc4508175bf6b09dd': `Rutas no autenticadas`, +'sc4eedb434536bdb4': `¿Necesitas una cuenta?`, +'sc54aafeea9c9bab0': `Servicios conectados`, +'sc554339ffc7b04e7': `La invitación se creó correctamente.`, +'sc5668cb23167e9bb': `Como alternativa, si su dispositivo actual tiene instalado Duo, haga clic en este enlace:`, +'sc592307ea80f16b9': `Desconocido`, +'sc5a4711395ffb043': `Etapa utilizada para configurar un autenticador TOTP (es decir, Authy/Google Authenticator).`, +'sc647dcb91f6958dd': `Número desde el que se enviará el SMS.`, +'sc6b4ebd37b7a91c7': `Tokens y contraseñas de aplicaciones`, +'sc6c57419ad3a01a8': `Clave utilizada para firmar los tokens.`, +'sc6e8a34361c7c272': `Autenticación directa (nivel de dominio)`, +'sc741d9ebe07ad103': `Certificado de firma`, +'sc741dfb09d3395f0': `No hay aplicaciones disponibles.`, +'sc744f3691efe310d': `Ocultar cuentas de servicio`, +'sc764ddf60b5149de': `URL opcional si el IDP admite el cierre de sesión único.`, +'sc7707b3ba3a2a7ca': `URL de token de solicitud`, +'sc7be80a7f8ec597e': `Fecha de caducidad`, +'sc816360d6f5a1eeb': `Los flujos describen una cadena de etapas para autenticar, inscribir o recuperar un usuario. Las etapas se eligen en función de las políticas que se les aplican.`, +'sc8da3cc71de63832': `Iniciar sesión`, +'sc8de93a7dc0d78ba': `Tipo de cliente`, +'sc8f286ac783c385d': `Ver información de implementación`, +'sc9175cb129fdc306': str`Actualización + ${0}`, +'sc92d7cfb6ee1fec6': `La contraseña se actualizó correctamente.`, +'sc92ed9d5e01d3f24': `Regla (s) de notificación`, +'sc96dd9d2e7b05fc5': `Longitud mínima`, +'sc9c3578cce3cf7a8': `Anfitrión externo`, +'sc9f69360b58706c7': `Modelo eliminado`, +'sc9fc206433f67588': `Expresiones regulares para las que no se requiere autenticación. Cada línea nueva se interpreta como una expresión nueva.`, +'sca2879d96f58a39c': `Enviar una vez`, +'scab2900019953050': `El usuario se actualizó correctamente.`, +'scb317851cbcc6b12': `Anfitrión interno`, +'scb43f5faeb6a7ca9': `No se debe realizar la verificación del usuario.`, +'scb489a1a173ac3f0': `Sí`, +'scb5c9a7cc4ccd68d': `Información de correo electrónico:`, +'scb6620fcd5bff04c': `Configuraciones avanzadas`, +'scc286303aa9c6cb0': `Estado de sincronización`, +'scc733ba98740038a': `Mensaje de actualización`, +'sccbfc4dec0c8d80c': `Asignado a la aplicación`, +'scd0cfe87af6f2ff2': `Gravedad`, +'scd8062ff5e1326d8': `Permite hasta N ocurrencias en la base de datos HIBP.`, +'sce106606ae84d46f': `Asignaciones de propiedades`, +'sce8d867ca5f35304': `Establecer contraseña`, +'scea1f16238093e35': `Ejecuta el fragmento de Python para determinar si se permite o deniega una solicitud.`, +'scf2790cf3ad89283': `Nombre de atributo utilizado para aserciones SAML. Puede ser un OID de URN, una referencia de esquema o cualquier otra cadena. Si esta asignación de propiedades se utiliza para la propiedad NameID, este campo se descarta.`, +'scf5ce91bfba10a61': `Por favor, introduzca su contraseña`, +'sd04376c4216c921f': `Configuración de URL`, +'sd06b47084fec0ec5': `Token portador`, +'sd07866d9f38b2c50': `Ejecutar flujo`, +'sd080b2370aa82967': `Reputación de identificadores de usuario e IP. Las puntuaciones disminuyen por cada inicio de sesión fallido y aumentan por cada inicio de sesión exitoso.`, +'sd0bc94e11935ee5a': `HTTPS no se detecta correctamente`, +'sd1031bddc66dc495': `Conecte su cuenta de usuario a los servicios que se enumeran a continuación para permitirle iniciar sesión con el servicio en lugar de las credenciales tradicionales.`, +'sd1146418b344f81f': `Regla de notificación de actualización`, +'sd1288ca57e221cf9': `Token de actualización`, +'sd14a19a19d507f9e': `Grupo principal para todos los grupos importados desde LDAP.`, +'sd18170637295bace': `DN de usuario adicional`, +'sd1a5560fde6f2271': `El proveedor se importó correctamente.`, +'sd1f44f1a8bc20e67': `Correo`, +'sd20f6cd02c90867f': `Solicitud (s)`, +'sd216b08bafb297ee': `Flujo utilizado para autenticar a los usuarios. Si se deja vacío, se usa el primer flujo aplicable clasificado por la carga.`, +'sd2208cd1a767644b': `Desconectar`, +'sd2223afb7d6b100d': `Tipo`, +'sd2c58d7c6dddc515': `Metadatos SAML`, +'sd3386a2ef42e80b9': `Descargar`, +'sd34be0d0fcb39971': `Nombre para mostrar del usuario.`, +'sd35ae4be63df1f9f': `Selección de backends para probar la contraseña.`, +'sd39c5e998efecf93': `Nombre de atributo SAML`, +'sd3a853f63f45dcb0': `Paso`, +'sd4ac926e4ebb1cd7': `Nombre común`, +'sd503fabef9691134': `Cuando se usa el modo proxy o de autenticación directa (aplicación única), la ruta de URL solicitada se compara con las expresiones regulares. Cuando se usa la autenticación directa (modo de dominio), la URL solicitada completa, incluidos el esquema y el host, se compara con las expresiones regulares.`, +'sd5903cc8de68b3fc': `No se encontró ningún formulario`, +'sd5a4b41c6c883b03': `Audiencia`, +'sd5ba2d61ee4796fe': `Invitación (s)`, +'sd6a025d66f2637d1': `Autenticador tradicional`, +'sd6b8b4156f7df696': `Se muestra el icono en la barra lateral/encabezado y en el ejecutor de flujo.`, +'sd6c3ddb62de0e8f7': `Certificado utilizado para firmar respuestas salientes que van al proveedor de servicios.`, +'sd6cd7ce2310a73a4': `Comprueba el valor de la solicitud de política en relación con varias reglas, que se utilizan principalmente para garantizar la seguridad de la contraseña.`, +'sd71081c23d1cd38b': `Comprobar acceso`, +'sd766cdc29b25ff95': `Autenticando con Apple...`, +'sd7fa99e4d82b374a': `El enlace de recuperación no se puede enviar por correo electrónico, el usuario no tiene ninguna dirección de correo electrónico`, +'sd80b0b8aeae3abe3': `Reescritura de contraseña de usuario`, +'sd8c5339b82b71507': `Espera (min)`, +'sd8d9451f86502d1a': `Clases de dispositivos que se pueden usar para autenticarse.`, +'sd8f220c999726151': `Redirigir`, +'sd924045605feea63': `Caduca`, +'sd947d57c9a9b7108': `Problema abierto en GitHub...`, +'sd94db2b8c85d10a6': `URL LENTO`, +'sd97d8d0906e6cc47': `Coincidencia insensible a mayúsculas`, +'sd9b556a84ae25690': `La solicitud de prueba se envió correctamente.`, +'sda4e78c19f5b6f35': `La política tarda un tiempo aleatorio en ejecutarse. Esto controla el tiempo mínimo que tardará.`, +'sda5e1499f93146ad': str` + ${0}días atrás`, +'sda796c87fa97ed4d': `Nombre del modelo`, +'sdae649fae731e838': `Casilla de verificación`, +'sdb7b2173869822bc': `Debe producirse la verificación del usuario.`, +'sdbc08adee233f180': `Actualizar proveedor OAuth2`, +'sdc1ef94016f0d855': `La integración se ha actualizado correctamente.`, +'sdc30bddeda2f0225': `Valide la contraseña del usuario en relación con los backend seleccionados.`, +'sdc323c6af4ae9f01': `Se copió correctamente TOTP Config.`, +'sdc673e73b5c13aea': `Borrar`, +'sdc70195469e83e3f': `8 dígitos, no compatible con aplicaciones como Google Authenticator`, +'sdc9e222be9612939': `Fuente enlazada`, +'sdcc7b2c109ce9775': `Los tokens se utilizan en authentik para las etapas de validación de correo electrónico, las claves de recuperación y el acceso a la`, +'sdd1ff479d04ac140': `Público`, +'sdd6b8b56a811080e': `Huella digital de certificado (SHA256)`, +'sddb3b0176f437721': `Abrir navegador de API`, +'sddc8efe94cb8c210': `Las etapas son pasos individuales de un flujo por los que se guía al usuario. Una etapa solo se puede ejecutar desde dentro de un flujo.`, +'sddcfc6ab24e3a6ed': `Inscripción`, +'sde47e4d8b9b21b59': `Autenticadores WebAuthn`, +'sdefec5401bf67eba': `Use una llave de seguridad para demostrar su identidad.`, +'sdf1d8edef27236f0': `Un autenticador «roaming», como YubiKey`, +'sdf22dcf939c27cc7': `Configuración de escenario`, +'sdf34a5599d66f85c': `Imagen de fondo`, +'sdf4e1c6a2f072600': `Recuento permitido`, +'sdfd22a21660f6002': `El proveedor se actualizó correctamente.`, +'se085f35c8a9203a1': `Fuente LDAP`, +'se09ab93d69f7f45b': `No lo usa ningún otro objeto.`, +'se09d055771f3a11d': `Conexión OpenID genérica`, +'se10bbf4cf861c81b': `Par de claves de firma`, +'se16ac750b81fa93d': str`Se asigna a + ${0}objetos.`, +'se17fcb1f159ee382': `Actualizar fuente de Plex`, +'se19cc57dd8675498': `umbral`, +'se1c85959463f53df': `Use este inquilino para cada dominio que no tenga un inquilino dedicado.`, +'se1e040b55319a0e8': `Tiempo límite`, +'se291dfd2a59d7842': `Política vinculante (s)`, +'se2b62f7e9017965e': `Traefik (Redactar)`, +'se2c3cbf2ed1403f1': `Fijaciones de escenario`, +'se2f258b996f7279c': `Excepción tarea del sistema`, +'se36b55dfcf5dc80b': `Habilitar StartTLS`, +'se409d01b52c4e12f': `Reintentar la autenticación`, +'se47baf2fd16b9d2b': `Plantilla`, +'se4a9da0295597e73': `Nombre de usuario SMTP`, +'se50a08ab71bb96ed': `Cuando se haya introducido un nombre de usuario/correo electrónico válido y esta opción esté habilitada, se mostrarán el nombre de usuario y el avatar del usuario. De lo contrario, se mostrará el texto introducido por el usuario.`, +'se5498954255620b4': `El correo electrónico se envió correctamente.`, +'se5dc026819a32ff8': str`Usuario + ${0}`, +'se5fd752dbbc3cd28': `Use una llave de seguridad`, +'se63f9d833700af49': `Sesión (s)`, +'se68398e3c2c760b2': `Token`, +'se6d950402810c34f': `Mapeos de propiedades`, +'se7430794fa89005a': `También se conoce como ID de entidad. Default la URL de metadatos.`, +'se74ce42d41e392ba': `La coincidencia se realiza en función del sufijo del dominio, por lo que si ingresa domain.tld, foo.domain.tld seguirá coincidiendo.`, +'se8987bdfb35e46b2': `Clave de consumidor`, +'se8a81c75b6e30a33': `Tecla de campo para comprobar, están disponibles las claves de campo definidas en las etapas de solicitud.`, +'se99efc0873031976': `Icono que se muestra en la pestaña del navegador.`, +'se9b1fec72ffd8f48': `Local`, +'se9d0f12f95b14095': `Nombres Alt de asunto separados por comas opcionales.`, +'sea2f00b34b385a43': `El dispositivo se actualizó correctamente.`, +'sea91c57b3d3969fe': `Estado del sistema`, +'seb5ba88f21937c98': `Revisa los puestos avanzados.`, +'sebda1d54a3f9f967': `URL simbólica`, +'sebf44d2471b608ad': `Flujo utilizado por un usuario autenticado para configurar esta etapa. Si está vacío, el usuario no podrá configurar esta etapa.`, +'sec1808532fe107b9': `Permita a los usuarios utilizar aplicaciones en función de las propiedades, aplicar criterios de contraseña y aplicar etapas de forma selectiva.`, +'sec7443a45fd141e5': `Mensaje (s)`, +'sec97cdaf7af8648b': `Establece atributos personalizados con YAML o JSON.`, +'sece294cd51a85745': `Determina la duración de una sesión. El valor predeterminado de 0 segundos significa que las sesiones duran hasta que se cierra el navegador.`, +'sed3512fe4560c7f4': `Crear usuarios como inactivos`, +'sed8d4c3fd5f60e1f': `Explore las integraciones`, +'sede0abbf2b612812': `Webhook (genérico)`, +'see3ff55262fd6500': `URL a la que se redirige al usuario para dar su consentimiento a la autorización.`, +'sef49aec68fd1dc66': `Nombre`, +'sef50d248448e0df1': str`Sí ( + ${0})`, +'seffdf887fed7f668': `Huella digital de certificado (SHA1)`, +'sf05e384059a0a7c1': `Host ascendente al que se reenvían las solicitudes.`, +'sf1e9d421f35b51e5': `Aplicación`, +'sf1ec4acb8d744ed9': `Alerta`, +'sf22a28f83cc45fcc': `Etapa utilizada para configurar un autenticador basado en dúo. Esta etapa se debe usar para los flujos de configuración.`, +'sf22f7f8a9309b4ed': `Comprobar acceso a aplicaciones`, +'sf232d42142eacc23': `Cuando se habilita, la invitación se eliminará después de su uso.`, +'sf29883ac9ec43085': `contraseña de la aplicación`, +'sf325a4adba4d6278': `Campo pertenencia a grupos`, +'sf339673f0f76a8bd': `Clave pública, adquirida en https://www.google.com/recaptcha/intro/v3.html.`, +'sf3981f36525b0dbd': `se eliminará la conexión`, +'sf3f9a0feaf083207': `Enviado al grupo`, +'sf4122b220926be97': `Versión`, +'sf417c13d7a0f7995': `Copiar URL de descarga`, +'sf45a0d2f00bcc6ff': `no se han definido pestañas`, +'sf466142da6a65052': `Suplantar`, +'sf4de1644dcdb53d5': `Atributo de usuario/grupo utilizado para la parte de contraseña del encabezado HTTP-Basic.`, +'sf53a78d889b6c775': `Administrado por authentik (descubierto)`, +'sf55c7c06dbc2c8c6': `El inquilino se creó correctamente.`, +'sf55d28d4dff0e41b': `Un ejemplo de configuración puede verse así:`, +'sf56998949bdf6b33': `Desactivar`, +'sf679b7a62808287e': `Caducidad`, +'sf6e1665c7022a1f8': `Contraseña`, +'sf6eb148db23d19de': str`No se pudo eliminar + ${0}: + ${1}`, +'sf71dba2c30283a54': `¿Caduca?`, +'sf813a72d8fadd765': `En este caso, establecería la URL de autenticación en auth.example.com y el dominio Cookie en example.com.`, +'sf8c76d5fb408de7b': `Estás a punto de ser redirigido a la siguiente URL.`, +'sf8f49cdbf0036343': `Error de configuración`, +'sf90be97cb08f3d5a': `Marcador de posición`, +'sf9aee319a006c9b4': `Añadir`, +'sf9b1c0661a02d9f9': `Configuración`, +'sf9bddaf910f4eea5': `Generar par de claves de certificado`, +'sf9e61f4f8e90f0f1': `Cambiar estado`, +'sf9f2c719a04066ec': `App`, +'sfa88f413e287bb0f': `Tipo de escenario`, +'sfab527528ea64618': `Coincide con la IP del cliente del evento (coincidencia estricta, para la coincidencia de red, use una política de expresión`, +'sfac6f995c7670559': `Sin límite de etapas`, +'sfad8af8ce38104a3': `Edad máxima (en días)`, +'sfae9f4ea5749a36b': `DN de grupo adicional, antepuesto al DN base.`, +'sfbadb77fbc61efb8': `Usuarios creados por día en el último mes`, +'sfbaeb0de54fbfdbb': `Flujo utilizado al autorizar a este proveedor.`, +'sfc400b2d71e49d28': `La política se creó correctamente.`, +'sfcebd18506f1e535': `Flujo`, +'sfcfcf85a57eea78a': `Dispositivo TOTP`, +'sfd13ca8ebd857c2e': `Crea una nueva aplicación`, +'sfd1af96798dd8a5f': `Clave pública`, +'sfe199b2564b66054': str`Error al validar la afirmación en el servidor: + ${0}`, +'sfe1c86b42ba13376': `Por favor, introduzca su código TOTP`, +'sfe211545fd02f73e': `Verificación`, +'sfe388f0313f52da2': `Configuración del protocolo`, +'sfe629863ba1338c2': `Error de conexión, reconexión...`, +'sfe6977a3aea3ee6e': `Flujo que se utilizará al autenticar a los usuarios existentes.`, +'sfe938c1585e0bf68': `Estos enlaces controlan si esta etapa se aplicará al flujo.`, +'sfe99a8caa70232ab': `Tipo de autenticación`, +'sfeb779d4ccbc5a0e': `Flujo de recuperación`, +'sfeb82261bcf99edd': `Puestos avanzados saludables`, +'sfee06600c15082a9': `Elimina al usuario de la sesión actual.`, +'sfee91e08b8b47477': `Servidores permitidos`, +'sff3b708e23bb96b2': `Evalúe las políticas antes de que Stage esté presente para el usuario.`, +'sff50532a2d85e32e': `Cambiar contraseña`, +'sff5bb7742c2896c8': `Objetivo`, +'sff69c1a637f899a6': `Flujo de enlace`, +'sff945d3f59b93c5e': `Dispositivos de MFA`, +'sffa171e11d4ae513': `Transportes`, +'sffa721bb6aa3128d': `Buscar...`, +'sffd2e553143d1b0e': `Mantenga presionado el control/comando para seleccionar varios elementos.`, +'sffeef5b119d8625c': `La asignación se creó correctamente.`, +'s0410779cb47de312': `Path template for users created. Use placeholders like \`%(slug)s\` to insert the source slug.`, +'sd73b202ec04eefd9': `Unknown intent`, +'s02240309358f557c': `Unknown severity`, +'se2d65e13768468e0': `Internal`, +'s84fcddede27b8e2a': `External`, +'s1a635369edaf4dc3': `Service account`, +'sff930bf2834e2201': `Service account (internal)`, +'s4ba4473f3d4ec896': `New version available`, +'s364c4f177a2f8322': `Open API drawer`, +'s9ba989e69344ff29': `Open Notification drawer`, +'sca7cfe2bef51b2a5': `Root`, +'s9d8b8aa2b404c2c8': `Settings`, +'s7cfe12cd14df9950': `Sign out`, +'sb4d7bae2440d9781': `User Statistics`, +'saab79cd956ee56a9': `Blueprints`, +'s1a65ee08832fbfe2': `Flows and Stages`, +'s6b2beba7ab637e9e': `Roles`, +'sb1a4e9b288e2f005': `Federation and Social login`, +'s7be2df39f727faa2': `Enterprise`, +'s2e109263b73c12d5': `Licenses`, +'sfffb0d0958bfbc42': `Manage users`, +'s66313b45b69cfc88': `Check the release notes`, +'sbdc4a833de9ca502': `Logins and authorizations over the last week (per 8 hours)`, +'s4a34a6be4c68ec87': `Users created`, +'s275c956687e2e656': `Failed logins`, +'s5deac600e329de1b': `Log messages`, +'s3feea7b49673bef2': `No log messages.`, +'s1a0e95458b44d7f8': `Any policy must match to grant access`, +'s7fc1ace65486dc25': `All policies must match to grant access`, +'s1cffe58249b04669': `Internal application name used in URLs.`, +'sdae55084f6cb2662': `Optionally enter a group name. Applications with identical groups are shown grouped together.`, +'s350a616ff5e145ec': `Select a provider that this application should use.`, +'sc92ea8fbf9ba06a7': `Backchannel Providers`, +'s4c6534a118f52fdd': `Select backchannel providers which augment the functionality of the main provider.`, +'s19409e8712ddd369': `Add provider`, +'s2348f46ebf436671': `Open in new tab`, +'s8655c52824caac63': `If checked, the launch URL will open in a new browser tab or window from the user's application library.`, +'s070fdfb03034ca9b': `One hint, 'New Application Wizard', is currently hidden`, +'s61bd841e66966325': `External applications that use authentik as an identity provider via protocols like OAuth2 and SAML. All applications are shown here, even ones you cannot access.`, +'s1f7698c061c208c9': `Open`, +'sed02f831e653deb3': `Logins over the last week (per 8 hours)`, +'se8dca0132c66ae03': `Permissions`, +'s398f6ba74ba8943a': `Select providers to add to application`, +'see2bcbc11bb91960': `Successfully updated instance.`, +'s9e51d6de369f320b': `Successfully created instance.`, +'s92e91071c6a45eb4': `Disabled blueprints are never applied.`, +'sf63c89c0604c288f': `Local path`, +'sd6422f7004036cdd': `OCI Registry`, +'s2e532e19ed477a56': `Path`, +'s61eacb19db252f5e': `URL`, +'scbb7d3154da629f3': `OCI URL, in the format of oci://registry.domain.tld/path/to/manifest.`, +'s0195c0df7294228a': `See more about OCI support here:`, +'s74cb3d66f6a668e1': `Documentation`, +'sfae395b94a5a0040': `Blueprint`, +'s7e1342d37124b65b': `Configure the blueprint context, used for templating.`, +'s6ec8c9d11310300a': `Orphaned`, +'s6835db03209b4f94': `Automate and template configuration within authentik.`, +'s23de62f931f7d754': `Last applied`, +'s2708cac1f4942708': `Blueprint(s)`, +'s880b8b70b22f9977': `Update Blueprint`, +'sb8f855b49234b81b': `Apply`, +'sef3d102324bf8561': `Create Blueprint Instance`, +'s0e427111d750cc02': `Successfully updated license.`, +'s06ae64e621f302eb': `Successfully created license.`, +'s2905c425adae99bd': `Install ID`, +'sb18ec434a8a3aafb': `License key`, +'s9ce7cc01fb9b5b53': `Manage enterprise licenses`, +'sf9ebf11ac2645820': `No licenses found.`, +'sd49099e9522635f4': `License(s)`, +'s3be1d90ffa46b7f1': `Enterprise is in preview.`, +'sa1db89262360550b': `Send us feedback!`, +'s4015746f55a8d89f': `Get a license`, +'sb2cbd06f8e25b47e': `Go to Customer Portal`, +'sf58825457d61c429': `Forecast internal users`, +'sde9a3f41977ec1f8': str`Estimated user count one year from now based on ${0} current internal users and ${1} forecasted internal users.`, +'s4557b6b9da258643': `Forecast external users`, +'sf52479d6daa0a4a8': str`Estimated user count one year from now based on ${0} current external users and ${1} forecasted external users.`, +'sd22bd01bdf28c548': `Cumulative license expiry`, +'s0dd031b58ed4017c': str`Internal: ${0}`, +'s57b07e524f8f5c2a': str`External: ${0}`, +'sdeb6cee42435dd07': `Update License`, +'s6196153c4b0c1ea0': `Install`, +'s0285b4bd69130fa3': `Install License`, +'s3b3c333481944862': `Show details`, +'sb41b2cfbbc52565b': `Created`, +'s7513372fe60f6387': `Event volume`, +'sa55ee64c5c51df0f': `Select the group of users which the alerts are sent to. If no group is selected the rule is disabled.`, +'s5795b310ab271d20': `These bindings control upon which events this rule triggers. +Bindings to groups/users are checked against the user of the event.`, +'s4acf840bc792c3ae': `Local (notifications will be created within authentik)`, +'s6f367f5604d5056d': `Create and bind Stage`, +'scc2e420c54dc8089': `Bind existing stage`, +'sb36e4c05244278c1': `No requirement`, +'s7b105164d209f670': `Require authentication`, +'s239c2a351cde6d39': `Require no authentication.`, +'s98beadfeeb3acb66': `Require superuser.`, +'s047a5f0211fedc72': `Require Outpost (flow can only be executed from an outpost).`, +'sfad9279cc42c6b61': `Required authentication level for this flow.`, +'sb56674c9ea4f0588': `Behavior settings`, +'s14ace18ccf4fb86d': `Increases compatibility with password managers and mobile devices.`, +'scfbc2f1396ee8550': `Denied action`, +'sff38031cf061e3ae': `Will follow the ?next parameter if set, otherwise show a message`, +'s936bf4342b182ad4': `Will either follow the ?next parameter or redirect to the default interface`, +'s22b0e8c5277dd5a9': `Will notify the user the flow isn't applicable`, +'s2eeca5cfc99ef19b': `Decides the response when a policy denies access to this flow for a user.`, +'sbaf20067de176c90': `Appearance settings`, +'s2e4818861000b13f': `Layout`, +'s3ebf4c166058afce': `Clear background`, +'sc4fdeccf14be5378': `Execute`, +'sf12d588a76ba7e51': `Are you sure you want to clear the flow cache? + This will cause all flows to be re-evaluated on their next usage.`, +'s01794c0ee3629c1b': `Flow Info`, +'s77099d752f1ab773': `Related actions`, +'s6e4c997a101b6abf': `with current user`, +'s0a61796c1956d32c': `Evaluate when flow is planned`, +'sf533f13321fee530': `Evaluate policies during the Flow planning process.`, +'s6336fa345e96dde9': `Evaluate when stage is run`, +'s0dc46deb8f181baf': `Invalid response behavior`, +'seb0805249661d15b': `Returns the error message and a similar challenge to the executor`, +'sd891d8463d0ebace': `Restarts the flow from the beginning`, +'s6b9a1dd402750a8a': `Restarts the flow from the beginning, while keeping the flow context`, +'sbc88fb27a4c3b894': `Configure how the flow executor should handle an invalid response to a challenge given by this bound stage.`, +'sde2bb5418562c5b2': `Unknown designation`, +'sb9834316ffd4ae3e': `Stacked`, +'s12146091b2b539a3': `Content left`, +'sa800871782eba1ac': `Content right`, +'sb4e50ca3cffdbc10': `Sidebar left`, +'s745a55f9abf9f2e5': `Sidebar right`, +'sb3182a87ded1bc91': `Unknown layout`, +'s96d2bb4be3f5e8aa': `Select roles to grant this groups' users' permissions from the selected roles.`, +'secdb4b4c4e66aa38': `Group Info`, +'s005053d82b712e0a': `Notes`, +'s634448e4942cf452': `Edit the notes attribute of this group to add notes here.`, +'sa982875b258fea07': `Successfully added user to group(s).`, +'s1bd5920d8adf2bd5': `Groups to add`, +'sd9f67fbf3f86efcf': `Add group`, +'s5f71fa3c53828e30': `Remove from Group(s)`, +'sb4c9ed2a487b238f': str`Are you sure you want to remove user ${0} from the following groups?`, +'sea4f08110bb8f15d': `Remove`, +'s964f6725aeb7662f': `Add Group`, +'s65ca2f256ea09c11': `Add to existing group`, +'s505fbbdcbc6aa921': `Add new group`, +'sdb53ccdd6174e6e3': `Successfully added user(s).`, +'s306a35df5d0d38bb': `Users to add`, +'s424f57afae0caac4': `Add users`, +'s7220fcf4fec4e0df': `Remove Users(s)`, +'s5d7748b1d2363478': str`Are you sure you want to remove the selected users from the group ${0}?`, +'s720594461542943f': `Add User`, +'s4c41f3f4c23e8eaa': `Warning: This group is configured with superuser access. Added users will have superuser access.`, +'scee721983b1c28d0': `Add existing user`, +'sd600334ec2c39b74': `Create user`, +'s824e0943a7104668': str`This user will be added to the group "${0}".`, +'s8afc8c5aafb392d3': `Radius`, +'s3abecf1e778c9625': `See more here:`, +'saa8939ac88a76f98': `Last seen`, +'s1e176e35c828318c': `Hostname`, +'sa43153d53ae65063': `Unknown type`, +'s9ee92717d7f63247': `Detailed health (one instance per column, data is cached so may be out of date)`, +'sa85cfb884c17d85d': `Verify Kubernetes API SSL Certificate`, +'s74475586afc1fb0f': `Select type`, +'se78364ee913ae2bd': `New outpost integration`, +'s68d69ad0271c8ef6': `Create a new outpost integration.`, +'s911a27022aba349f': `Create and bind Policy`, +'sddb040c47daae56b': `Bind existing policy`, +'s5f5bf4ef2bd93c04': `Group mappings can only be checked if a user is already logged in when trying to access this source.`, +'s6c607d74bdfe9f36': `User mappings can only be checked if a user is already logged in when trying to access this source.`, +'s6b1ed7507f26cb4a': `Failure result`, +'s2e422519ed38f7d8': `Pass`, +'s81a45c4fd11e8e1a': `Don't pass`, +'s95b73e0f4e47eb9a': `Result used when policy execution fails.`, +'s15b46b78edebb20a': `Are you sure you want to clear the policy cache? This will cause all policies to be re-evaluated on their next usage.`, +'sdbccb39a658f0e45': `New policy`, +'sf693300708a40d2c': `Create a new policy.`, +'sb6c3bf5489d7556e': `Example context data`, +'s4a697f0b36c4fe83': `Active Directory User`, +'s9277b90db38e1983': `Active Directory Group`, +'sc2e03590269d5a10': `New property mapping`, +'s713e8666ed70f8b3': `Create a new property mapping.`, +'sa6c0ba4910c7ad7f': `Assigned to application (backchannel) `, +'s0b3bf19b31dd6bac': `Try the new application wizard`, +'sa18e1c6e0e6f16cc': `The new application wizard greatly simplifies the steps required to create applications and providers.`, +'s01ef54f5d7c6ed47': `Try it now`, +'s58d1eb482059da12': `New provider`, +'sa661ea7d7a50f2e9': `Create a new provider.`, +'s9103a949a3963aa9': `Successfully updated role.`, +'sdf87c5661b31359e': `Successfully created role.`, +'s3484b1e6d0b5335f': `Manage roles which grant permissions to objects within authentik.`, +'s259de999919316db': `Role(s)`, +'sc615309d10a9228c': `RBAC is in preview.`, +'s2ffad156e8332f04': `Update Role`, +'sc5f923729564fbf3': `Create Role`, +'sf485014051ad0cf7': `Successfully assigned permission.`, +'sdeb90bfd8a80b86b': `Permissions to add`, +'s36247910d67421e1': `Select permissions`, +'sc92c1a54034e21cc': `Assign`, +'scd84d10ee9137070': `Assign permission to role`, +'s67e136af8fc1107b': `Assign permission`, +'sb923723d27df40ba': `Permission(s)`, +'sc5fb00b25c7f5a02': `Permission`, +'s14bfa8fd1bec8889': `Role doesn't have view permission so description cannot be retrieved.`, +'s7e796fe83982863f': str`Role ${0}`, +'s526e2c66bd51ff5f': `Role Info`, +'s9cc631505c17b028': `Assigned global permissions`, +'s8f85a0e678846080': `Assigned object permissions`, +'se12969ade44cd2b6': `New source`, +'s19b09f4fc72175d1': `Create a new source.`, +'s8a67b33a0d70d322': `Import Duo device`, +'s254a9a23dc1635df': `Import devices`, +'sd8417b41ca27bc8f': `New stage`, +'s293801033f9fc0d0': `Create a new stage.`, +'s92921878e886e36d': `Duration`, +'se7e1ababbc4868b8': str`${0} seconds`, +'s14bf17e2a1a2c381': `Restart task`, +'secbfd13bdae95a59': `User settings flow`, +'s523160b433311521': `If set, users are able to configure details of their profile.`, +'s134177568525dbc8': `Device code flow`, +'s7b298427bdea81ae': `If set, the OAuth Device Code profile can be used, and the selected flow will be used to enter the code.`, +'s04bfd02201db5ab8': `Set custom attributes using YAML or JSON. Any attributes set here will be inherited by users, if the request is handled by this tenant.`, +'sbd34d118bcb1aaf2': `API Token`, +'se31d92bea7f3a186': `Used to access the API programmatically`, +'sfd586951c75eb291': `App password.`, +'s59bf194136d0d13a': `Used to login using a flow executor`, +'se9c07cf256774d81': `Editing is disabled for managed tokens`, +'scc3487e74c5a3e89': `Copy token`, +'sec5cdfa358f9dbf7': `Warning: Adding the user to the selected group(s) will give them superuser permissions.`, +'s3d2a8b86a4f5a810': str`Successfully created user and added to group ${0}`, +'s5a802e46a033c8af': `User's primary identifier. 150 characters or fewer.`, +'se6a13beff646557b': str`Successfully updated ${0} ${1}`, +'sd8051c26e155f043': `Assign permission to user`, +'s1455753daa00f1bc': `User doesn't have view permission so description cannot be retrieved.`, +'sf05c700a1250824e': `Confirmed`, +'s9f9492d30a96b9c6': `User type`, +'scef2eb6a2bfe3110': `Internal users might be users such as company employees, which will get access to the full Enterprise feature set.`, +'sf66389b04fcc219c': `External users might be external consultants or B2C customers. These users don't get access to enterprise features.`, +'s77e8668a27dbc402': `Service accounts should be used for machine-to-machine authentication or other automations.`, +'saf6097bfa25205b8': `A copy of this recovery link has been placed in your clipboard`, +'s5b8ee296ed258568': `The current tenant must have a recovery flow configured to use a recovery link`, +'s510c7add9e24c306': `Hide deactivated user`, +'s0924f51b028233a3': `<No name set>`, +'s895514dda9cb9c94': `Create recovery link`, +'s94055b4eb957dc8f': `User folders`, +'s028d385389b5aac0': `Lock the user out of this system`, +'sd2122c514f0778b5': `Allow the user to log in and use this system`, +'s43fe853bf219a9b8': `Temporarily assume the identity of this user`, +'se28b5f3fcadaeeb1': `Enter a new password for this user`, +'s6f5bb31e2733ecd5': `Create a link for this user to reset their password`, +'se5c795faf2c07514': `Create Recovery Link`, +'sc44bae5cde0083fa': `Actions over the last week (per 8 hours)`, +'sb57dbcda1929c642': `Edit the notes attribute of this user to add notes here.`, +'sb6770fa90be6d8b3': `OAuth Refresh Tokens`, +'s28b3de1561da72b3': `MFA Authenticators`, +'sa3a3e09b88ed9791': `Assigned permissions`, +'s67ac11d47f1ce794': `WebAuthn requires this page to be accessed via HTTPS.`, +'se9e9e1d6799b86a5': `WebAuthn not supported by browser.`, +'s71c5d51d5a357dbd': `Don't show this message again.`, +'s0fbf6dc6a1966408': `Next`, +'sc16e00a7a8b2fde2': `Back`, +'sb3d4f79d9d8b71e5': `Submit`, +'s2da4aa7a9abeb653': `Pseudolocale (for testing)`, +'sf1868dc19e3917bb': `Spanish`, +'s63e71d20d1eaca93': `German`, +'s03f49e598ffb11cc': `Polish`, +'se3e6af2ce24d80e8': `Chinese (traditional)`, +'s4660da32fb311ac0': `Taiwanese Mandarin`, +'s354e0a9f146d2869': `Chinese (simplified)`, +'s2ed8eb02525a920a': str`${0} hour(s) ago`, +'s98327528f00365a7': `Failed to fetch data.`, +'s08df8d0a773a3ea0': `Remove item`, +'s7df5b92a3f93544f': `Warning: The current user count has exceeded the configured licenses.`, +'s0141f42936495787': `Click here for more info.`, +'se33b158a1ec02a09': str`Successfully deleted ${0} ${1}`, +'s5819a49638f6d7cb': str`Are you sure you want to delete ${0} ${1}?`, +'sfefce784ec55868f': `Select an object.`, +'s04ceadb276bbe149': `Loading options...`, +'s90760e5e02e95dfe': `Refresh Tokens(s)`, +'sb37880a2a7288ef0': `Update Permissions`, +'saabeb4cab074b0b9': `User Object Permissions`, +'s8489d5559dda260c': `Role Object Permissions`, +'s5da52af9b083c29a': `Model`, +'s78ab26da7f067de8': `Select permissions to grant`, +'sca7fed2bef53cb99': `Role`, +'s5ee6f1b84e9ebc69': `Assign to new role`, +'s4afb26a8fae257e9': `Directly assigned`, +'sf79f8681e5ffaee2': `Assign to new user`, +'sfd44ce578f643145': `Failed to fetch objects.`, +'s5f4586bc1e2740e6': `Clear search`, +'sde1907073fd96017': `(Current session)`, +'sbb8ad22c83d375b1': `The following keywords are supported:`, +'s7181a5504472e856': `Apply changes`, +'sad59707375956ad2': `Finish`, +'s4090dd0c0e45988b': `Request ID`, +'s4d7fe7be1c49896c': `You may close this page now.`, +'s28cbd874ba450b4e': `Less details`, +'s8fa26f65aed77c96': `More details`, +'s3fb39fc45e840f78': `Refer to documentation`, +'sf34026321b35315c': `Either no applications are defined, or you don’t have access to any.`, +'s3e99ea082ca5ade9': `Failed to fetch`, +'s2152f3482784705f': `Recent events`, +'scefe482c547fb3f3': str`Based on ${0}`, +'s1f1c857c0c4250e4': str`${0} day(s) ago`, +'s477de089b505a6ea': `SCIM Provider`, +'s8a75e83497a183a2': `Healthy`, +'sbf9c5c5a8e5efad4': `Failed`, +'se4cd073c125382af': `Unsynced / N/A`, +'se2b29e6cfe59414c': `UI Settings`, +'s4498e890d47a8066': `OAuth2/OIDC (Open Authorization/OpenID Connect)`, +'sc2cedfb22488ccb2': `Modern applications, APIs and Single-page applications.`, +'s4f2e195d09e2868c': `LDAP (Lightweight Directory Access Protocol)`, +'sffd5481034a1bd41': `Provide an LDAP interface for applications and users to authenticate against.`, +'s836148f721d8913b': `Transparent Reverse Proxy`, +'s945a6b94361ee45b': `For transparent reverse proxies with required authentication`, +'s7f5bb0c9923315ed': `Forward Auth (Single Application)`, +'sdc9a6ad1af30572c': `For nginx's auth_request or traefik's forwardAuth`, +'sf8008d2d6b064b95': `Forward Auth (Domain Level)`, +'sfc31264ef7ff86ef': `For nginx's auth_request or traefik's forwardAuth per root domain`, +'sfa8a1ffa9fee07d3': `SAML (Security Assertion Markup Language)`, +'s40830ec037f34626': `Configure SAML provider manually`, +'s848a23972e388662': `RADIUS (Remote Authentication Dial-In User Service)`, +'sea9fc40dfd1d18b1': `Configure RADIUS provider manually`, +'s3e902999ddf7b50e': `SCIM (System for Cross-domain Identity Management)`, +'sa1b0052ae095b9b3': `Configure SCIM provider manually`, +'s15831fa50a116545': `Saving Application...`, +'s823abdb61543a826': `Authentik was unable to save this application:`, +'s848288f8c2265aad': `Your application has been saved`, +'scda8dc24b561e205': `There was an error in the application.`, +'sdaca9c2c0361ed3a': `Review the application.`, +'sb50000a8fada5672': `There was an error in the provider.`, +'s21f95eaf151d4ce3': `Review the provider.`, +'s9fd39a5cb20b4e61': `There was an error`, +'s7a6b3453209e1066': `There was an error creating the application, but no error message was sent. Please review the server logs.`, +'s8915e64b8b999bfe': `Cached binding`, +'s842d690eb3c11762': `Flow is executed and session is cached in memory. Flow is executed when session expires`, +'s6a66759749bf31ed': `Direct binding`, +'se0adaf83627104fb': `Always execute the configured bind flow to authenticate the user`, +'s9065fcccd837a679': `Cached querying`, +'s30d0d0e6c626a234': `The outpost holds all users and groups in-memory and will refresh every 5 Minutes`, +'sffc14b8200a9f938': `Direct querying`, +'sdce4680288083fe3': `Always returns the latest data, but slower than cached querying`, +'s1889ba2eaeec2f1e': `When enabled, code-based multi-factor authentication can be used by appending a semicolon and the TOTP code to the password. This should only be enabled if all users that will bind to this provider have a TOTP device configured, as otherwise a password may incorrectly be rejected if it contains a semicolon.`, +'s4647b2c92638d6fd': `The certificate for the above configured Base DN. As a fallback, the provider uses a self-signed certificate.`, +'s2acef4f6ba39bf11': `DNS name for which the above configured certificate should be used. The certificate cannot be detected based on the base DN, as the SSL/TLS negotiation happens before such data is exchanged.`, +'s1a711c19cda48375': `Configure LDAP Provider`, +'s67d858051b34c38b': `Method's display Name.`, +'s319040353f479853': `Flow used for users to authenticate.`, +'se5973e7c8ba0fc71': `Bind mode`, +'scef3f4ad80abbd22': `Configure how the outpost authenticates requests.`, +'s254d527e3a53dbb7': `Code-based MFA Support`, +'scd247ffad6e04ac0': `TLS Server name`, +'s9368e965b5c292ab': `Configure OAuth2/OpenId Provider`, +'sa72a3bd1e7e89926': `Flow used when a user access this provider and is not authenticated.`, +'sde0ad51b14f77cf6': `Redirect URIs/Origins (RegEx)`, +'sbea3db12fd799210': `Access Token validity`, +'s821f6014c1a435b9': `Refresh Token validity`, +'s00c2db16ea9bc263': `Configure how long refresh tokens are valid for.`, +'se2adaf0371ffcd65': `Machine-to-Machine authentication settings`, +'s33318837e6c54a9b': `Trusted OIDC Sources`, +'s22e566052f7bec81': `JWTs signed by certificates configured in the selected sources can be used to authenticate to this provider.`, +'sf5cbccdc6254c8dc': `Configure Proxy Provider`, +'sf6d46bb442b77e91': `AdditionalScopes`, +'sb488dee0be434f7e': `Authentication settings`, +'s23cee624c735f266': `Intercept header authentication`, +'sc007cca5af67eae0': `When enabled, authentik will intercept the Authorization header to authenticate the request.`, +'s36e630ba56617556': `Send HTTP-Basic Authentication`, +'s9d5796a4b9b7560e': `Send a custom HTTP-Basic Authentication header based on values from authentik.`, +'h10ef80d434185070': html`Use this provider with nginx's auth_request or traefik's + forwardAuth. Each application/domain needs its own provider. + Additionally, on each domain, /outpost.goauthentik.io must be + routed to the outpost (when using a managed outpost, this is done for you).`, +'s2c8c6f89089b31d4': `Configure Radius Provider`, +'sb95baab425322600': `Shared secret`, +'s9e9316a6b0c16231': `Client Networks`, +'s7f2dcf01f7a8c0b7': `List of CIDRs (comma-seperated) that clients can connect from. A more specific + CIDR will match before a looser one. Clients connecting from a non-specified CIDR + will be dropped.`, +'sfe906cde5dddc041': `Configure SAML Provider`, +'sf54c562d8a10ce77': `Also known as EntityID.`, +'sb3defbacd01ad972': `Property mappings used for user mapping.`, +'s43c1f927936f0a02': `Assertion not valid on or after current time + this value.`, +'s0dd00fbaba08748a': `Session not valid on or after current time + this value.`, +'s7ccce0ec8d228db6': `Configure SCIM Provider`, +'sb21f33b039c86322': `SCIM base url, usually ends in /v2.`, +'s33ed903c210a6209': `Token to authenticate with. Currently only bearer authentication is supported.`, +'sfc8bb104e2c05af8': `User filtering`, +'sc0d0890fbd46ef62': `Exclude service accounts`, +'s23ab136ad85f0ad2': `Only sync users within the selected group.`, +'sfdedc3b0b2b7ce3d': `Attribute mapping`, +'sd7728d2b6e1d25e9': `Property mappings used for group creation.`, +'s4bd386db7302bb22': `Create With Wizard`, +'s0c9670f429e74283': `New application`, +'s3ba9b8aeb686d9f7': `Match events created by selected model. When left empty, all models are matched.`, +'s9307f3dbb07a73b5': `Only fail the policy, don't invalidate user's password`, +'se2cc93bd2647baec': `Static rules`, +'s1293ad87acc7a609': `HaveIBeenPwned settings`, +'s3fd219b045193507': `zxcvbn settings`, +'s28d84abfbaf555ea': `Score threshold`, +'s7b3148ffba9f4527': `If the password's score is less than or equal this value, the policy will fail.`, +'sd94e99af8b41ff54': `0: Too guessable: risky password. (guesses &lt; 10^3)`, +'sc926385d1a624c3a': `1: Very guessable: protection from throttled online attacks. (guesses &lt; 10^6)`, +'s8aae61c41319602c': `2: Somewhat guessable: protection from unthrottled online attacks. (guesses &lt; 10^8)`, +'sc1f4b57e722a89d6': `3: Safely unguessable: moderate protection from offline slow-hash scenario. (guesses &lt; 10^10)`, +'sd47f3d3c9741343d': `4: Very unguessable: strong protection from offline slow-hash scenario. (guesses &gt;= 10^10)`, +'s2f8c4cf12350a36c': `Check static rules`, +'sd75a9a71309fb387': `Check haveibeenpwned.com`, +'se5cb18408df3284e': `For more info see:`, +'scef7abb8456b06d6': `Check zxcvbn`, +'sdfdb58cd232b363d': `Password strength estimator created by Dropbox, see:`, +'scf4afecb0f1e69b2': `Invalid login attempts will decrease the score for the client's IP, and the +username they are attempting to login as, by one.`, +'s8323a9af28e10502': `The policy passes when the reputation score is below the threshold, and +doesn't pass when either or both of the selected options are equal or above the threshold.`, +'s95f09b229a0a0bb0': `Confidential clients are capable of maintaining the confidentiality of their credentials such as client secrets`, +'s51c6b8403c2dc5d9': `Public clients are incapable of maintaining the confidentiality and should use methods like PKCE. `, +'sccc47f82044453f9': `Based on the User's hashed ID`, +'sbd5be4fb7442a34c': `Based on the User's ID`, +'sc9cf9ecaf9e5d67e': `Based on the User's UUID`, +'s4291727352c4f295': `Based on the User's username`, +'sd62cfc27ad4aa33b': `Based on the User's Email`, +'s55eb75bedf96be0f': `This is recommended over the UPN mode.`, +'sf80e9547166117e6': `Based on the User's UPN`, +'sde949d0ef44572eb': `Requires the user to have a 'upn' attribute set, and falls back to hashed user ID. Use this mode only if you have different UPN and Mail domains.`, +'sde56783222b527d6': `Each provider has a different issuer, based on the application slug`, +'sa8384c9c26731f83': `To allow any redirect URI, set this value to ".*". Be aware of the possible security implications this can have.`, +'s417b90913e05bc17': `Preview`, +'s59f5eda30a904b75': `JWKS URL`, +'s453b0c150a7ca58e': `Example JWT payload (for currently authenticated user)`, +'sff0ac1ace2d90709': `Use this provider with nginx's auth_request or traefik's forwardAuth. Each application/domain needs its own provider. Additionally, on each domain, /outpost.goauthentik.io must be routed to the outpost (when using a managed outpost, this is done for you).`, +'s2345170f7e272668': `Unknown proxy mode`, +'sd539548ca4c71619': `Additional scopes`, +'s7ba9677d069e5f02': `Caddy (Standalone)`, +'s09b671b120443043': `Update Radius Provider`, +'scb58b8a60cad8762': `Default relay state`, +'s6827a456c9dfc6ee': `When using IDP-initiated logins, the relay state will be set to this value.`, +'s44b1f042790cd1a2': `SAML Configuration`, +'sba999428083abce3': `EntityID/Issuer`, +'scd2984ee5552643a': `SSO URL (Post)`, +'saa79b47f60c66458': `SSO URL (Redirect)`, +'s2da51a6287118ba8': `SSO URL (IdP-initiated Login)`, +'s0a57e911e457302b': `SLO URL (Post)`, +'s1e7308bb1ca323e1': `SLO URL (Redirect)`, +'s382b702673776873': `Example SAML attributes`, +'sea3bfc143ced73db': `NameID attribute`, +'s019555b5a442aa00': `Property mappings used to user mapping.`, +'sadadfe9dfa06d7dd': `No sync status.`, +'s2b1c81130a65a55b': `Sync currently running.`, +'s2f0f6691de0b0388': `Warning: Provider is not assigned to an application as backchannel provider.`, +'sc6c575c5ff64cdb1': `Update SCIM Provider`, +'s4476e9c50cfd13f4': `Global status`, +'sd21a971eea208533': `Vendor`, +'s1024166475850a65': `Use Server URI for SNI verification`, +'se65beb94fffc3c4b': `Required for servers using TLS 1.3+`, +'s000ee3e634868b3c': `TLS Client authentication certificate`, +'s5506b35a1bceb141': `Client certificate keypair to authenticate against the LDAP Server's Certificate.`, +'sfbc59ff17a73503d': `User path`, +'sf36170f71cea38c2': `Connectivity`, +'sf3fec8353106ac2f': str`OAuth Source ${0}`, +'s199b55513a739f43': `OIDC Well-known URL`, +'s8b149b30b5b523ef': `OIDC well-known configuration URL. Can be used to automatically configure the URLs above.`, +'s9db2c836ade1339c': `OIDC JWKS URL`, +'s4b2a1b657c160f5b': `JSON Web Key URL. Keys from the URL will be used to validate JWTs from this source.`, +'s2df0b65125600de9': `OIDC JWKS`, +'s02de8d9e8583b480': `Raw JWKS data.`, +'sb35c08e3a541188f': `Also known as Client ID.`, +'sd46fd9b647cfea10': `Also known as Client Secret.`, +'sa61966cd83b4924c': `Additional scopes to be passed to the OAuth Provider, separated by space. To replace existing scopes, prefix with *.`, +'s5c1dc164c89ac13e': `Unknown provider type`, +'s355b21b89ce5d9c5': `Details`, +'s2feae323f46479f8': `These bindings control which users can access this source. + You can only use policies here as access is checked before the user is authenticated.`, +'s995535e7af30d754': `Use the user's email address, but deny enrollment when the email address already exists`, +'s542ecb4130f6cea5': `Link to a user with identical username. Can have security implications when a username is used with another source`, +'s2a1debf34e5aeba4': `Use the user's username, but deny enrollment when the username already exists`, +'s81ce0d54727f42d2': `Unknown user matching mode`, +'s6f96a78d81ef277c': `Post-auto binding`, +'sc2c70fd56f5d0b48': `Post binding but the request is automatically sent and the user doesn't have to confirm.`, +'s3198c384c2f68b08': `Time offset when temporary users should be deleted. This only applies if your IDP uses the NameID Format 'transient', and the user doesn't log out manually.`, +'s5adafce329aaa853': `Authenticator type name`, +'s23e6a57201fba25e': `Display name of this authenticator, used by users when they enroll an authenticator.`, +'s5b6b6e2cb884d59f': `Duo Auth API`, +'s88870d7e499e848b': `Duo Admin API (optional)`, +'s7f13f4a2d0370cf6': `When using a Duo MFA, Access or Beyond plan, an Admin API application can be created. + This will allow authentik to import devices automatically.`, +'s71633a67e0d7c0e4': `Successfully imported device.`, +'s7d61705dfb120d7b': `The user in authentik this device will be assigned to.`, +'s5eaf1d304e03ed4b': `Duo User ID`, +'s003847d8bc01c676': `The user ID in Duo, can be found in the URL after clicking on a user.`, +'sbbc806ea3987c781': `Automatic import`, +'s77299a9d3dd932cd': str`Successfully imported ${0} devices.`, +'s6a615f6165ef01c9': `Start automatic import`, +'s9f83d7768aea548a': `Or manually import`, +'sa92398dba8b12d85': `Mapping`, +'s38162f615710c7b4': `Modify the payload sent to the custom provider.`, +'s0ae0072614320ae2': `Hash phone number`, +'s9ca3310e1999fd5b': `If enabled, only a hash of the phone number will be saved. This can be done for data-protection reasons. Devices created from a stage with this enabled cannot be used with the authenticator validation stage.`, +'s7caa8f7edb920909': `The number of tokens generated whenever this stage is used. Every token generated per stage execution will be attached to a single static device.`, +'s4aacc4e0277c1042': `Token length`, +'s6931695c4f563bc4': `The length of the individual generated tokens. Can be increased to improve security.`, +'se2e9f5a32c93e5f7': `Last validation threshold`, +'s951281efc92b03fc': `If any of the devices user of the types selected above have been used within this duration, this stage will be skipped.`, +'s1e0de9c4f66dc371': `WebAuthn User verification`, +'scae166352a31032c': `Configuration stages`, +'s6941a67f0038ba4c': `Stages used to configure Authenticator when user doesn't have any compatible devices. After this configuration Stage passes, the user is not prompted again.`, +'s7e5af9c6ba6f5cc6': `When multiple stages are selected, the user can choose which one they want to enroll.`, +'s24bce955914b1f0a': `Stage used to configure a WebAuthn authenticator (i.e. Yubikey, FaceID/Windows Hello).`, +'s6a3cf855140b9511': `Required: User verification must occur.`, +'sc498a3b05cfe2b08': `Preferred: User verification is preferred if available, but not required.`, +'s9d2239d2b0402795': `Discouraged: User verification should not occur.`, +'s428b7859907f6db2': `Required: The authenticator MUST create a dedicated credential. If it cannot, the RP is prepared for an error to occur`, +'s33e3766d4a02b042': `Preferred: The authenticator can create and store a dedicated credential, but if it doesn't that's alright too`, +'sfb852dd507c25c24': `Discouraged: The authenticator should not create a dedicated credential`, +'sfffba7b23d8fb40c': `This stage checks the user's current session against the Google reCaptcha (or compatible) service.`, +'s39e436de1dc4df4f': `JS URL`, +'s170b705c55ecb2ae': `URL to fetch JavaScript from, defaults to recaptcha. Can be replaced with any compatible alternative.`, +'s275021658614ce9e': `API URL`, +'sc8a79fddea3ab4a9': `URL used to validate captcha response, defaults to recaptcha. Can be replaced with any compatible alternative.`, +'se0c660020d9cf5b7': `Offset after which consent expires.`, +'s7f68101a50f526ee': `Statically deny the flow. To use this stage effectively, disable *Evaluate when flow is planned* on the respective binding.`, +'s1cc306d8e28c4464': `Deny message`, +'s6985c401e1100122': `Message shown when this stage is run.`, +'sdb861d9906f18ac2': `Throw error?`, +'s62e7f6ed7d9cb3ca': `Pretend user exists`, +'s52bdc80690a9a8dc': `When enabled, the stage will always accept the given user identifier and continue.`, +'s0295ce5d6f635d75': `Source settings`, +'sa84a7fd11ba85e88': `When selected, the invite will only be usable with the flow. By default the invite is accepted on all flows with invitation stages.`, +'sd18b18f91b804c3f': `Custom attributes`, +'s96dcf7ec8342c335': `Invitation not limited to any flow, and can be used with any enrollment flow.`, +'s1b42b49e7b392013': `Update Invitation`, +'s63e54b86e2a2cc43': `Text Area: Multiline text input`, +'s4e5646b23e41231f': `Text Area (read-only): Multiline text input, but cannot be edited.`, +'s1c5574968b29ab1c': `Password: Masked input, multiple inputs of this type on the same prompt need to be identical.`, +'s34edeb18f887161d': `Radio Button Group (fixed choice)`, +'s57730b6870e8916c': `Dropdown (fixed choice)`, +'sd1f81284eeb7b503': `File`, +'sdd4bd4224c4e943d': `authentik: Locale: Displays a list of locales authentik supports.`, +'saf84e7732a9e1336': `Preview errors`, +'sb71ace8e9b35c749': `Data preview`, +'s4d53f4b7ff33bedd': `Unique name of this field, used for selecting fields in prompt stages.`, +'s37dbfe2133b74d2d': `Interpret placeholder as expression`, +'s4a953e6234cb4808': `When checked, the placeholder will be evaluated in the same way a property mapping is. + If the evaluation fails, the placeholder itself is returned.`, +'sf76ead4c4708dd06': `Optionally provide a short hint that describes the expected input value. + When creating a fixed choice field, enable interpreting as expression and return a + list to return multiple choices.`, +'saa7ba2057bd524a1': `Interpret initial value as expression`, +'sd60415c7666859f0': `When checked, the initial value will be evaluated in the same way a property mapping is. + If the evaluation fails, the initial value itself is returned.`, +'sa9c7044d9fd1f3e6': `Initial value`, +'seab35681cbf36755': `Optionally pre-fill the input with an initial value. + When creating a fixed choice field, enable interpreting as expression and + return a list to return multiple default choices.`, +'sbf4ef82e04772a4e': `Delete the currently pending user. CAUTION, this stage does not ask for confirmation. Use a consent stage to ensure the user is aware of their actions.`, +'sf7949fbbab2eb566': `Different browsers handle session cookies differently, and might not remove them even when the browser is closed.`, +'s53bbc3ae4b5fa1d0': `See here.`, +'s2512334108f06a5a': `Stay signed in offset`, +'s1608b2f94fa0dbd4': `If set to a duration above 0, the user will have the option to choose to "stay signed in", which will extend their session by the time specified here.`, +'s542a71bb8f41e057': `Terminate other sessions`, +'sa920231366378c90': `When enabled, all previous sessions of the user will be terminated.`, +'s927398c400970760': `Write any data from the flow's context's 'prompt_data' to the currently pending user. If no user + is pending, a new user is created, and data is written to them.`, +'sb379d861cbed0b47': `Never create users`, +'s81d673755a86a4f0': `When no user is present in the flow context, the stage will fail.`, +'s9940e3f073fbdbd4': `Create users when required`, +'s5414356cc10e80fe': `When no user is present in the the flow context, a new user is created.`, +'s57337099d96ce6d2': `Always create new users`, +'se80dd66f23b4fc39': `Create a new user even if a user is in the flow context.`, +'s89d1847b5e4ad225': `User path template`, +'s32babfed740fd3c1': `User type used for newly created users.`, +'s18269e3889d6fa54': `Path new users will be created under. If left blank, the default path will be used.`, +'s09f0c100d0ad2fec': `Open Wizard`, +'sf2ef885f7d0a101d': `Demo Wizard`, +'s77505ee5d2e45e53': `Run the demo wizard`, +'sdc5690be4a342985': `The token has been copied to your clipboard`, +'s7f3edfee24690c9f': `The token was displayed because authentik does not have permission to write to the clipboard`, +'sc1589121ae2f5f92': `Enter the code shown on your device.`, +'s455a8fc21077e7f9': `You've successfully authenticated your device.`, +'s2ddbebcb8a49b005': `Waiting for authentication...`, +'sb15fe7b9d09bb419': `If no Plex popup opens, click the button below.`, +'sbc625b4c669b9ce8': `Open login`, +'sc2ec367e3108fe65': `Duo activation QR code`, +'seb0c08d9f233bbfe': `Please enter the code you received via SMS`, +'sa84adff85b5e505c': `Open your two-factor authenticator app to view your authentication code.`, +'s844fea0bfb10a72a': `Authentication code`, +'s3cd84e82e83e35ad': `Please enter your code`, +'sbcf8604929b6a27a': `Sending Duo push notification`, +'s7073489bb01b3c24': `Application already has access to the following permissions:`, +'s98dc556f8bf707dc': `Application requires following new permissions:`, +'s091d5407b5b32e84': `Or`, +'sac17f177f884e238': `Stay signed in?`, +'s859b2e00391da380': `Select Yes to reduce the number of times you're asked to sign in.`, +'s4a6aa26413287069': `Successfully updated details`, +'s6fcd9b5a87ceccd6': `Open settings`, +'s8c05cccd470f6b5f': `No settings flow configured.`, +'s30205d424e710818': `Successfully disconnected source`, +'s67dedada007d4067': str`Failed to disconnected source: ${0}`, + }; + \ No newline at end of file diff --git a/web/packages/localization/src/locales/fr.js b/web/packages/localization/src/locales/fr.js new file mode 100644 index 000000000..5c1f56cf2 --- /dev/null +++ b/web/packages/localization/src/locales/fr.js @@ -0,0 +1,1719 @@ + + // Do not modify this file by hand! + // Re-generate this file by running lit-localize + + import {html} from 'lit'; + import {str} from '@lit/localize'; + + /* eslint-disable no-irregular-whitespace */ + /* eslint-disable @typescript-eslint/no-explicit-any */ + + export const templates = { + 'h10ef80d434185070': html`Utiliser ce fournisseur avec nginx auth_request ou traefik + forwardAuth. Chaque application/domaine a besoin de son fournisseur. + De plus, sur chaque domaine, /outpost.goauthentik.io doit être + routé vers l'avant-post (lors de l'utilisation d'un avant-poste managé, cela est fait automatiquement).`, +'s000ee3e634868b3c': `Certificat TLS d'authentification client`, +'s003847d8bc01c676': `L'ID utilisateur Duo, peut être trouvé dans l'URL en cliquant sur un utilisateur,`, +'s004e9a2c90f23900': `Persistant`, +'s005053d82b712e0a': `Notes`, +'s00c2db16ea9bc263': `Configurer la durée de validité des jetons de rafraîchissement.`, +'s00c8354318addfa0': `Politique/s`, +'s01088b6625d2443b': `URL de rappel`, +'s0141f42936495787': `Cliquez ici pour plus d'informations.`, +'s01794c0ee3629c1b': `Informations du flux`, +'s019555b5a442aa00': `Mappages de propriété utilisés pour la correspondance des utilisateurs.`, +'s0195c0df7294228a': `Voir plus à propos du support OCI ici :`, +'s01a3a7f48ee4edaf': `Flux d'inscription facultatif, qui sera accessible en bas de page.`, +'s01ef54f5d7c6ed47': `Essayer maintenant`, +'s02240309358f557c': `Sévérité inconnue`, +'s026555347e589f0e': `Champ d'unicité de l'objet`, +'s02839b01844d6ca8': `Date de création`, +'s0285b4bd69130fa3': `Installer une licence`, +'s028be8989873f001': `URL d'authorisation`, +'s028d385389b5aac0': `Verrouiller l'utilisateur hors de ce système`, +'s0295ce5d6f635d75': `Paramètres de la source`, +'s02b3fade1795d03f': `Se connecter au serveur LDAP sur le port 389 :`, +'s02b632a9ac24a824': str`Vu pour la dernière fois : + ${0}`, +'s02de8d9e8583b480': `Données JWKS brutes.`, +'s030ac0829bb50a49': str`Politique + ${0}`, +'s037bc6d25a03c3c8': `Transport mis à jour avec succès`, +'s0382d73823585617': str` + ${0}: + ${1}`, +'s03907d7a66c6164e': `Nom d'affichage de l'application`, +'s03970aa76a09982d': `Intégration`, +'s039b6434e8a75560': str`Supprimer + ${0}`, +'s03f42eea72154959': `Nom d'utilisateur`, +'s03f49e598ffb11cc': `Polonais`, +'s03fb3fa232f0434a': `Secret du client`, +'s03fd2c252ad7972a': `Lien de récupération courriel`, +'s0410779cb47de312': `Modèle de chemin pour les utilisateurs créés. Utilisez des espaces réservés comme \`%(slug)s\` pour insérer le slug de la source.`, +'s042baf59902a711f': `Politique`, +'s04440099d97c0bef': `Éditer l'étape`, +'s045c3b86aae073c1': `Supprimer le compte`, +'s047a5f0211fedc72': `Forcer l'utilisation d'un avant-poste (le flux ne pourrait être exécuter que depuis un outpost).`, +'s04b7f8d6aaef3756': `Les utilisateurs de ce groupe peuvent effectuer des recherches. Si aucun groupe n'est sélectionné, aucune recherche LDAP n'est autorisée.`, +'s04bfd02201db5ab8': `Définir des attributs personnalisés en utilisant YAML ou JSON. Tous les attributs définis ici seront hérités par les utilisateurs, si la demande est traitée par ce tenant.`, +'s04c1210202f48dc9': `Veuillez entrer votre numéro de téléphone`, +'s04c5a637328c9b67': str` + ${0} - + ${1} sur + ${2}`, +'s04ceadb276bbe149': `Chargement des options...`, +'s05e395ff60af047b': `Attention : ce fournisseur n’est utilisé par aucun avant-poste.`, +'s0639662111324466': `Mode d'application des politiques`, +'s065604a41e9d1584': `Mettre à jour la source OAuth`, +'s068d4dd16d9106d0': `Icône`, +'s06ae64e621f302eb': `Licence créée avec succès.`, +'s06c163334767a381': `Créer un compte de service`, +'s06c92148da82be0d': `Changer votre mot de passe`, +'s06df3c3b6a503da8': `Champ de l'objet utilisateur dans lequel cette valeur est écrite.`, +'s070fdfb03034ca9b': `Un indice, l'assistant nouvelle application est actuellement caché`, +'s072c6d12d3d37501': `Clé de l'utilisateur HTTP-Basic`, +'s079d388d3cbfa54f': `Vérifiez les journaux`, +'s081d3c4b47a6ff83': `Si défini, les utilisateurs peuvent se désinscrire à l'aide de ce flux. Si aucun flux n'est défini, l'option n'est pas affichée.`, +'s086e1bbe7c97ea16': `Base de recherche`, +'s08a8716c214a0efb': `Données du certificat au format PEM`, +'s08c91cb1a2cd3d97': `Si activée, un champ de mot de passe est affiché sur la même page au lieu d'une page séparée. Cela permet d'éviter les attaques par énumération de noms d'utilisateur.`, +'s08df8d0a773a3ea0': `Supprimer l'élément`, +'s091d3d07b5b3076f': `OK`, +'s091d5407b5b32e84': `Ou`, +'s09205907b5b56cda': `Non`, +'s09240e07b5b8d640': `ID`, +'s09242207b5b8f83c': `IP`, +'s0924f51b028233a3': `<No name set>`, +'s09353907b5c79284': `À`, +'s09810653c832e935': `Cliquer pour changer la valeur`, +'s098237f7ccb4dc4a': `Cache de flux vidé avec succès`, +'s09b671b120443043': `Mettre à jour le fournisseur Radius`, +'s09f0c100d0ad2fec': `Lancer l'assistant`, +'s0a0ca63b967f1630': `Source(s)`, +'s0a11c2ffb8309d1a': `Pas trouvé`, +'s0a39e4f61ccafacb': `Règle mise à jour avec succès`, +'s0a5401d4419f9958': `Utilisation de la source`, +'s0a57e911e457302b': `URL SLO (Post)`, +'s0a61796c1956d32c': `Évaluer quand le flux est planifié`, +'s0a63a8be0b2b422c': `Workers`, +'s0a72e65aef45b1e8': `URI du serveur`, +'s0ae0072614320ae2': `Hacher le numéro de téléphone`, +'s0ae3395d8f48e624': `Lien de récupération généré avec succès`, +'s0af6301e76e2a2a5': `Tenant mis à jour avec succès`, +'s0b15ff11a0049cfd': `DN LDAP avec lequel les connexions et recherches sont effectuées.`, +'s0b3bf19b31dd6bac': `Essayez le nouvel l'assistant d'application`, +'s0b55a57f473ab8af': `Mettre à jour le groupe`, +'s0c135eba6017d94f': `Libellé affiché à côté/au-dessus du champ.`, +'s0c3ac7f9383a8cfd': `Transitoire`, +'s0c8c4d2bb0a9162a': `Flux sans mot de passe facultatif, qui sera accessible en bas de page. Lorsque configuré, les utilisateurs peuvent utiliser ce flux pour s'authentifier avec un authentificateur WebAuthn, sans entrer de détails.`, +'s0c9670f429e74283': `Nouvelle application`, +'s0d4268408182491d': `Utiliser TLS`, +'s0d5d05bf3d122ced': `Twilio`, +'s0dc46deb8f181baf': `Comportement de réponse invalide`, +'s0dd00fbaba08748a': `Session non valide à partir de l'heure actuelle + cette valeur.`, +'s0dd031b58ed4017c': str`Interne: ${0}`, +'s0dfc6838c9d07677': `Flux de configuration`, +'s0e03fe2dc5b9164b': `Activer cette option si votre instance authentik utilise un certificat auto-signé.`, +'s0e15f678445dfc45': `Étape utilisée pour valider tout type d'authentificateur. Cette étape devrait être utilisée en flux d'authentification ou d'autorisation.`, +'s0e427111d750cc02': `Licence téléversée avec succès.`, +'s0e516232f2ab4e04': `Jeton envoyé par SMS`, +'s0eaf755fa88c8d97': `Étape(s)`, +'s0f2e070d38cd36df': `Certificat TLS d'authentification/Pair de clé SSH`, +'s0f4c6540c30bd8b4': `Désignation`, +'s0fbf6dc6a1966408': `Suivant`, +'s1024166475850a65': `Utiliser l'URI du serveur pour la vérification SNI`, +'s10356fd921037fbf': `Flux par défaut`, +'s107bf77afb93c9b8': `Envoyez des notifications chaque fois qu'un événement spécifique est créé et correspond à des politiques.`, +'s10922bd0ac765562': `l'objet sera SUPPRIMÉ`, +'s10929ca568ae10bc': `Fournisseur(s)`, +'s10d2dbc4613397f0': `Mis à Jour`, +'s11204eeb1e27ea8f': `ACS URL`, +'s11326fd2590f4e5e': `Par défaut`, +'s113c05ef9996ca4b': `L'avant poste intégré n'est pas configuré correctement`, +'s119498d4e4cf59a6': `Modèle affecté :`, +'s11bc220e8fa9d797': `Autorisations`, +'s12146091b2b539a3': `Contenu gauche`, +'s122f308b5f198ba7': `Paire clé/certificat créée avec succès.`, +'s124f93a61ee772d6': `Paramètres avancés du protocole`, +'s128e7f5f34bfa155': `Étape de configuration d'un authentificateur statique (jetons statiques). Cette étape devrait être utilisée en flux de configuration.`, +'s1293ad87acc7a609': `Paramètres de HaveIBeenPwned`, +'s1298e361e40ee1c5': `Arrêter l'appropriation utilisateu`, +'s12de1c06a1e18cc5': `Texte (lecture seule) : Texte Simple, mais ne peut être édité.`, +'s134177568525dbc8': `Flux de code de l'appareil`, +'s13de04774ff0f210': `URL Docker`, +'s14401ff4a0cba208': str`Échec de la mise à jour + ${0} : + ${1}`, +'s145483489b87a622': `URL de déconnexion`, +'s1455753daa00f1bc': `L'utilisateur n'a pas les permissions de lecture, la description ne peut donc pas être récupérée.`, +'s14622ee6de586485': str`Tentative de connexion en tant que + ${0}`, +'s14ace18ccf4fb86d': `Augmente la compatibilité avec les gestionnaires de mots de passe et les appareils mobiles`, +'s14bf17e2a1a2c381': `Redémarrer la tâche`, +'s14bfa8fd1bec8889': `Le rôle n'a pas les permissions de lecture, la description ne peut donc pas être récupérée.`, +'s14c552fb0a4c0186': `Cette application requiert les permissions suivantes :`, +'s14c8f36e180d6bbc': `Étape créée avec succès`, +'s1575a15cee001915': `Transport créé avec succès`, +'s15831fa50a116545': `Enregistrement de l'application...`, +'s15b46b78edebb20a': `Êtes-vous sûr de vouloir vider le cache des politiques ? Cela entraînera la réévaluation de toutes les politiques lors de leur prochaine utilisation.`, +'s1608b2f94fa0dbd4': `Si défini à une durée supérieure à 0, l'utilisateur aura la possibilité de choisir de "rester connecté", ce qui prolongera sa session jusqu'à la durée spécifiée ici.`, +'s164be9a7537b99f6': `Configure le paramètres visuels et par défaut des différents domaines.`, +'s1665454e31e14941': `Sujet X509`, +'s16b9446e3a70e1f4': `Attributs`, +'s16bc281dce5685e8': `Authentificateur`, +'s170b705c55ecb2ae': `URL où télécharger le JavaScript, recaptcha par défaut. Peut être remplacé par une alternative compatible.`, +'s17a679298216aca9': `Sélectionnez les sources à afficher aux utilisateurs pour s'authentifier. Cela affecte uniquement les sources web, pas LDAP.`, +'s17d1e337f6c11c1e': `Include les demandes utilisateurs dans id_token`, +'s17f3eaf3b07ece26': `Avertissement : Le fournisseur n'est pas utilisé par une application.`, +'s1823625e6f831d73': `Personalisation`, +'s18269e3889d6fa54': `Chemin sous lequel les nouveaux utilisateurs seront créés. Si laissé vide, le chemin par défaut sera utilisé.`, +'s1828fbfc2c56379c': `Vérifier l'adresse IP`, +'s1889ba2eaeec2f1e': `Lorsqu'elle est activée, l'authentification multifactorielle basée sur un code peut être utilisée en ajoutant un point-virgule et le code TOTP au mot de passe. Cette option ne doit être activée que si tous les utilisateurs qui se lieront à ce fournisseur ont un dispositif TOTP configuré, faute de quoi un mot de passe peut être rejeté à tort s'il contient un point-virgule.`, +'s18b910437b73e8e8': `Retourner à la sélection d'appareil`, +'s19409e8712ddd369': `Ajouter un fournisseur`, +'s197420b40df164f8': `Suivre la redirection`, +'s199b55513a739f43': `OIDC Well-known URL`, +'s19b09f4fc72175d1': `Créer une nouvelle source.`, +'s1a0e95458b44d7f8': `N'importe quelle politique doit correspondre pour accorder l'accès`, +'s1a2797874b7fe852': `Mappage de la propriété NameID`, +'s1a2f8f4b3861583b': `Créer un avant-poste`, +'s1a635369edaf4dc3': `Compte de service`, +'s1a65ee08832fbfe2': `Flux et Étapes`, +'s1a711c19cda48375': `Configurer le fournisseur LDAP`, +'s1ac2653a6492b435': str` + ${0}, devrait être + ${1}`, +'s1b07757762cda372': `Vider le cache de politique`, +'s1b14062c44e5ef45': `Expiration`, +'s1b42b49e7b392013': `Mettre à Jour l'invitation`, +'s1b448a4ea79d4eef': `Aucun événement trouvé.`, +'s1b606acd76ba2c4c': `Mettre à jour le tenant`, +'s1b783856ab4aaaf3': `Aucune configuration supplémentaire n'est nécessaire.`, +'s1b88fa3df4423292': `Dernière IP`, +'s1bd5920d8adf2bd5': `Groupes à ajouter`, +'s1bf56ee106e9e711': `Liaison créée avec succès`, +'s1c2a173db0e1ec61': `Les objets appliqués à ce filtre seront des utilisateurs.`, +'s1c2fd8097e14a608': `Flux de récupération. Si laissé vide, le premier flux applicable trié par slug sera utilisé.`, +'s1c33d22492029aba': `Champ d'objet`, +'s1c5574968b29ab1c': `Mot de Passe : Entrée masquée, plusieurs entrées de ce type sur une même page odivent être identiques.`, +'s1c6ba8d100453392': `Temps en minutes durant lequel le jeton envoyé est valide.`, +'s1c8916418c334935': `ID du jeton`, +'s1c8e9816dcae6d9c': `Ce nombre est ajouté au nombre généré à partir de group.Pk pour s'assurer que ceux-ci ne sont pas trop bas pour les groupes POSIX. La valeur par défaut est 4000 pour éviter des collisions avec les groupes locaux ou les groupes primaires.`, +'s1cc0e66dbd2b5502': `Paramètres du flux`, +'s1cc306d8e28c4464': `Message de refus`, +'s1cd198d689c66e4b': `Accès à l'API`, +'s1cd264012278c047': `Exécution du flux`, +'s1cd617e7bbe278d0': `Demander le consentement de l'utilisateur. Celui-ci peut être permanent ou expirer dans un délai défini.`, +'s1cf2298d92c327a6': `Mes Applications`, +'s1cffe58249b04669': `Nom de l'application interne utilisé dans les URLs.`, +'s1d30ff9ba938e68d': `Attente (max)`, +'s1d49ec5030447643': `Avant-poste(s)`, +'s1d6e16d86961c782': `Paire(s) de clé/certificat`, +'s1d9d6c5b424fdc1f': `URL de destination de la requête initiale de login.`, +'s1e0de9c4f66dc371': `Vérification Utilisateur WebAuthn`, +'s1e176e35c828318c': `Nom d'hôte`, +'s1e36813d3504ed48': `Liaison mise à jour avec succès`, +'s1e4c3de6e12cd87b': `Nom d'utilisateur : Identique à la saisie de texte, mais vérifie et empêche les noms d'utilisateur en double.`, +'s1e7308bb1ca323e1': `URL SLO (Redirect)`, +'s1efbfc3937d565bd': `Arrière-plan`, +'s1f1c857c0c4250e4': str` +Il y a ${0} jour(s)`, +'s1f7698c061c208c9': `Ouvrir`, +'s1fc9c70610c4c67d': `Invalidation`, +'s2035f889f576bca6': `Paramètres de connexion`, +'s207e8b106806d7e4': `Lier une étape`, +'s20a0ce62823bfa97': `Supprimer les utilisateurs temporaires après`, +'s211b75e868072162': `Définissez ceci sur le domaine pour lequel vous souhaitez que l'authentification soit valide. Il doit être un domaine parent de l'URL ci-dessus. Si vous exécutez des applications sous app1.domain.tld, app2.domain.tld, définissez ceci sur 'domain.tld'.`, +'s2152f3482784705f': `Événements récents`, +'s216eb300543edd91': `Sélectionnez de quel serveur un utilisateur doit être un membre pour être autorisé à s'authentifier.`, +'s21b3058faf874368': `Avant-postes périmés`, +'s21d0e290c51a8ef9': `Set de symboles`, +'s21e3c227cc2c5873': `Séparateur : Ligne de séparation statique`, +'s21f95eaf151d4ce3': `Passer en revue le fournisseur.`, +'s2221fef80f4753a2': `Certificat de vérification TLS`, +'s2236dc563c2dbf76': `(Format : hours=-1;minutes=-2;seconds=-3).`, +'s22b0e8c5277dd5a9': `Notifiera l'utilisateur que le flux ne s'applique pas`, +'s22b10ed263b96194': `Étape factice utilisée pour les tests. Montre un simple bouton continuer et réussit toujours.`, +'s22e566052f7bec81': `Les JWT signés par des certificats configurés par les sources sélectionnées peuvent être utilisés pour s'authentifier auprès de ce fournisseur.`, +'s2345170f7e272668': `Mode proxy inconnu`, +'s2348f46ebf436671': `Ouvrir dans un nouvel onglet`, +'s239c2a351cde6d39': `Requiert l'absence d'authentification`, +'s23ab136ad85f0ad2': `Synchroniser uniquement les utilisateurs appartenant au groupe sélectionné.`, +'s23cee624c735f266': `Intercepter l'en-tête d'authentification`, +'s23de62f931f7d754': `Dernière application`, +'s23e6a57201fba25e': `Affiche le nom de cet authentificateur, utilisé par les utilisateurs quand ils inscrivent un authentificateur.`, +'s23fd4411419fca06': `Portée que le client peut spécifier pour accéder à ces propriétés.`, +'s240ff02ce3a53dee': `Clé d'intégration`, +'s24211f319e5b7e98': `Champ qui contient un identifiant unique.`, +'s2430e000b7cfefd0': `Envoyer une seule fois la notification, par exemple lors de l'envoi d'un webhook dans un canal de discussion.`, +'s2474e7fb1aec9f05': `Test`, +'s24875d5475e82526': `Source mise à jour avec succès`, +'s24bce955914b1f0a': `Étape de configuration d'un authentificateur WebAuthn (Yubikey, FaceID/Windows Hello).`, +'s24f405197ede5ebb': `Se ré-authentifier avec Plex`, +'s2512334108f06a5a': `Rester connecté en décalage`, +'s252a52330d32b900': `Métadonnées`, +'s2536ac8d32d2e63f': `Expiration des évènements à l'issue de laquelle ils seront supprimés de la base de donnée.`, +'s2543cffd6ebb6803': `Exécution de tâche système`, +'s254a9a23dc1635df': `Importer des appareils`, +'s254d527e3a53dbb7': `Support du MFA basé sur un code`, +'s256b8452664ccae4': `Configure la façon dont NameID sera créé. Si vide, la politique NameIDPolicy de la requête entrante sera appliquée.`, +'s259de999919316db': `Role(s)`, +'s25d0cd75377daf75': `Transférer l'authentification (niveau domaine)`, +'s25ec2846f6b88214': `Mappage de Webhook`, +'s26513c9dd154f041': `Toujours exiger l'approbation`, +'s2656433a3b1f7e86': `Mes applications`, +'s26bf2730430efbea': `Mode subject`, +'s2708cac1f4942708': `Plan(s)`, +'s271a7e04ff9865b1': `Contrôle comment authentik expose et interprète les informations`, +'s275021658614ce9e': `URL d'API`, +'s27586544c447d9e3': `Événements de l'utilisateur`, +'s275c956687e2e656': `Connexions échouées`, +'s276d751eb7a186cc': `Nom d'hôte de l'API`, +'s27976e94b05c6970': `Activer`, +'s27ac7a47b390e3cb': `Paires de clé/certificat`, +'s2801a48ceac691b3': `Flux d'inscription`, +'s289fce7e694b98ac': `Port SMTP`, +'s28b3de1561da72b3': `Authentificateurs MFA`, +'s28cbd874ba450b4e': `Moins de détails`, +'s28d84abfbaf555ea': `Seuil du score`, +'s28f270859c5f4d51': `L'IP de l'hôte de docker`, +'s2905c425adae99bd': `ID de l'installation`, +'s29315e374008d0c5': `Les utilisateurs ajoutés à ce groupe seront des super-utilisateurs.`, +'s293801033f9fc0d0': `Créer une nouvelle étape.`, +'s293aa6a6446fb153': `Exporter`, +'s293ab4331c1dd387': `Ceci est le nom d'utilisateur à utiliser pour de l'authentification basique ou le token à utiliser en avec Bearer token`, +'s296fbffaaa7c910a': `Obligatoire.`, +'s297a2075bd7e40db': `Politique NameID`, +'s29ec5e7889f4787f': `Politique mise à jour avec succès`, +'s2a0f60e74b478804': `Algorithme d'empreinte`, +'s2a12e0b5527ff99a': `Activer cette option va créer un groupe du même nom que l'utilisateur dont il sera membre.`, +'s2a1debf34e5aeba4': `Utiliser le nom d'utilisateur de l'utilisateur, mais refuser l'inscription si le nom d'utilisateur existe déjà.`, +'s2a2d3e7c379e9518': `Sujet du certificat`, +'s2a369bc2febb5d55': `Si aucune URI de redirection explicite n'est spécifiée, la première URI de redirection utilisée avec succès sera enregistrée.`, +'s2a64d2dca3da9b0e': str`Groupe + ${0}`, +'s2a957e843960b604': `Champ mot de passe`, +'s2acef4f6ba39bf11': `Nom DNS pour lequel le certificat configuré ci-dessus doit être utilisé. Le certificat ne peut pas être détecté à partir du DN de base, car la négociation SSL/TLS a lieu avant que cette donnée ne soit échangée.`, +'s2af5754090898640': `Assertion non valide le ou après`, +'s2b088ba65eb69b7e': `Nom du champ de formulaire utilisé pour enregistrer la valeur`, +'s2b1bc31276c4c477': `Politique / Groupe / Liaisons utilisateur`, +'s2b1c81130a65a55b': `Synchronisation en cours.`, +'s2b7dbba348234a36': `Un code vous a été envoyé par SMS.`, +'s2b952e9dc99cbded': `Le mot de passe de connexion est synchronisé depuis LDAP vers authentik automatiquement. Activez cette option seulement pour enregistrer les changements de mots de passe dans authentik jusqu'au LDAP.`, +'s2ba5f4d8f3bd7c57': `Tri`, +'s2bc8aa1740d3da34': `Objet étap`, +'s2be6121210e2a2f8': `Invites`, +'s2c0de3d35a7bc784': `Objets apparentés`, +'s2c8189544e3ea679': `Recommencer`, +'s2c8c6f89089b31d4': `Configurer le fournisseur Radius`, +'s2ceb11be2290bb1b': `Annuler`, +'s2d34c87f67f66c6a': `Fenêtres`, +'s2d46e3a9ee8e0e7e': `Mettre à jour le fournisseur LDAP`, +'s2d5f69929bb7221d': str` + ${0}(" + ${1}", de type + ${2})`, +'s2da4aa7a9abeb653': `Pseudolocale (pour tests)`, +'s2da51a6287118ba8': `URL SSO (IdP-initiated Login)`, +'s2ddbebcb8a49b005': `En attente de l'authentification...`, +'s2df0b65125600de9': `OIDC JWKS`, +'s2e109263b73c12d5': `Licences`, +'s2e3ef41a0edd8608': `Portées`, +'s2e422519ed38f7d8': `Réussir`, +'s2e4818861000b13f': `Organisation`, +'s2e532e19ed477a56': `Chemin`, +'s2ec94a7c7f5bcd1b': `Filtre d'objets de groupe`, +'s2ed8eb02525a920a': str` +Il y a ${0} heure(s)`, +'s2eeca5cfc99ef19b': `Décider de la réponse quand une politique refuse l'accès à ce flux pour un utilisateur.`, +'s2f0f6691de0b0388': `Avertissement : Le fournisseur n'est pas assigné à une application en tant que fournisseur backchannel.`, +'s2f1bcfcc5cae94c3': `Créer un flux`, +'s2f58bb9905d2b76f': `Certificat et clé utilisés pour l'authentification. Peut être laissé vide si pas d'authentification.`, +'s2f8c4cf12350a36c': `Vérifier les règles statiques`, +'s2f995efbb1e46b18': `Détection automatique (basée sur votre navigateur)`, +'s2fc3eb68c7ced3af': `URL Userinfo`, +'s2feae323f46479f8': `Ces liaisons contrôlent les utilisateurs qui peuvent accéder à cette source. + Vous ne pouvez utiliser que des politiques ici, car l'accès est vérifié avant que l'utilisateur ne soit authentifié.`, +'s2ffad156e8332f04': `Mettre à jour le rôle`, +'s30205d424e710818': `Source déconnectée avec succès`, +'s303b5e552246e613': `Fait correspondre un évènement à un certain nombre de critères. Si une des valeur configurée correspond, la politique réussit.`, +'s306a35df5d0d38bb': `Utilisateurs à ajouter`, +'s3079ca1184e77573': `Groupe créé avec succès`, +'s30d0d0e6c626a234': `L'avant-poste conserve tous les utilisateurs et groupes en mémoire et se rafraîchira toutes les 5 minutes.`, +'s30d1f50f476c3f48': `Aperçu du flux`, +'s310d8757ce319673': `Connexions`, +'s319040353f479853': `Flux utilisé pour que les utilisateurs s'authentifient`, +'s3198c384c2f68b08': `Moment où les utilisateurs temporaires doivent être supprimés. Cela ne s'applique que si votre IDP utilise le format NameID "transient" et que l'utilisateur ne se déconnecte pas manuellement.`, +'s31a2d43bc1cf1790': `Pas encore synchronisé.`, +'s31d15c6f16951464': `URL d'authentification`, +'s31d7f3ba04d306a5': `URL SSO`, +'s31ebc5431d677f5d': `Hôte SMTP`, +'s31fba571065f2c87': `Veuillez à conserver ces jetons dans un endroit sûr.`, +'s322e34cfcba47155': `Indisponible`, +'s32a3efa23718e713': `Requêtes d'API`, +'s32babfed740fd3c1': `Type d'utilisateur pour les utilisateurs nouvellement créés.`, +'s32f04d33924ce8ad': `Exécution de politique`, +'s332a5235948c1a1d': `Approbation`, +'s3330adb3f0922f7b': `Base de données utilisateurs + mots de passes applicatifs`, +'s33318837e6c54a9b': `Sources OIDC de confiance`, +'s33683c3b1dbaf264': `Pour utiliser SSL à la base, utilisez "ldaps://" et désactviez cette option.`, +'s3380d7cbcebe50f6': `Étape de mot de passe`, +'s33aa05f435c29753': `Mettre à jour la paire clé/certificat`, +'s33d48fb745f4d4ae': `Nombre minimum de caractères majuscules`, +'s33e3766d4a02b042': `Préféré : l'authentificateur peut créer et stocker un identifiant dédié, mais si ce n'est pas le cas, ce n'est pas grave`, +'s33ed903c210a6209': `Jeton d'authentification à utiliser. Actuellement, seule l'authentification "bearer authentication" est prise en charge.`, +'s33f85f24c0f5f008': `Enregistrer`, +'s341ab68d4130de20': `Aucun worker connecté. Les tâches de fond ne tourneront pas.`, +'s342eccabf83c9bde': `Historique du plan`, +'s344c4a2a48997e18': `Fichiers .yaml, qui peuvent être trouvés sur goauthentik.io et exportés par authentik.`, +'s3484b1e6d0b5335f': `Gérer les rôles qui attribuent des permissions sur les objets au sein d'authentik.`, +'s34b23ebbac9f6ab9': `Vérification Utilisateur`, +'s34be76c6b1eadbef': `Avertissement`, +'s34edeb18f887161d': `Group de boutons radio (choix fixe)`, +'s350a616ff5e145ec': `Sélectionnez un fournisseur que cette application doit utiliser.`, +'s351246c52548086a': `Télécharger le certificat`, +'s354e0a9f146d2869': `Chinois (simplifié)`, +'s355b21b89ce5d9c5': `Détails`, +'s3576aead3e68c5c9': `Exporter le flux`, +'s35e6e60e83a8c003': `Flux d'invalidation`, +'s35f9df7668d5fa79': `Voir la documentation de déploiement`, +'s35fac2e5677d55cd': `Indique si cet utilisateur doit être traité comme actif. Désélectionnez cette option au lieu de supprimer les comptes.`, +'s3616cc78631f5893': str`Avertissement : Vous êtes sur le point de supprimer l'utilisateur sous lequel vous êtes connecté ( + ${0}). Poursuivez à vos propres risques.`, +'s36247910d67421e1': `Sélectionner les permissions`, +'s3626433940124897': `Favicon`, +'s3643189d1abbb7f4': `Code`, +'s364c4f177a2f8322': `Ouvrir le tiroir API`, +'s3687049d1af562c4': `Copier`, +'s36cb242ac90353bc': `Champs`, +'s36e630ba56617556': `Envoyer l'authentification HTTP-Basic`, +'s374abf1a54d87b67': `Arrière-plan utilisé durant l'exécution.`, +'s3794c596ee7964ad': `Mettre à Jour le mot de passe`, +'s37cbecaec58e2192': `Mode`, +'s37d9155b9f4cc7bd': `Configure comment le champ émetteur du jeton ID sera rempli.`, +'s37dbfe2133b74d2d': `Interpréter le placeholder comme une expression`, +'s37eb2f1b6e3c19c2': `Paramètres du protocole`, +'s38162f615710c7b4': `Modifier le contenu envoyé aux fournisseurs personnalisés.`, +'s382a2aa3984474dd': `Créer`, +'s382b702673776873': `Exemple d'attributs SAML`, +'s38887b94b3320533': `Adresse courriel`, +'s388ee787bbf2271b': `Tâche terminée avec avertissements`, +'s38c72e1cf120b8d8': `Créer une invitation`, +'s38f774cd7e9b9dad': `S'enregistrer.`, +'s3914cb410fca44d4': `Importer`, +'s3926da5b20cdf3b6': `URL utilisée pour demander le jeton initial. Cette URL est uniquement requise pour OAuth 1.`, +'s398f6ba74ba8943a': `Sélectionnez les fournisseurs à ajouter à l'application.`, +'s399cc2d67d92e957': `Confidentiel`, +'s39c8c0bf4d927c9f': `Autoriser les connexions initiées par IDP`, +'s39e436de1dc4df4f': `URL du JS`, +'s3a135682bd30bdbb': `Créer un mot de passe App`, +'s3a3fae99373ce56b': `Sélectionnez les portées utilisables par le client. Le client doit toujours spécifier la portée pour accéder aux données.`, +'s3a5fec3d73ac9edc': `Créer une paire clé/certificat`, +'s3ab772345f78aee0': `Inspecteur de flux`, +'s3abecf1e778c9625': `Voir plus ici:`, +'s3b34d9930e33bd46': `Tâches du système`, +'s3b3c333481944862': `Afficher les détails`, +'s3b58f8d2155ae90c': `Clé du champ`, +'s3b68883dda2682ed': `L'assertion est vide`, +'s3b7b519444181264': `Politiques de validation`, +'s3ba9b8aeb686d9f7': `Inclure les évènements créés par ce modèle. S'il est laissé vide, tous les modèles seront inclus.`, +'s3baf512851453712': `SID de Compte Twilio`, +'s3bb51cabb02b997e': `Format : "weeks=3;days=2;hours=3,seconds=2".`, +'s3be1d90ffa46b7f1': `Entreprise est en aperçu,`, +'s3bfa0258999fb629': `Inverse le résultat de la liaison. Les messages ne sont pas affectés.`, +'s3c6de3f257e0c912': `Requête`, +'s3cd84e82e83e35ad': `Veuillez saisir votre code`, +'s3d197283cb019b5a': `Vue d'ensemble`, +'s3d2a8b86a4f5a810': str`Utilisateur créé et ajouté au groupe ${0} avec succès`, +'s3d34068a31cab30b': `Validation SSL de l'hôte interne`, +'s3de6db803012016a': `Mappage des attributs LDAP`, +'s3e211d29fa10f843': `la référence sera réinitialisée à une valeur vide`, +'s3e3bb9e7cb1de4fd': `Sélectionnez les utilisateurs à ajouter`, +'s3e59b8b2debf0209': `Cette étape peut être incluse dans les flux d'inscription pour accepter les invitations.`, +'s3e87ce98ba3c4d80': `Configure la durée de validité des jetons d'accès.`, +'s3e902999ddf7b50e': `SCIM (System for Cross-domain Identity Management)`, +'s3e99ea082ca5ade9': `Erreur de récupération`, +'s3ebf4c166058afce': `Fond vide`, +'s3ed5607ad78d4224': `Vider le cache`, +'s3ef3c252ada78076': `Connexions échouées`, +'s3fb39fc45e840f78': `Référez-vous à la documentation`, +'s3fd219b045193507': `Paramètres de zxcvbn`, +'s3feea7b49673bef2': `Aucun message de journal.`, +'s3ffa320128991a45': `Assure la prise en charge de protocoles tels que SAML et OAuth aux applications attribuées.`, +'s4015746f55a8d89f': `Obtenir une licence`, +'s40830ec037f34626': `Configurer le fournisseur SAML manuellement`, +'s4090dd0c0e45988b': `ID de requête`, +'s40b034801fcb843b': `Autorise/bloque les requêtes selon la réputation de l'utilisateur et/ou de l'adresse IP`, +'s40b80eb4cc1f0e0c': `Éditer la liaison`, +'s40bf151b56a64f51': `Le serveur et le client sont distants de plus de 5 secondes`, +'s40e2c72dae905a50': `Statique : valeur statique, affichée comme telle.`, +'s4165cd175bc4c0c4': `Expire le`, +'s416a540b16275f2e': `Créer un groupe`, +'s41706a202b6c40f1': `Domaine`, +'s417b90913e05bc17': `Prévisualisation`, +'s41b105819b67ee7a': `Étapes`, +'s41e035c4bb8d15f2': `État général du système`, +'s4207178ba0b99418': `Une nouvelle version de l'interface est disponible.`, +'s420d2cdedcaf8cd0': `Authentification avec Plex...`, +'s424f57afae0caac4': `Ajouter des utilisateurs`, +'s427f788ff333f45b': `URL de lancement`, +'s428b7859907f6db2': `Requis: L'authentificateur DOIT créer un identifiant dédié. S'il ne peut pas, le RP est préparé à ce qu'une erreur se produise`, +'s4291727352c4f295': `Basé sur le nom d'utilisateur`, +'s42a1ebe17efda727': `Champ`, +'s42cbd8dca939a9c7': `Vérifier`, +'s42fc6f4b64eff5d9': `Invites simples qui peuvent être utilisés pour les étapes d'invite.`, +'s43be3ce2439ffe9c': `Nombre minimum de chiffres`, +'s43c1f927936f0a02': `Assertion non valide à partir de l'heure actuelle + cette valeur.`, +'s43fe853bf219a9b8': `Temporairement se faire passer pour cet utilisateur`, +'s4409ada9c5c2a7f8': `Inactif`, +'s4414164d120de61a': str`The following objects use + ${0}`, +'s44536d20bb5c8257': `Ce paramètre n'affecte que les nouveaux événements, l'expiration étant enregistrée pour chaque événement.`, +'s4476e9c50cfd13f4': `État global`, +'s4498e890d47a8066': `OAuth2/OIDC (Open Authorization/OpenID Connect)`, +'s44b1f042790cd1a2': `Configuration SAML`, +'s44c90273f08fb718': `Utilisez ce fournisseur avec auth_request de nginx ou forwardAuth de traefik. Un seul fournisseur est nécessaire par domaine racine. Vous ne pouvez pas faire d'autorisation par application, mais vous n'avez pas besoin de créer un fournisseur pour chaque application.`, +'s44ea4e9a81ce730d': `Étape courriel`, +'s453b0c150a7ca58e': `Exemple de charge utile JWT (pour l'utilisateur actuellement authentifié)`, +'s4557b6b9da258643': `Prévision des utilisateurs externes`, +'s455a8fc21077e7f9': `Vous avez authentifié votre appareil avec succès.`, +'s455de2f740b073fd': `Information d'évèvement`, +'s457c639088c547c5': `Fournisseur créé avec succès`, +'s45935843b1b5b496': `Le formulaire n'a pas retourné de promesse de soumission`, +'s45960273852a61b2': `Date et heure`, +'s45cb501abd43ba52': `Générer`, +'s45f9e7ce0897f9e5': `Tenant`, +'s4647b2c92638d6fd': `Certificat pour le DN de base configuré ci-dessus. Sinon, le fournisseur utilise un certificat auto-signé.`, +'s4660da32fb311ac0': `Mandarin taïwanais`, +'s473f0143efa3f706': `Ces politiques contrôlent les autorisations d'accès des utilisateurs à cette application.`, +'s47490298c17b753a': `Recevoir une notification push sur votre appareil.`, +'s4751df77cfd8a5f9': `Vérifier le nom d'utilisateur`, +'s476ffc07e6d66f18': `Jeton mis à jour avec succès`, +'s477de089b505a6ea': `Fournisseur SCIM`, +'s47a4983a2c6bb749': `Modèle mis à jour`, +'s47bd537a3bcebf19': `Télécharger la clé privée`, +'s4802636d55022ed3': `Par défaut ?`, +'s480c6c40a248f7d2': `Utiliser SSL`, +'s482ae78809a6822b': `Flux utilisé par un utilisateur authentifié pour configurer son mot de passe. S'il est vide, l'utilisateur ne sera pas en mesure de changer son mot de passe.`, +'s485c05d34eb00415': `Supprimer l'icône actuellement définie`, +'s48cf8fd56b1237ed': `Flux mis à jour avec succès`, +'s494e1ed913d9351a': `Éditer le groupe`, +'s49730f3d5751a433': `Chargement en cours...`, +'s4a1e774ab25aa232': `Hôte interne`, +'s4a26798e1c3c37dd': `Valider les certificats SSL des serveurs amonts.`, +'s4a34a6be4c68ec87': `Utilisateurs créés`, +'s4a697f0b36c4fe83': `Utilisateur Active Directory`, +'s4a6aa26413287069': `Détails mis à jour avec succès`, +'s4a87445f3108db7c': `Sélectionnez l'une des sources ci-dessous pour se connecter.`, +'s4a953e6234cb4808': `Lorsque sélectionné, le placeholder sera évalué de la même manière qu'un mappage de propriété. + Si l'évaluation échoue, le placeholder sera retourné.`, +'s4aacc4e0277c1042': `Longueur du jeton`, +'s4acf840bc792c3ae': `Local (les notifications seront créées dans authentik)`, +'s4aee34a672e5cfc0': `Créé par`, +'s4af8a3ce5a600855': `Laisser l'utilisateur s'identifier lui-même avec son nom d'utilisateur ou son adresse courriel.`, +'s4afb26a8fae257e9': `Assigné directement`, +'s4b2a1b657c160f5b': `URL de la clé Web JSON. Les clés de l'URL seront utilisées pour valider les JWTs de cette source.`, +'s4b5af7736aedd6c1': `Clé privée disponible ?`, +'s4ba4473f3d4ec896': `Nouvelle version disponible`, +'s4bd386db7302bb22': `Créer avec l'assistant`, +'s4c24b2baa377e870': `Paire clé/certificat mise à jour avec succès.`, +'s4c41f3f4c23e8eaa': `Avertissement : Ce groupe est configuré avec un accès superutilisateur. Les utilisateurs ajoutés auront un accès superutilisateur.`, +'s4c4c504a48c3b7bd': `Traefik (Standalone)`, +'s4c6534a118f52fdd': `Sélectionner des fournisseurs backchannel qui augmentent la fonctionnalité du fournisseur principal.`, +'s4caed5b7a7e5d89b': `Anglais`, +'s4cdae7635e757555': `Champs avec lesquels un utilisateur peut s'identifier. Si aucun champ n'est sélectionné, l'utilisateur ne pourra utiliser que des sources.`, +'s4d00e5de1c8213b7': `ID client`, +'s4d00f1de1c82281b': `Adresse IP client`, +'s4d182bae8a578010': `Authenticatificateurs basé sur SMS`, +'s4d31797d81e9cea3': `Approbation explicite`, +'s4d53f4b7ff33bedd': `Nom unique de ce champ, utilisé pour sélectionner les champs dans les étapes de demande`, +'s4d7fe7be1c49896c': `Vous pouvez maintenant fermer cette page.`, +'s4dcb9288f7e9e4d7': `Regroupez les utilisateurs et donnez-leur des autorisations en fonction de leur appartenance.`, +'s4e28e2899e08a5f8': `Détermine comment authentik renvoie la réponse au fournisseur de services.`, +'s4e474b9e2e737dd1': `Mettre à jour le fournisseur de Proxy`, +'s4e5646b23e41231f': `Zone de Texte (lecture seule) : Entrée de Texte multiligne, mais ne peut pas être édité.`, +'s4eb514ebcb80553d': `Parent`, +'s4f1ad6b48a5df506': `Logs`, +'s4f1af2b48a5e249a': `Logo`, +'s4f2e195d09e2868c': `LDAP (Lightweight Directory Access Protocol)`, +'s4ff2c202b4e5bdc5': `Intégré`, +'s502884e1977b2c06': `Étape suivante`, +'s502d2473587032e1': `Aucune préférence n'est envoyée`, +'s505fbbdcbc6aa921': `Ajouter un nouveau groupe`, +'s506beb486fa41241': `Autorisations de l'application`, +'s50719dda8f90abf4': `Visible dans l'URL`, +'s50911ec1c8aee99a': `Aucun événement correspondant n'a été trouvé.`, +'s50c312bea93b6925': `Éditer la politique`, +'s50ebe627b4bc7d02': `Liaison`, +'s510c7add9e24c306': `Cacher l'utilisateur désactivé`, +'s5116b89f7db1fbec': `URIs de redirection autorisés`, +'s512957aa09384646': `Lancer`, +'s5140d157642d7362': `Aucun (règle désactivée)`, +'s5170f9ef331949c0': `Afficher des champs de saisie arbitraires à l'utilisateur, par exemple pendant l'inscription. Les données sont enregistrées dans le contexte du flux sous la variable "prompt_data".`, +'s51c6b8403c2dc5d9': `Les clients publics sont incapables de maintenir la confidentialité et devraient utiliser des méthodes comme le PKCE.`, +'s51da4de00984fe51': `Nom d'utilisateur de l'API d'Authentification`, +'s51ea3a244c781b1f': `Objets créés`, +'s51f92b6fa76656ca': `Avant-postes malades`, +'s523160b433311521': `Si défini, les utilisateurs sont capables de modifier les informations de leur profil.`, +'s526e2c66bd51ff5f': `Informations du rôle`, +'s52b500138a2d2b8a': `Mettre à jour la source LDAP`, +'s52bdc80690a9a8dc': `Lorsqu'activé, l'étape acceptera toujours l'identifiant utilisateur donné et continuera.`, +'s53ad3455d9523b54': `Créer un utilisateur`, +'s53bbc3ae4b5fa1d0': `Voir ici.`, +'s5414356cc10e80fe': `Si aucun utilisateur n'est présent dans le contexte du flux, un nouvel utilisateur est créé.`, +'s542a71bb8f41e057': `Terminer les autres sessions`, +'s542ecb4130f6cea5': `Lien vers un utilisateur ayant un nom d'utilisateur identique. Cela peut avoir des implications en termes de sécurité lorsqu'un nom d'utilisateur est utilisé avec une autre source.`, +'s544142ce35050751': `Tester la politique`, +'s545d99afa61e4095': `Caractères considérés comme des symboles.`, +'s5462c7f56ed65e6c': `Courriel : champ texte de type adresse courriel`, +'s54cd35e6224ba65d': `Par défaut, seuls les icônes sont affichés pour les sources, activez cette option pour afficher leur nom complet.`, +'s54e7a23a95d99649': `Texte : simple champ texte`, +'s5506b35a1bceb141': `Certificat client pour authentifier auprès du certificat du serveur LDAP.`, +'s5515a897ae98bed9': `Certificats`, +'s554ce268e9727e79': `Vous pouvez uniquement sélectionner des fournisseurs qui correspondent au type d'avant-poste.`, +'s5572ac4d2208f5ec': `Invite créée avec succès.`, +'s55787f4dfcdce52b': `Clé de signature`, +'s5590dbf7e425789d': `Libellé`, +'s5599c62bb78c631f': `Interface d'administration`, +'s55d731be1ef66efe': `DN racine`, +'s55eb75bedf96be0f': `Ceci est recommandé par rapport au mode UPN.`, +'s55fa598b754cc3cc': str` + ${0}( + ${1})`, +'s5615bb595ad6ded6': `Type de liaison`, +'s56806e9f63efa298': `URIs de redirection`, +'s5694f9421c428227': `Mot de passe`, +'s56fd9ed596c724fa': `Clé secrète`, +'s57072ffb92b6c9c8': `Définit les méthodes d'envoi des notifications aux utilisateurs, telles que courriel ou webhook.`, +'s57337099d96ce6d2': `Toujours créer de nouveaux utilisateurs`, +'s57448f10eb973100': `Créer des liens d'invitation pour inscrire des utilisateurs et éventuellement imposer certains attributs de leurs compte.`, +'s57730b6870e8916c': `Menu déroulant (choix fixe)`, +'s5795b310ab271d20': `Ces liaisons contrôlent les événements sur lesquels cette règle se déclenche. +Les liaisons avec les groupes/utilisateurs sont vérifiées par rapport à l'utilisateur de l'événement.`, +'s57b07e524f8f5c2a': str`Externe: ${0}`, +'s5819a49638f6d7cb': str`Êtes-vous sûr de vouloir supprimer ${0} ${1}?`, +'s584d1c38ad20d560': `N'importe quel HTML peut être utilisé.`, +'s586d6bd2eca2da93': `Utilisateurs`, +'s587ba266269297ab': `Liaisons des politiques`, +'s588796ee929a2e4c': `Détails de l'utilisateur`, +'s58888ef1ee9b5bb8': `Statut utilisateur`, +'s58c867aac77b9158': `Dernière connexion`, +'s58cd9c2fe836d9c6': `Retourner à l’accueil`, +'s58d1eb482059da12': `Nouveau fournisseur`, +'s58fd2aafa4261c55': `Application mise à jour avec succès`, +'s592425143c4f5834': `Nom alternatif subject`, +'s592ab7d2bc1b8973': `Champs de l'utilisateur`, +'s593db2c00d6516a2': `Mot de passe SMTP`, +'s5944355d69db1fb8': `Préfixe DN groupes`, +'s59572c1be31a812e': `Impossible de vider le cache de flux`, +'s59691290a232c687': `Les politiques sélectionnées sont exécutées lorsque l'étape est soumise pour valider les données.`, +'s59b6028f19d15cda': `Aucune intégration active`, +'s59bf194136d0d13a': `Utilisé pour se connecter à l'aide d'un exécuteur de flux`, +'s59dc0eda07f9e2b6': `Mappage(s) de propriété`, +'s59f5eda30a904b75': `URL JWKS`, +'s5a13f4bbe004503f': `Vérifie si le mot de passe de l'usager a été changé dans les X derniers jours et refuse l'accès en fonction du paramétrage.`, +'s5a15a8f39c699273': `Inclure les évènements créés par cette application. S'il est laissé vide, toutes les applications seront incluses.`, +'s5a48d5171e1a1522': `Avertissement : la politique n'est pas assignée.`, +'s5a802e46a033c8af': `Identifiant principal de l'utilisateur. 150 caractères ou moins.`, +'s5acb607b40356974': `Numéro de départ du GID`, +'s5adafce329aaa853': `Nom du type d'authentificateur`, +'s5b1fb0d4c0daeba8': `Créer une liaison`, +'s5b6b6e2cb884d59f': `API d'Authentification Duo`, +'s5b8ee296ed258568': `Le tenant actuel doit avoir un flux de récupération configuré pour utiliser un lien de récupération`, +'s5be3b0567172e415': `Certificat de validation`, +'s5be3c6d61cd9182f': `Notifications`, +'s5c18cae48b93138c': `Sessions`, +'s5c1dc164c89ac13e': `Type de fournisseur inconnu`, +'s5cd31f4a88adf180': `Éditer l'utilisateur`, +'s5d0a14d29ebad561': `Flux à utiliser pour inscrire les nouveaux utilisateurs.`, +'s5d6af4c100ad321b': str`Créer + ${0}`, +'s5d7748b1d2363478': str`Êtes-vous sûr de vouloir supprimer les utilisateurs sélectionnés du groupe + ${0} ?`, +'s5d9f93f1fe1c19d3': `Traefik (Ingress)`, +'s5da52af9b083c29a': `Modèle`, +'s5deac600e329de1b': `Messages de Journal`, +'s5e169e1bac20b4a6': `Avant-postes`, +'s5e8250fb85d64c23': `Fermer`, +'s5e830ae7688d1219': `Étape utilisée pour configurer un authentificateur TOTP par SMS.`, +'s5eaf1d304e03ed4b': `ID Utilisateur Duo`, +'s5ee6f1b84e9ebc69': `Assigner à un nouveau rôle`, +'s5f343a43e7ea9f91': `Erreur`, +'s5f4586bc1e2740e6': `Vider la recherche`, +'s5f496533610103f2': `Application autorisé`, +'s5f5bf4ef2bd93c04': `Les mappages de groupes ne peuvent être vérifiés que si un utilisateur est déjà connecté lorsqu'il essaie d'accéder à cette source.`, +'s5f71fa3c53828e30': `Retirer du/des Groupe(s)`, +'s5fbaeb14f42815e5': `Lien à l'authentificateur`, +'s5fc4269c2addee61': `Identifiant unique par lequel le jeton est référencé.`, +'s60cc554fde2676cb': `Un authentificateur inamovible, comme TouchID ou Windows Hello`, +'s60d891ed3ee9ebc5': `Source créée avec succès`, +'s60edbcfac8ed1f90': `Ce nombre est ajouté au nombre généré à partir de user.Pk pour s'assurer que ceux-ci ne sont pas trop bas pour les utilisateurs POSIX. La valeur par défaut est 2000 pour éviter des collisions avec les uidNumber des utilisateurs locaux.`, +'s6152026c364ad974': `Sources d'identités, qui peuvent soit être synchronisées dans la base de données d'authentik, soit être utilisées par les utilisateurs pour s'authentifier et s'inscrire.`, +'s618d4e53f455c834': `Utiliser les paramètres globaux`, +'s6196153c4b0c1ea0': `Installer`, +'s61b6f3e6bc59c6dd': `Créer une invite`, +'s61bd841e66966325': `Applications externes qui utilisent authentik comme fournisseur d'identité, en utilisant des protocoles comme OAuth2 et SAML. Toutes les applications sont affichées ici, même celles auxquelles vous n'avez pas accès.`, +'s61ccefd661ac2296': `Si activé, cette étape passera à l'étape suivante si aucune invitation n'est donnée. Par défaut, cette étape annule le flux en l'absence d'invitation.`, +'s61e48919db20538a': `UPN`, +'s61eacb19db252f5e': `URL`, +'s6238f519db67980d': `UID`, +'s624256f8a4bb4c89': `Transport(s) de notification`, +'s62ddcbaaa91d120d': `Scores de Réputation`, +'s62e7f6ed7d9cb3ca': `Faire comme si l'utilisateur existe`, +'s62f7c59b0606a8d6': `Flux d'autorisation`, +'s62f93cfcb45d5a06': `Privilèges de super-utilisateur ?`, +'s6336fa345e96dde9': `Évaluer quand l'étape est exécutée`, +'s634448e4942cf452': `Modifiez l'attribut notes de ce groupe pour ajouter des notes ici.`, +'s634d041fd954ab20': `Mot de passe de l'API d'Authentification`, +'s63cb05541b294335': `Est superutilisateur`, +'s63d894b1ddb06289': `Description`, +'s63d89a6ae0969c30': `Pour laisser les utilisateurs réinitialiser leur mot de passe, configurez un flux de récupération sur le locataire actuel.`, +'s63e03c70f67ebf9c': `Contexte`, +'s63e54b86e2a2cc43': `Zone de Texte : Entrée de Texte multiligne`, +'s63e71d20d1eaca93': `Allemand`, +'s643d8f2e5e5e930d': `Mappage mis à jour avec succès.`, +'s64a33dcdaf90af26': `Info utilisateur`, +'s64ef2a6c2dd1d3d1': `Éditer`, +'s65ca2f256ea09c11': `Ajouter à un groupe existant`, +'s65d507f1513c2f03': `Autoriser les flux d'authentification initiés par l'IdP. Cela peut présenter un risque de sécurité, aucune validation de l'ID de la requête n'est effectuée.`, +'s65d67612999165e9': str`Évènement + ${0}`, +'s662fcb3761ad9df7': `Lorsqu’utilisé avec une étape Écriture Utilisateur, utilise attributes.foo pour écrire les attributs.`, +'s66313b45b69cfc88': `Voir les notes de version`, +'s66722bc2ea775e05': `Désactivé`, +'s66ffc06300964849': `Filtre des objets utilisateur`, +'s670ad066cc0e50a3': str`Connectez-vous pour continuer sur + ${0}.`, +'s67560d7e37d984c3': `Politique / Utilisateur / Groupe`, +'s67664f8ee9aea98d': `Veuillez entrer votre code`, +'s67749057edb2586b': `Déconnexion`, +'s677f1b675fc21bb1': `Secret :`, +'s67ac11d47f1ce794': `WebAuthn requirt que cette page soit accessible via HTTPS.`, +'s67d858051b34c38b': `Nom d'affichage de la méthode.`, +'s67dedada007d4067': str`Erreur de la déconnexion source : + ${0}`, +'s67e136af8fc1107b': `Assigner les permissions`, +'s67e20cd8018d7e3c': `Actuellement fixé à :`, +'s681074b6c1f19c08': `Action non configurée`, +'s6827a456c9dfc6ee': `Lors de l'utilisation de connexions initiées par l'IdP, le relay state sera défini à cette valeur.`, +'s6835db03209b4f94': `Automatiser et modéliser la configuration au sein d'authentik.`, +'s6873bdbfa24615fb': `URL Webhoo`, +'s68a50b1ee6efee7b': str` +${0} est disponible !`, +'s68d69ad0271c8ef6': `Créer une nouvelle intégration d’avant-poste.`, +'s68f935c9ca792016': `app1 en cours d'exécution sur app1.example.com`, +'s6931695c4f563bc4': `La taille d'un des jetons généré. Peut être augmenté pour améliorer la sécurité.`, +'s693d975d38ff0214': `Algorithme de signature`, +'s6941a67f0038ba4c': `Étapes utilisées pour configurer Authentifcateur (Authenticator) lorsque l’utilisateur n’a pas d’appareil compatible. Une fois cette étape passée, l’utilisateur ne sera pas sollicité de nouveau.`, +'s6985c401e1100122': `Message affiché lorsque cette étape est exécutée.`, +'s69a56a3022c4be7f': `Tenant(s)`, +'s69bd313dd12fc2f3': `URL de profil`, +'s6a3cf855140b9511': `Requis : la vérification de l'utilisateur doit être présente.`, +'s6a406aecb2c0e5c5': `S'inscrire`, +'s6a615f6165ef01c9': `Démarrer l'importation automatique`, +'s6a66759749bf31ed': `Liaison directe`, +'s6a89bb10338369b4': `Aller à la page précédente`, +'s6ab73c998850c5ab': `Expression`, +'s6abff64e7ff7fde9': `Image d'avatar`, +'s6ac670086eb137c6': `Récupération`, +'s6ae0d087036e6d6d': `Sélectionnez une méthode d'authentification`, +'s6b1ed7507f26cb4a': `Résultat échoué`, +'s6b2beba7ab637e9e': `Rôles`, +'s6b5002c605b39d6d': `Créer une notification de transport`, +'s6b6e6eb037aef7da': `Utilisez le nom d'utilisateur et le mot de passe ci-dessous pour vous authentifier. Le mot de passe peut être récupéré plus tard sur la page Jetons.`, +'s6b79e73ca77148a0': `Intégration d’avant-postes`, +'s6b85380416964890': `Inverser le résultat`, +'s6b9a1dd402750a8a': `Redémarre le flux depuis le début, en gardant le contexte du flux`, +'s6ba50bb0842ba1e2': `Applications`, +'s6c3daaac4eed12f9': `Journal des modification`, +'s6c410fedda2a575f': `Mise à jour disponibl`, +'s6c607d74bdfe9f36': `Les mappages d'utilisateurs ne peuvent être vérifiés que si un utilisateur est déjà connecté lorsqu'il essaie d'accéder à cette source.`, +'s6c70a73265e14521': `Lier à un utilisateur avec la même adresse courriel. Peut avoir des implications de sécurité lorsqu'une source ne valide pas les adresses courriel.`, +'s6c8f05e3be04f62a': `Enregistrer un appareil`, +'s6d3b4d0561ba1cff': `Éditeur`, +'s6d5bce4321f57cda': `Désinscription`, +'s6df42b3072a2d7e9': `Nginx (Ingress)`, +'s6dfb7283452f78fe': `Authorisation`, +'s6dfd15978586d05f': str`Bienvenue, + ${0}.`, +'s6e09a19aa3952509': `Apps les plus utilisées`, +'s6e4c997a101b6abf': `avec l'utilisateur actuel`, +'s6e612e5a6a359bbb': `Clé privée optionnelle. Si définie, vous pouvez utiliser pour le chiffrement.`, +'s6e6e737601f44b2c': `Notifications effacées avec succès`, +'s6ec8c9d11310300a': `Orphelin`, +'s6f270e1668c036e9': `Avant-poste mis à jour avec succès`, +'s6f328f2d8382d998': `L'approbation expire dans`, +'s6f367f5604d5056d': `Créer et lier une étape`, +'s6f5bb31e2733ecd5': `Créer un lien pour que cet utilisateur réinitialise son mot de passe`, +'s6f857299d5db1ecf': `Flux`, +'s6f96a78d81ef277c': `Liaison Post-automatique`, +'s6fcd9b5a87ceccd6': `Ouvrir les paramètres`, +'s6fe64b4625517333': `Propulsé par authentik`, +'s7031e6928c44cedd': `Interface utilisateur`, +'s706af57c1af42c6d': `Caché : champ caché, peut être utilisé pour insérer des données dans le formulaire.`, +'s7073489bb01b3c24': `L’application a déjà accès aux permissions suivantes :`, +'s708d9a4a0db0be8f': `Vérifier le statut`, +'s70f6471de355b98c': `Clé du mot de passe HTTP-Basic`, +'s713d147e1761d0f0': `À jour !`, +'s713e8666ed70f8b3': `Créer un nouveau mappage de propriétés.`, +'s71633a67e0d7c0e4': `Appareil importé avec succès.`, +'s7181a5504472e856': `Appliquer les changements`, +'s71c5d51d5a357dbd': `Ne plus montrer ce message.`, +'s71dcd9cf808449aa': `Jeton(s)`, +'s720594461542943f': `Ajouter un utilisateur`, +'s721d94ae700b5dfd': `Activation Duo`, +'s7220fcf4fec4e0df': `Retirer le/les utilisateur(s)`, +'s72559845d38bf688': `Configure la durée de validité des jetons d'accès.`, +'s72c1c17a9bdc76ad': `Texte d'aide`, +'s72e102414fec81a4': `Règle créée avec succès`, +'s730182ad28374cda': `Objet`, +'s7301a7069b7bc83e': `Révoqué ?`, +'s733f83ff9d50da30': `Configurer la durée maximale autorisée pour une assertion.`, +'s73c13e5a6f5e38a3': `Classes d'équipement`, +'s74475586afc1fb0f': `Sélectionnez le type`, +'s745a55f9abf9f2e5': `Sidebar droite`, +'s7468e87263dfff7e': `Identifiant`, +'s7489f76224f8120d': `Transférer l'authentification (application unique)`, +'s74cb3d66f6a668e1': `Documentation`, +'s74f809a69e030351': `Émetteur de la configuration OpenID`, +'s7513372fe60f6387': `Volume d'événements`, +'s7520286c8419a266': `Données optionnelles chargées dans la variable contextuelle 'prompt_data' du flux. YAML ou JSON.`, +'s75a27f43413e02c5': `Français`, +'s75d5ff5dd8d3c6d2': `Groupe mis à jour avec succès`, +'s7609ee54e8a7b05a': `Jours de validité`, +'s764bccb30868bf62': `L'URL externe par laquelle vous accéderez à l'application. Incluez un port non-standard si besoin.`, +'s76768bebabb7d543': `Champ qui contient les membres d'un groupe. Si vous utilisez le champ "memberUid", la valeur est censée contenir un nom distinctif relatif, par exemple 'memberUid=un-utilisateur' au lieu de 'memberUid=cn=un-utilisateur,ou=groups,...'`, +'s7683363cdf78cf31': `La vérification utilisateur est préférée si disponible, mais non obligatoire.`, +'s76881c01b6a3a8c7': `Approbation(s)`, +'s76da2c978dcc5ef4': `Cache de politique vidé avec succès`, +'s76f5dca6404a1210': `Webhook (Slack/Discord)`, +'s77099d752f1ab773': `Actions apparentées`, +'s77299a9d3dd932cd': str`Import réussi de + ${0}appareils.`, +'s773aa6621d7e37b7': `Créer un tenant`, +'s77505ee5d2e45e53': `Lancer l'assistant de démo`, +'s7754f0e34f27fb6e': `Description montrée à l'utilisateur lors de l'approbation. Aucune information présentée à l'utilisateur si laissé vide.`, +'s77994108c886b965': `Échecs avant annulation`, +'s77e8668a27dbc402': `Les comptes de services devraient être utilisés pour de l'authentification machine-to-machine ou autres automatisations.`, +'s77f572257f69a8db': `Erreur de mappage de propriété`, +'s78ab26da7f067de8': `Sélectionner les permissions à attribuer`, +'s78c08391ffbfb8c0': `Ces liaisons contrôlent les utilisateurs qui peuvent accéder à ce flux.`, +'s78fd8c03f8c967f3': `Jetons`, +'s7968dbed9b106c29': `Aucun service disponible`, +'s7989db5f4819af89': `Flux utilisé pour la déconnexion. S'il est laissé vide, le premier flux applicable trié par le slug est utilisé.`, +'s79ad406777feab1f': `Continuer le flux sans invitation`, +'s79aed8154d7c472c': `Avant-poste créé avec succès`, +'s79e8cc71a5975b04': `Message`, +'s7a141f1b61074fbe': `Basic-Auth`, +'s7a322c89298dd27c': `Invitation mise à jour avec succès`, +'s7a4f059aaa029719': `Connecter`, +'s7a6b3453209e1066': `Il y a eu une erreur lors de la création de l'application, mais aucun message d'erreur n'a été envoyé. Veuillez consulter les logs du serveur.`, +'s7abc9d08b0f70fd6': `Jeton statique`, +'s7b105164d209f670': `Requiert une authentification`, +'s7b18721be331241e': `Sélectionnez les transports à utiliser pour notifier l'utilisateur. À défaut, la notification sera simplement affichée dans l'interface utilisateur authentik.`, +'s7b1fba26d245cb1c': `En cas d'utilisation d'une solution de journalisation externe pour l'archivage, cette valeur peut être fixée à "minutes=5".`, +'s7b298427bdea81ae': `S'il est activé, le profil OAuth Device Code peut être utilisé et le flux sélectionné sera utilisé pour saisir le code.`, +'s7b3148ffba9f4527': `Si le score du mot de passe est inférieur ou égal à cette valeur, la politique échoue.`, +'s7b576aa71acb36a6': `Diagramme`, +'s7b7163270e57e8b4': `Rafraîchir`, +'s7ba9677d069e5f02': `Caddy (Standalone)`, +'s7bc8c327f1f7c82c': `Aucun objet trouvé.`, +'s7bda44013984fc48': `Mot de passe défini`, +'s7be2df39f727faa2': `Entreprise`, +'s7c05ee41d634aa45': `Mappages de propriété utilisés lors de la création d'utilisateurs`, +'s7c10976de6411844': `Validité du jeton`, +'s7c27e113f90a89e0': `Si activée, les signatures des assertions entrantes seront validées par rapport à ce certificat. Pour autoriser les requêtes non signées, laissez la valeur par défaut.`, +'s7c5774fad9d050ce': `Créer un groupe`, +'s7caa8f7edb920909': `Le nombre de jetons générés lorsque cette étape est utilisée. Chaque jeton généré par exécution de l'étape sera rattaché à un seul appareil statique.`, +'s7cb9aa9ee1783f00': `Mappage des propriétés de groupe`, +'s7ccce0ec8d228db6': `Configurer le fournisseur SCIM`, +'s7cfe12cd14df9950': `Se déconnecter`, +'s7d499be3b781a3ca': `Utilisateur(s)`, +'s7d61705dfb120d7b': `L'utilistateur authentik auquel cet appareil sera assigné.`, +'s7d684b6257284e55': `Note`, +'s7def067ed3ad3ad9': `Domaine des cookies`, +'s7df5b92a3f93544f': `Avertissement : le nombre d'utilisateurs actuel a dépassé les licences configurées.`, +'s7e1342d37124b65b': `Configurer le contexte du plan, utilisé pour modéliser.`, +'s7e537ad68d7c16e1': `L'utilisateur a été écrit vers`, +'s7e5af9c6ba6f5cc6': `Lorsque plusieurs étapes sont sélectionnées, les utilisateurs peuvent choisir celle qu’ils souhaient utiliser pour s’enrôler.`, +'s7e796fe83982863f': str`Rôle ${0}`, +'s7e87ab366c199345': `Mettre à jour la liaison`, +'s7eb3d239e0b491ab': `Sélectionnez les groupes à ajouter à l'utilisateur`, +'s7ec7036b249f4f22': `Utilisateur normal`, +'s7edad99c6b7bfe88': `Aller à la page suivante`, +'s7f13f4a2d0370cf6': `Lors de l'utilisation d'un abonnement Duo MFA, Access ou Beyond, une application pour l'Admin API peut être créée. + Cela permettra à authentik d'importer les appareils automatiquement.`, +'s7f2dcf01f7a8c0b7': `Liste des CIDRs (séparés par des virgules) à partir desquels les clients peuvent se connecter. Un CIDR plus spécifique sera pris en compte avant un CIDR plus général. Les clients se connectant à partir d'un CIDR non spécifié seront refusés.`, +'s7f3edfee24690c9f': `Le jeton a été affiché car authentik n'a pas la permission d'écrire dans le presse-papier`, +'s7f4e4054fbe132e1': `Autres paramètres globaux`, +'s7f5869b3d14d7cbc': `Fournisseur`, +'s7f5bb0c9923315ed': `Transférer l'authentification (application unique)`, +'s7f68101a50f526ee': `Refuser statiquement le flux. Pour utiliser cette étape efficacement, désactivez *Évaluer en planification* dans la liaison applicable.`, +'s7f9e79189a3d19e2': `Tenants`, +'s7f9eb9c8bd26e8fd': `URLs de redirection autorisées après un flux d'autorisation réussi. Indiquez également toute origine ici pour les flux implicites.`, +'s7fa236d26b798301': `Envoyer un lien`, +'s7fa4e5e409d43573': str`Erreur lors de la création des identifiants : + ${0}`, +'s7fc1ace65486dc25': `Toutes les politiques doivent correspondre pour accorder l'accès`, +'s802826db4e2c852e': `Attention : aucune étape d’invitation n’a été ajoutée à aucun flux. Les invitations ne fonctionneront pas comme attendu.`, +'s803b0621006085be': `Mettre à jour le fournisseur SAML`, +'s80e6d6fe5ad458d3': `Supprimer l'icône`, +'s819509c33a7534ac': `Transports de notification`, +'s81a45c4fd11e8e1a': `Échouer`, +'s81a87652ade099e4': `Mode de correspondance utilisateur`, +'s81ce0d54727f42d2': `Mode de correspondance d'utilisateur inconnu`, +'s81d673755a86a4f0': `Si aucun utilisateur n'est présent dans le contexte du flux, l'étape va échouer.`, +'s81ecf2d4386b8e84': `Continuer`, +'s81eff3409d572a21': `Exception générale du systèm`, +'s82188c9542510212': `Flux de récupération facultatif, qui sera accessible en bas de page.`, +'s821f6014c1a435b9': `Validité du jeton de rafraîchissement`, +'s8226f48cb1a80997': `Invitations`, +'s823abdb61543a826': `authentik n'a pas pu sauvegarder cette application :`, +'s824e0943a7104668': str`Cet utilisateur sera ajouté au groupe &quot;${0}&quot;.`, +'s832282d415294df4': `Importer un flux`, +'s8323a9af28e10502': `La politique est acceptée lorsque le score de réputation est inférieur au seuil, et n'est pas acceptée lorsque les deux options sélectionnées sont égales ou supérieures au seuil.`, +'s835da49b4dc83a51': `Connexions échouées par jour au cours du dernier mois`, +'s836148f721d8913b': `Reverse Proxy Transparent`, +'s836aa192b30c21da': `Flux de désinscription`, +'s838418d1a0815157': `Réussir la politique ?`, +'s838ed611b533b19e': `Paire de clés utilisée pour signer le requêtes sortantes. Laisser vide pour désactiver la signature.`, +'s839cb09cb2193da9': `Lien pour utiliser l'invitation.`, +'s83d0f62ad1731a03': `Clé privée`, +'s842d690eb3c11762': `Le flux est exécuté et la session est mise en cache en mémoire. Le flux est exécuté lorsque la session expire`, +'s844fea0bfb10a72a': `Code d'authentification`, +'s848288f8c2265aad': `L'application a été sauvegardée`, +'s8489d5559dda260c': `Permission de l'objet rôle`, +'s848a23972e388662': `RADIUS (Remote Authentication Dial-In User Service)`, +'s84c5a011acd608c9': `Rétention d'évènement`, +'s84d7d6ebbedcb586': `État et version`, +'s84fcddede27b8e2a': `Externe`, +'s850a58c683682809': `Mode de l'émetteur`, +'s851c108679653d2a': `Nom de la portée`, +'s85366fac18679f28': `Mot de passe oublié ?`, +'s858e7ac4b3cf955f': `Jetons statiques`, +'s859b2e00391da380': `Sélectionnez Oui pour réduire le nombre de fois où l'on vous demande de vous connecter.`, +'s8655c52824caac63': `Si cette case est cochée, l'URL de lancement s'ouvrira dans un nouvel onglet ou une nouvelle fenêtre du navigateur à partir de la bibliothèque d'applications de l'utilisateur.`, +'s872d0e88ab34ed83': `URL d'autorisation`, +'s8763a33c3d46aaf5': `Statut de l'avant-poste`, +'s87b7e3bc944c728c': `Activer l'utilisateur en attente en cas de réussite`, +'s8802553bc57617ee': `Les avant-postes sont des déploiements de composants authentik pour supporter différents environnements et protocoles, comme des reverse proxies.`, +'s880b8b70b22f9977': `Mettre à jour le plan`, +'s883b544e2b4aa3b5': `Nombre minimum de caractères minuscules`, +'s8849ece8c65e3a18': `Tableaux de bord`, +'s88870d7e499e848b': `API Administrateur Duo (optionnel)`, +'s88b8a2892635a2fc': `URL utilisée par authentik pour récupérer les jetons.`, +'s890810efbe103cbc': `Inclure les événements créés avec ce type d'action. S'il est laissé vide, tous les types d'action seront inclus.`, +'s890e983a7be64da4': `Résultat`, +'s8915e64b8b999bfe': `Liaison en cache`, +'s892d2731a6f22e59': `Clé privée, acquise auprès de https://www.google.com/recaptcha/intro/v3.html.`, +'s8939f574b096054a': `Pas vous ?`, +'s895514dda9cb9c94': `Créer un lien de récupération`, +'s89d1847b5e4ad225': `Modèle de chemin des utilisateurs`, +'s8a1d9403ca90989b': `Invitation utilisée`, +'s8a67b33a0d70d322': `Importer un appareil Duo`, +'s8a75e83497a183a2': `Sain`, +'s8aaad223e954f9ca': `Si activé, les champs de l'utilisateur sont mis en correspondance en ignorant leur casse.`, +'s8aae61c41319602c': `2: Quelque peu prévisible: protection contre les attaques en ligne non limitées. (essais &lt; 10^8)`, +'s8af61807443f32a4': `Actions`, +'s8af7239354f7e7b6': `Synchroniser les utilisateurs`, +'s8afc8c5aafb392d3': `Rayon`, +'s8aff572e64b7936b': `Renvoyer le courriel.`, +'s8b0432eecbd8b034': `Mettre à jour`, +'s8b149b30b5b523ef': `URL de configuration well-known de OIDC. Peut être utilisé pour configurer automatiquement les URL ci-dessus.`, +'s8b2b2a43fcf688a3': `Invite mise à jour avec succès.`, +'s8b33660e2ed7212c': `Lors de la connexion SSH, cette paire de clé sera utilisée pour s'authentifier.`, +'s8b87df5664de7eb8': `Configure comment les avant-postes requêtent les utilisateurs du serveur cœur d’authentik.`, +'s8be4abc7ca71da6c': `Paramètres d'UI`, +'s8c05cccd470f6b5f': `Aucun flux de paramètres n'est configuré.`, +'s8ca0dbaec5d48563': `Aucun flux de récupération n'est configuré.`, +'s8cb7bb82e96d5d77': `Politiques`, +'s8cc920e6a8430a0d': `Ouvre la session de l'utilisateur courant.`, +'s8cda828dac449ea5': `Tout vider`, +'s8ce8bdc9cc9c8604': `L'approbation dure indéfiniment`, +'s8d08843f397d9e81': `Consultez la documentation pour la liste de toutes les variables.`, +'s8d32d7b9e8ca60b1': `Le même identifiant est utilisé pour tous les fournisseurs`, +'s8d7ecd944ebe834b': `Jeton géré par authentik`, +'s8d857061510fe794': `Notification push Duo`, +'s8da88a8a5750bce1': `Authentificateurs Duo`, +'s8e01a852c1db8d29': `Nginx (Proxy Manager)`, +'s8ecdbff1a7329b64': `avec inspecteur`, +'s8f12575f694e85a2': `Mappages de portée additionnelle, qui sont passés au proxy.`, +'s8f85a0e678846080': `Permissions d'objet assignées`, +'s8fa26f65aed77c96': `Plus de détails`, +'s900b0d85b872d134': `Lier les utilisateurs sur base d'un identifiant unique`, +'s9065fcccd837a679': `Requête en cache`, +'s90760e5e02e95dfe': `Rafraîchir le(s) jeton(s)`, +'s909e876731a8febb': `Sélectionner toutes les lignes`, +'s90c3b62194fe8508': `Info de déploiement de l'avant-poste`, +'s9103a949a3963aa9': `Rôle mis à jour avec succès.`, +'s9117fb5195e75151': `Note`, +'s911a27022aba349f': `Créer et lier une Politique`, +'s916b32ac64ea2b05': `Étape mise à jour avec succès`, +'s9193ef1a39a6c872': `Marquer les utilisateurs nouvellements créés comme inactifs.`, +'s91e3a47599412f51': `Sources`, +'s91f389c796720a81': `Charger les serveurs`, +'s91f70424f5d5d23e': `Slug`, +'s9222ca30ae7786e4': `Application créée avec succès`, +'s925936f647ae52cc': `Afficher comme Titre dans les pages de Flux.`, +'s926e0ecf124fb01a': `Validité du code d'accès`, +'s927398c400970760': `Écrit toute donnée provenant du contexte du flux 'prompt_data' à l'utilisateur en attente. Si aucun utilisateur + n'est en attente, un nouvel utilisateur est créé avec ces données.`, +'s9277b90db38e1983': `Groupe Active Directory`, +'s92921878e886e36d': `Durée`, +'s92ca679592a36b35': `Rotation du secret effectuée`, +'s92e241c9f3c101a2': `L'objet connecté sera supprimé`, +'s92e91071c6a45eb4': `Les plans désactivés ne sont jamais appliqués.`, +'s9307f3dbb07a73b5': `Seulement faire échouer la politique, ne pas invalider le mot de passe de l'utilisateur.`, +'s93574c03953f25dd': `Ce fournisseur se comporte comme un reverse-proxy transparent, sauf que les demandes doivent être authentifiées. Si votre application en amont utilise HTTPS, assurez-vous de vous connecter à l'avant-poste en utilisant également HTTPS.`, +'s9368e965b5c292ab': `Configurer le fournisseur OAuth2/OpenID`, +'s936bf4342b182ad4': `Suivra le paramètre ?next ou redirigera vers l'interface par défaut`, +'s93c1e5fbe8184895': `Jeton créé avec succès`, +'s93cea6ca1f93349d': `URLs non-authentifiés`, +'s93cf77a59db53395': `la référence sera réinitialisée à sa valeur par défaut`, +'s94055b4eb957dc8f': `Dossiers utilisateurs`, +'s94333971a07803b9': `Paramètres additionnels`, +'s945a6b94361ee45b': `Pour les reverses proxy transparents avec authentification requise`, +'s949826fad0fe0909': `Tâche terminée avec erreurs`, +'s951281efc92b03fc': `Si l’utilisateur a utilisé n’importe lequel des appareils du type sélectionné ci-dessus pendant cette période, cette étape sera ignorée.`, +'s955c1fec1c6fb970': `Aucune étape n'est actuellement liée à ce flux.`, +'s95a032ae86881bf5': `Utilisation du flux`, +'s95b73e0f4e47eb9a': `Résultat si l'éxecution de la politique échoue.`, +'s95f09b229a0a0bb0': `Les clients confidentiels sont capables de préserver la confidentialité de leurs données d'identification, telles que les secrets du client.`, +'s964f6725aeb7662f': `Ajouter un groupe`, +'s965c503c3e42fdfe': `Activé`, +'s968c90258dcf7562': `Post`, +'s96b2fefc550e4b1c': `Type de fournisseur`, +'s96b3cddf33e1c853': str`Vous vous faites actuellement passer pour + ${0}. Cliquer pour arrêter.`, +'s96d2bb4be3f5e8aa': `Sélectionner les roles depuis lesquels assigner les permissions des utilisateurs de ce groupe depuis les rôles sélectionnés.`, +'s96dcf7ec8342c335': `L'invitation n'est limitée à aucun flux, et peut être utilisée avec n'importe quel flux d'inscription.`, +'s97d1b0070f50c07f': `Jetons statiques`, +'s97f2dc19fa556a6a': `SMS`, +'s97f5e0c138eae172': `Avertissement : le fournisseur n'est assigné à aucune application.`, +'s980270d0fab7ecb3': `Mettre à jour la liaison de l'étape`, +'s98327528f00365a7': `Erreur de récupération des données.`, +'s98b1cb8fb62909ec': `Group`, +'s98beadfeeb3acb66': `Requiert un super-utilisateur`, +'s98c3bdf4fd5cdf65': `Règles de notification`, +'s98dc556f8bf707dc': `Cette application requiert de nouvelles permissions :`, +'s991b750e2d5c4234': `Liaison du fournisseur de services`, +'s992f8d1a776e763c': `Si laissé vide, authentik essaiera d'extraire l'URL de lancement en se basant sur le fournisseur sélectionné.`, +'s9940e3f073fbdbd4': `Créer des utilisateurs si nécessaire`, +'s995535e7af30d754': `Utiliser l'adresse courriel de l'utilisateur, mais refuser l'inscription si l'adresse courriel existe déjà.`, +'s99f110d27e30b289': `Titre`, +'s9a34d1520e320465': `Paramètres propres à l'étape`, +'s9a393a04eaf1eb0e': `Créer une liaison d'étap`, +'s9ae089fd248e72db': `DN à préfixer au DN de base pour les utilisateurs`, +'s9ba989e69344ff29': `Ouvrir le menu de notifications`, +'s9bd59e0ea70a3e4a': `Mettre à jour l'avant-poste`, +'s9bd9ba84819493d4': `Une erreur s'est produite ! Veuillez réessayer plus tard.`, +'s9bf48a89367282cd': `Avertissement : le domaine d'authentik n'est pas configuré, l'authentification ne fonctionnera pas.`, +'s9c29565c5ae1cc92': `La sélection d'une intégration permet la gestion de l'avant-poste par authentik.`, +'s9c3c272944dcfca3': `Utilisateur créé avec succès`, +'s9c6f61dc47bc4f0a': `Modèle créé`, +'s9c73bd29b279d26b': `Fin de l'appropriation utilisateur`, +'s9ca3310e1999fd5b': `Si activé, seul un hash du numéro de téléphone sera sauvegarder. Cela peut être fait pour des raisons de protection des données personnelles. Les appareils créés depuis une étape ayant cette option activée ne peuvent pas être utilisés avec l'étape de validation d'authentificateur.`, +'s9cc631505c17b028': `Permissions globales assignées`, +'s9ce7cc01fb9b5b53': `Gérer les licences entreprise`, +'s9d18948d25c68d66': `Paire clé/certificat générée avec succès.`, +'s9d2239d2b0402795': `Non recommandé : la vérification de l'utilisateur ne devrait pas être présente.`, +'s9d2d00982edafabb': `Turque`, +'s9d5796a4b9b7560e': `Envoyer un en-tête d'authentification HTTP-Basic personnalisé basé sur les valeurs de authentik.`, +'s9d8ad4b85287131f': `Chiffres`, +'s9d8b8aa2b404c2c8': `Paramètres`, +'s9d95f09deb601f34': str`Erreur lors de la validation des identifiants par le serveur : + ${0}`, +'s9d96eb5ca93e6473': `URL de configuration OpenID`, +'s9db2c836ade1339c': `OIDC JWKS URL`, +'s9e51d6de369f320b': `Instance créée avec succès.`, +'s9e568afec3810bfe': `Clés de récupération`, +'s9e830cbc0b42a514': `Mettre à jour le flux`, +'s9e9316a6b0c16231': `Réseaux du client`, +'s9e9c8d99f4c26baf': `Lorsqu'un utilisateur revient du courriel avec succès, son compte sera activé.`, +'s9ea472b555374771': `Exigence de clé résidente`, +'s9ee20003cb116abf': `Flux sans mot de passe`, +'s9ee92717d7f63247': `État détaillé (une instance par colonne, les données sont mises en cache et peuvent donc être périmées)`, +'s9f23ed1799b4d49a': `Configure quelle donnée utiliser pour l'identifiant unique utilisateur. La valeur par défaut devrait être correcte dans la plupart des cas.`, +'s9f26843287bb592d': `Groupes`, +'s9f5a5f23312798f0': `Membres`, +'s9f83d7768aea548a': `Ou importer manuellement`, +'s9f8aac89fe318acc': `Indiquer la valeur "FriendlyName" de l'attribut d'assertion (optionnel)`, +'s9f91cc8bcfabb40f': `Assertion non valide avant`, +'s9f9492d30a96b9c6': `Type utilisateur`, +'s9fb28be12e2c6317': `Super-utilisateur`, +'s9fd39a5cb20b4e61': `Il y a eu une erreur`, +'s9fdda7ea4642306c': `Groupe(s)`, +'s9ff3121d30f88d52': `Normal`, +'s9ffa1ac03ce6fd20': `Journalisation de l'exécution`, +'sa00cf67b54c44c71': `Vérifier l'IP du service Kubernetes, ou`, +'sa03aa46068460c95': `Mot de passe ou nom d'utilisateur oublié ?`, +'sa03fe48e892df2d8': `L'URL externe à laquelle vous allez vous authentifier. Le serveur authentik core devrait être accessible à cette URL.`, +'sa0b01f479f40c52d': `Appareil(s)`, +'sa0e0bdd7e244416b': `Requête suspecte`, +'sa11e92683c5860c7': `La requête a été refusée.`, +'sa13e6c8310000e30': `ID de session`, +'sa18e1c6e0e6f16cc': `Le nouvel assistant d'application simplifie grandement les étapes nécessaires à la création d'applications et de fournisseurs.`, +'sa1b0052ae095b9b3': `Configurer le fournisseur SCIM manuellement`, +'sa1b41e334ad89d94': `Le secret a été vu`, +'sa1db89262360550b': `Envoyez-nous vos commentaires !`, +'sa248e1021d2c27b5': `Vérifier le courriel de l'utilisateur en lui envoyant un lien à usage unique. Peut également être utilisé lors de la récupération afin de vérifier l'authenticité de l'utilisateur.`, +'sa266303caf1bd27f': `Courriel envoyé`, +'sa29b5680cfafacc8': `Hôte externe`, +'sa2b727168b090d34': `Vider le cache de flux`, +'sa2c29dc5ed47b26d': `Obliger l'utilisateur à configurer un authentificateur`, +'sa2e4d6830226d3ec': `Redirection`, +'sa30c58514a3dc0fb': `Refuser l'accès à l'utilisateur`, +'sa319e3bf44c85963': `Mappages de propriétés utilisés lors de la création des groupe`, +'sa33d061d2ade20aa': `Réputation`, +'sa3438c7bb4e9cce8': str` + ${0}non-lu`, +'sa347e31efbb60be2': `Mettre à jour l'application`, +'sa3599457b9418bc5': `Avatar de l'utilisateu`, +'sa3660d505e7011e0': `Application autorisée :`, +'sa3a3e09b88ed9791': `Permissions assignées`, +'sa3c1f6ac5e63a70f': `Flux à utiliser avant authentification.`, +'sa41aee3ae04c9216': `Afficher les étiquettes des sources`, +'sa43153d53ae65063': `Type inconnu`, +'sa442044b586ec8bf': `Action`, +'sa45a194b58837e4f': `Actif`, +'sa48f81f001b893d2': `Utilisateur`, +'sa4a8086275475714': `Sélectionnez un flux d'inscription`, +'sa50a6326530d8a0d': `Montrer moins`, +'sa55ee64c5c51df0f': `Sélectionner le groupe d'utilisateurs à qui les alertes seront envoyées. Si aucun groupe n'est sélectionné, cette règle est désactivée.`, +'sa578033f134a83b6': `Configure la durée de validité des codes d'accès.`, +'sa57c393736e2732c': `Tester le mappage de propriété`, +'sa599dbe5776897ad': `Spécifiez plusieurs URIs de serveurs en les séparant par une virgule.`, +'sa61966cd83b4924c': `Champs supplémentaires à transmettre au fournisseur OAuth, séparés par des espaces. Pour remplacer les champs existants, préfixez-les par *.`, +'sa661ea7d7a50f2e9': `Créer un nouveau fournisseur.`, +'sa668bd79645c3e06': `Kubeconfig`, +'sa6905be242387f36': `Exception`, +'sa6ab5184d6315895': `De`, +'sa6c0ba4910c7ad7f': `Assigné à l'application (backchannel).`, +'sa717841a602fe7d8': `Impossible de vider le cache de politique`, +'sa72a3bd1e7e89926': `Flux utilisé lorsqu'un utilisateur accède à ce fournisseur et n'est pas authentifié.`, +'sa738ce390bc24875': `Obtenez cette valeur depuis https://console.twilio.com`, +'sa7b56a80ab1801f0': `Jeton d'Authentification Twilio`, +'sa7fcf026bd25f231': `Peut être au format "unix://" pour une connexion à un service docker local, "ssh://" pour une connexion via SSH, ou "https://:2376" pour une connexion à un système distant.`, +'sa800871782eba1ac': `Contenu droit`, +'sa81e2cdaf6921adc': `Système`, +'sa8384c9c26731f83': `Pour permettre n'importe quelle URI de redirection, définissez cette valeur sur ".*". Soyez conscient des possibles implications de sécurité que cela peut avoir.`, +'sa84a7fd11ba85e88': `Si sélectionné, l'invitation ne sera utilisable que dans ce flux. Par défaut l'invitation est acceptée sur tous les flux avec des étapes d'invitation.`, +'sa84adff85b5e505c': `Ouvrez votre application d'authentification à deux facteurs pour afficher votre code d'authentification.`, +'sa85cfb884c17d85d': `Vérifier le certificat SSL de l'API Kubernetes`, +'sa879d5ce584875cf': `Paramètres spécifiques à la politique`, +'sa8c45b6b92a8ba1f': `Créer une application`, +'sa8d83cd8023e8e4d': `URL utilisée par authentik pour obtenir des informations sur l'utilisateur.`, +'sa8e255492bb6ae0d': `Intégration(s) d'avant-postes`, +'sa9020b93c3bd7235': `Nombre de tentatives dont dispose un utilisateur avant que le flux ne soit annulé. Pour verrouiller l'utilisateur, utilisez une politique de réputation et une étape user_write.`, +'sa90b7809586c35ce': `Entrez une URL complète, un chemin relatif ou utilisez 'fa://fa-test' pour utiliser l'icône Font Awesome "fa-test".`, +'sa920231366378c90': `Lorsqu'activé, toutes les sessions précédentes de l'utilisateur seront terminées.`, +'sa92398dba8b12d85': `Mappage`, +'sa95a538bfbb86111': str`Êtes-vous sûr de vouloir mettre à jour + ${0}" + ${1}" ?`, +'sa982875b258fea07': `L'utilisateur a été ajouté avec succès au(x) groupe(s).`, +'sa9b2a245441557dc': `Dernière exécution`, +'sa9c7044d9fd1f3e6': `Valeur initiale`, +'sa9dbe2fb284e26fe': `Envoyer le lien de récupération à l'utilisateur`, +'saa0e2675da69651b': str`L'URL " + ${0}" n'a pas été trouvée.`, +'saa10777250a6deca': `Mettre à jour la source SAML`, +'saa79b47f60c66458': `URL SSO (Redirect)`, +'saa7ba2057bd524a1': `Interpréter la valeur initiale comme une expression`, +'saa855c61e0403fe6': `Attention : cette application n’est utilisée par aucun avant-poste.`, +'saa8939ac88a76f98': `Vu pour la dernière fois`, +'saaa3abe03c7260f9': `Opérations de longue durée qu'authentik exécute en arrière-plan.`, +'saab79cd956ee56a9': `Plans`, +'saabeb4cab074b0b9': `Permissions de l'objet utilisateur`, +'saae1c70e168b45b4': `Administrateur`, +'sab6bad52985c6676': `Image de marque utilisée dans le titre de la page et dans d'autres endroits`, +'sab6d24c5ec8dc361': `Nom amical`, +'sab85321d3b0840b7': `Requête d'API échouée`, +'sababff57115130a0': str`Erreur : configuration de la source non-supportée : + ${0}`, +'sabaf0061f7e41b0b': `Secret consumer`, +'sabb56f74492e7e96': `Mettre à Jour l'Appareil`, +'sabd1bc9fb7da71e7': `Expression en python`, +'sabebdc7fa6a5bddb': `Nginx (standalone)`, +'sabf67834e35dede5': `Compteur jeton`, +'sac1332e6f421526e': `Mettre à jour le transport de notification`, +'sac17f177f884e238': `Rester connecté ?`, +'sac43cb9690260b86': `Numéro de départ d'UID`, +'sac8252732f2edb19': `Date`, +'sad09c62cb4ebae68': `Cliquer pour copier le jeton`, +'sad130c2d925fb7bf': `Mettre à jour l'utilisateur`, +'sad3e3c8146fc920f': `Statut`, +'sad59707375956ad2': `Terminer`, +'sad8550b8731518d8': `Session non valide à partir de`, +'sadadfe9dfa06d7dd': `Pas d'état de synchronisation.`, +'sae1e1a59d22609c4': `Si activé, les paramètres globaux de connexion courriel seront utilisés et les paramètres de connexion ci-dessous seront ignorés.`, +'sae239213b7c70376': `État`, +'sae486938be80729c': `Tout va bien.`, +'sae5d87e99fe081e0': `Obligatoire`, +'sae5da213b7f896ed': `Étape`, +'saeff3596e1ac31b6': `Configuration`, +'saf1d289e3137c2ea': `AC auprès de laquelle le certificat du terminal est vérifié. Peut être laissé vide en l'absence de validation.`, +'saf24e253b3b006d4': `Comment se connecter`, +'saf31b3c610036ed6': `Si activée, toutes les exécutions de cette politique seront enregistrées. Par défaut, seules les erreurs d'exécution sont consignées.`, +'saf5eb7596b3a355b': `Les objets appliqués à ce filtre seront des groupes.`, +'saf6097bfa25205b8': `Une copie de ce lien de récupération a été placée dans le presse-papier`, +'saf63a04c86018698': `-`, +'saf63d34c8601dd41': str` + ${0} + `, +'saf794c74c9ea731e': `Mappage des propriétés utilisateur`, +'saf7ce4165a1025f6': `Synchroniser les groupes`, +'saf84e7732a9e1336': `Prévisualisation des erreurs`, +'safc0e0656d572f4e': `Une politique utilisée pour les tests. Retourne toujours la même valeur telle qu'indiquée ci-dessous après une attente aléatoire.`, +'safcc54b2aedb1a17': `Si cette option est sélectionnée, le jeton expirera. À son expiration, le jeton fera l'objet d'une rotation.`, +'safd0363143a46a91': `Authentification Basique`, +'sb0669da3df95837c': `Connections par jour le mois dernier`, +'sb07bf992e3d00664': `Aucune donnée additionnelle disponible.`, +'sb0b86b8ca6ab13bd': `Fournisseurs`, +'sb157267c85fdff30': `Certificat`, +'sb15e8daacf26bdfc': `Créer un jeton`, +'sb15fe7b9d09bb419': `Si aucune fenêtre contextuelle Plex ne s'ouvre, cliquez sur le bouton ci-dessous.`, +'sb1751a1411d6874f': `URL d'API externe`, +'sb17e8c70f9a05c77': `Au cas où aucune autre méthode ne soit disponible.`, +'sb18ec434a8a3aafb': `Clé de licence`, +'sb1a4e9b288e2f005': `Fédération & Connection Sociale`, +'sb1c91762ae3a9bee': `Début de l'appropriation utilisateur`, +'sb1fe947f9ad27b9d': `Expiration du jeton`, +'sb21f33b039c86322': `URL de base SCIM, se termine généralement par /v2.`, +'sb24755ea94bef31d': `Supprimer l'arrière plan actuellement défini`, +'sb25d9afe10941425': `Détermine l'usage de ce flux. Par exemple, un flux d'authentification est la destination d'un visiteur d'authentik non authentifié.`, +'sb25e689e00c61829': `Utiliser un authentifieur à code.`, +'sb2b3b281954752c4': `Assigné à l'application`, +'sb2bb6f93773a4594': `Attribut d'utilisateur/groupe utilisé pour le champ utilisateur de l'en-tête HTTP-Basic. S'il n'est pas défini, le courriel de l'utilisateur est utilisée.`, +'sb2c57b2d347203dd': `Montrer plus`, +'sb2cbd06f8e25b47e': `Aller au Portail Client`, +'sb2f307e79d20bb56': `Contexte du plan courant`, +'sb3182a87ded1bc91': `Disposition inconnue`, +'sb32e9c1faa0b8673': `Flux de pré-authentification`, +'sb357ea19a722d827': `Appliquer`, +'sb35c08e3a541188f': `Également appelé Client ID.`, +'sb3651834cca86735': `Nombre minimum de symboles`, +'sb36e4c05244278c1': `Aucun prérequis`, +'sb37880a2a7288ef0': `Mettre à jour les permissions`, +'sb379d861cbed0b47': `Ne jamais créer d'utilisateurs`, +'sb3d4f79d9d8b71e5': `Soumettre`, +'sb3defbacd01ad972': `Mappages de propriété utilisés pour la correspondance des utilisateurs.`, +'sb3fa80ccfa97ee54': `Nom de l'étape`, +'sb41b2cfbbc52565b': `Créé`, +'sb4564c127ab8b921': `Échec de la connexion`, +'sb488dee0be434f7e': `Paramètres d'authentification`, +'sb4a1d1c19438e929': `authentik en cours d'exécution sur auth.example.com`, +'sb4c9ed2a487b238f': str`Êtes-vous sûr de vouloir retirer l'utilisateur + ${0} des groupes suivants ?`, +'sb4d7bae2440d9781': `Statistiques Utilisateur`, +'sb4e50ca3cffdbc10': `Sidebar gauche`, +'sb50000a8fada5672': `Une erreur a été rencontrée dans le fournisseur.`, +'sb546eb04425e07fa': `Détails de la mise à jour`, +'sb564f81eb057342e': `Icône d'application`, +'sb56674c9ea4f0588': `Paramètres de comportement`, +'sb57dbcda1929c642': `Éditer l'attribut notes de cet utilisateur pour ajouter des notes ici.`, +'sb59d68ed12d46377': `Chargement en cours`, +'sb635ad3c2e357d3c': `Ceci est le mot de passe à utiliser pour l'authentification basique`, +'sb6770fa90be6d8b3': `Jetons de rafraîchissement OAuth`, +'sb69119c9f0547bed': `Copier le lien de récupération`, +'sb69a4b0acd0895f2': `Flux`, +'sb6c3bf5489d7556e': `Exemple contextuel de données`, +'sb6cbd4f92ebaf5d8': `Lié`, +'sb6d5146d5efb3058': `Clé d'accès`, +'sb6d7128df5978cee': `Exception de politique`, +'sb6d7d58cb0a1544e': `Mode de compatibilité`, +'sb71ace8e9b35c749': `Prévisualisation des données`, +'sb72ebab438cb2983': `Importer les certificats des fournisseurs externes ou créer des certificats pour signer les demandes.`, +'sb7684e2910a33a1f': `Bind DN`, +'sb7794c2910b1a9ec': `Bind DN`, +'sb7a30abc1dcf6c36': `Émetteur`, +'sb8168ae309c66abc': `Authentificateur TOTP`, +'sb85ffe141d7c229d': `Durée de la session`, +'sb8795b799c70776a': `Usage unique`, +'sb8bc2b8376c96a6b': `Intention`, +'sb8c13bd58191cea2': `Lors de la connexion avec un serveur LDAP avec TLS, les certificats ne sont pas vérifiés par défaut. Spécifiez une paire de clés pour vérifier le certificat distant.`, +'sb8d4f44a1d5b9a14': `Backends`, +'sb8dd788adf7b907b': `Proxy`, +'sb8f855b49234b81b': `Appliquer`, +'sb904f23f17b60c3a': `Flux importé avec succès`, +'sb923723d27df40ba': `Permission(s)`, +'sb932dead79567c7b': `URL du jeton d'accès`, +'sb95baab425322600': `Secret partagé`, +'sb96629f50f2e7fab': `Malade`, +'sb9834316ffd4ae3e': `Empilé`, +'sb986f15fa9b17805': `L'approbation expire.`, +'sba42248f3f27955c': `Base de données utilisateurs + mots de passe standards`, +'sba65ae54d6585c1a': `Notifications non lues`, +'sba999428083abce3': `EntitéID/Émetteur`, +'sbab723b98dcfe23f': `Afficher l'utilisateur correspondant`, +'sbad5b96fb855ef36': `Aucune politique liée.`, +'sbadde673052efc02': `Certificat Web`, +'sbaf20067de176c90': `Paramètres d'apparence`, +'sbb3243352661428f': `Flux d'authentification`, +'sbb57cd8a3ed12915': `Valide pendant 360 jours, après quoi le mot de passe sera alterné automatiquement. Vous pouvez copier le mot de passe depuis la liste des jetons.`, +'sbb8ad22c83d375b1': `Les mots clés suivants sont supportés :`, +'sbbb2180b6aed196e': `Numéro Expéditeur`, +'sbbb7318812d64e51': str`Erreur lors de la création des identifiants : + ${0}`, +'sbbb97b1c63507dc0': `Nombre`, +'sbbc1de43ab6c1f76': `Créer une règles de notification`, +'sbbc53e0e54d7946f': `Sujet`, +'sbbc806ea3987c781': `Importation automatique`, +'sbc625b4c669b9ce8': `Ouvrir la connexion`, +'sbc80eab557fbf782': `Rechercher un groupe`, +'sbc88fb27a4c3b894': `Configurer comment l'exécuteur de flux doit gérer une réponse invalide à un défi donné par cette étape d'assignation`, +'sbcae51a6f06e53d4': `Mode de Recherche`, +'sbcf8604929b6a27a': `Envoi de notifications push Duo`, +'sbd19064fc3f405c1': `Vérifiez votre boite de réception pour un courriel de vérification.`, +'sbd34d118bcb1aaf2': `Jeton API`, +'sbd5be4fb7442a34c': `Basé sur l'identifiant de l'utilisateur`, +'sbdc1176ff9f93da2': `Ceci est le point de terminaison complet vers lequel il faut envoyer des requêtes POST`, +'sbdc4a833de9ca502': `Connexions et autorisations au cours de la dernière semaine (par 8 heures)`, +'sbdeedc1c60306b35': `Messages`, +'sbe3b416a356f1c91': `Est actif`, +'sbe47a5bdeec19ab0': `Liaison(s) de l'étape`, +'sbe9a51f29a4a2c5b': `Réussite`, +'sbea3c1e4f2fd623d': `Type d'étap`, +'sbea3db12fd799210': `Validité du jeton d'accès`, +'sbec40ef4e6f139b7': `(Format : hours=1;minutes=2;seconds=3).`, +'sbecf8dc03c978d15': `Relancer la synchro`, +'sbedb77365a066648': str`Dernière synchro : + ${0}`, +'sbf41e0db12834133': `Inclure depuis la portée les demandes utilisateurs dans id_token, pour les applications qui n'accèdent pas au point de terminaison userinfo.`, +'sbf4ef82e04772a4e': `Supprimer l'utilisateur en attente. ATTENTION, cette étape ne demande aucune confirmation. Utiliser une étape d'approbation pour s'assurer que l'utilisateur ait conscience de ses actions.`, +'sbf5f4c5ba679e847': str`Connexion avec + ${0}.`, +'sbf9c5c5a8e5efad4': `Échoué`, +'sc007cca5af67eae0': `Lorsque cette option est activée, authentik intercepte l'en-tête Authorization pour authentifier la demande.`, +'sc04e92d753742189': `6 chiffres, largement compatible`, +'sc0829ee663ced008': `Répertoire`, +'sc0a0c87d5c556c38': `Numéro de téléphone`, +'sc0d0890fbd46ef62': `Exclure les comptes de service`, +'sc10db51c9bb77d5c': `Base de données utilisateurs + mot de passe LDAP`, +'sc1231049879b8d33': `Si activé, utiliser la connexion locale. Intégration Docker socket/Kubernetes requise.`, +'sc1589121ae2f5f92': `Saisissez le code indiqué sur votre appareil.`, +'sc15d60377cc8aaac': `Aucune politique n'est actuellement lié à cet objet.`, +'sc16e00a7a8b2fde2': `Retour`, +'sc19838ca8c135c1b': `Paramètres de marque`, +'sc1a1ff47c058bb09': `Journal d'évènements`, +'sc1cb0eef9ed94e6a': `Les utilisateurs nouvellement créés sont ajoutés à ce groupe, si un groupe est sélectionné.`, +'sc1ce2f758935ff48': `Géré par authentik`, +'sc1cfce89ebcf1bf9': `Télécharger le certificat de signature`, +'sc1f4b57e722a89d6': `3: Sûrement imprévisible: protection modérée contre les attaques de hash-lent hors ligne. (essais &lt; 10^10)`, +'sc1feadd25659c94d': `Adresse d'origine`, +'sc21032b0d37882a0': `Ajouter cette option si le paramètre authentik_host ne correspond pas à l'URL sur laquelle vous voulez ouvrir une session.`, +'sc25edca57df81461': `Authentification`, +'sc265a3e29e1206e4': `Évènements`, +'sc297b2e13c28ecf9': `Autoriser les amis à s'authentifier via Plex, même si vous ne partagez aucun serveur`, +'sc2a1a40a1b4b0170': `Intégration créé avec succès`, +'sc2c70fd56f5d0b48': `Liaison Post mais la demande est automatiquement envoyée et l'utilisateur n'a pas à confirmer.`, +'sc2cedfb22488ccb2': `Applications modernes, API et applications à page unique.`, +'sc2e03590269d5a10': `Nouveau mappage de propriété`, +'sc2ec367e3108fe65': `Code QR d'activation Duo`, +'sc2f116c0ea77d58a': `Message d'erreur`, +'sc2f1e5dd74c1b7df': `Connexions réussies`, +'sc3259eb55cf91e8c': `LDAP`, +'sc35581d9c1cd67ff': str`Au nom de +${0}`, +'sc381422c585b867f': `Actions rapides`, +'sc39fb3ff3753d5ab': `Cacher les mappages gérés`, +'sc3c74f5273df459a': `Générique`, +'sc3e0c240b159fbce': `Flux créé avec succès`, +'sc3e1c4f1fff8e1ca': `Ce flux est terminé.`, +'sc44bae5cde0083fa': `Actions au cours de la semaine écoulée (par tranche de 8 heures)`, +'sc4508175bf6b09dd': `Chemins non-authentifiés`, +'sc498a3b05cfe2b08': `Préféré : la vérification de l'utilisateur est préférable si disponible, mais n'est pas obligatoire.`, +'sc4eedb434536bdb4': `Besoin d'un compte ?`, +'sc4fdeccf14be5378': `Exécuter`, +'sc54aafeea9c9bab0': `Services connectés`, +'sc554339ffc7b04e7': `Invitation créée avec succès`, +'sc5668cb23167e9bb': `Sinon, si Duo est installé sur cet appareil, cliquez sur ce lien :`, +'sc592307ea80f16b9': `Inconnu`, +'sc5a4711395ffb043': `Étape utilisée pour configurer un authentificateur TOTP (comme Authy ou Google Authenticator).L`, +'sc5f923729564fbf3': `Créer un rôle`, +'sc5fb00b25c7f5a02': `Permission`, +'sc615309d10a9228c': `RBAC est en aperçu,`, +'sc647dcb91f6958dd': `Numéro depuis lequel le SMS sera envoyé.`, +'sc6b4ebd37b7a91c7': `Jetons et mots de passe d'application`, +'sc6c57419ad3a01a8': `Clé utilisée pour signer les jetons.`, +'sc6c575c5ff64cdb1': `Mettre à jour le fournisseur SCIM`, +'sc6e8a34361c7c272': `Transférer l'authentification (niveau domaine)`, +'sc741d9ebe07ad103': `Certificat de signature`, +'sc741dfb09d3395f0': `Aucune Application disponible.`, +'sc744f3691efe310d': `Cacher les comptes de service`, +'sc764ddf60b5149de': `URL optionnelle si le fournisseur d'identité supporte Single-Logout.`, +'sc7707b3ba3a2a7ca': `URL du jeton de requête`, +'sc7be80a7f8ec597e': `Date d'expiration`, +'sc816360d6f5a1eeb': `Les flux décrivent une succession d'étapes pour authentifier, inscrire ou récupérer un utilisateur. Les étapes sont choisies en fonction des politiques qui leur sont appliquées.`, +'sc8a79fddea3ab4a9': `URL utilisée pour valider la réponse captcha, recaptcha par défault. Peut être remplacé par une alternative compatible.`, +'sc8da3cc71de63832': `Connexion`, +'sc8de93a7dc0d78ba': `Type du client`, +'sc8f286ac783c385d': `Afficher les informations de déploiement`, +'sc9175cb129fdc306': str`Mettre à jour + ${0}`, +'sc926385d1a624c3a': `1: Très prévisible: protection contre les attaques en ligne limitées. (essais &lt; 10^6)`, +'sc92c1a54034e21cc': `Assigner`, +'sc92d7cfb6ee1fec6': `Le mot de passe a été mis à jour avec succès.`, +'sc92ea8fbf9ba06a7': `Fournisseurs backchannel`, +'sc92ed9d5e01d3f24': `Règle(s) de notification`, +'sc96dd9d2e7b05fc5': `Longueur minimale`, +'sc9c3578cce3cf7a8': `Hôte externe`, +'sc9cf9ecaf9e5d67e': `Basé sur l'UUID de l'utilisateur`, +'sc9f69360b58706c7': `Modèle supprimé`, +'sc9fc206433f67588': `Expressions régulières pour lesquelles l'authentification n'est pas requise. Chaque ligne est interprétée comme une nouvelle expression.`, +'sca2879d96f58a39c': `Envoyer une seule fois`, +'sca7cfe2bef51b2a5': `Racine`, +'sca7fed2bef53cb99': `Rôle`, +'scab2900019953050': `Utilisateur mis à jour avec succès`, +'scae166352a31032c': `Étapes de Configuration`, +'scb317851cbcc6b12': `Hôte interne`, +'scb43f5faeb6a7ca9': `La vérification utilisateur ne doit pas avoir lieu.`, +'scb489a1a173ac3f0': `Oui`, +'scb58b8a60cad8762': `Relay state par défaut`, +'scb5c9a7cc4ccd68d': `Information courriel :`, +'scb6620fcd5bff04c': `Paramètres avancés`, +'scbb7d3154da629f3': `URL OCI, au format oci://registry.domain.tld/path/to/manifest.`, +'scc286303aa9c6cb0': `Synchroniser les statuts`, +'scc2e420c54dc8089': `Lier une étape existante`, +'scc3487e74c5a3e89': `Copier le jeton`, +'scc733ba98740038a': `Mettre à jour l'invite`, +'sccbfc4dec0c8d80c': `Assigné à l'application`, +'sccc47f82044453f9': `Basé sur l'identifiant haché de l'utilisateur`, +'scd0cfe87af6f2ff2': `Sévérité`, +'scd247ffad6e04ac0': `Nom TLS du serveur`, +'scd2984ee5552643a': `URL SSO (Post)`, +'scd8062ff5e1326d8': `Autoriser jusqu'à N occurrences dans la base de données HIBP`, +'scd84d10ee9137070': `Assigner une permission à un rôle`, +'scda8dc24b561e205': `Une erreur a été rencontrée dans l'application.`, +'sce106606ae84d46f': `Mappages de propriété`, +'sce8d867ca5f35304': `Définir le mot de passe`, +'scea1f16238093e35': `Exécute le fragment de code python pour décider d'autoriser ou non la demande.`, +'scee721983b1c28d0': `Ajouter un utilisateur existant`, +'scef2eb6a2bfe3110': `Les utilisateurs internes peuvent être des employées de l'entreprise, qui auront accès à l'ensemble des fonctionnalités entreprise.`, +'scef3f4ad80abbd22': `Configure comment les avant-postes authentifient les requêtes.`, +'scef7abb8456b06d6': `Vérifier zxcvbn`, +'scefe482c547fb3f3': str`Basé sur +${0}`, +'scf2790cf3ad89283': `Nom de l'attribut utilisé pour les assertions SAML. Peut être un OID URN, une référence à un schéma ou tout autre valeur. Si ce mappage de propriété est utilisé pour la propriété NameID, cette valeur est ignorée.`, +'scf4afecb0f1e69b2': `Les tentatives de connexion invalides diminuent d'une unité le score de l'IP du client et du nom d'utilisateur sous lequel il tente de se connecter.`, +'scf5ce91bfba10a61': `Veuillez saisir votre mot de passe`, +'scfbc2f1396ee8550': `Action refusée`, +'sd04376c4216c921f': `Paramètres d'URL`, +'sd06b47084fec0ec5': `Bearer Token`, +'sd07866d9f38b2c50': `Exécuter le flux`, +'sd080b2370aa82967': `Réputations pour chaque IP et identifiant utilisateur. Les scores sont décrémentés à chaque connexion échouée et incrémentés pour chaque connexion réussie.`, +'sd0bc94e11935ee5a': `HTTP n'est pas détecté correctement`, +'sd1031bddc66dc495': `Connectez votre compte aux service listés ci-dessous, cela vous permettra de les utiliser pour vous connecter au lieu des identifiants traditionnels.`, +'sd1146418b344f81f': `Mettre à jour la règle de notification`, +'sd1288ca57e221cf9': `Mettre à jour le jeton`, +'sd14a19a19d507f9e': `Groupe parent pour tous les groupes LDAP`, +'sd18170637295bace': `Préfixe DN utilisateurs`, +'sd18b18f91b804c3f': `Attributs personnalisés`, +'sd1a5560fde6f2271': `Fournisseur importé avec succès`, +'sd1f44f1a8bc20e67': `Courriel`, +'sd1f81284eeb7b503': `Fichier`, +'sd20f6cd02c90867f': `Application(s)`, +'sd2122c514f0778b5': `Autoriser l'utilisateur à se connecter et à utiliser ce système`, +'sd216b08bafb297ee': `Flux utilisé pour authentifier les utilisateurs. S'il est laissé vide, le premier flux applicable trié par le slug est utilisé.`, +'sd21a971eea208533': `Fournisseur`, +'sd2208cd1a767644b': `Déconnecter`, +'sd2223afb7d6b100d': `Type`, +'sd22bd01bdf28c548': `Expiration des licences cumulative`, +'sd2c58d7c6dddc515': `Métadonnée SAML`, +'sd3386a2ef42e80b9': `Télécharger`, +'sd34be0d0fcb39971': `Nom d'affichage de l'utilisateur`, +'sd35ae4be63df1f9f': `Sélection de backends pour tester le mot de passe.`, +'sd39c5e998efecf93': `Nom d'attribut SAML`, +'sd3a853f63f45dcb0': `Réussite`, +'sd46fd9b647cfea10': `Également appelé Client Secret.`, +'sd47f3d3c9741343d': `4: Très imprévisible: forte protection control les attaques de hash-lent hors ligne. (essais &gt;= 10^10)`, +'sd49099e9522635f4': `Licence(s)`, +'sd4ac926e4ebb1cd7': `Nom Commun`, +'sd503fabef9691134': `Lors de l'utilisation du mode proxy ou de l'authentification directe (application unique), le chemin d'accès à l'URL demandée est vérifié par rapport aux expressions régulières. Lors de l'utilisation de l'authentification directe (mode domaine), l'URL complète et le schéma est demandée et l'hôte est comparée aux expressions régulières.`, +'sd539548ca4c71619': `Portées additionnelles`, +'sd5903cc8de68b3fc': `Aucun formulaire trouvé`, +'sd5a4b41c6c883b03': `Audience`, +'sd5ba2d61ee4796fe': `Invitation(s)`, +'sd600334ec2c39b74': `Créer un utilisateur`, +'sd60415c7666859f0': `Lorsque sélectrionné, la valeur initiale sera évaluée de la même manière qu'un mappage de propriété. + Si l'évaluation échoue, la valeur initiale sera retournée.`, +'sd62cfc27ad4aa33b': `Basé sur l'adresse courriel de l'utilisateur`, +'sd6422f7004036cdd': `Registre OCI`, +'sd6a025d66f2637d1': `Authentificateur traditionnel`, +'sd6b8b4156f7df696': `Icône affichée dans la barre latérale, l'en-tête et dans l'exécuteur de flux.`, +'sd6c3ddb62de0e8f7': `Certificat utilisé pour signer les réponses sortantes vers le Service Provider.`, +'sd6cd7ce2310a73a4': `Vérifie la valeur de la requête via plusieurs règles, principalement utilisé pour s'assurer de la robustesse des mots de passe.`, +'sd71081c23d1cd38b': `Vérifier l'accès`, +'sd73b202ec04eefd9': `Intention inconnue`, +'sd75a9a71309fb387': `Vérifier haveibeenpwned.com`, +'sd766cdc29b25ff95': `Authentification avec Apple...`, +'sd7728d2b6e1d25e9': `Mappages de propriétés utilisés lors de la création des groupe`, +'sd7fa99e4d82b374a': `Le lien de récupération ne peut pas être envoyé par courriel, l'utilisateur n'a aucune adresse courriel enregistrée.`, +'sd8051c26e155f043': `Assigner une permission à un utilisateur`, +'sd80b0b8aeae3abe3': `Réécriture du mot de passe utilisateur`, +'sd8417b41ca27bc8f': `Nouvelle étape`, +'sd891d8463d0ebace': `Redémarre le flux depuis le début`, +'sd8c5339b82b71507': `Attente (min)`, +'sd8d9451f86502d1a': `Classe d'équipement qui peut être utilisé pour s'authentifier`, +'sd8f220c999726151': `Redirection`, +'sd924045605feea63': `Expire`, +'sd947d57c9a9b7108': `Ouvrir un ticket sur GitHub...`, +'sd94db2b8c85d10a6': `URL SLO`, +'sd94e99af8b41ff54': `0: Trop prévisible: mot de passe risqué. (essais &lt; 10^3)`, +'sd97d8d0906e6cc47': `Correspondance insensible à la casse`, +'sd9b556a84ae25690': `Requête-test envoyée avec succès`, +'sd9f67fbf3f86efcf': `Ajouter un groupe`, +'sda4e78c19f5b6f35': `La politique prend un certain temps à s'exécuter. Ceci contrôle la durée minimale.`, +'sda5e1499f93146ad': str` + il y a ${0}jours`, +'sda796c87fa97ed4d': `Nom du modèle`, +'sdaca9c2c0361ed3a': `Passer en revue l'application.`, +'sdae55084f6cb2662': `Optionnellement, entrez un nom de groupe. Les applications avec les mêmes groupes seront affichées ensemble.`, +'sdae649fae731e838': `Case à cocher`, +'sdb53ccdd6174e6e3': `L'ajout d'utilisateur(s) a été effectué avec succès.`, +'sdb7b2173869822bc': `La vérification utilisateur doit avoir lieu.`, +'sdb861d9906f18ac2': `Renvoyer une erreur ?`, +'sdbc08adee233f180': `Mettre à jour le fournisseur OAuth2`, +'sdbccb39a658f0e45': `Nouvelle politique`, +'sdc1ef94016f0d855': `Intégration mise à jour avec succès`, +'sdc30bddeda2f0225': `Valider le mot de passe de l'utilisateur sur le(s) backend(s) sélectionné(s).`, +'sdc323c6af4ae9f01': `Configuration TOTP copiée avec succès`, +'sdc5690be4a342985': `Le jeton a été copié dans le presse-paper`, +'sdc673e73b5c13aea': `Supprimer`, +'sdc70195469e83e3f': `8 chiffres, incompatible avec certaines applications telles que Google Authenticator`, +'sdc9a6ad1af30572c': `Pour nginx auth_request ou traefik forwardAuth`, +'sdc9e222be9612939': `Source liée`, +'sdcc7b2c109ce9775': `Les jetons sont utilisés dans authentik pour les étapes de validation des courriels, les clés de récupération et l'accès aux API.`, +'sdce4680288083fe3': `Fournit toujours les données les plus récentes, mais plus lent que les recherches en cache.`, +'sdd1ff479d04ac140': `Public`, +'sdd4bd4224c4e943d': `authentik: Locales: Affiche la liste des locales supportées par authentik.`, +'sdd6b8b56a811080e': `Empreinte du certificat (SHA256)`, +'sddb040c47daae56b': `Lier une politique existante`, +'sddb3b0176f437721': `Ouvrir le navigateur API`, +'sddc8efe94cb8c210': `Les étapes sont des étapes simples d'un flux au travers duquel un utilisateur est guidé. Une étape peut être uniquement exécutée à l'intérieur d'un flux.`, +'sddcfc6ab24e3a6ed': `Inscription`, +'sde0ad51b14f77cf6': `URI/Origines de redirection (RegEx)`, +'sde1907073fd96017': `(Session actuelle)`, +'sde2bb5418562c5b2': `Désignation inconnue`, +'sde47e4d8b9b21b59': `Authentificateurs WebAuthn`, +'sde56783222b527d6': `Chaque fournisseur a un émetteur différent, basé sur le slug de l'application.`, +'sde949d0ef44572eb': `Cela exige que l'utilisateur possède un attribut 'UPN' défini, sinon en dernier recours il utilise l'ID haché de l'utilisateur. Utilisez ce mode seulement si vous avez un domaine courriel différent de l'UPN.`, +'sde9a3f41977ec1f8': str`Nombre d'utilisateurs estimés d'ici un an basé sur ${0} utilisateurs internes actuels and ${1} utilisateurs internes prévus.`, +'sdeb6cee42435dd07': `Mettre à jour la licence`, +'sdeb90bfd8a80b86b': `Permissions à ajouter`, +'sdefec5401bf67eba': `Utilisez une clé de sécurité pour prouver votre identité.`, +'sdf1d8edef27236f0': `Un authentificateur "itinérant", comme une YubiKey`, +'sdf22dcf939c27cc7': `Configuration de l'étape`, +'sdf34a5599d66f85c': `Image d'arrière-plan`, +'sdf4e1c6a2f072600': `Total autorisé`, +'sdf87c5661b31359e': `Rôle créé avec succès.`, +'sdfd22a21660f6002': `Fournisseur mis à jour avec succès`, +'sdfdb58cd232b363d': `Estimateur de force de mot de passe créé par Dropbox, voir :`, +'se085f35c8a9203a1': `Source LDAP`, +'se09ab93d69f7f45b': `Pas utilisé par un autre objet.`, +'se09d055771f3a11d': `Connection OpenID Générique`, +'se0adaf83627104fb': `Toujours exécuter la liaison de flux configurée pour authentifier l'utilisateur`, +'se0c660020d9cf5b7': `Décalage après lequel le consentement expire.`, +'se10bbf4cf861c81b': `Paire de clés de signature`, +'se12969ade44cd2b6': `Nouvelle source`, +'se16ac750b81fa93d': str`Assigné à + ${0} objet(s).`, +'se17fcb1f159ee382': `Mettre à jour la source Plex`, +'se19cc57dd8675498': `Seuil`, +'se1c85959463f53df': `Utilisez ce locataire pour chaque domaine qui ne dispose pas d'un locataire dédié.`, +'se1e040b55319a0e8': `Timeout`, +'se28b5f3fcadaeeb1': `Entrer un nouveaux mot de passe pour cet utilisateur`, +'se291dfd2a59d7842': `Liaison(s) de politique`, +'se2adaf0371ffcd65': `Paramètres d'authentification machine à machine`, +'se2b29e6cfe59414c': `Paramètres d'UI`, +'se2b62f7e9017965e': `Traefik (Compose)`, +'se2c3cbf2ed1403f1': `Liaisons de l'étape`, +'se2cc93bd2647baec': `Règles Statiques`, +'se2d65e13768468e0': `Interne`, +'se2e9f5a32c93e5f7': `Seuil de dernière validation`, +'se2f258b996f7279c': `Erreur de tâche système`, +'se31d92bea7f3a186': `Utilisé pour accéder à l'API de manière programmatique`, +'se33b158a1ec02a09': str`Réussite de la suppression ${0} ${1}`, +'se36b55dfcf5dc80b': `Activer StartTLS`, +'se3e6af2ce24d80e8': `Chinois (traditionnel)`, +'se409d01b52c4e12f': `Réessayer l'authentification`, +'se47baf2fd16b9d2b': `Modèle`, +'se4a9da0295597e73': `Utilisateur SMTP`, +'se4cd073c125382af': `Non synchronisé / N/A`, +'se50a08ab71bb96ed': `Lorsqu'un nom d'utilisateur/adresse courriel valide a été saisi, et si cette option est active, le nom d'utilisateur et l'avatar de l'utilisateur seront affichés. Sinon, le texte que l'utilisateur a saisi sera affiché.`, +'se5498954255620b4': `Courriel envoyé avec succès`, +'se5973e7c8ba0fc71': `Lier un mode`, +'se5c795faf2c07514': `Créer un lien de récupération`, +'se5cb18408df3284e': `Pour plus d'informations, voir :`, +'se5dc026819a32ff8': str`Utilisateur + ${0}`, +'se5fd752dbbc3cd28': `Utiliser une clé de sécurité`, +'se63f9d833700af49': `Session(s)`, +'se65beb94fffc3c4b': `Requis pour les serveurs utilisant TLS 1.3+`, +'se68398e3c2c760b2': `Jeton`, +'se6a13beff646557b': str`Mise à jour effectuée avec succès ${0} ${1}`, +'se6d950402810c34f': `Mappages de propriété`, +'se7430794fa89005a': `Aussi appelé Entity ID. URL de métadonnée par défaut.`, +'se74ce42d41e392ba': `La correspondante est effectuée sur le suffixe du domaine ; si vous entrez domain.tld, foo.domain.tld sera également inclus.`, +'se78364ee913ae2bd': `Nouvelle intégration d’avant-poste`, +'se7e1ababbc4868b8': str` + ${0}secondes`, +'se80dd66f23b4fc39': `Créer un nouvel utilisateur même si un utilisateur est déjà présent dans le contexte du flux.`, +'se8987bdfb35e46b2': `Clé consumer`, +'se8a81c75b6e30a33': `Clé de champ à vérifier ; les clés de champ définies dans les étapes de d'invite sont disponibles.`, +'se8dca0132c66ae03': `Permissions`, +'se99efc0873031976': `Icône affichée dans l'onglet du navigateur.`, +'se9b1fec72ffd8f48': `Local`, +'se9c07cf256774d81': `L'édition est désactivée pour les jetons gérés`, +'se9d0f12f95b14095': `Liste optionnelle de noms alternatifs (SubjetAlt Names), séparés par des virgules.`, +'se9e9e1d6799b86a5': `WebAuthn n'est pas supporté pas ce navigateur.`, +'sea2f00b34b385a43': `Appareil mis à jour avec succès`, +'sea3bfc143ced73db': `Attribut NameID`, +'sea4f08110bb8f15d': `Retirer`, +'sea91c57b3d3969fe': `Statut du système`, +'sea9fc40dfd1d18b1': `Configurer le fournisseur RADIUS manuellement`, +'seab35681cbf36755': `Éventuellement remplir le champ avec une valeur initiale. + Lors de la création d'un champ à choix fixes, activer l'interprétation en tant qu'expression et + renvoyer une liste des choix par défaut.`, +'seb0805249661d15b': `Retourne le message d'erreur et un défi similaire à l'exécuteur`, +'seb0c08d9f233bbfe': `Veuillez entrer le code que vous avez reçu par SMS`, +'seb5ba88f21937c98': `Vérifier les avant-postes.`, +'sebda1d54a3f9f967': `URL du jeton`, +'sebf44d2471b608ad': `Flux utilisé par un utilisateur authentifié pour configurer cette étape. S'il est vide, l'utilisateur ne sera pas en mesure de le configurer.`, +'sec1808532fe107b9': `Permettre aux usagers l'utilisation d'applications sur la base de leurs propriétés, appliquer les critères de robustesse des mots de passe et sélectionner les flux applicables.`, +'sec5cdfa358f9dbf7': `Attention : L'ajout de l'utilisateur au(x) groupe(s) sélectionné(s) lui confère des droits de superutilisateur.`, +'sec7443a45fd141e5': `Invite(s)`, +'sec97cdaf7af8648b': `Définissez des attributs personnalisés via YAML ou JSON.`, +'secbfd13bdae95a59': `Flux de paramètres utilisateur`, +'secdb4b4c4e66aa38': `Informations de Groupe`, +'sece294cd51a85745': `Détermine la durée de la session. La valeur par défaut de 0 seconde signifie que la session dure jusqu'à la fermeture du navigateur.`, +'sed02f831e653deb3': `Connexions au cours de la semaine écoulée (par tranche de 8 heures)`, +'sed3512fe4560c7f4': `Créer des utilisateurs inactifs`, +'sed8d4c3fd5f60e1f': `Explorer les intégrations`, +'sede0abbf2b612812': `Webhook (générique)`, +'see2bcbc11bb91960': `Instance mise à jour avec succès.`, +'see3ff55262fd6500': `URL vers laquelle l'utilisateur est redirigé pour consentir l'autorisation.`, +'sef3d102324bf8561': `Créer une instance du plan`, +'sef49aec68fd1dc66': `Nom`, +'sef50d248448e0df1': str`Oui ( + ${0})`, +'seffdf887fed7f668': `Empreinte du certificat (SHA1)`, +'sf05c700a1250824e': `Confirmé`, +'sf05e384059a0a7c1': `Hôte amont où transférer les requêtes.`, +'sf12d588a76ba7e51': `Êtes-vous sûr de vouloir vider le cache des flux ? + Cela va forcer une ré-évaluation de tous les flux lors de leur prochaine utilisation.`, +'sf1868dc19e3917bb': `Espagnol`, +'sf1e9d421f35b51e5': `Application`, +'sf1ec4acb8d744ed9': `Alerte`, +'sf22a28f83cc45fcc': `Étape de configuration d'un authentificateur Duo. Cette étape devrait être utilisée en flux de configuration.`, +'sf22f7f8a9309b4ed': `Vérifier l'accès de l'application`, +'sf232d42142eacc23': `Si activée, l'invitation sera supprimée après utilisation.`, +'sf29883ac9ec43085': `Mot de passe de l'App`, +'sf2ef885f7d0a101d': `Assistant de démo`, +'sf325a4adba4d6278': `Champ d'appartenance au groupe`, +'sf339673f0f76a8bd': `Clé publique, obtenue depuis https://www.google.com/recaptcha/intro/v3.html.`, +'sf34026321b35315c': `Soit aucune application n'est définie, soit vous n'en avez accès à aucune.`, +'sf36170f71cea38c2': `Connectivité`, +'sf3981f36525b0dbd': `la connexion sera supprimée`, +'sf3f9a0feaf083207': `Envoyé au groupe`, +'sf3fec8353106ac2f': str`Source OAuth + ${0}`, +'sf4122b220926be97': `Version`, +'sf417c13d7a0f7995': `Copier l'URL de téléchargement`, +'sf45a0d2f00bcc6ff': `aucun onglet défini`, +'sf466142da6a65052': `Se faire passer pour`, +'sf485014051ad0cf7': `Les permissions ont été assignées avec succès.`, +'sf4de1644dcdb53d5': `Attribut d'utilisateur/groupe utilisé pour la champ mot de passe de l'en-tête HTTP-Basic.`, +'sf52479d6daa0a4a8': str`Nombre d'utilisateurs estimés d'ici un an basé sur ${0} utilisateurs externes actuels and ${1} utilisateurs externes prévus.`, +'sf533f13321fee530': `Évaluer les politiques pendant le processus de planification du flux`, +'sf53a78d889b6c775': `Géré par authentik (Découvert)`, +'sf54c562d8a10ce77': `Également appelé EntityID.`, +'sf55c7c06dbc2c8c6': `Tenant créé avec succès`, +'sf55d28d4dff0e41b': `Un exemple de configuration peut ressembler à ceci :`, +'sf56998949bdf6b33': `Désactiver`, +'sf58825457d61c429': `Prévision des utilisateurs internes`, +'sf5cbccdc6254c8dc': `Configurer le fournisseur Proxy`, +'sf63c89c0604c288f': `Chemin local`, +'sf66389b04fcc219c': `Les utilisateurs externes peuvent être des consultants externes ou des clients B2C (business to customers). Ces utilisateurs n'ont pas accès aux fonctionnalités entreprise.`, +'sf679b7a62808287e': `Expiration`, +'sf693300708a40d2c': `Créer une nouvelle politique.`, +'sf6d46bb442b77e91': `Scopes additionels`, +'sf6e1665c7022a1f8': `Mot de passe`, +'sf6eb148db23d19de': str`Échec de la suppression + ${0}: + ${1}`, +'sf71dba2c30283a54': `Expire ?`, +'sf76ead4c4708dd06': `Founir en option une courte aide qui décrit l'entrée attendue. + Lors de la création d'un champ à choix fixe, active l'interprétation comme expressions et retourne une + une liste de choix multiples.`, +'sf7949fbbab2eb566': `Différents navigateurs gèrent les cookies de session différemment et peuvent ne pas les supprimer même lorsque le navigateur est fermé.`, +'sf79f8681e5ffaee2': `Assigner à un nouvel utilisateur`, +'sf8008d2d6b064b95': `Transférer l'authentification (niveau domaine)`, +'sf80e9547166117e6': `Basé sur l'UPN de l'utilisateur.`, +'sf813a72d8fadd765': `Dans ce cas, vous devez définir l'URL d'authentification sur auth.example.com et le domaine des cookies sur example.com.`, +'sf8c76d5fb408de7b': `Vous allez être redirigé vers l'URL suivante.`, +'sf8f49cdbf0036343': `Erreur de configuration`, +'sf90be97cb08f3d5a': `Par défaut`, +'sf9aee319a006c9b4': `Ajouter`, +'sf9b1c0661a02d9f9': `Configuration`, +'sf9bddaf910f4eea5': `Générer une paire clé/certificat`, +'sf9e61f4f8e90f0f1': `Changer le statut`, +'sf9ebf11ac2645820': `Aucune licence trouvée.`, +'sf9f2c719a04066ec': `App`, +'sfa88f413e287bb0f': `Type d'étape`, +'sfa8a1ffa9fee07d3': `SAML (Security Assertion Markup Language)`, +'sfab527528ea64618': `Inclure l'adresse IP du client de l'évènement (correspondante stricte, pour un correspondance sur le réseau utiliser une politique d'expression)`, +'sfac6f995c7670559': `Aucune étape liée`, +'sfad8af8ce38104a3': `Âge maximum (en jours)`, +'sfad9279cc42c6b61': `Niveau d'authentification requis pour ce flux.`, +'sfae395b94a5a0040': `Plan`, +'sfae9f4ea5749a36b': `DN à préfixer au DN de base pour les groupes`, +'sfb852dd507c25c24': `Non recommandé : l'authentificateur ne devrait pas créer des identifiants dédiés`, +'sfbadb77fbc61efb8': `Utilisateurs créés par jour durant le mois dernier`, +'sfbaeb0de54fbfdbb': `Flux utilisé lors de l'autorisation de ce fournisseur.`, +'sfbc59ff17a73503d': `Chemin utilisateur`, +'sfc31264ef7ff86ef': `Pour nginx auth_request ou traefik forwardAuth par domaine racine`, +'sfc400b2d71e49d28': `Politique créée avec succès`, +'sfc8bb104e2c05af8': `Filtrage utilisateurs`, +'sfcebd18506f1e535': `Flux`, +'sfcfcf85a57eea78a': `Appareil TOTP`, +'sfd13ca8ebd857c2e': `Créer une nouvelle application`, +'sfd1af96798dd8a5f': `Clé publique`, +'sfd44ce578f643145': `Impossible de récupérer les objets.`, +'sfd586951c75eb291': `Mot de passe de l'application.`, +'sfdedc3b0b2b7ce3d': `Mappage des attributs`, +'sfe199b2564b66054': str`Erreur lors de la validation de l'assertion sur le serveur : + ${0}`, +'sfe1c86b42ba13376': `Veuillez saisir votre code TOTP`, +'sfe211545fd02f73e': `Vérification`, +'sfe388f0313f52da2': `Paramètres du protocole`, +'sfe629863ba1338c2': `Erreur de connexion, nouvelle tentative...`, +'sfe6977a3aea3ee6e': `Flux à utiliser pour authentifier les utilisateurs existants.`, +'sfe906cde5dddc041': `Configurer le fournisseur SAML`, +'sfe938c1585e0bf68': `Ces liaisons contrôlent si cette étape sera appliquée au flux.`, +'sfe99a8caa70232ab': `Type d'authentification`, +'sfeb779d4ccbc5a0e': `Flux de récupération`, +'sfeb82261bcf99edd': `Avant-postes sains`, +'sfee06600c15082a9': `Supprimer l'utilisateur de la session actuelle.`, +'sfee91e08b8b47477': `Serveurs autorisés`, +'sfefce784ec55868f': `Sélectionnez un objet.`, +'sff0ac1ace2d90709': `Utilisez ce fournisseur avec l'option "auth_request" de Nginx ou "forwardAuth" de Traefik. Chaque application/domaine a besoin de son propre fournisseur. De plus, sur chaque domaine, "/outpost.goauthentik.io" doit être routé vers le poste avancé (lorsque vous utilisez un poste avancé géré, cela est fait pour vous).`, +'sff38031cf061e3ae': `Suivra le paramètre ?next si défini, sinon affichera un message`, +'sff3b708e23bb96b2': `Évaluer les politiques avant la présentation de l'étape à l'utilisateur`, +'sff50532a2d85e32e': `Changer le mot de passe`, +'sff5bb7742c2896c8': `Cible`, +'sff69c1a637f899a6': `Lier un flux`, +'sff930bf2834e2201': `Compte de service (interne)`, +'sff945d3f59b93c5e': `Appareils de MFA`, +'sffa171e11d4ae513': `Transports`, +'sffa721bb6aa3128d': `Rechercher...`, +'sffc14b8200a9f938': `Requête directe`, +'sffd2e553143d1b0e': `Garder ctrl/command enfoncé pour sélectionner de multiples éléments`, +'sffd5481034a1bd41': `Fournir une interface LDAP permettant aux applications et aux utilisateurs de s'authentifier.`, +'sffeef5b119d8625c': `Mappage créé avec succès`, +'sfffb0d0958bfbc42': `Gérer les utilisateurs`, +'sfffba7b23d8fb40c': `Cette étape vérifie la session actuelle de l'utilisateur sur le service reCaptcha de Google (ou service compatible).`, + }; + \ No newline at end of file diff --git a/web/packages/localization/src/locales/pl.js b/web/packages/localization/src/locales/pl.js new file mode 100644 index 000000000..e3a26bfda --- /dev/null +++ b/web/packages/localization/src/locales/pl.js @@ -0,0 +1,1719 @@ + + // Do not modify this file by hand! + // Re-generate this file by running lit-localize + + import {html} from 'lit'; + import {str} from '@lit/localize'; + + /* eslint-disable no-irregular-whitespace */ + /* eslint-disable @typescript-eslint/no-explicit-any */ + + export const templates = { + 's004e9a2c90f23900': `Trwały`, +'s00c8354318addfa0': `Zasada / Zasady`, +'s01088b6625d2443b': `URL wywołania zwrotnego`, +'s0195c0df7294228a': `Zobacz więcej o wsparciu OCI tutaj:`, +'s01a3a7f48ee4edaf': `Opcjonalny przepływ rejestracji, do którego link będzie znajdował się na dole strony.`, +'s01ef54f5d7c6ed47': `Spróbuj teraz`, +'s026555347e589f0e': `Pole unikatowości obiektu`, +'s02839b01844d6ca8': `Data utworzenia`, +'s028be8989873f001': `URL autoryzacji`, +'s0295ce5d6f635d75': `Ustawienia źródła`, +'s02b3fade1795d03f': `Połącz się z serwerem LDAP na porcie 389:`, +'s02b632a9ac24a824': str`Ostatnio widziany: + ${0}`, +'s02de8d9e8583b480': `Surowe dane JWKS.`, +'s030ac0829bb50a49': str`Zasada + ${0}`, +'s037bc6d25a03c3c8': `Pomyślnie zaktualizowano transport.`, +'s0382d73823585617': str` + ${0}: + ${1}`, +'s03907d7a66c6164e': `Wyświetlana nazwa aplikacji.`, +'s03970aa76a09982d': `Integracja`, +'s039b6434e8a75560': str`Usuń + ${0}`, +'s03f42eea72154959': `Nazwa użytkownika`, +'s03f49e598ffb11cc': `Polski`, +'s03fb3fa232f0434a': `Client Secret`, +'s03fd2c252ad7972a': `Wyślij link odzyskiwania`, +'s042baf59902a711f': `Zasada`, +'s04440099d97c0bef': `Edytuj etap`, +'s045c3b86aae073c1': `Usuń konto`, +'s04b7f8d6aaef3756': `Użytkownicy w wybranej grupie mogą wykonywać zapytania wyszukiwania. Jeśli nie wybrano żadnej grupy, nie są dozwolone żadne wyszukiwania LDAP.`, +'s04bfd02201db5ab8': `Ustaw atrybuty niestandardowe za pomocą YAML lub JSON. Wszystkie ustawione tutaj atrybuty będą dziedziczone przez użytkowników, jeśli żądanie jest obsługiwane przez tego najemcę.`, +'s04c1210202f48dc9': `Podaj swój numer telefonu.`, +'s04c5a637328c9b67': str` + ${0}- + ${1}z + ${2}`, +'s04ceadb276bbe149': `Ładowanie opcji...`, +'s05e395ff60af047b': `Ostrzeżenie: Dostawca nie jest używany przez żadną placówkę.`, +'s0639662111324466': `Tryb silnika zasad`, +'s065604a41e9d1584': `Aktualizuj źródło OAuth`, +'s068d4dd16d9106d0': `Ikona`, +'s06c163334767a381': `Utwórz konto usługi`, +'s06c92148da82be0d': `Zmień swoje hasło`, +'s06df3c3b6a503da8': `Pole obiektu użytkownika, w którym zapisywana jest ta wartość.`, +'s072c6d12d3d37501': `Klucz nazwy użytkownika HTTP-Basic`, +'s079d388d3cbfa54f': `Sprawdź dzienniki`, +'s081d3c4b47a6ff83': `Jeśli ta opcja jest ustawiona, użytkownicy mogą się wyrejestrować za pomocą tego przepływu. Jeśli nie ustawiono przepływu, opcja nie jest wyświetlana.`, +'s086e1bbe7c97ea16': `Baza wyszukiwania`, +'s08a8716c214a0efb': `Dane certyfikatu zakodowane w formacie PEM.`, +'s08c91cb1a2cd3d97': `Po wybraniu pole hasła jest wyświetlane na tej samej stronie zamiast na osobnej stronie. Zapobiega to atakom polegającym na wyliczaniu nazw użytkowników.`, +'s091d3d07b5b3076f': `OK`, +'s091d5407b5b32e84': `Lub`, +'s09205907b5b56cda': `Nie`, +'s09240e07b5b8d640': `ID`, +'s09242207b5b8f83c': `IP`, +'s09353907b5c79284': `Do`, +'s09810653c832e935': `Kliknij, aby zmienić wartość`, +'s098237f7ccb4dc4a': `Pamięć podręczna przepływu została wyczyszczona`, +'s0a0ca63b967f1630': `Źródło(a)`, +'s0a11c2ffb8309d1a': `Nie znaleziono`, +'s0a39e4f61ccafacb': `Pomyślnie zaktualizowano regułę.`, +'s0a5401d4419f9958': `Używając źródła`, +'s0a57e911e457302b': `URL SLO (POST)`, +'s0a63a8be0b2b422c': `Workerów`, +'s0a72e65aef45b1e8': `URI serwera`, +'s0ae0072614320ae2': `Zahaszuj numer telefonu`, +'s0ae3395d8f48e624': `Pomyślnie wygenerowano link odzyskiwania`, +'s0af6301e76e2a2a5': `Pomyślnie zaktualizowano najemcę.`, +'s0b15ff11a0049cfd': `LDAP DN, w ramach którego można tworzyć żądania powiązania i żądania wyszukiwania.`, +'s0b3bf19b31dd6bac': `Wypróbuj nowy kreator aplikacji`, +'s0b55a57f473ab8af': `Aktualizuj grupę`, +'s0c135eba6017d94f': `Etykieta pokazana obok/nad monitem.`, +'s0c3ac7f9383a8cfd': `przejściowy`, +'s0c8c4d2bb0a9162a': `Opcjonalny przepływ bez hasła, do którego link znajduje się na dole strony. Po skonfigurowaniu użytkownicy mogą używać tego przepływu do uwierzytelniania za pomocą modułu uwierzytelniającego WebAuthn bez wprowadzania żadnych szczegółów.`, +'s0c9670f429e74283': `Nowa aplikacja`, +'s0d4268408182491d': `Użyj TLS`, +'s0d5d05bf3d122ced': `Twilio`, +'s0dc46deb8f181baf': `Nieprawidłowe zachowanie odpowiedzi`, +'s0dd00fbaba08748a': `Sesja nieważna w bieżącym czasie lub później + ta wartość.`, +'s0dfc6838c9d07677': `Przepływ konfiguracji`, +'s0e03fe2dc5b9164b': `Jeśli twoja instancja authentik korzysta z certyfikatu z podpisem własnym, ustaw tę wartość.`, +'s0e15f678445dfc45': `Etap używany do walidacji dowolnego uwierzytelniacza. Ten etap powinien być używany podczas przepływów uwierzytelniania lub autoryzacji.`, +'s0e516232f2ab4e04': `Tokeny wysyłane SMS-em.`, +'s0eaf755fa88c8d97': `Etap(y)`, +'s0f2e070d38cd36df': `Certyfikat uwierzytelniania TLS/para kluczy SSH`, +'s0f4c6540c30bd8b4': `Przeznaczenie`, +'s0fbf6dc6a1966408': `Dalej`, +'s10356fd921037fbf': `Domyślny przepływ`, +'s107bf77afb93c9b8': `Wysyłaj powiadomienia za każdym razem, gdy określone zdarzenie zostanie utworzone i dopasowane do zasad.`, +'s10922bd0ac765562': `obiekt zostanie USUNIĘTY`, +'s10929ca568ae10bc': `Dostawca(y)`, +'s10d2dbc4613397f0': `Zaktualizowano`, +'s11204eeb1e27ea8f': `ACS URL`, +'s11326fd2590f4e5e': `Domyślny`, +'s113c05ef9996ca4b': `Wbudowana placówka nie jest poprawnie skonfigurowana.`, +'s119498d4e4cf59a6': `Model, którego dotyczy problem:`, +'s11bc220e8fa9d797': `Autoryzacje`, +'s12146091b2b539a3': `Zawartość lewa`, +'s122f308b5f198ba7': `Pomyślnie utworzono parę certyfikat-klucz.`, +'s124f93a61ee772d6': `Zaawansowane ustawienia protokołu`, +'s128e7f5f34bfa155': `Stage używany do konfigurowania statycznego tokena uwierzytelniającego (tj. statycznych tokenów). Ten etap powinien być używany do przepływów konfiguracji.`, +'s1293ad87acc7a609': `Ustawienia HaveIBeenPwned`, +'s1298e361e40ee1c5': `Zatrzymaj podszywanie się`, +'s12de1c06a1e18cc5': `Tekst (tylko do odczytu): Proste wprowadzanie tekstu, ale nie można go edytować.`, +'s13de04774ff0f210': `URL Dockera`, +'s14401ff4a0cba208': str`Nie udało się zaktualizować + ${0}: + ${1}`, +'s145483489b87a622': `URL wylogowania`, +'s14622ee6de586485': str`Próbowano zalogować się jako + ${0}`, +'s14ace18ccf4fb86d': `Zwiększa kompatybilność z menedżerami haseł i urządzeniami mobilnymi.`, +'s14c552fb0a4c0186': `Aplikacja wymaga następujących uprawnień:`, +'s14c8f36e180d6bbc': `Pomyślnie utworzono etap.`, +'s1575a15cee001915': `Pomyślnie utworzono transport.`, +'s164be9a7537b99f6': `Skonfiguruj ustawienia wizualne i domyślne dla różnych domen.`, +'s1665454e31e14941': `Temat X509`, +'s16b9446e3a70e1f4': `Atrybuty`, +'s16bc281dce5685e8': `Uwierzytelniacz`, +'s17a679298216aca9': `Powinny być wyświetlane wybrane źródła, za pomocą których użytkownicy mogą się uwierzytelniać. Dotyczy to tylko źródeł internetowych, a nie LDAP.`, +'s17d1e337f6c11c1e': `Uwzględnij roszczenia w id_token`, +'s17f3eaf3b07ece26': `Ostrzeżenie: Dostawca nie jest używany przez aplikację.`, +'s1823625e6f831d73': `Dostosowywanie`, +'s18269e3889d6fa54': `Ścieżka, w której zostaną utworzeni nowi użytkownicy. Jeśli pozostawisz puste, zostanie użyta ścieżka domyślna.`, +'s1828fbfc2c56379c': `Sprawdź IP`, +'s18b910437b73e8e8': `Wróć do wyboru urządzeń`, +'s197420b40df164f8': `Śledź przekierowanie`, +'s199b55513a739f43': `OIDC Well-known URL`, +'s19b09f4fc72175d1': `Utwórz nowe źródło.`, +'s1a2797874b7fe852': `Mapowanie właściwości NameID`, +'s1a2f8f4b3861583b': `Utwórz placówkę`, +'s1ac2653a6492b435': str` + ${0}, powinno być + ${1}`, +'s1b07757762cda372': `Wyczyść pamięć podręczną zasad`, +'s1b14062c44e5ef45': `Wygasa`, +'s1b42b49e7b392013': `Zaktualizuj zaproszenie`, +'s1b448a4ea79d4eef': `Nie znaleziono wydarzeń.`, +'s1b606acd76ba2c4c': `Zaktualizuj najemcę`, +'s1b783856ab4aaaf3': `Nie jest wymagana żadna dodatkowa konfiguracja.`, +'s1b88fa3df4423292': `Ostatni adres IP`, +'s1bd5920d8adf2bd5': `Grupy do dodania`, +'s1bf56ee106e9e711': `Pomyślnie utworzono powiązanie.`, +'s1c2a173db0e1ec61': `Rozważ obiekty pasujące do tego filtra jako Użytkownicy.`, +'s1c2fd8097e14a608': `Przepływ odzyskiwania. Jeśli pozostanie pusty, używany jest pierwszy odpowiedni przepływ posortowany według ślimaka.`, +'s1c33d22492029aba': `Pole obiektu`, +'s1c6ba8d100453392': `Czas w minutach, w którym wysłany token jest ważny.`, +'s1c8916418c334935': `ID Token`, +'s1c8e9816dcae6d9c': `Początek gidNumbers, liczba ta jest dodawana do liczby wygenerowanej z group.Pk, aby upewnić się, że liczby nie są zbyt niskie dla grup POSIX. Wartość domyślna to 4000, aby upewnić się, że nie kolidujemy z lokalnymi grupami lub użytkownikami podstawowymi grupami gidNumber`, +'s1cc0e66dbd2b5502': `Ustawienia przepływu`, +'s1cd198d689c66e4b': `Dostęp API`, +'s1cd264012278c047': `Wykonanie przepływu`, +'s1cd617e7bbe278d0': `Pytaj o zgodę użytkownika. Zgoda może być trwała lub wygasać w określonym czasie.`, +'s1cf2298d92c327a6': `Moje aplikacje`, +'s1d30ff9ba938e68d': `Czekaj (max)`, +'s1d49ec5030447643': `Placówka(i)`, +'s1d6e16d86961c782': `Para(y) certyfikat-klucz`, +'s1d9d6c5b424fdc1f': `URL, do którego wysyłane jest początkowe żądanie logowania.`, +'s1e0de9c4f66dc371': `Weryfikacja użytkownika WebAuthn`, +'s1e176e35c828318c': `Hostname`, +'s1e36813d3504ed48': `Pomyślnie zaktualizowano powiązanie.`, +'s1e4c3de6e12cd87b': `Nazwa użytkownika: to samo, co wprowadzanie tekstu, ale sprawdza i zapobiega duplikowaniu nazw użytkowników.`, +'s1e7308bb1ca323e1': `URL SLO (Przekierowanie)`, +'s1efbfc3937d565bd': `Tło`, +'s1fc9c70610c4c67d': `Unieważnienie`, +'s2035f889f576bca6': `Ustawienia połączenia`, +'s207e8b106806d7e4': `Powiąż etap`, +'s20a0ce62823bfa97': `Usuń tymczasowych użytkowników po`, +'s211b75e868072162': `Ustaw to na domenę, dla której chcesz, aby uwierzytelnianie było ważne. Musi być domeną nadrzędną powyższego adresu URL. Jeśli używasz aplikacji jako app1.domain.tld, app2.domain.tld, ustaw to na „domain.tld”.`, +'s216eb300543edd91': `Wybierz serwer, którego członkiem musi być użytkownik, aby mógł się uwierzytelniać.`, +'s21b3058faf874368': `Nieaktualne placówki`, +'s21d0e290c51a8ef9': `Zestaw znaków symboli`, +'s21e3c227cc2c5873': `Separator: Statyczna linia separatora`, +'s2221fef80f4753a2': `Certyfikat weryfikacji TLS`, +'s2236dc563c2dbf76': `(Format: hours=-1;minutes=-2;seconds=-3).`, +'s22b10ed263b96194': `Atrapa etapu używana do testowania. Pokazuje prosty przycisk kontynuuj i zawsze przechodzi.`, +'s22e566052f7bec81': `JWT podpisane przez certyfikaty skonfigurowane w wybranych źródłach mogą służyć do uwierzytelniania u tego dostawcy.`, +'s2345170f7e272668': `Nieznany tryb proxy`, +'s2348f46ebf436671': `Otwórz w nowej karcie`, +'s239c2a351cde6d39': `Nie wymagaj uwierzytelnienia.`, +'s23de62f931f7d754': `Ostatnio zastosowano`, +'s23fd4411419fca06': `Zakres, który klient może określić, aby uzyskać dostęp do tych właściwości.`, +'s240ff02ce3a53dee': `Klucz integracji`, +'s24211f319e5b7e98': `Pole zawierające unikalny identyfikator.`, +'s2430e000b7cfefd0': `Wyślij powiadomienie tylko raz, na przykład podczas wysyłania webhooka na kanał czatu.`, +'s2474e7fb1aec9f05': `Test`, +'s24875d5475e82526': `Pomyślnie zaktualizowano źródło.`, +'s24f405197ede5ebb': `Ponowne uwierzytelnienie za pomocą plex`, +'s252a52330d32b900': `Metadane`, +'s2536ac8d32d2e63f': `Czas, po którym zdarzenia zostaną usunięte z bazy danych.`, +'s2543cffd6ebb6803': `Wykonywanie zadań systemowych`, +'s256b8452664ccae4': `Skonfiguruj sposób tworzenia wartości NameID. Gdy puste, NameIDPolicy przychodzącego żądania będzie przestrzegany.`, +'s25d0cd75377daf75': `Forward auth (na poziomie domeny)`, +'s25ec2846f6b88214': `Mapowanie webhooka`, +'s26513c9dd154f041': `Zawsze wymagaj zgody`, +'s2656433a3b1f7e86': `Moje aplikacje`, +'s26bf2730430efbea': `Tryb przedmiotu`, +'s2708cac1f4942708': `Schemat(y)`, +'s271a7e04ff9865b1': `Kontroluj sposób, w jaki authentik ujawnia i interpretuje informacje.`, +'s275021658614ce9e': `URL API`, +'s27586544c447d9e3': `Zdarzenia użytkownika`, +'s276d751eb7a186cc': `API Hostname`, +'s27976e94b05c6970': `Aktywuj`, +'s27ac7a47b390e3cb': `Pary certyfikat-klucz`, +'s2801a48ceac691b3': `Przepływ rejestracji`, +'s289fce7e694b98ac': `Port SMTP`, +'s28b3de1561da72b3': `Uwierzytelniacze MFA`, +'s28f270859c5f4d51': `Adres IP hosta dockera`, +'s29315e374008d0c5': `Użytkownicy dodani do tej grupy będą superużytkownikami.`, +'s293801033f9fc0d0': `Utwórz nowy etap.`, +'s293aa6a6446fb153': `Eksportuj`, +'s293ab4331c1dd387': `To jest nazwa użytkownika, która ma być używana z podstawowym uwierzytelnianiem lub tokenem, gdy jest używany z tokenem okaziciela`, +'s296fbffaaa7c910a': `Wymagany.`, +'s297a2075bd7e40db': `Zasada NameID`, +'s29ec5e7889f4787f': `Pomyślnie zaktualizowano zasadę.`, +'s2a0f60e74b478804': `Algorytm skrótu`, +'s2a12e0b5527ff99a': `Włączenie tego przełącznika spowoduje utworzenie grupy nazwanej jak użytkownik, z użytkownikiem jako członkiem.`, +'s2a2d3e7c379e9518': `Temat certyfikatu`, +'s2a369bc2febb5d55': `Jeśli nie zostaną określone żadne jawne identyfikatory URI przekierowania, zostanie zapisany pierwszy pomyślnie użyty identyfikator URI przekierowania.`, +'s2a64d2dca3da9b0e': str`Grupa + ${0}`, +'s2a957e843960b604': `Pole hasła`, +'s2af5754090898640': `Asercja ważna nie w lub później`, +'s2b088ba65eb69b7e': `Nazwa pola formularza, używana również do przechowywania wartości.`, +'s2b1bc31276c4c477': `Zasada / Grupa / Wiązania użytkownika`, +'s2b7dbba348234a36': `Kod został wysłany do Ciebie SMS-em.`, +'s2b952e9dc99cbded': `Hasło logowania jest automatycznie synchronizowane z LDAP do authentik. Włącz tę opcję tylko w celu zapisania zmian hasła w authentik z powrotem do LDAP.`, +'s2ba5f4d8f3bd7c57': `Kolejność`, +'s2bc8aa1740d3da34': `Obiekt etapu`, +'s2be6121210e2a2f8': `Monity`, +'s2c0de3d35a7bc784': `Powiązane obiekty`, +'s2c8189544e3ea679': `Ponów`, +'s2ceb11be2290bb1b': `Anuluj`, +'s2d34c87f67f66c6a': `Windows`, +'s2d46e3a9ee8e0e7e': `Aktualizuj dostawcę LDAP`, +'s2d5f69929bb7221d': str` + ${0}(„ + ${1}”, typu + ${2})`, +'s2ddbebcb8a49b005': `Oczekiwanie na uwierzytelnienie...`, +'s2df0b65125600de9': `OIDC JWKS`, +'s2e3ef41a0edd8608': `Zakresy`, +'s2e4818861000b13f': `Układ`, +'s2e532e19ed477a56': `Ścieżka`, +'s2ec94a7c7f5bcd1b': `Filtr obiektów grupowych`, +'s2f1bcfcc5cae94c3': `Utwórz przepływ`, +'s2f58bb9905d2b76f': `Certyfikat/klucz używany do uwierzytelniania. Można pozostawić puste, aby nie uwierzytelniać.`, +'s2f8c4cf12350a36c': `Sprawdź reguły statyczne`, +'s2f995efbb1e46b18': `Automatycznie wykryj (na podstawie Twojej przeglądarki)`, +'s2fc3eb68c7ced3af': `URL Userinfo`, +'s30205d424e710818': `Pomyślnie odłączono źródło`, +'s303b5e552246e613': `Dopasowuje zdarzenie do zestawu kryteriów. Jeśli którakolwiek ze skonfigurowanych wartości jest zgodna, zasada przechodzi.`, +'s306a35df5d0d38bb': `Użytkownicy do dodania`, +'s3079ca1184e77573': `Pomyślnie utworzono grupę.`, +'s30d1f50f476c3f48': `Przegląd przepływu`, +'s310d8757ce319673': `Logowania`, +'s3198c384c2f68b08': `Przesunięcie czasowe, kiedy użytkownicy tymczasowi powinni zostać usunięci. Ma to zastosowanie tylko wtedy, gdy IDP używa „przejściowego” formatu NameID, a użytkownik nie wylogowuje się ręcznie.`, +'s31a2d43bc1cf1790': `Jeszcze nie zsynchronizowano.`, +'s31d15c6f16951464': `URL uwierzytelniania`, +'s31d7f3ba04d306a5': `SSO URL`, +'s31ebc5431d677f5d': `Host SMTP`, +'s31fba571065f2c87': `Upewnij się, że przechowujesz te tokeny w bezpiecznym miejscu.`, +'s322e34cfcba47155': `Niedostępny`, +'s32a3efa23718e713': `Żądania API`, +'s32f04d33924ce8ad': `Wykonanie zasad`, +'s332a5235948c1a1d': `Zgody`, +'s3330adb3f0922f7b': `Baza użytkowników + hasła aplikacji`, +'s33318837e6c54a9b': `Zaufane źródła OIDC`, +'s33683c3b1dbaf264': `Aby zamiast tego używać SSL, użyj „ldaps://” i wyłącz tę opcję.`, +'s3380d7cbcebe50f6': `Etap hasła`, +'s33aa05f435c29753': `Aktualizuj parę certyfikat-klucz`, +'s33d48fb745f4d4ae': `Minimalna liczba wielkich liter`, +'s33f85f24c0f5f008': `Zapisz`, +'s341ab68d4130de20': `Brak połączonych workerów. Zadania w tle nie będą działać.`, +'s342eccabf83c9bde': `Historia planu`, +'s344c4a2a48997e18': `Pliki .yaml, które można znaleźć na goauthentik.io i mogą być wyeksportowane przez authentik.`, +'s34b23ebbac9f6ab9': `Weryfikacja użytkownika`, +'s34be76c6b1eadbef': `Ostrzeżenie`, +'s351246c52548086a': `Pobierz certyfikat`, +'s354e0a9f146d2869': `Chiński (uproszczony)`, +'s355b21b89ce5d9c5': `Szczegóły`, +'s3576aead3e68c5c9': `Eksportuj przepływ`, +'s35e6e60e83a8c003': `Przepływ unieważnienia`, +'s35f9df7668d5fa79': `Wyświetl dokumentację wdrożenia`, +'s35fac2e5677d55cd': `Określa, czy ten użytkownik powinien być traktowany jako aktywny. Odznacz to zamiast usuwać konta.`, +'s3616cc78631f5893': str`Ostrzeżenie: masz zamiar usunąć użytkownika, na którym jesteś zalogowany jako ( + ${0}). Kontynuuj na własne ryzyko.`, +'s3626433940124897': `Favicon`, +'s3643189d1abbb7f4': `Kod`, +'s3687049d1af562c4': `Kopiuj`, +'s36cb242ac90353bc': `Pola`, +'s374abf1a54d87b67': `Tło pokazywane podczas wykonywania.`, +'s3794c596ee7964ad': `Zaktualizuj hasło`, +'s37cbecaec58e2192': `Tryb`, +'s37d9155b9f4cc7bd': `Skonfiguruj jak pole wystawcy tokena ID powinien być wypełniony.`, +'s37dbfe2133b74d2d': `Interpretuj symbol zastępczy jako wyrażenie`, +'s37eb2f1b6e3c19c2': `Ustawienia protokołu`, +'s38162f615710c7b4': `Zmodyfikuj payload wysłany do niestandardowego dostawcy.`, +'s382a2aa3984474dd': `Utwórz`, +'s382b702673776873': `Przykładowe atrybuty SAML`, +'s38887b94b3320533': `Adres e-mail`, +'s388ee787bbf2271b': `Zadanie zakończone z ostrzeżeniami`, +'s38c72e1cf120b8d8': `Utwórz zaproszenie`, +'s38f774cd7e9b9dad': `Zapisz się.`, +'s3914cb410fca44d4': `Importuj`, +'s3926da5b20cdf3b6': `URL używany do żądania początkowego tokena. Ten adres URL jest wymagany tylko w przypadku protokołu OAuth 1.`, +'s399cc2d67d92e957': `Poufny`, +'s39c8c0bf4d927c9f': `Zezwalaj na logowanie inicjowane przez IDP`, +'s39e436de1dc4df4f': `URL JS`, +'s3a135682bd30bdbb': `Utwórz hasło aplikacji`, +'s3a3fae99373ce56b': `Wybierz zakresy, których może używać klient. Klient nadal musi określić zakres dostępu do danych.`, +'s3a5fec3d73ac9edc': `Utwórz parę certyfikat-klucz`, +'s3ab772345f78aee0': `Inspektor przepływu`, +'s3abecf1e778c9625': `Zobacz więcej tutaj:`, +'s3b34d9930e33bd46': `Zadania systemowe`, +'s3b58f8d2155ae90c': `Klucz pola`, +'s3b68883dda2682ed': `Asercja jest pusta`, +'s3b7b519444181264': `Zasady weryfikacji`, +'s3baf512851453712': `Twilio Account SID`, +'s3bb51cabb02b997e': `Format: "weeks=3;days=2;hours=3,seconds=2".`, +'s3bfa0258999fb629': `Neguje wynik wiązania. Wiadomości pozostają nienaruszone.`, +'s3c6de3f257e0c912': `Żądanie`, +'s3d197283cb019b5a': `Przegląd`, +'s3d34068a31cab30b': `Weryfikacja SSL hosta wewnętrznego`, +'s3de6db803012016a': `Mapowanie atrybutów LDAP`, +'s3e211d29fa10f843': `referencja zostanie ustawiona na pustą wartość`, +'s3e3bb9e7cb1de4fd': `Wybierz użytkowników do dodania`, +'s3e59b8b2debf0209': `Ten etap można uwzględnić w przepływach rejestracji, aby akceptować zaproszenia.`, +'s3e87ce98ba3c4d80': `Skonfiguruj, jak długo tokeny są ważne.`, +'s3ed5607ad78d4224': `Wyczyść pamięć podręczną`, +'s3ef3c252ada78076': `Nieudane logowania`, +'s3fd219b045193507': `ustawienia zxcvbn`, +'s3feea7b49673bef2': `Brak dziennika wiadomości`, +'s3ffa320128991a45': `Zapewniają obsługę protokołów takich jak SAML i OAuth przypisanym aplikacjom.`, +'s4090dd0c0e45988b': `Identyfikator żądania`, +'s40b034801fcb843b': `Zezwala/odrzuca żądania na podstawie reputacji użytkowników i/lub adresów IP.`, +'s40b80eb4cc1f0e0c': `Edytuj powiązanie`, +'s40bf151b56a64f51': `Czas serwer i klienta różnią się o więcej niż 5 sekund.`, +'s40e2c72dae905a50': `Statyczny: wartość statyczna, wyświetlana w stanie, w jakim jest.`, +'s4165cd175bc4c0c4': `Wygasa dnia`, +'s416a540b16275f2e': `Utwórz grupę`, +'s41706a202b6c40f1': `Domena`, +'s417b90913e05bc17': `Podgląd`, +'s41b105819b67ee7a': `Etapy`, +'s41e035c4bb8d15f2': `Ogólny stan systemu`, +'s4207178ba0b99418': `Dostępna jest nowsza wersja frontendu.`, +'s420d2cdedcaf8cd0': `Uwierzytelnianie z Plex...`, +'s427f788ff333f45b': `URL uruchamiania`, +'s42a1ebe17efda727': `Pole`, +'s42cbd8dca939a9c7': `Sprawdź`, +'s42fc6f4b64eff5d9': `Pojedyncze monity, których można używać dla etapów monitów.`, +'s43be3ce2439ffe9c': `Minimalna ilość cyfr`, +'s43c1f927936f0a02': `Asercja nieważna w bieżącym czasie lub później + ta wartość.`, +'s4409ada9c5c2a7f8': `Nieaktywny`, +'s4414164d120de61a': str`Następujące obiekty używają + ${0}`, +'s44536d20bb5c8257': `To ustawienie ma wpływ tylko na nowe zdarzenia, ponieważ data wygaśnięcia jest zapisywana dla każdego zdarzenia.`, +'s44b1f042790cd1a2': `Konfiguracja SAML`, +'s44c90273f08fb718': `Użyj tego dostawcy z auth_request nginx lub forwardAuth traefik. Tylko jeden dostawca jest wymagany na domenę główną. Nie możesz wykonać autoryzacji dla aplikacji, ale nie musisz tworzyć dostawcy dla każdej aplikacji.`, +'s44ea4e9a81ce730d': `Etap e-mail`, +'s453b0c150a7ca58e': `Przykładowy ładunek JWT (dla aktualnie uwierzytelnionego użytkownika)`, +'s455a8fc21077e7f9': `Pomyślnie uwierzytelniłeś swoje urządzenie.`, +'s455de2f740b073fd': `Informacje o zdarzeniu`, +'s457c639088c547c5': `Pomyślnie utworzono dostawcę.`, +'s45935843b1b5b496': `Formularz nie zwrócił obietnicy do przesłania`, +'s45960273852a61b2': `Data Czas`, +'s45cb501abd43ba52': `Generuj`, +'s45f9e7ce0897f9e5': `Najemca`, +'s4660da32fb311ac0': `Tajwański mandaryński`, +'s473f0143efa3f706': `Te zasady kontrolują, którzy użytkownicy mogą uzyskać dostęp do tej aplikacji.`, +'s47490298c17b753a': `Otrzymuj powiadomienia push na swoje urządzenie.`, +'s4751df77cfd8a5f9': `Sprawdź nazwę użytkownika`, +'s476ffc07e6d66f18': `Pomyślnie zaktualizowano token.`, +'s47a4983a2c6bb749': `Zaktualizowano model`, +'s47bd537a3bcebf19': `Pobierz klucz prywatny`, +'s4802636d55022ed3': `Domyślny?`, +'s480c6c40a248f7d2': `Użyj SSL`, +'s482ae78809a6822b': `Przepływ używany przez uwierzytelnionego użytkownika do konfigurowania jego hasła. Jeśli jest pusty, użytkownik nie będzie mógł skonfigurować zmiany hasła.`, +'s485c05d34eb00415': `Usuń aktualnie ustawioną ikonę.`, +'s48cf8fd56b1237ed': `Pomyślnie zaktualizowano przepływ.`, +'s494e1ed913d9351a': `Edytuj grupę`, +'s49730f3d5751a433': `Ładowanie...`, +'s4a1e774ab25aa232': `Wewnętrzny host`, +'s4a26798e1c3c37dd': `Sprawdź poprawność certyfikatów SSL serwerów nadrzędnych.`, +'s4a6aa26413287069': `Pomyślnie zaktualizowano szczegóły`, +'s4a87445f3108db7c': `Wybierz jedno z poniższych źródeł, aby się zalogować.`, +'s4acf840bc792c3ae': `Lokalny (powiadomienia będą tworzone w ramach authentik)`, +'s4aee34a672e5cfc0': `Utworzono przez`, +'s4af8a3ce5a600855': `Pozwól użytkownikowi identyfikować się za pomocą swojej nazwy użytkownika lub adresu e-mail.`, +'s4b2a1b657c160f5b': `JSON Web Key URL. Klucze z adresu URL będą używane do walidacji tokenów JWT z tego źródła.`, +'s4b5af7736aedd6c1': `Dostępny klucz prywatny?`, +'s4c24b2baa377e870': `Pomyślnie zaktualizowano parę certyfikat-klucz.`, +'s4c4c504a48c3b7bd': `Traefik (Standalone)`, +'s4caed5b7a7e5d89b': `Angielski`, +'s4cdae7635e757555': `Pola, z którymi użytkownik może się identyfikować. Jeśli żadne pola nie zostaną wybrane, użytkownik będzie mógł korzystać tylko ze źródeł.`, +'s4d00e5de1c8213b7': `Client ID`, +'s4d00f1de1c82281b': `IP klienta`, +'s4d182bae8a578010': `Uwierzytelniacze oparte na SMS`, +'s4d31797d81e9cea3': `Wyraźna zgoda`, +'s4dcb9288f7e9e4d7': `Grupuj użytkowników i nadaj im uprawnienia na podstawie członkostwa.`, +'s4e28e2899e08a5f8': `Określa, w jaki sposób authentik przesyła odpowiedź z powrotem do Usługodawcy.`, +'s4e474b9e2e737dd1': `Aktualizuj dostawcę proxy`, +'s4eb514ebcb80553d': `Rodzic`, +'s4f1ad6b48a5df506': `Logi`, +'s4f1af2b48a5e249a': `Logo`, +'s4ff2c202b4e5bdc5': `Wbudowany`, +'s502884e1977b2c06': `Następny etap`, +'s502d2473587032e1': `Żadne preferencje nie są wysyłane`, +'s505fbbdcbc6aa921': `Dodaj nową grupę`, +'s506beb486fa41241': `Autoryzacje aplikacji`, +'s50719dda8f90abf4': `Widoczne w adresie URL.`, +'s50911ec1c8aee99a': `Nie znaleziono pasujących zdarzeń.`, +'s50c312bea93b6925': `Edytuj zasady`, +'s50ebe627b4bc7d02': `Wiązanie`, +'s5116b89f7db1fbec': `Dozwolone URI przekierowania`, +'s512957aa09384646': `Uruchom`, +'s5140d157642d7362': `Brak (reguła wyłączona)`, +'s5170f9ef331949c0': `Pokaż użytkownikowi dowolne pola wejściowe, na przykład podczas rejestracji. Dane są zapisywane w kontekście przepływu pod zmienną „prompt_data”.`, +'s51da4de00984fe51': `API Auth Username`, +'s51ea3a244c781b1f': `Utworzone obiekty`, +'s51f92b6fa76656ca': `Niezdrowe placówki`, +'s523160b433311521': `Jeśli ta opcja jest ustawiona, użytkownicy mogą konfigurować szczegóły swojego profilu.`, +'s52b500138a2d2b8a': `Aktualizuj źródło LDAP`, +'s53ad3455d9523b54': `Utwórz użytkownika`, +'s542ecb4130f6cea5': `Połącz z użytkownikiem o identycznej nazwie użytkownika. Może mieć wpływ na bezpieczeństwo, gdy nazwa użytkownika jest używana z innym źródłem`, +'s544142ce35050751': `Testuj zasadę`, +'s545d99afa61e4095': `Znaki uważane za symbole.`, +'s5462c7f56ed65e6c': `Email: Pole tekstowe z typem Email.`, +'s54cd35e6224ba65d': `Domyślnie dla źródeł wyświetlane są tylko ikony. Włącz tę opcję, aby wyświetlić ich pełne nazwy.`, +'s54e7a23a95d99649': `Tekst: proste wprowadzanie tekstu`, +'s5515a897ae98bed9': `Certyfikaty`, +'s554ce268e9727e79': `Możesz wybrać tylko tych dostawców, którzy pasują do typu placówki.`, +'s5572ac4d2208f5ec': `Pomyślnie utworzono monit.`, +'s55787f4dfcdce52b': `Klucz podpisujący`, +'s5590dbf7e425789d': `Etykieta`, +'s5599c62bb78c631f': `Interfejs administratora`, +'s55d731be1ef66efe': `Base DN`, +'s55fa598b754cc3cc': str` + ${0}( + ${1})`, +'s5615bb595ad6ded6': `Typ wiązania`, +'s56806e9f63efa298': `URI przekierowania`, +'s5694f9421c428227': `Powiąż hasło`, +'s56fd9ed596c724fa': `Sekretny klucz`, +'s57072ffb92b6c9c8': `Określ sposób wysyłania powiadomień do użytkowników, takich jak e-mail lub webhook.`, +'s57337099d96ce6d2': `Zawsze twórz nowych użytkowników`, +'s57448f10eb973100': `Utwórz Linki Zaproszeniowe, aby zarejestrować Użytkowników i opcjonalnie wymusić określone atrybuty ich konta.`, +'s584d1c38ad20d560': `Można użyć dowolnego kodu HTML.`, +'s586d6bd2eca2da93': `Użytkownicy`, +'s587ba266269297ab': `Wiązania zasady`, +'s588796ee929a2e4c': `Szczegóły użytkownika`, +'s58888ef1ee9b5bb8': `Status użytkownika`, +'s58c867aac77b9158': `Ostatnie logowanie`, +'s58cd9c2fe836d9c6': `Powrót do strony głównej`, +'s58d1eb482059da12': `Nowy dostawca`, +'s58fd2aafa4261c55': `Pomyślnie zaktualizowano aplikację.`, +'s592425143c4f5834': `Alternatywna nazwa tematu`, +'s592ab7d2bc1b8973': `Pola użytkownika`, +'s593db2c00d6516a2': `Hasło SMTP`, +'s5944355d69db1fb8': `DN grupy dodawania`, +'s59572c1be31a812e': `Nie udało się usunąć pamięci podręcznej przepływu`, +'s59691290a232c687': `Wybrane zasady są wykonywane po przesłaniu etapu w celu weryfikacji danych.`, +'s59b6028f19d15cda': `Brak aktywnej integracji`, +'s59bf194136d0d13a': `Służy do logowania przy użyciu executora przepływu`, +'s59dc0eda07f9e2b6': `Mapowanie(a) właściwości`, +'s59f5eda30a904b75': `URL JWKS`, +'s5a13f4bbe004503f': `Sprawdza, czy żądanego użytkownika hasło zostało zmienione w ciągu ostatnich x dni, i odmawia na podstawie ustawień.`, +'s5a15a8f39c699273': `Dopasuj wydarzenia utworzone przez wybraną aplikację. Jeśli pozostanie pusty, wszystkie aplikacje zostaną dopasowane.`, +'s5a48d5171e1a1522': `Ostrzeżenie: zasada nie jest przypisana.`, +'s5a802e46a033c8af': `Podstawowy identyfikator użytkownika. 150 znaków lub mniej.`, +'s5acb607b40356974': `Numer startowy GID`, +'s5b1fb0d4c0daeba8': `Utwórz powiązanie`, +'s5b6b6e2cb884d59f': `Duo Auth API`, +'s5be3b0567172e415': `Certyfikat weryfikacji`, +'s5be3c6d61cd9182f': `Powiadomienia`, +'s5c18cae48b93138c': `Sesje`, +'s5c1dc164c89ac13e': `Nieznany typ dostawcy`, +'s5cd31f4a88adf180': `Edytuj użytkownika`, +'s5d0a14d29ebad561': `Przepływ do wykorzystania podczas rejestrowania nowych użytkowników.`, +'s5d6af4c100ad321b': str`Utwórz + ${0}`, +'s5d7748b1d2363478': str`Czy na pewno chcesz usunąć wybranych użytkowników z grupy + ${0}?`, +'s5d9f93f1fe1c19d3': `Traefik (Ingress)`, +'s5deac600e329de1b': `Dziennik wiadomości`, +'s5e169e1bac20b4a6': `Placówki`, +'s5e8250fb85d64c23': `Zamknij`, +'s5e830ae7688d1219': `Etap używany do konfigurowania uwierzytelniania opartego na wiadomościach SMS TOTP.`, +'s5eaf1d304e03ed4b': `Duo User ID`, +'s5f343a43e7ea9f91': `Błąd`, +'s5f4586bc1e2740e6': `Wyczyść wyszukiwanie`, +'s5f496533610103f2': `Aplikacja autoryzowana`, +'s5f5bf4ef2bd93c04': `Mapowania grup można sprawdzić tylko wtedy, gdy użytkownik jest już zalogowany podczas próby uzyskania dostępu do tego źródła.`, +'s5f71fa3c53828e30': `Usuń z grup(y)`, +'s5fbaeb14f42815e5': `Załącznik uwierzytelniający`, +'s5fc4269c2addee61': `Unikalny identyfikator, do którego odwołuje się token.`, +'s60cc554fde2676cb': `Nieusuwalny token uwierzytelniający, taki jak TouchID lub Windows Hello`, +'s60d891ed3ee9ebc5': `Pomyślnie utworzono źródło.`, +'s60edbcfac8ed1f90': `Początek dla uidNumbers, ten numer jest dodawany do user.Pk, aby upewnić się, że liczby nie są zbyt niskie dla użytkowników POSIX. Wartość domyślna to 2000, aby zapewnić, że nie kolidujemy z lokalnymi użytkownikami uidNumber`, +'s6152026c364ad974': `Źródła tożsamości, które mogą być zsynchronizowane z bazą danych authentik lub mogą być używane przez użytkowników do uwierzytelniania i rejestracji.`, +'s618d4e53f455c834': `Użyj ustawień globalnych`, +'s61b6f3e6bc59c6dd': `Utwórz monit`, +'s61ccefd661ac2296': `Jeśli ta flaga jest ustawiona, ten etap przejdzie do następnego etapu, gdy nie zostanie wysłane żadne zaproszenie. Domyślnie ten etap anuluje przepływ, gdy nie zostanie wysłane żadne zaproszenie.`, +'s61e48919db20538a': `UPN`, +'s61eacb19db252f5e': `URL`, +'s6238f519db67980d': `UID`, +'s624256f8a4bb4c89': `Transport(y) powiadomień`, +'s62ddcbaaa91d120d': `Punkty reputacji`, +'s62f7c59b0606a8d6': `Przepływ autoryzacji`, +'s62f93cfcb45d5a06': `Uprawnienia superużytkownika?`, +'s634d041fd954ab20': `API Auth password`, +'s63cb05541b294335': `Czy jest superużytkownikiem`, +'s63d894b1ddb06289': `Opis`, +'s63d89a6ae0969c30': `Aby umożliwić użytkownikowi bezpośrednie zresetowanie hasła, skonfiguruj przepływ odzyskiwania w aktualnie aktywnym najemcy.`, +'s63e03c70f67ebf9c': `Kontekst`, +'s63e71d20d1eaca93': `Niemiecki`, +'s643d8f2e5e5e930d': `Pomyślnie zaktualizowano mapowanie.`, +'s64a33dcdaf90af26': `Informacje użytkownika`, +'s64ef2a6c2dd1d3d1': `Edytuj`, +'s65ca2f256ea09c11': `Dodaj do istniejącej grupy`, +'s65d507f1513c2f03': `Umożliwia przepływy uwierzytelniania zainicjowane przez dostawcę tożsamości. Może to stanowić zagrożenie bezpieczeństwa, ponieważ nie przeprowadza się weryfikacji identyfikatora żądania.`, +'s65d67612999165e9': str`Zdarzenie + ${0}`, +'s662fcb3761ad9df7': `W przypadku użycia w połączeniu z etapem zapisu użytkownika, użyj attribute.foo do zapisania atrybutów.`, +'s66722bc2ea775e05': `Wyłączone`, +'s66ffc06300964849': `Filtr obiektów użytkownika`, +'s670ad066cc0e50a3': str`Zaloguj się, aby przejść do + ${0}.`, +'s67560d7e37d984c3': `Zasada / Użytkownik / Grupa`, +'s67664f8ee9aea98d': `Wprowadź swój kod`, +'s67749057edb2586b': `Wyloguj`, +'s677f1b675fc21bb1': `Sekret:`, +'s67dedada007d4067': str`Nie udało się odłączyć źródła: + ${0}`, +'s67e20cd8018d7e3c': `Obecnie ustawiony na:`, +'s681074b6c1f19c08': `Nie skonfigurowana akcja`, +'s6835db03209b4f94': `Zautomatyzuj i szablonuj konfigurację w authentik.`, +'s6873bdbfa24615fb': `URL webhooka`, +'s68a50b1ee6efee7b': str` + ${0}jest dostępny!`, +'s68d69ad0271c8ef6': `Utwórz nową integrację z placówką.`, +'s68f935c9ca792016': `app1 działająca na app1.example.com`, +'s693d975d38ff0214': `Algorytm sygnatury`, +'s6941a67f0038ba4c': `Etapy używany do konfiguracji uwierzytelniacza, gdy użytkownik nie ma żadnych kompatybilnych urządzeń. Po zakończeniu tego etapu konfiguracji użytkownik nie jest ponownie pytany.`, +'s69a56a3022c4be7f': `Najemca(y)`, +'s69bd313dd12fc2f3': `URL profilu`, +'s6a406aecb2c0e5c5': `Dodaj`, +'s6a615f6165ef01c9': `Rozpocznij automatyczny import`, +'s6a89bb10338369b4': `Wróć do poprzedniej strony`, +'s6ab73c998850c5ab': `Expression `, +'s6abff64e7ff7fde9': `Obraz awatara`, +'s6ac670086eb137c6': `Odzyskiwanie`, +'s6ae0d087036e6d6d': `Wybierz metodę uwierzytelniania.`, +'s6b5002c605b39d6d': `Utwórz transport powiadomień`, +'s6b6e6eb037aef7da': `Użyj poniższej nazwy użytkownika i hasła do uwierzytelnienia. Hasło można później odzyskać na stronie Tokeny.`, +'s6b79e73ca77148a0': `Integracje z placówkami`, +'s6b85380416964890': `Neguj wynik`, +'s6b9a1dd402750a8a': `Ponownie uruchamia przepływ od początku, zachowując kontekst przepływu`, +'s6ba50bb0842ba1e2': `Aplikacje`, +'s6c3daaac4eed12f9': `Lista zmian`, +'s6c410fedda2a575f': `Dostępna aktualizacja`, +'s6c607d74bdfe9f36': `Mapowania użytkowników można sprawdzić tylko wtedy, gdy użytkownik jest już zalogowany podczas próby uzyskania dostępu do tego źródła.`, +'s6c70a73265e14521': `Łącz użytkownika z identycznym adresem e-mail. Może mieć wpływ na bezpieczeństwo, gdy źródło nie weryfikuje adresów e-mail`, +'s6c8f05e3be04f62a': `Zarejestruj urządzenie`, +'s6d3b4d0561ba1cff': `Wydawca`, +'s6d5bce4321f57cda': `Wypisanie się`, +'s6df42b3072a2d7e9': `Nginx (Ingress)`, +'s6dfb7283452f78fe': `Autoryzacja`, +'s6dfd15978586d05f': str`Witaj, + ${0}.`, +'s6e09a19aa3952509': `Najczęściej używane aplikacje`, +'s6e4c997a101b6abf': `z obecnym użytkownikiem`, +'s6e612e5a6a359bbb': `Opcjonalny klucz prywatny. Jeśli to jest ustawione, możesz użyć tej pary kluczy do szyfrowania.`, +'s6e6e737601f44b2c': `Pomyślnie wyczyszczono powiadomienia`, +'s6f270e1668c036e9': `Pomyślnie zaktualizowano placówkę.`, +'s6f328f2d8382d998': `Zgoda wygasa`, +'s6f857299d5db1ecf': `Przepływ(y)`, +'s6fcd9b5a87ceccd6': `Otwórz ustawienia`, +'s6fe64b4625517333': `Napędzane przez authentik`, +'s7031e6928c44cedd': `Interfejs użytkownika`, +'s706af57c1af42c6d': `Ukryte: Ukryte pole, może służyć do wstawiania danych do formularza.`, +'s7073489bb01b3c24': `Aplikacja ma już dostęp do następujących uprawnień:`, +'s708d9a4a0db0be8f': `Sprawdź status`, +'s70f6471de355b98c': `Klucz hasła HTTP-Basic`, +'s713d147e1761d0f0': `Aktualny!`, +'s713e8666ed70f8b3': `Utwórz nowe mapowanie właściwości.`, +'s71633a67e0d7c0e4': `Pomyślnie zaimportowano urządzenie.`, +'s7181a5504472e856': `Zastosuj zmiany`, +'s71dcd9cf808449aa': `Token(y)`, +'s720594461542943f': `Dodaj użytkownika`, +'s721d94ae700b5dfd': `Aktywacja Duo`, +'s7220fcf4fec4e0df': `Usuń użytkownika(ów)`, +'s72559845d38bf688': `Skonfiguruj, jak długo tokeny dostępu są ważne.`, +'s72c1c17a9bdc76ad': `Tekst pomocy`, +'s72e102414fec81a4': `Pomyślnie utworzono regułę.`, +'s730182ad28374cda': `Obiekt`, +'s7301a7069b7bc83e': `Unieważniono?`, +'s733f83ff9d50da30': `Skonfiguruj maksymalny dozwolony dryft czasu dla asercji.`, +'s73c13e5a6f5e38a3': `Klasy urządzeń`, +'s74475586afc1fb0f': `Wybierz rodzaj`, +'s745a55f9abf9f2e5': `Prawy pasek boczny`, +'s7468e87263dfff7e': `Identyfikator`, +'s7489f76224f8120d': `Forward auth (pojedyncza aplikacja)`, +'s74cb3d66f6a668e1': `Dokumentacja`, +'s74f809a69e030351': `Wystawca konfiguracji OpenID`, +'s7520286c8419a266': `Opcjonalne dane, które są ładowane do zmiennej kontekstowej „prompt_data” przepływu. YAML lub JSON.`, +'s75a27f43413e02c5': `Francuski`, +'s75d5ff5dd8d3c6d2': `Pomyślnie zaktualizowano grupę.`, +'s7609ee54e8a7b05a': `Dni ważności`, +'s764bccb30868bf62': `Zewnętrzny adres URL, pod którym uzyskasz dostęp do aplikacji. Uwzględnij dowolny niestandardowy port.`, +'s76768bebabb7d543': `Pole zawierające członków grupy. Należy zauważyć, że w przypadku korzystania z pola „memberUid” zakłada się, że wartość zawiera względną nazwę wyróżniającą. np. 'memberUid=jakiś-użytkownik' zamiast 'memberUid=cn=jakiś-użytkownik,ou=grupy,...'`, +'s7683363cdf78cf31': `Preferowana jest weryfikacja użytkownika, jeśli jest dostępna, ale nie jest wymagana.`, +'s76881c01b6a3a8c7': `Zgoda(y)`, +'s76da2c978dcc5ef4': `Pamięć podręczna zasad została wyczyszczona`, +'s76f5dca6404a1210': `Webhook (Slack/Discord)`, +'s77299a9d3dd932cd': str`Pomyślnie zaimportowano + ${0}urządzenia.`, +'s773aa6621d7e37b7': `Utwórz najemcę`, +'s7754f0e34f27fb6e': `Opis wyświetlany użytkownikowi podczas wyrażania zgody. Jeśli pozostanie pusty, użytkownik nie zostanie o tym poinformowany.`, +'s77994108c886b965': `Nieudane próby przed anulowaniem`, +'s77f572257f69a8db': `Wyjątek mapowania właściwości`, +'s78c08391ffbfb8c0': `Te powiązania kontrolują, którzy użytkownicy mogą uzyskać dostęp do tego przepływu.`, +'s78fd8c03f8c967f3': `Tokeny`, +'s7968dbed9b106c29': `Brak dostępnych usług.`, +'s7989db5f4819af89': `Przepływ używany do wylogowania. Jeśli pozostanie pusty, używany jest pierwszy odpowiedni przepływ posortowany według ślimaka.`, +'s79ad406777feab1f': `Kontynuuj przepływ bez zaproszenia`, +'s79aed8154d7c472c': `Pomyślnie utworzono placówkę.`, +'s79e8cc71a5975b04': `Wiadomość`, +'s7a141f1b61074fbe': `Basic-Auth`, +'s7a322c89298dd27c': `Pomyślnie zaktualizowano zaproszenie.`, +'s7a4f059aaa029719': `Połącz`, +'s7abc9d08b0f70fd6': `Token statyczny`, +'s7b105164d209f670': `Wymagaj uwierzytelnienia`, +'s7b18721be331241e': `Wybierz transporty, które mają być używane do powiadamiania użytkownika. Jeśli nie wybierzesz żadnego, powiadomienie będzie wyświetlane tylko w interfejsie użytkownika authentik.`, +'s7b1fba26d245cb1c': `W przypadku korzystania z zewnętrznego rozwiązania rejestrującego do archiwizacji można to ustawić na „minuty=5”.`, +'s7b298427bdea81ae': `Jeśli jest ustawiony, można użyć profilu kodu urządzenia OAuth, a wybrany przepływ zostanie użyty do wprowadzenia kodu.`, +'s7b576aa71acb36a6': `Diagram`, +'s7b7163270e57e8b4': `Odśwież`, +'s7ba9677d069e5f02': `Caddy (Standalone)`, +'s7bc8c327f1f7c82c': `Nie znaleziono żadnych obiektów.`, +'s7bda44013984fc48': `Hasło ustawione`, +'s7c05ee41d634aa45': `Mapowania właściwości używane do tworzenia użytkowników.`, +'s7c10976de6411844': `Ważność tokena`, +'s7c27e113f90a89e0': `Po wybraniu, przychodzące podpisy asercji będą sprawdzane względem tego certyfikatu. Aby zezwolić na niepodpisane żądania, pozostaw domyślnie.`, +'s7c5774fad9d050ce': `Utwórz grupę`, +'s7cb9aa9ee1783f00': `Mapowanie właściwości grupy`, +'s7d499be3b781a3ca': `Użytkownik(cy)`, +'s7d61705dfb120d7b': `Użytkownik w authentik, do którego zostanie przypisane to urządzenie.`, +'s7d684b6257284e55': `Punkty`, +'s7def067ed3ad3ad9': `Domena plików cookie`, +'s7e537ad68d7c16e1': `Użytkownik zapisał do`, +'s7e5af9c6ba6f5cc6': `W przypadku wybrania wielu etapów użytkownik może wybrać, na który chce się zapisać.`, +'s7e87ab366c199345': `Zaktualizuj wiązanie`, +'s7eb3d239e0b491ab': `Wybierz grupy, do których chcesz dodać użytkownika`, +'s7ec7036b249f4f22': `Zwykły użytkownik`, +'s7edad99c6b7bfe88': `Przejdź do następnej strony`, +'s7f4e4054fbe132e1': `Inne ustawienia globalne`, +'s7f5869b3d14d7cbc': `Dostawca`, +'s7f9e79189a3d19e2': `Najemcy`, +'s7f9eb9c8bd26e8fd': `Prawidłowe adresy URL przekierowania po pomyślnym przebiegu autoryzacji. Określ również wszelkie źródła tutaj dla przepływów niejawnych.`, +'s7fa236d26b798301': `Wyślij link`, +'s7fa4e5e409d43573': str`Błąd podczas tworzenia poświadczenia: + ${0}`, +'s802826db4e2c852e': `Ostrzeżenie: żaden etap zaproszenia nie jest powiązany z żadnym przepływem. Zaproszenia nie będą działać zgodnie z oczekiwaniami.`, +'s803b0621006085be': `Aktualizuj dostawcę SAML`, +'s80e6d6fe5ad458d3': `Wyczyść ikonę`, +'s819509c33a7534ac': `Transporty powiadomień`, +'s81a87652ade099e4': `Tryb dopasowania użytkownika`, +'s81ce0d54727f42d2': `Nieznany tryb dopasowania użytkownika`, +'s81ecf2d4386b8e84': `Kontynuuj`, +'s81eff3409d572a21': `Ogólny wyjątek systemowy`, +'s82188c9542510212': `Opcjonalny przepływ odzyskiwania, do którego link znajduje się na dole strony.`, +'s8226f48cb1a80997': `Zaproszenia`, +'s832282d415294df4': `Importuj przepływ`, +'s835da49b4dc83a51': `Nieudane logowania dziennie w ciągu ostatniego miesiąca`, +'s836aa192b30c21da': `Przepływ wypisywania się`, +'s838418d1a0815157': `Przechodzi zasadę?`, +'s838ed611b533b19e': `Para kluczy służąca do podpisywania żądań wychodzących. Pozostaw puste, aby wyłączyć podpisywanie.`, +'s839cb09cb2193da9': `Link do korzystania z zaproszenia.`, +'s83d0f62ad1731a03': `Klucz prywatny`, +'s842d690eb3c11762': `Przepływ jest wykonywany, a sesja zapisywana w pamięci podręcznej. Przepływ jest wykonywany po wygaśnięciu sesji`, +'s84c5a011acd608c9': `Przechowywanie zdarzeń`, +'s84d7d6ebbedcb586': `Zdrowie i wersja`, +'s850a58c683682809': `Tryb wystawcy`, +'s851c108679653d2a': `Nazwa zakresu`, +'s85366fac18679f28': `Zapomniałeś hasła?`, +'s858e7ac4b3cf955f': `Tokeny statyczne`, +'s8655c52824caac63': `Jeśli zaznaczone, adres URL uruchamiania otworzy się w nowej karcie przeglądarki lub oknie z biblioteki aplikacji użytkownika.`, +'s872d0e88ab34ed83': `URL autoryzacji`, +'s8763a33c3d46aaf5': `Status placówki`, +'s87b7e3bc944c728c': `Aktywuj oczekującego użytkownika po sukcesie`, +'s8802553bc57617ee': `Placówki (Outposts) to wdrożenia komponentów uwierzytelniających do obsługi różnych środowisk i protokołów, takich jak odwrotne serwery proxy.`, +'s880b8b70b22f9977': `Aktualizuj schemat`, +'s883b544e2b4aa3b5': `Minimalna liczba małych liter`, +'s8849ece8c65e3a18': `Pulpity`, +'s88870d7e499e848b': `Duo Admin API (opcjonalnie)`, +'s88b8a2892635a2fc': `URL używany przez authentik do pobierania tokenów.`, +'s890810efbe103cbc': `Dopasuj utworzone zdarzenia do tego typu akcji. Jeśli pozostawisz to puste, wszystkie typy akcji zostaną dopasowane.`, +'s890e983a7be64da4': `Wynik`, +'s892d2731a6f22e59': `Klucz prywatny uzyskany z https://www.google.com/recaptcha/intro/v3.html.`, +'s8939f574b096054a': `Nie ty?`, +'s89d1847b5e4ad225': `Szablon ścieżki użytkownika`, +'s8a1d9403ca90989b': `Wykorzystano zaproszenie`, +'s8a67b33a0d70d322': `Importuj urządzenie Duo`, +'s8aaad223e954f9ca': `Po włączeniu pola użytkownika są dopasowywane niezależnie od wielkości liter.`, +'s8af61807443f32a4': `Działania`, +'s8af7239354f7e7b6': `Synchronizuj użytkowników`, +'s8aff572e64b7936b': `Wyślij e-mail ponownie.`, +'s8b0432eecbd8b034': `Aktualizuj`, +'s8b149b30b5b523ef': `OIDC well-known configuration URL. Może służyć do automatycznej konfiguracji powyższych adresów URL.`, +'s8b2b2a43fcf688a3': `Pomyślnie zaktualizowano monit.`, +'s8b33660e2ed7212c': `Podczas łączenia przez SSH ta para kluczy jest używana do uwierzytelniania.`, +'s8b87df5664de7eb8': `Skonfiguruj sposób, w jaki placówka wysyła zapytania do użytkowników podstawowego serwera authentik.`, +'s8be4abc7ca71da6c': `Ustawienia interfejsu użytkownika`, +'s8c05cccd470f6b5f': `Nie skonfigurowano przepływu ustawień.`, +'s8ca0dbaec5d48563': `Nie skonfigurowano przepływu odzyskiwania.`, +'s8cb7bb82e96d5d77': `Zasady`, +'s8cc920e6a8430a0d': `Loguj aktualnie oczekującego użytkownika.`, +'s8cda828dac449ea5': `Wyczyść wszystko`, +'s8ce8bdc9cc9c8604': `Zgoda udzielona na czas nieokreślony`, +'s8d08843f397d9e81': `Zobacz dokumentację, aby zobaczyć listę wszystkich zmiennych.`, +'s8d32d7b9e8ca60b1': `Ten sam identyfikator jest używany dla wszystkich dostawców`, +'s8d7ecd944ebe834b': `Token jest zarządzany przez authentik.`, +'s8d857061510fe794': `Powiadomienia push Duo`, +'s8da88a8a5750bce1': `Uwierzytelniacze Duo`, +'s8e01a852c1db8d29': `Nginx (Proxy Manager)`, +'s8ecdbff1a7329b64': `z inspektorem`, +'s8f12575f694e85a2': `Dodatkowe mapowania zakresu, które są przekazywane do serwera proxy.`, +'s900b0d85b872d134': `Łącz użytkowników za pomocą unikalnego identyfikatora`, +'s909e876731a8febb': `Zaznacz wszystkie wiersze`, +'s90c3b62194fe8508': `Informacje o wdrożeniu placówki`, +'s9117fb5195e75151': `Uwaga`, +'s916b32ac64ea2b05': `Pomyślnie zaktualizowano etap.`, +'s9193ef1a39a6c872': `Oznacz nowo utworzonych użytkowników jako nieaktywnych.`, +'s91e3a47599412f51': `Źródła`, +'s91f389c796720a81': `Załaduj serwery`, +'s91f70424f5d5d23e': `Ślimak`, +'s9222ca30ae7786e4': `Pomyślnie utworzono aplikacje.`, +'s925936f647ae52cc': `Wyświetlany jako tytuł na stronach przepływu.`, +'s926e0ecf124fb01a': `Ważność kodu dostępu`, +'s92ca679592a36b35': `Sekret został obrócony`, +'s92e241c9f3c101a2': `obiekt łączący zostanie usunięty`, +'s92e91071c6a45eb4': `Wyłączone schematy nigdy nie są stosowane.`, +'s93574c03953f25dd': `Ten dostawca będzie zachowywał się jak przezroczysty odwrotny serwer proxy, z wyjątkiem tego, że żądania muszą być uwierzytelnione. Jeśli Twoja aplikacja nadrzędna korzysta z protokołu HTTPS, upewnij się, że łączysz się z placówką również za pomocą protokołu HTTPS.`, +'s93c1e5fbe8184895': `Pomyślnie utworzono token.`, +'s93cea6ca1f93349d': `Nieuwierzytelnione adresy URL`, +'s93cf77a59db53395': `odniesienie zostanie zresetowane do wartości domyślnej`, +'s94055b4eb957dc8f': `Foldery użytkownika`, +'s94333971a07803b9': `Dodatkowe ustawienia`, +'s949826fad0fe0909': `Zadanie zakończone z błędami`, +'s951281efc92b03fc': `Jeśli którekolwiek z urządzeń wybranych powyżej typów zostało użyte w tym czasie, ten etap zostanie pominięty.`, +'s955c1fec1c6fb970': `Żadne etapy nie są obecnie związane z tym przepływem.`, +'s95a032ae86881bf5': `Używanie przepływu`, +'s964f6725aeb7662f': `Dodaj grupę`, +'s965c503c3e42fdfe': `Włączony`, +'s968c90258dcf7562': `Post binding`, +'s96b2fefc550e4b1c': `Typ dostawcy`, +'s96b3cddf33e1c853': str`Obecnie podszywasz się pod + ${0}. Kliknij, aby zatrzymać.`, +'s97d1b0070f50c07f': `Tokeny statyczne`, +'s97f2dc19fa556a6a': `SMS`, +'s97f5e0c138eae172': `Ostrzeżenie: dostawca nie jest przypisany do żadnej aplikacji.`, +'s980270d0fab7ecb3': `Zaktualizuj powiązanie etapu`, +'s98b1cb8fb62909ec': `Grupa`, +'s98beadfeeb3acb66': `Wymagaj superużytkownika.`, +'s98c3bdf4fd5cdf65': `Zasady powiadamiania`, +'s98dc556f8bf707dc': `Aplikacja wymaga następujących nowych uprawnień:`, +'s991b750e2d5c4234': `Wiązanie usługodawcy`, +'s992f8d1a776e763c': `Jeśli pozostawione puste, authentik spróbuje wyodrębnić URL uruchamiania na podstawie wybranego dostawcy.`, +'s9940e3f073fbdbd4': `Twórz użytkowników, gdy jest to wymagane`, +'s99f110d27e30b289': `Tytuł`, +'s9a34d1520e320465': `Ustawienia specyficzne dla etapu`, +'s9a393a04eaf1eb0e': `Utwórz wiązanie etapu`, +'s9ae089fd248e72db': `Dodatkowa nazwa wyróżniająca użytkownika poprzedzona podstawową nazwą wyróżniającą.`, +'s9bd59e0ea70a3e4a': `Zaktualizuj placówkę`, +'s9bd9ba84819493d4': `Coś poszło nie tak! Spróbuj ponownie później.`, +'s9bf48a89367282cd': `Ostrzeżenie: domena authentik nie jest skonfigurowana, uwierzytelnianie nie będzie działać.`, +'s9c29565c5ae1cc92': `Wybranie integracji umożliwia zarządzanie placówką przez authentik.`, +'s9c3c272944dcfca3': `Pomyślnie utworzono użytkownika.`, +'s9c6f61dc47bc4f0a': `Utworzono model`, +'s9c73bd29b279d26b': `Podszywanie się zostało zakończone`, +'s9d18948d25c68d66': `Pomyślnie wygenerowana para certyfikat-klucz.`, +'s9d2d00982edafabb': `Turecki`, +'s9d8ad4b85287131f': `Cyfry`, +'s9d95f09deb601f34': str`Weryfikacja poświadczeń serwera nie powiodła się: + ${0}`, +'s9d96eb5ca93e6473': `URL konfiguracji OpenID`, +'s9db2c836ade1339c': `OIDC JWKS URL`, +'s9e51d6de369f320b': `Pomyślnie utworzono instancję.`, +'s9e568afec3810bfe': `Klucze odzyskiwania`, +'s9e830cbc0b42a514': `Aktualizuj przepływ`, +'s9e9c8d99f4c26baf': `Gdy użytkownik pomyślnie wróci z wiadomości e-mail, jego konto zostanie aktywowane.`, +'s9ea472b555374771': `Wymagania dotyczące klucza rezydenta`, +'s9ee20003cb116abf': `Przepływ bezhasłowy`, +'s9f23ed1799b4d49a': `Skonfiguruj, jakie dane mają być używane jako unikalny identyfikator użytkownika. W większości przypadków wartość domyślna powinna być w porządku.`, +'s9f26843287bb592d': `Grupy`, +'s9f5a5f23312798f0': `Członkowie`, +'s9f83d7768aea548a': `Lub ręcznie importuj`, +'s9f8aac89fe318acc': `Opcjonalnie ustaw wartość „FriendlyName” atrybutu asercji.`, +'s9f91cc8bcfabb40f': `Asercja ważna nie wcześniej`, +'s9fb28be12e2c6317': `Superużytkownik`, +'s9fdda7ea4642306c': `Grupa(y)`, +'s9ff3121d30f88d52': `Normalny`, +'s9ffa1ac03ce6fd20': `Rejestrowanie wykonania`, +'sa00cf67b54c44c71': `Sprawdź adres IP usługi Kubernetes lub`, +'sa03aa46068460c95': `Zapomniałeś nazwy użytkownika lub hasła?`, +'sa03fe48e892df2d8': `Zewnętrzny adres URL, pod którym będziesz się uwierzytelniać. Jądro serwera authentik powinien być dostępny pod tym adresem URL.`, +'sa0b01f479f40c52d': `Urządzenie(a)`, +'sa0e0bdd7e244416b': `Podejrzane zapytanie`, +'sa11e92683c5860c7': `Żądanie zostało odrzucone.`, +'sa13e6c8310000e30': `ID sesji`, +'sa18e1c6e0e6f16cc': `Nowy kreator aplikacji znacznie upraszcza kroki wymagane do tworzenia aplikacji i dostawców.`, +'sa1b41e334ad89d94': `Sekret został wyświetlony`, +'sa248e1021d2c27b5': `Zweryfikuj adres e-mail użytkownika, wysyłając mu jednorazowy link. Może być również używany do odzyskiwania w celu weryfikacji autentyczności użytkownika.`, +'sa266303caf1bd27f': `Email wysłany`, +'sa29b5680cfafacc8': `Zewnętrzny host`, +'sa2b727168b090d34': `Wyczyść pamięć podręczną przepływu`, +'sa2c29dc5ed47b26d': `Zmuś użytkownika do skonfigurowania uwierzytelniacza`, +'sa2e4d6830226d3ec': `Wiązanie przekierowania`, +'sa30c58514a3dc0fb': `Odmów użytkownikowi dostępu`, +'sa319e3bf44c85963': `Mapowania właściwości używane do tworzenia grup.`, +'sa33d061d2ade20aa': `Reputacja`, +'sa3438c7bb4e9cce8': str` + ${0}nieprzeczytane`, +'sa347e31efbb60be2': `Aktualizuj aplikację`, +'sa3599457b9418bc5': `Awatar użytkownika`, +'sa3660d505e7011e0': `Autoryzowana aplikacja:`, +'sa3c1f6ac5e63a70f': `Przepływ używany przed uwierzytelnieniem.`, +'sa41aee3ae04c9216': `Pokaż etykiety źródeł`, +'sa43153d53ae65063': `Nieznany typ`, +'sa442044b586ec8bf': `Akcja`, +'sa45a194b58837e4f': `Aktywny`, +'sa48f81f001b893d2': `Użytkownik`, +'sa4a8086275475714': `Wybierz przepływ rejestracji`, +'sa50a6326530d8a0d': `Pokaż mniej`, +'sa578033f134a83b6': `Skonfiguruj czas ważności kodów dostępu.`, +'sa57c393736e2732c': `Testuj mapowanie właściwości`, +'sa599dbe5776897ad': `Określ wiele identyfikatorów URI serwera, oddzielając je przecinkami.`, +'sa661ea7d7a50f2e9': `Utwórz nowego dostawcę.`, +'sa668bd79645c3e06': `Kubeconfig`, +'sa6905be242387f36': `Wyjątek`, +'sa6ab5184d6315895': `Z`, +'sa717841a602fe7d8': `Nie udało się usunąć pamięci podręcznej zasad`, +'sa738ce390bc24875': `Pobierz tę wartość z https://console.twilio.com`, +'sa7b56a80ab1801f0': `Twilio Auth Token`, +'sa7fcf026bd25f231': `Może mieć format „unix://” podczas łączenia się z lokalnym demonem dockera, używając „ssh://” do łączenia się przez SSH lub „https://:2376” podczas łączenia się z systemem zdalnym.`, +'sa800871782eba1ac': `Zawartość prawa`, +'sa81e2cdaf6921adc': `System`, +'sa8384c9c26731f83': `Aby zezwolić na dowolny URI przekierowania, ustaw tę wartość na „.*”. Bądź świadomy możliwych konsekwencji dla bezpieczeństwa, jakie może to mieć.`, +'sa879d5ce584875cf': `Ustawienia specyficzne zasady`, +'sa8c45b6b92a8ba1f': `Utwórz aplikację`, +'sa8d83cd8023e8e4d': `URL używany przez authentik do uzyskania informacji o użytkowniku.`, +'sa8e255492bb6ae0d': `Integracja(e) z placówkami`, +'sa9020b93c3bd7235': `Ile prób ma użytkownik przed anulowaniem przepływu. Aby zablokować użytkownika, użyj zasad reputacji i etapu user_write.`, +'sa90b7809586c35ce': `Wprowadź pełny adres URL, ścieżkę względną lub użyj „fa://fa-test”, aby użyć ikony Font Awesome „fa-test”.`, +'sa92398dba8b12d85': `Mapowanie`, +'sa95a538bfbb86111': str`Czy na pewno chcesz zaktualizować + ${0}" + ${1}”?`, +'sa982875b258fea07': `Pomyślnie dodano użytkownika do grup.`, +'sa9b2a245441557dc': `Ostatnio uruchomiono`, +'sa9dbe2fb284e26fe': `Wyślij link odzyskiwania do użytkownika`, +'saa0e2675da69651b': str`Nie znaleziono adresu URL „ + ${0}”.`, +'saa10777250a6deca': `Aktualizuj źródło SAML`, +'saa79b47f60c66458': `URL SSO (przekierowanie)`, +'saa855c61e0403fe6': `Ostrzeżenie: Aplikacja nie jest używana przez żadną Placówkę.`, +'saa8939ac88a76f98': `Ostatnio widziany`, +'saaa3abe03c7260f9': `Długotrwałe operacje, które authentik wykonuje w tle.`, +'saab79cd956ee56a9': `Schematy`, +'saae1c70e168b45b4': `Admin`, +'sab6bad52985c6676': `Branding widoczny w tytule strony i kilku innych miejscach.`, +'sab6d24c5ec8dc361': `Przyjazna nazwa`, +'sab85321d3b0840b7': `Żądanie API nie powiodło się`, +'sababff57115130a0': str`Błąd: nieobsługiwane ustawienia źródła: + ${0}`, +'sabaf0061f7e41b0b': `Sekret klienta`, +'sabb56f74492e7e96': `Aktualizuj urządzenie`, +'sabd1bc9fb7da71e7': `Wyrażenie za pomocą Pythona.`, +'sabebdc7fa6a5bddb': `Nginx (standalone)`, +'sabf67834e35dede5': `Liczba tokenów`, +'sac1332e6f421526e': `Zaktualizuj transport powiadomień`, +'sac43cb9690260b86': `Numer początkowy UID`, +'sac8252732f2edb19': `Data`, +'sad09c62cb4ebae68': `Kliknij, aby skopiować token`, +'sad130c2d925fb7bf': `Zaktualizuj użytkownika`, +'sad3e3c8146fc920f': `Status`, +'sad59707375956ad2': `Zakończ`, +'sad8550b8731518d8': `Sesja ważna nie w lub później`, +'sae1e1a59d22609c4': `Po włączeniu będą używane globalne ustawienia połączenia poczty e-mail, a poniższe ustawienia połączenia będą ignorowane.`, +'sae239213b7c70376': `Stan`, +'sae486938be80729c': `Wszystko w porządku.`, +'sae5d87e99fe081e0': `Wymagany`, +'sae5da213b7f896ed': `Etap`, +'saeff3596e1ac31b6': `Instalacja`, +'saf1d289e3137c2ea': `CA względem którego weryfikowany jest certyfikat. Można pozostawić puste, aby nie sprawdzać poprawności.`, +'saf24e253b3b006d4': `Jak się połączyć`, +'saf31b3c610036ed6': `Gdy ta opcja jest włączona, wszystkie wykonania tej zasady będą rejestrowane. Domyślnie rejestrowane są tylko błędy wykonania.`, +'saf5eb7596b3a355b': `Rozważ obiekty pasujące do tego filtra jako grupy.`, +'saf63a04c86018698': `-`, +'saf63d34c8601dd41': str` + ${0} + `, +'saf794c74c9ea731e': `Mapowania właściwości użytkownika`, +'saf7ce4165a1025f6': `Synchronizuj grupy`, +'safc0e0656d572f4e': `Zasada używana do testowania. Zawsze zwraca ten sam wynik, jak określono poniżej, po odczekaniu losowego czasu trwania.`, +'safcc54b2aedb1a17': `Jeśli ta opcja zostanie wybrana, token wygaśnie. Po wygaśnięciu token będzie podlegał rotacji.`, +'safd0363143a46a91': `Basic Auth`, +'sb0669da3df95837c': `Logowania dziennie w ciągu ostatniego miesiąca`, +'sb07bf992e3d00664': `Brak dodatkowych danych.`, +'sb0b86b8ca6ab13bd': `Dostawcy`, +'sb157267c85fdff30': `Certyfikat`, +'sb15e8daacf26bdfc': `Utwórz token`, +'sb15fe7b9d09bb419': `Jeśli nie otworzy się wyskakujące okienko Plex, kliknij przycisk poniżej.`, +'sb1751a1411d6874f': `URL zewnętrznego API`, +'sb17e8c70f9a05c77': `Na wypadek, gdybyś nie miał dostępu do żadnej innej metody.`, +'sb1c91762ae3a9bee': `Rozpoczęto podszywanie się`, +'sb1fe947f9ad27b9d': `Token wygasa`, +'sb24755ea94bef31d': `Usuń aktualnie ustawiony obraz tła.`, +'sb25d9afe10941425': `Decyduje, do czego służy ten przepływ. Na przykład przepływ uwierzytelniania służy do przekierowania nieuwierzytelnionego użytkownika który odwiedza authentik.`, +'sb25e689e00c61829': `Użyj uwierzytelniacza opartego na kodzie.`, +'sb2b3b281954752c4': `Przypisany do aplikacji`, +'sb2bb6f93773a4594': `Atrybut użytkownika/grupy używany w części użytkownika nagłówka HTTP-Basic. Jeśli nie jest ustawiony, używany jest adres e-mail użytkownika.`, +'sb2c57b2d347203dd': `Pokaż więcej`, +'sb2f307e79d20bb56': `Aktualny kontekst planu`, +'sb32e9c1faa0b8673': `Przepływ wstępnego uwierzytelniania`, +'sb357ea19a722d827': `Post`, +'sb3651834cca86735': `Minimalna liczba symboli`, +'sb379d861cbed0b47': `Nigdy nie twórz użytkowników`, +'sb3fa80ccfa97ee54': `Nazwa etapu`, +'sb4564c127ab8b921': `Nieudane logowanie`, +'sb4a1d1c19438e929': `authentik działa na auth.example.com`, +'sb4c9ed2a487b238f': str`Czy na pewno chcesz usunąć użytkownika + ${0}z następujących grup?`, +'sb4e50ca3cffdbc10': `Lewy pasek boczny`, +'sb546eb04425e07fa': `Zaktualizuj szczegóły`, +'sb564f81eb057342e': `Ikona aplikacji`, +'sb56674c9ea4f0588': `Ustawienia zachowania`, +'sb59d68ed12d46377': `Ładowanie`, +'sb635ad3c2e357d3c': `To jest hasło używane z podstawowym uwierzytelnianiem`, +'sb69119c9f0547bed': `Skopiuj link odzyskiwania`, +'sb69a4b0acd0895f2': `Przepływ(y)`, +'sb6cbd4f92ebaf5d8': `Związane z`, +'sb6d5146d5efb3058': `Klucz dostępu`, +'sb6d7128df5978cee': `Wyjątek zasad`, +'sb6d7d58cb0a1544e': `Tryb zgodności`, +'sb72ebab438cb2983': `Importuj certyfikaty zewnętrznych dostawców lub twórz certyfikaty do podpisywania żądań.`, +'sb7684e2910a33a1f': `Bind CN`, +'sb7794c2910b1a9ec': `Bind DN`, +'sb7a30abc1dcf6c36': `Wystawca`, +'sb8168ae309c66abc': `Uwierzytelniacze TOTP`, +'sb85ffe141d7c229d': `Długość sesji`, +'sb8795b799c70776a': `Jednorazowego użytku`, +'sb8bc2b8376c96a6b': `Przeznaczenie`, +'sb8c13bd58191cea2': `Podczas łączenia się z serwerem LDAP za pomocą TLS, certyfikaty nie są domyślnie sprawdzane. Określ parę kluczy, aby zweryfikować certyfikat zdalny.`, +'sb8d4f44a1d5b9a14': `back-end`, +'sb8dd788adf7b907b': `Proxy`, +'sb904f23f17b60c3a': `Pomyślnie zaimportowano przepływ.`, +'sb932dead79567c7b': `URL tokena dostępu`, +'sb96629f50f2e7fab': `Niezdrowy`, +'sb9834316ffd4ae3e': `Ułożone`, +'sb986f15fa9b17805': `Zgoda wygasa.`, +'sba42248f3f27955c': `Baza użytkowników + standardowe hasło`, +'sba65ae54d6585c1a': `Nieprzeczytane powiadomienia`, +'sba999428083abce3': `EntityID/Issuer`, +'sbab723b98dcfe23f': `Pokaż dopasowanego użytkownika`, +'sbad5b96fb855ef36': `Żadne zasady nie są związane.`, +'sbadde673052efc02': `Certyfikat sieciowy`, +'sbaf20067de176c90': `Ustawienia wyglądu`, +'sbb3243352661428f': `Przepływ uwierzytelniania`, +'sbb57cd8a3ed12915': `Ważne przez 360 dni, po czym hasło zostanie automatycznie zmienione. Możesz skopiować hasło z listy tokenów.`, +'sbb8ad22c83d375b1': `Obsługiwane są następujące słowa kluczowe:`, +'sbbb2180b6aed196e': `Z numeru`, +'sbbb7318812d64e51': str`Błąd podczas tworzenia poświadczeń: + ${0}`, +'sbbb97b1c63507dc0': `Numer`, +'sbbc1de43ab6c1f76': `Utwórz regułę powiadomień`, +'sbbc53e0e54d7946f': `Przedmiot`, +'sbbc806ea3987c781': `Automatyczne importowanie`, +'sbc625b4c669b9ce8': `Otwórz logowanie`, +'sbc80eab557fbf782': `Grupa wyszukiwania`, +'sbcae51a6f06e53d4': `Tryb szukania`, +'sbcf8604929b6a27a': `Wysyłam powiadomienie push Duo`, +'sbd19064fc3f405c1': `Sprawdź swoją skrzynkę odbiorczą pod kątem e-maila weryfikacyjnego.`, +'sbd34d118bcb1aaf2': `Token API`, +'sbdc1176ff9f93da2': `To jest pełny punkt końcowy, do którego wysyłane są żądania POST.`, +'sbdeedc1c60306b35': `Wiadomości`, +'sbe3b416a356f1c91': `Jest aktywny`, +'sbe47a5bdeec19ab0': `Wiązania(a) etapu`, +'sbe9a51f29a4a2c5b': `Pomyślny`, +'sbea3c1e4f2fd623d': `Rodzaj etapu`, +'sbec40ef4e6f139b7': `(Format: hours=1;minutes=2;seconds=3).`, +'sbecf8dc03c978d15': `Uruchom ponownie synchronizację`, +'sbedb77365a066648': str`Ostatnia synchronizacja: + ${0}`, +'sbf41e0db12834133': `Uwzględnij oświadczenia użytkownika z zakresów w id_token dla aplikacji, które nie uzyskują dostępu do punktu końcowego informacji o użytkowniku.`, +'sbf5f4c5ba679e847': str`Logowanie przez + ${0}.`, +'sc04e92d753742189': `6 cyfr, szeroko kompatybilne`, +'sc0829ee663ced008': `Katalog`, +'sc0a0c87d5c556c38': `Numer telefonu`, +'sc10db51c9bb77d5c': `Baza użytkowników + hasło LDAP`, +'sc1231049879b8d33': `Jeśli jest włączone, użyj połączenia lokalnego. Wymagane socket Docker/Integracja Kubernetes.`, +'sc1589121ae2f5f92': `Wpisz kod widoczny na Twoim urządzeniu.`, +'sc15d60377cc8aaac': `Żadne zasady nie są obecnie powiązane z tym obiektem.`, +'sc16e00a7a8b2fde2': `Wstecz`, +'sc19838ca8c135c1b': `Ustawienia brandingowe`, +'sc1a1ff47c058bb09': `Dziennik zdarzeń`, +'sc1cb0eef9ed94e6a': `Nowo utworzeni użytkownicy są dodawani do tej grupy, jeśli grupa jest zaznaczona.`, +'sc1ce2f758935ff48': `Zarządzane przez authentik`, +'sc1cfce89ebcf1bf9': `Pobierz certyfikat podpisywania`, +'sc1feadd25659c94d': `Z adresu`, +'sc21032b0d37882a0': `Jeśli ustawienie authentik_host nie odpowiada adresowi URL, pod którym chcesz się zalogować, dodaj to ustawienie.`, +'sc25edca57df81461': `Uwierzytelnianie`, +'sc265a3e29e1206e4': `Zdarzenia`, +'sc297b2e13c28ecf9': `Zezwalaj znajomym na uwierzytelnianie przez Plex, nawet jeśli nie udostępniasz żadnych serwerów`, +'sc2a1a40a1b4b0170': `Pomyślnie utworzono integracje.`, +'sc2cedfb22488ccb2': `Nowoczesne aplikacje, API i aplikacje jednostronicowe.`, +'sc2e03590269d5a10': `Nowe mapowanie własności`, +'sc2f116c0ea77d58a': `Komunikat o błędzie`, +'sc2f1e5dd74c1b7df': `Pomyślne logowania`, +'sc3259eb55cf91e8c': `LDAP`, +'sc35581d9c1cd67ff': str`W imieniu + ${0}`, +'sc381422c585b867f': `Szybkie akcje`, +'sc39fb3ff3753d5ab': `Ukryj zarządzane mapowania`, +'sc3c74f5273df459a': `Ogólny`, +'sc3e0c240b159fbce': `Pomyślnie utworzono przepływ.`, +'sc3e1c4f1fff8e1ca': `Ten przepływ jest zakończony.`, +'sc4508175bf6b09dd': `Nieuwierzytelnione ścieżki`, +'sc4eedb434536bdb4': `Potrzebujesz konta?`, +'sc54aafeea9c9bab0': `Połączone usługi`, +'sc554339ffc7b04e7': `Pomyślnie utworzono zaproszenie.`, +'sc5668cb23167e9bb': `Alternatywnie, jeśli na Twoim obecnym urządzeniu jest zainstalowany Duo, kliknij ten link:`, +'sc592307ea80f16b9': `Nieznany`, +'sc5a4711395ffb043': `Etap używany do konfiguracji tokena uwierzytelniającego TOTP (tj. Authy/Google Authenticator).`, +'sc647dcb91f6958dd': `Numer, z którego zostanie wysłana wiadomość SMS.`, +'sc6b4ebd37b7a91c7': `Tokeny i hasła aplikacji`, +'sc6c57419ad3a01a8': `Klucz używany do podpisywania tokenów.`, +'sc6e8a34361c7c272': `Forward auth (na poziomie domeny)`, +'sc741d9ebe07ad103': `Certyfikat podpisujący`, +'sc741dfb09d3395f0': `Brak dostępnych aplikacji.`, +'sc744f3691efe310d': `Ukryj konta serwisowe`, +'sc764ddf60b5149de': `Opcjonalny URL, jeśli dostawca tożsamości obsługuje pojedyncze wylogowanie.`, +'sc7707b3ba3a2a7ca': `URL żądania tokena`, +'sc7be80a7f8ec597e': `Data wygaśnięcia`, +'sc816360d6f5a1eeb': `Przepływy opisują łańcuch etapów do uwierzytelniania, rejestracji lub odzyskiwania użytkownika. Etapy są wybierane na podstawie stosowanych do nich zasad.`, +'sc8da3cc71de63832': `Logowanie`, +'sc8de93a7dc0d78ba': `Client type`, +'sc8f286ac783c385d': `Wyświetl informacje o wdrożeniu`, +'sc9175cb129fdc306': str`Zaktualizuj + ${0}`, +'sc92d7cfb6ee1fec6': `Pomyślnie zaktualizowano hasło.`, +'sc92ed9d5e01d3f24': `Reguła(y) powiadamiania`, +'sc96dd9d2e7b05fc5': `Minimalna długość`, +'sc9c3578cce3cf7a8': `Zewnętrzny host`, +'sc9f69360b58706c7': `Model usunięty`, +'sc9fc206433f67588': `Wyrażenia regularne, dla których uwierzytelnianie nie jest wymagane. Każda nowa linia jest interpretowana jako nowe wyrażenie.`, +'sca2879d96f58a39c': `Wyślij raz`, +'sca7cfe2bef51b2a5': `Korzeń`, +'scab2900019953050': `Pomyślnie zaktualizowano użytkownika.`, +'scae166352a31032c': `Etapy konfiguracji`, +'scb317851cbcc6b12': `Wewnętrzny host`, +'scb43f5faeb6a7ca9': `Weryfikacja użytkownika nie powinna nastąpić.`, +'scb489a1a173ac3f0': `Tak`, +'scb5c9a7cc4ccd68d': `Informacje e-mail:`, +'scb6620fcd5bff04c': `Zaawansowane ustawienia`, +'scbb7d3154da629f3': `Adres URL OCI w formacie oci://registry.domain.tld/path/to/manifest.`, +'scc286303aa9c6cb0': `Status synchronizacji`, +'scc733ba98740038a': `Aktualizuj monit`, +'sccbfc4dec0c8d80c': `Przypisany do aplikacji`, +'scd0cfe87af6f2ff2': `Poziom błędu`, +'scd8062ff5e1326d8': `Dopuść do N wystąpień w bazie danych HIBP.`, +'sce106606ae84d46f': `Mapowanie właściwości`, +'sce8d867ca5f35304': `Ustaw hasło`, +'scea1f16238093e35': `Wykonuje fragment kodu Pythona, aby określić, czy zezwolić, czy odrzucić żądanie.`, +'scee721983b1c28d0': `Dodaj istniejącego użytkownika`, +'scef3f4ad80abbd22': `Skonfiguruj sposób, w jaki placówka uwierzytelnia żądania.`, +'scef7abb8456b06d6': `Sprawdź zxcvbn`, +'scf2790cf3ad89283': `Nazwa atrybutu używana w asercjach SAML. Może być identyfikatorem URN OID, odwołaniem do schematu lub dowolnym innym ciągiem. Jeśli to mapowanie właściwości jest używane dla właściwości NameID, to te pole jest odrzucane.`, +'scf5ce91bfba10a61': `Wprowadź hasło`, +'sd04376c4216c921f': `Ustawienia URL`, +'sd06b47084fec0ec5': `Bearer Token`, +'sd07866d9f38b2c50': `Wykonaj przepływ`, +'sd080b2370aa82967': `Reputacja dla adresów IP i użytkowników. Wyniki są zmniejszane za każde nieudane logowanie i zwiększane za każde udane logowanie.`, +'sd0bc94e11935ee5a': `HTTPS nie jest poprawnie wykrywany`, +'sd1031bddc66dc495': `Połącz swoje konto użytkownika z usługami wymienionymi poniżej, aby umożliwić logowanie za pomocą usługi zamiast tradycyjnych poświadczeń.`, +'sd1146418b344f81f': `Zaktualizuj regułę powiadamiania`, +'sd1288ca57e221cf9': `Aktualizuj token`, +'sd14a19a19d507f9e': `Grupa nadrzędna dla wszystkich grup importowanych z LDAP.`, +'sd18170637295bace': `Dodatkowa nazwa wyróżniająca użytkownika`, +'sd1a5560fde6f2271': `Pomyślnie zaimportowano dostawcę.`, +'sd1f44f1a8bc20e67': `E-mail`, +'sd1f81284eeb7b503': `Plik`, +'sd20f6cd02c90867f': `Aplikacja(e)`, +'sd216b08bafb297ee': `Przepływ używany do uwierzytelniania użytkowników. Jeśli pozostanie pusty, używany jest pierwszy odpowiedni przepływ posortowany według ślimaka.`, +'sd2208cd1a767644b': `Rozłącz`, +'sd2223afb7d6b100d': `Typ`, +'sd2c58d7c6dddc515': `Metadane SAML`, +'sd3386a2ef42e80b9': `Pobierz`, +'sd34be0d0fcb39971': `Wyświetlana nazwa użytkownika.`, +'sd35ae4be63df1f9f': `Wybór backendów do testowania hasła.`, +'sd39c5e998efecf93': `Nazwa atrybutu SAML`, +'sd3a853f63f45dcb0': `Przechodzący`, +'sd4ac926e4ebb1cd7': `Nazwa pospolita`, +'sd503fabef9691134': `Podczas korzystania z trybu proxy lub uwierzytelniania do przodu (pojedyncza aplikacja) żądana ścieżka URL jest porównywana z wyrażeniami regularnymi. Podczas korzystania z uwierzytelniania do przodu (tryb domeny) pełny żądany adres URL, w tym schemat i host, jest dopasowywany do wyrażeń regularnych.`, +'sd5903cc8de68b3fc': `Nie znaleziono formularza`, +'sd5a4b41c6c883b03': `Odbiorcy`, +'sd5ba2d61ee4796fe': `Zaproszenie(a)`, +'sd600334ec2c39b74': `Utwórz użytkownika`, +'sd6422f7004036cdd': `Rejestr OCI`, +'sd6a025d66f2637d1': `Tradycyjny uwierzytelniacz`, +'sd6b8b4156f7df696': `Ikona pokazana na pasku bocznym/nagłówku i executorze przepływu.`, +'sd6c3ddb62de0e8f7': `Certyfikat używany do podpisywania Odpowiedzi wychodzących kierowanych do Usługodawcy.`, +'sd6cd7ce2310a73a4': `Sprawdza wartość z żądania zasad pod kątem kilku reguł, używanych głównie w celu zapewnienia siły hasła.`, +'sd71081c23d1cd38b': `Sprawdź dostęp`, +'sd75a9a71309fb387': `Sprawdź haveibeenpwned.com`, +'sd766cdc29b25ff95': `Uwierzytelnianie z Apple...`, +'sd7fa99e4d82b374a': `Nie można wysłać linku odzyskiwania, użytkownik nie ma zapisanego adresu e-mail.`, +'sd80b0b8aeae3abe3': `Zapis zwrotny hasła użytkownika`, +'sd8417b41ca27bc8f': `Nowy etap`, +'sd891d8463d0ebace': `Ponownie uruchamia przepływ od początku`, +'sd8c5339b82b71507': `Czekaj (min)`, +'sd8d9451f86502d1a': `Klasy urządzeń, których można użyć do uwierzytelniania.`, +'sd8f220c999726151': `Przekierowanie`, +'sd924045605feea63': `Wygasa`, +'sd947d57c9a9b7108': `Otwórz problem w serwisie GitHub...`, +'sd94db2b8c85d10a6': `SLO URL`, +'sd97d8d0906e6cc47': `Bez rozróżniania wielkości liter`, +'sd9b556a84ae25690': `Pomyślnie wysłano zapytanie testowe.`, +'sda4e78c19f5b6f35': `Wykonanie zasady zajmuje losowy czas. Kontroluje to minimalny czas, jaki zajmie.`, +'sda5e1499f93146ad': str` + ${0}dni temu`, +'sda796c87fa97ed4d': `Nazwa modelu`, +'sdae55084f6cb2662': `Opcjonalnie wprowadź nazwę grupy. Aplikacje z identycznymi grupami są wyświetlane razem.`, +'sdae649fae731e838': `Pole wyboru`, +'sdb53ccdd6174e6e3': `Pomyślnie dodano użytkownika(ów).`, +'sdb7b2173869822bc': `Musi nastąpić weryfikacja użytkownika.`, +'sdb861d9906f18ac2': `Wyrzucić błąd?`, +'sdbc08adee233f180': `Aktualizuj dostawcę OAuth2`, +'sdbccb39a658f0e45': `Nowa zasady`, +'sdc1ef94016f0d855': `Pomyślnie zaktualizowano integrację.`, +'sdc30bddeda2f0225': `Zweryfikuj hasło użytkownika w wybranych backendach.`, +'sdc323c6af4ae9f01': `Pomyślnie skopiowano konfigurację TOTP.`, +'sdc673e73b5c13aea': `Usuń`, +'sdc70195469e83e3f': `8 cyfr, niekompatybilne z aplikacjami takimi jak Google Authenticator`, +'sdc9e222be9612939': `Źródło połączone`, +'sdcc7b2c109ce9775': `Tokeny są używane przez authentik do etapów weryfikacji poczty e-mail, kluczy odzyskiwania i dostępu do interfejsu API.`, +'sdce4680288083fe3': `Zawsze zwraca najnowsze dane, ale wolniej niż zapytania z pamięci podręcznej`, +'sdd1ff479d04ac140': `Publiczny`, +'sdd4bd4224c4e943d': `authentik: Języki: Wyświetla listę języków obsługiwanych przez authentik.`, +'sdd6b8b56a811080e': `Odcisk cyfrowy certyfikatu (SHA256)`, +'sddb3b0176f437721': `Otwórz przeglądarkę API`, +'sddc8efe94cb8c210': `Etapy to pojedyncze kroki przepływu, przez które prowadzony jest użytkownik. Etap można wykonać tylko z przepływu.`, +'sddcfc6ab24e3a6ed': `Rejestracja`, +'sde0ad51b14f77cf6': `URIs/Origins przekierowania (RegEx)`, +'sde47e4d8b9b21b59': `Uwierzytelniacze WebAuthn`, +'sde56783222b527d6': `Każdy dostawca ma innego wystawcę, w zależności od slug (ślimaka) aplikacji`, +'sdefec5401bf67eba': `Użyj klucza bezpieczeństwa, aby potwierdzić swoją tożsamość.`, +'sdf1d8edef27236f0': `„Mobilne” uwierzytelniacz, taki jak YubiKey`, +'sdf22dcf939c27cc7': `Etap konfiguracji`, +'sdf34a5599d66f85c': `Obraz tła`, +'sdf4e1c6a2f072600': `Dozwolona liczba`, +'sdfd22a21660f6002': `Pomyślnie zaktualizowano dostawcę.`, +'sdfdb58cd232b363d': `Narzędzie do szacowania siły hasła stworzone przez Dropbox, zobacz:`, +'se085f35c8a9203a1': `Źródło LDAP`, +'se09ab93d69f7f45b': `Nie używany przez żaden inny obiekt.`, +'se09d055771f3a11d': `Ogólny OpenID Connect`, +'se0c660020d9cf5b7': `Przesunięcie, po którym zgoda wygasa.`, +'se10bbf4cf861c81b': `Podpisująca pary kluczy`, +'se12969ade44cd2b6': `Nowe źródło`, +'se16ac750b81fa93d': str`Przypisany do + ${0}obiektu(ów).`, +'se17fcb1f159ee382': `Aktualizuj źródło Plex`, +'se19cc57dd8675498': `Próg`, +'se1c85959463f53df': `Użyj tego najemcy dla każdej domeny, która nie ma dedykowanej najmecy.`, +'se1e040b55319a0e8': `Limit czasu`, +'se291dfd2a59d7842': `Wiązanie(a) zasady`, +'se2adaf0371ffcd65': `Ustawienia uwierzytelniania typu maszyna-maszyna`, +'se2b62f7e9017965e': `Traefik (Compose)`, +'se2c3cbf2ed1403f1': `Wiązania etapu`, +'se2cc93bd2647baec': `Reguły statyczne`, +'se2e9f5a32c93e5f7': `Próg ostatniej walidacji`, +'se2f258b996f7279c': `Wyjątek zadania systemowego`, +'se31d92bea7f3a186': `Służy do programistycznego dostępu do interfejsu API`, +'se36b55dfcf5dc80b': `Włącz StartTLS`, +'se3e6af2ce24d80e8': `Chiński (tradycyjny)`, +'se409d01b52c4e12f': `Ponów uwierzytelnianie`, +'se47baf2fd16b9d2b': `Szablon`, +'se4a9da0295597e73': `Nazwa użytkownika SMTP`, +'se50a08ab71bb96ed': `Po wprowadzeniu prawidłowej nazwy użytkownika/adresu e-mail i włączeniu tej opcji zostanie wyświetlona nazwa użytkownika i awatar użytkownika. W przeciwnym razie zostanie wyświetlony tekst wprowadzony przez użytkownika.`, +'se5498954255620b4': `Pomyślnie wysłano e-mail.`, +'se5973e7c8ba0fc71': `Tryb powiązania`, +'se5cb18408df3284e': `Aby uzyskać więcej informacji, zobacz:`, +'se5dc026819a32ff8': str`Użytkownik + ${0}`, +'se5fd752dbbc3cd28': `Użyj klucza bezpieczeństwa`, +'se63f9d833700af49': `Sesja(e)`, +'se68398e3c2c760b2': `Token`, +'se6d950402810c34f': `Mapowanie właściwości`, +'se7430794fa89005a': `Znany również jako Entity ID. Domyślny adres URL metadanych.`, +'se74ce42d41e392ba': `Dopasowanie odbywa się na podstawie sufiksu domeny, więc jeśli wpiszesz domain.tld, foo.domain.tld nadal będzie pasować.`, +'se78364ee913ae2bd': `Nowa integracja z placówką`, +'se8987bdfb35e46b2': `Klucz klienta`, +'se8a81c75b6e30a33': `Klucz pola do sprawdzenia, dostępne są klucze pola zdefiniowane w etapach monitu.`, +'se8dca0132c66ae03': `Uprawnienia`, +'se99efc0873031976': `Ikona pokazana w karcie przeglądarki.`, +'se9b1fec72ffd8f48': `Lokalny`, +'se9d0f12f95b14095': `Opcjonalne, rozdzielone przecinkami nazwy SubjectAlt.`, +'sea2f00b34b385a43': `Pomyślnie zaktualizowano urządzenie.`, +'sea3bfc143ced73db': `Atrybut NameID`, +'sea4f08110bb8f15d': `Usuń`, +'sea91c57b3d3969fe': `Status systemu`, +'seb0805249661d15b': `Zwraca komunikat o błędzie i podobne wezwanie do executora`, +'seb0c08d9f233bbfe': `Wprowadź kod otrzymany SMS-em`, +'seb5ba88f21937c98': `Sprawdź placówki.`, +'sebda1d54a3f9f967': `URL tokena`, +'sebf44d2471b608ad': `Przepływ używany przez uwierzytelnionego użytkownika do konfigurowania tego etapu. Jeśli jest pusty, użytkownik nie będzie mógł skonfigurować tego etapu.`, +'sec1808532fe107b9': `Zezwalaj użytkownikom na korzystanie z aplikacji na podstawie właściwości, wymuszaj kryteria haseł i selektywnie stosuj etapy.`, +'sec7443a45fd141e5': `Monit(y)`, +'sec97cdaf7af8648b': `Ustaw atrybuty niestandardowe za pomocą YAML lub JSON.`, +'secbfd13bdae95a59': `Przepływ ustawień użytkownika`, +'secdb4b4c4e66aa38': `Informacje o grupie`, +'sece294cd51a85745': `Określa, jak długo trwa sesja. Domyślna wartość 0 sekund oznacza, że sesje trwają do zamknięcia przeglądarki.`, +'sed3512fe4560c7f4': `Utwórz użytkowników jako nieaktywnych`, +'sed8d4c3fd5f60e1f': `Przeglądaj integracje`, +'sede0abbf2b612812': `Webhook (ogólny)`, +'see2bcbc11bb91960': `Pomyślnie zaktualizowano instancję.`, +'see3ff55262fd6500': `URL, do którego użytkownik jest przekierowywany, aby wyrazić zgodę na autoryzację.`, +'sef3d102324bf8561': `Utwórz instancję schematu`, +'sef49aec68fd1dc66': `Nazwa`, +'sef50d248448e0df1': str`Tak ( + ${0})`, +'seffdf887fed7f668': `Odcisk cyfrowy certyfikatu (SHA1)`, +'sf05c700a1250824e': `Potwierdzono`, +'sf05e384059a0a7c1': `Host nadrzędny, do którego przekazywane są żądania.`, +'sf1868dc19e3917bb': `Hiszpański`, +'sf1e9d421f35b51e5': `Aplikacja`, +'sf1ec4acb8d744ed9': `Alert`, +'sf22a28f83cc45fcc': `Etap używany do konfiguracji uwierzytelniania opartego na duo. Ten etap powinien być używany do przepływów konfiguracji.`, +'sf22f7f8a9309b4ed': `Sprawdź dostęp do aplikacji`, +'sf232d42142eacc23': `Po włączeniu zaproszenie zostanie usunięte po użyciu.`, +'sf29883ac9ec43085': `Hasło aplikacji`, +'sf325a4adba4d6278': `Pole członkostwa w grupie`, +'sf339673f0f76a8bd': `Klucz publiczny uzyskany z https://www.google.com/recaptcha/intro/v3.html.`, +'sf3981f36525b0dbd': `połączenie zostanie usunięte`, +'sf3f9a0feaf083207': `Wysłane do grup`, +'sf3fec8353106ac2f': str`Źródło OAuth + ${0}`, +'sf4122b220926be97': `Wersja`, +'sf417c13d7a0f7995': `Skopiuj URL pobierania`, +'sf45a0d2f00bcc6ff': `bez zdefiniowanych kart`, +'sf466142da6a65052': `Podszywaj się`, +'sf4de1644dcdb53d5': `Atrybut użytkownika/grupy używany w części hasła nagłówka HTTP-Basic.`, +'sf53a78d889b6c775': `Zarządzane przez authentik (odkryte)`, +'sf54c562d8a10ce77': `Znany również jako EntityID.`, +'sf55c7c06dbc2c8c6': `Pomyślnie utworzony najemce.`, +'sf55d28d4dff0e41b': `Przykładowa konfiguracja może wyglądać tak:`, +'sf56998949bdf6b33': `Dezaktywuj`, +'sf63c89c0604c288f': `Ścieżka lokalna`, +'sf679b7a62808287e': `Wygasa`, +'sf693300708a40d2c': `Utwórz nową zasadę.`, +'sf6e1665c7022a1f8': `Hasło`, +'sf6eb148db23d19de': str`Nie udało się usunąć + ${0}: + ${1}`, +'sf71dba2c30283a54': `Wygasa?`, +'sf813a72d8fadd765': `W takim przypadku ustawisz adres URL uwierzytelniania na auth.example.com, a domenę plików cookie na example.com.`, +'sf8c76d5fb408de7b': `Wkrótce nastąpi przekierowanie do następującego adresu URL.`, +'sf8f49cdbf0036343': `Błąd konfiguracji`, +'sf90be97cb08f3d5a': `Symbol zastępczy`, +'sf9aee319a006c9b4': `Dodaj`, +'sf9b1c0661a02d9f9': `Konfiguracja`, +'sf9bddaf910f4eea5': `Wygeneruj parę certyfikat-klucz`, +'sf9e61f4f8e90f0f1': `Zmień status`, +'sf9f2c719a04066ec': `Aplikacja`, +'sfa88f413e287bb0f': `Typ etapu`, +'sfab527528ea64618': `Dopasowuje adres IP klienta zdarzenia (ścisłe dopasowanie, do dopasowywania sieci należy użyć zasady wyrażeń.`, +'sfac6f995c7670559': `Żadne etapy nie są związane.`, +'sfad8af8ce38104a3': `Maksymalny wiek (w dniach)`, +'sfad9279cc42c6b61': `Wymagany poziom uwierzytelniania dla tego przepływu.`, +'sfae9f4ea5749a36b': `Dodatkowa DN grupy, poprzedzona podstawową DN.`, +'sfbadb77fbc61efb8': `Użytkownicy stworzeni dziennie w ciągu ostatniego miesiąca`, +'sfbaeb0de54fbfdbb': `Przepływ używany podczas autoryzacji tego dostawcy.`, +'sfbc59ff17a73503d': `Ścieżka użytkownika`, +'sfc400b2d71e49d28': `Pomyślnie utworzono zasadę.`, +'sfcebd18506f1e535': `Przepływ`, +'sfcfcf85a57eea78a': `Urządzenie TOTP`, +'sfd13ca8ebd857c2e': `Utwórz nową aplikację`, +'sfd1af96798dd8a5f': `Klucz publiczny`, +'sfd44ce578f643145': `Nie udało się wczytać obiektów.`, +'sfe199b2564b66054': str`Błąd podczas walidacji asercji na serwerze: + ${0}`, +'sfe1c86b42ba13376': `Wprowadź swój kod TOTP`, +'sfe211545fd02f73e': `Weryfikacja`, +'sfe388f0313f52da2': `Ustawienia protokołu`, +'sfe629863ba1338c2': `Błąd połączenia, ponowne łączenie...`, +'sfe6977a3aea3ee6e': `Przepływ używany podczas uwierzytelniania istniejących użytkowników.`, +'sfe938c1585e0bf68': `Te powiązania kontrolują, czy ten etap zostanie zastosowany do przepływu.`, +'sfe99a8caa70232ab': `Typ uwierzytelnienia`, +'sfeb779d4ccbc5a0e': `Przepływ odzyskiwania`, +'sfeb82261bcf99edd': `Zdrowe placówki`, +'sfee06600c15082a9': `Usuń użytkownika z bieżącej sesji.`, +'sfee91e08b8b47477': `Dozwolone serwery`, +'sfefce784ec55868f': `Wybierz obiekt.`, +'sff3b708e23bb96b2': `Oceń zasady, zanim etap jest obecny dla użytkownika.`, +'sff50532a2d85e32e': `Zmień hasło`, +'sff5bb7742c2896c8': `Cel`, +'sff69c1a637f899a6': `Powiąż przepływ`, +'sff945d3f59b93c5e': `Urządzenia MFA`, +'sffa171e11d4ae513': `Transporty`, +'sffa721bb6aa3128d': `Szukaj...`, +'sffd2e553143d1b0e': `Przytrzymaj Control/Command, aby wybrać wiele elementów.`, +'sffeef5b119d8625c': `Pomyślnie utworzono mapowanie.`, +'s0410779cb47de312': `Path template for users created. Use placeholders like \`%(slug)s\` to insert the source slug.`, +'sd73b202ec04eefd9': `Unknown intent`, +'s02240309358f557c': `Unknown severity`, +'se2d65e13768468e0': `Internal`, +'s84fcddede27b8e2a': `External`, +'s1a635369edaf4dc3': `Service account`, +'sff930bf2834e2201': `Service account (internal)`, +'s4ba4473f3d4ec896': `New version available`, +'s364c4f177a2f8322': `Open API drawer`, +'s9ba989e69344ff29': `Open Notification drawer`, +'s9d8b8aa2b404c2c8': `Settings`, +'s7cfe12cd14df9950': `Sign out`, +'sb4d7bae2440d9781': `User Statistics`, +'s1a65ee08832fbfe2': `Flows and Stages`, +'s6b2beba7ab637e9e': `Roles`, +'sb1a4e9b288e2f005': `Federation and Social login`, +'s7be2df39f727faa2': `Enterprise`, +'s2e109263b73c12d5': `Licenses`, +'sfffb0d0958bfbc42': `Manage users`, +'s66313b45b69cfc88': `Check the release notes`, +'sbdc4a833de9ca502': `Logins and authorizations over the last week (per 8 hours)`, +'s4a34a6be4c68ec87': `Users created`, +'s275c956687e2e656': `Failed logins`, +'s1a0e95458b44d7f8': `Any policy must match to grant access`, +'s7fc1ace65486dc25': `All policies must match to grant access`, +'s1cffe58249b04669': `Internal application name used in URLs.`, +'s350a616ff5e145ec': `Select a provider that this application should use.`, +'sc92ea8fbf9ba06a7': `Backchannel Providers`, +'s4c6534a118f52fdd': `Select backchannel providers which augment the functionality of the main provider.`, +'s19409e8712ddd369': `Add provider`, +'s070fdfb03034ca9b': `One hint, 'New Application Wizard', is currently hidden`, +'s61bd841e66966325': `External applications that use authentik as an identity provider via protocols like OAuth2 and SAML. All applications are shown here, even ones you cannot access.`, +'s1f7698c061c208c9': `Open`, +'sed02f831e653deb3': `Logins over the last week (per 8 hours)`, +'s398f6ba74ba8943a': `Select providers to add to application`, +'sfae395b94a5a0040': `Blueprint`, +'s7e1342d37124b65b': `Configure the blueprint context, used for templating.`, +'s6ec8c9d11310300a': `Orphaned`, +'sb8f855b49234b81b': `Apply`, +'s0e427111d750cc02': `Successfully updated license.`, +'s06ae64e621f302eb': `Successfully created license.`, +'s2905c425adae99bd': `Install ID`, +'sb18ec434a8a3aafb': `License key`, +'s9ce7cc01fb9b5b53': `Manage enterprise licenses`, +'sf9ebf11ac2645820': `No licenses found.`, +'sd49099e9522635f4': `License(s)`, +'s3be1d90ffa46b7f1': `Enterprise is in preview.`, +'sa1db89262360550b': `Send us feedback!`, +'s4015746f55a8d89f': `Get a license`, +'sb2cbd06f8e25b47e': `Go to Customer Portal`, +'sf58825457d61c429': `Forecast internal users`, +'sde9a3f41977ec1f8': str`Estimated user count one year from now based on ${0} current internal users and ${1} forecasted internal users.`, +'s4557b6b9da258643': `Forecast external users`, +'sf52479d6daa0a4a8': str`Estimated user count one year from now based on ${0} current external users and ${1} forecasted external users.`, +'sd22bd01bdf28c548': `Cumulative license expiry`, +'s0dd031b58ed4017c': str`Internal: ${0}`, +'s57b07e524f8f5c2a': str`External: ${0}`, +'sdeb6cee42435dd07': `Update License`, +'s6196153c4b0c1ea0': `Install`, +'s0285b4bd69130fa3': `Install License`, +'s3b3c333481944862': `Show details`, +'sb41b2cfbbc52565b': `Created`, +'s7513372fe60f6387': `Event volume`, +'sa55ee64c5c51df0f': `Select the group of users which the alerts are sent to. If no group is selected the rule is disabled.`, +'s5795b310ab271d20': `These bindings control upon which events this rule triggers. +Bindings to groups/users are checked against the user of the event.`, +'s6f367f5604d5056d': `Create and bind Stage`, +'scc2e420c54dc8089': `Bind existing stage`, +'sb36e4c05244278c1': `No requirement`, +'s047a5f0211fedc72': `Require Outpost (flow can only be executed from an outpost).`, +'scfbc2f1396ee8550': `Denied action`, +'sff38031cf061e3ae': `Will follow the ?next parameter if set, otherwise show a message`, +'s936bf4342b182ad4': `Will either follow the ?next parameter or redirect to the default interface`, +'s22b0e8c5277dd5a9': `Will notify the user the flow isn't applicable`, +'s2eeca5cfc99ef19b': `Decides the response when a policy denies access to this flow for a user.`, +'s3ebf4c166058afce': `Clear background`, +'sc4fdeccf14be5378': `Execute`, +'sf12d588a76ba7e51': `Are you sure you want to clear the flow cache? + This will cause all flows to be re-evaluated on their next usage.`, +'s01794c0ee3629c1b': `Flow Info`, +'s77099d752f1ab773': `Related actions`, +'s0a61796c1956d32c': `Evaluate when flow is planned`, +'sf533f13321fee530': `Evaluate policies during the Flow planning process.`, +'s6336fa345e96dde9': `Evaluate when stage is run`, +'sbc88fb27a4c3b894': `Configure how the flow executor should handle an invalid response to a challenge given by this bound stage.`, +'sde2bb5418562c5b2': `Unknown designation`, +'sb3182a87ded1bc91': `Unknown layout`, +'s96d2bb4be3f5e8aa': `Select roles to grant this groups' users' permissions from the selected roles.`, +'s005053d82b712e0a': `Notes`, +'s634448e4942cf452': `Edit the notes attribute of this group to add notes here.`, +'sd9f67fbf3f86efcf': `Add group`, +'s424f57afae0caac4': `Add users`, +'s4c41f3f4c23e8eaa': `Warning: This group is configured with superuser access. Added users will have superuser access.`, +'s824e0943a7104668': str`This user will be added to the group "${0}".`, +'s8afc8c5aafb392d3': `Radius`, +'s9ee92717d7f63247': `Detailed health (one instance per column, data is cached so may be out of date)`, +'sa85cfb884c17d85d': `Verify Kubernetes API SSL Certificate`, +'s911a27022aba349f': `Create and bind Policy`, +'sddb040c47daae56b': `Bind existing policy`, +'s6b1ed7507f26cb4a': `Failure result`, +'s2e422519ed38f7d8': `Pass`, +'s81a45c4fd11e8e1a': `Don't pass`, +'s95b73e0f4e47eb9a': `Result used when policy execution fails.`, +'s15b46b78edebb20a': `Are you sure you want to clear the policy cache? This will cause all policies to be re-evaluated on their next usage.`, +'sb6c3bf5489d7556e': `Example context data`, +'s4a697f0b36c4fe83': `Active Directory User`, +'s9277b90db38e1983': `Active Directory Group`, +'sa6c0ba4910c7ad7f': `Assigned to application (backchannel) `, +'s9103a949a3963aa9': `Successfully updated role.`, +'sdf87c5661b31359e': `Successfully created role.`, +'s3484b1e6d0b5335f': `Manage roles which grant permissions to objects within authentik.`, +'s259de999919316db': `Role(s)`, +'sc615309d10a9228c': `RBAC is in preview.`, +'s2ffad156e8332f04': `Update Role`, +'sc5f923729564fbf3': `Create Role`, +'sf485014051ad0cf7': `Successfully assigned permission.`, +'sdeb90bfd8a80b86b': `Permissions to add`, +'s36247910d67421e1': `Select permissions`, +'sc92c1a54034e21cc': `Assign`, +'scd84d10ee9137070': `Assign permission to role`, +'s67e136af8fc1107b': `Assign permission`, +'sb923723d27df40ba': `Permission(s)`, +'sc5fb00b25c7f5a02': `Permission`, +'s14bfa8fd1bec8889': `Role doesn't have view permission so description cannot be retrieved.`, +'s7e796fe83982863f': str`Role ${0}`, +'s526e2c66bd51ff5f': `Role Info`, +'s9cc631505c17b028': `Assigned global permissions`, +'s8f85a0e678846080': `Assigned object permissions`, +'s254a9a23dc1635df': `Import devices`, +'s92921878e886e36d': `Duration`, +'se7e1ababbc4868b8': str`${0} seconds`, +'s14bf17e2a1a2c381': `Restart task`, +'s134177568525dbc8': `Device code flow`, +'sfd586951c75eb291': `App password.`, +'se9c07cf256774d81': `Editing is disabled for managed tokens`, +'scc3487e74c5a3e89': `Copy token`, +'sec5cdfa358f9dbf7': `Warning: Adding the user to the selected group(s) will give them superuser permissions.`, +'s3d2a8b86a4f5a810': str`Successfully created user and added to group ${0}`, +'se6a13beff646557b': str`Successfully updated ${0} ${1}`, +'sd8051c26e155f043': `Assign permission to user`, +'s1455753daa00f1bc': `User doesn't have view permission so description cannot be retrieved.`, +'s9f9492d30a96b9c6': `User type`, +'scef2eb6a2bfe3110': `Internal users might be users such as company employees, which will get access to the full Enterprise feature set.`, +'sf66389b04fcc219c': `External users might be external consultants or B2C customers. These users don't get access to enterprise features.`, +'s77e8668a27dbc402': `Service accounts should be used for machine-to-machine authentication or other automations.`, +'saf6097bfa25205b8': `A copy of this recovery link has been placed in your clipboard`, +'s5b8ee296ed258568': `The current tenant must have a recovery flow configured to use a recovery link`, +'s510c7add9e24c306': `Hide deactivated user`, +'s0924f51b028233a3': `<No name set>`, +'s895514dda9cb9c94': `Create recovery link`, +'s028d385389b5aac0': `Lock the user out of this system`, +'sd2122c514f0778b5': `Allow the user to log in and use this system`, +'s43fe853bf219a9b8': `Temporarily assume the identity of this user`, +'se28b5f3fcadaeeb1': `Enter a new password for this user`, +'s6f5bb31e2733ecd5': `Create a link for this user to reset their password`, +'se5c795faf2c07514': `Create Recovery Link`, +'sc44bae5cde0083fa': `Actions over the last week (per 8 hours)`, +'sb57dbcda1929c642': `Edit the notes attribute of this user to add notes here.`, +'sb6770fa90be6d8b3': `OAuth Refresh Tokens`, +'sa3a3e09b88ed9791': `Assigned permissions`, +'s67ac11d47f1ce794': `WebAuthn requires this page to be accessed via HTTPS.`, +'se9e9e1d6799b86a5': `WebAuthn not supported by browser.`, +'s71c5d51d5a357dbd': `Don't show this message again.`, +'sb3d4f79d9d8b71e5': `Submit`, +'s2da4aa7a9abeb653': `Pseudolocale (for testing)`, +'s2ed8eb02525a920a': str`${0} hour(s) ago`, +'s98327528f00365a7': `Failed to fetch data.`, +'s08df8d0a773a3ea0': `Remove item`, +'s7df5b92a3f93544f': `Warning: The current user count has exceeded the configured licenses.`, +'s0141f42936495787': `Click here for more info.`, +'se33b158a1ec02a09': str`Successfully deleted ${0} ${1}`, +'s5819a49638f6d7cb': str`Are you sure you want to delete ${0} ${1}?`, +'s90760e5e02e95dfe': `Refresh Tokens(s)`, +'sb37880a2a7288ef0': `Update Permissions`, +'saabeb4cab074b0b9': `User Object Permissions`, +'s8489d5559dda260c': `Role Object Permissions`, +'s5da52af9b083c29a': `Model`, +'s78ab26da7f067de8': `Select permissions to grant`, +'sca7fed2bef53cb99': `Role`, +'s5ee6f1b84e9ebc69': `Assign to new role`, +'s4afb26a8fae257e9': `Directly assigned`, +'sf79f8681e5ffaee2': `Assign to new user`, +'sde1907073fd96017': `(Current session)`, +'s4d7fe7be1c49896c': `You may close this page now.`, +'s28cbd874ba450b4e': `Less details`, +'s8fa26f65aed77c96': `More details`, +'s3fb39fc45e840f78': `Refer to documentation`, +'sf34026321b35315c': `Either no applications are defined, or you don’t have access to any.`, +'s3e99ea082ca5ade9': `Failed to fetch`, +'s2152f3482784705f': `Recent events`, +'scefe482c547fb3f3': str`Based on ${0}`, +'s1f1c857c0c4250e4': str`${0} day(s) ago`, +'s477de089b505a6ea': `SCIM Provider`, +'s8a75e83497a183a2': `Healthy`, +'sbf9c5c5a8e5efad4': `Failed`, +'se4cd073c125382af': `Unsynced / N/A`, +'se2b29e6cfe59414c': `UI Settings`, +'s4498e890d47a8066': `OAuth2/OIDC (Open Authorization/OpenID Connect)`, +'s4f2e195d09e2868c': `LDAP (Lightweight Directory Access Protocol)`, +'sffd5481034a1bd41': `Provide an LDAP interface for applications and users to authenticate against.`, +'s836148f721d8913b': `Transparent Reverse Proxy`, +'s945a6b94361ee45b': `For transparent reverse proxies with required authentication`, +'s7f5bb0c9923315ed': `Forward Auth (Single Application)`, +'sdc9a6ad1af30572c': `For nginx's auth_request or traefik's forwardAuth`, +'sf8008d2d6b064b95': `Forward Auth (Domain Level)`, +'sfc31264ef7ff86ef': `For nginx's auth_request or traefik's forwardAuth per root domain`, +'sfa8a1ffa9fee07d3': `SAML (Security Assertion Markup Language)`, +'s40830ec037f34626': `Configure SAML provider manually`, +'s848a23972e388662': `RADIUS (Remote Authentication Dial-In User Service)`, +'sea9fc40dfd1d18b1': `Configure RADIUS provider manually`, +'s3e902999ddf7b50e': `SCIM (System for Cross-domain Identity Management)`, +'sa1b0052ae095b9b3': `Configure SCIM provider manually`, +'s15831fa50a116545': `Saving Application...`, +'s823abdb61543a826': `Authentik was unable to save this application:`, +'s848288f8c2265aad': `Your application has been saved`, +'scda8dc24b561e205': `There was an error in the application.`, +'sdaca9c2c0361ed3a': `Review the application.`, +'sb50000a8fada5672': `There was an error in the provider.`, +'s21f95eaf151d4ce3': `Review the provider.`, +'s9fd39a5cb20b4e61': `There was an error`, +'s7a6b3453209e1066': `There was an error creating the application, but no error message was sent. Please review the server logs.`, +'s8915e64b8b999bfe': `Cached binding`, +'s6a66759749bf31ed': `Direct binding`, +'se0adaf83627104fb': `Always execute the configured bind flow to authenticate the user`, +'s9065fcccd837a679': `Cached querying`, +'s30d0d0e6c626a234': `The outpost holds all users and groups in-memory and will refresh every 5 Minutes`, +'sffc14b8200a9f938': `Direct querying`, +'s1889ba2eaeec2f1e': `When enabled, code-based multi-factor authentication can be used by appending a semicolon and the TOTP code to the password. This should only be enabled if all users that will bind to this provider have a TOTP device configured, as otherwise a password may incorrectly be rejected if it contains a semicolon.`, +'s4647b2c92638d6fd': `The certificate for the above configured Base DN. As a fallback, the provider uses a self-signed certificate.`, +'s2acef4f6ba39bf11': `DNS name for which the above configured certificate should be used. The certificate cannot be detected based on the base DN, as the SSL/TLS negotiation happens before such data is exchanged.`, +'s1a711c19cda48375': `Configure LDAP Provider`, +'s67d858051b34c38b': `Method's display Name.`, +'s319040353f479853': `Flow used for users to authenticate.`, +'s254d527e3a53dbb7': `Code-based MFA Support`, +'scd247ffad6e04ac0': `TLS Server name`, +'s9368e965b5c292ab': `Configure OAuth2/OpenId Provider`, +'sa72a3bd1e7e89926': `Flow used when a user access this provider and is not authenticated.`, +'sbea3db12fd799210': `Access Token validity`, +'s821f6014c1a435b9': `Refresh Token validity`, +'s00c2db16ea9bc263': `Configure how long refresh tokens are valid for.`, +'sf5cbccdc6254c8dc': `Configure Proxy Provider`, +'sf6d46bb442b77e91': `AdditionalScopes`, +'sb488dee0be434f7e': `Authentication settings`, +'s23cee624c735f266': `Intercept header authentication`, +'sc007cca5af67eae0': `When enabled, authentik will intercept the Authorization header to authenticate the request.`, +'s36e630ba56617556': `Send HTTP-Basic Authentication`, +'s9d5796a4b9b7560e': `Send a custom HTTP-Basic Authentication header based on values from authentik.`, +'h10ef80d434185070': html`Use this provider with nginx's auth_request or traefik's + forwardAuth. Each application/domain needs its own provider. + Additionally, on each domain, /outpost.goauthentik.io must be + routed to the outpost (when using a managed outpost, this is done for you).`, +'s2c8c6f89089b31d4': `Configure Radius Provider`, +'sb95baab425322600': `Shared secret`, +'s9e9316a6b0c16231': `Client Networks`, +'s7f2dcf01f7a8c0b7': `List of CIDRs (comma-seperated) that clients can connect from. A more specific + CIDR will match before a looser one. Clients connecting from a non-specified CIDR + will be dropped.`, +'sfe906cde5dddc041': `Configure SAML Provider`, +'sb3defbacd01ad972': `Property mappings used for user mapping.`, +'s7ccce0ec8d228db6': `Configure SCIM Provider`, +'sb21f33b039c86322': `SCIM base url, usually ends in /v2.`, +'s33ed903c210a6209': `Token to authenticate with. Currently only bearer authentication is supported.`, +'sfc8bb104e2c05af8': `User filtering`, +'sc0d0890fbd46ef62': `Exclude service accounts`, +'s23ab136ad85f0ad2': `Only sync users within the selected group.`, +'sfdedc3b0b2b7ce3d': `Attribute mapping`, +'sd7728d2b6e1d25e9': `Property mappings used for group creation.`, +'s4bd386db7302bb22': `Create With Wizard`, +'s3ba9b8aeb686d9f7': `Match events created by selected model. When left empty, all models are matched.`, +'s9307f3dbb07a73b5': `Only fail the policy, don't invalidate user's password`, +'s28d84abfbaf555ea': `Score threshold`, +'s7b3148ffba9f4527': `If the password's score is less than or equal this value, the policy will fail.`, +'sd94e99af8b41ff54': `0: Too guessable: risky password. (guesses &lt; 10^3)`, +'sc926385d1a624c3a': `1: Very guessable: protection from throttled online attacks. (guesses &lt; 10^6)`, +'s8aae61c41319602c': `2: Somewhat guessable: protection from unthrottled online attacks. (guesses &lt; 10^8)`, +'sc1f4b57e722a89d6': `3: Safely unguessable: moderate protection from offline slow-hash scenario. (guesses &lt; 10^10)`, +'sd47f3d3c9741343d': `4: Very unguessable: strong protection from offline slow-hash scenario. (guesses &gt;= 10^10)`, +'scf4afecb0f1e69b2': `Invalid login attempts will decrease the score for the client's IP, and the +username they are attempting to login as, by one.`, +'s8323a9af28e10502': `The policy passes when the reputation score is below the threshold, and +doesn't pass when either or both of the selected options are equal or above the threshold.`, +'s95f09b229a0a0bb0': `Confidential clients are capable of maintaining the confidentiality of their credentials such as client secrets`, +'s51c6b8403c2dc5d9': `Public clients are incapable of maintaining the confidentiality and should use methods like PKCE. `, +'sccc47f82044453f9': `Based on the User's hashed ID`, +'sbd5be4fb7442a34c': `Based on the User's ID`, +'sc9cf9ecaf9e5d67e': `Based on the User's UUID`, +'s4291727352c4f295': `Based on the User's username`, +'sd62cfc27ad4aa33b': `Based on the User's Email`, +'s55eb75bedf96be0f': `This is recommended over the UPN mode.`, +'sf80e9547166117e6': `Based on the User's UPN`, +'sde949d0ef44572eb': `Requires the user to have a 'upn' attribute set, and falls back to hashed user ID. Use this mode only if you have different UPN and Mail domains.`, +'sff0ac1ace2d90709': `Use this provider with nginx's auth_request or traefik's forwardAuth. Each application/domain needs its own provider. Additionally, on each domain, /outpost.goauthentik.io must be routed to the outpost (when using a managed outpost, this is done for you).`, +'sd539548ca4c71619': `Additional scopes`, +'s09b671b120443043': `Update Radius Provider`, +'scb58b8a60cad8762': `Default relay state`, +'s6827a456c9dfc6ee': `When using IDP-initiated logins, the relay state will be set to this value.`, +'scd2984ee5552643a': `SSO URL (Post)`, +'s2da51a6287118ba8': `SSO URL (IdP-initiated Login)`, +'s019555b5a442aa00': `Property mappings used to user mapping.`, +'sadadfe9dfa06d7dd': `No sync status.`, +'s2b1c81130a65a55b': `Sync currently running.`, +'s2f0f6691de0b0388': `Warning: Provider is not assigned to an application as backchannel provider.`, +'sc6c575c5ff64cdb1': `Update SCIM Provider`, +'s4476e9c50cfd13f4': `Global status`, +'sd21a971eea208533': `Vendor`, +'s1024166475850a65': `Use Server URI for SNI verification`, +'se65beb94fffc3c4b': `Required for servers using TLS 1.3+`, +'s000ee3e634868b3c': `TLS Client authentication certificate`, +'s5506b35a1bceb141': `Client certificate keypair to authenticate against the LDAP Server's Certificate.`, +'sf36170f71cea38c2': `Connectivity`, +'sb35c08e3a541188f': `Also known as Client ID.`, +'sd46fd9b647cfea10': `Also known as Client Secret.`, +'sa61966cd83b4924c': `Additional scopes to be passed to the OAuth Provider, separated by space. To replace existing scopes, prefix with *.`, +'s2feae323f46479f8': `These bindings control which users can access this source. + You can only use policies here as access is checked before the user is authenticated.`, +'s995535e7af30d754': `Use the user's email address, but deny enrollment when the email address already exists`, +'s2a1debf34e5aeba4': `Use the user's username, but deny enrollment when the username already exists`, +'s6f96a78d81ef277c': `Post-auto binding`, +'sc2c70fd56f5d0b48': `Post binding but the request is automatically sent and the user doesn't have to confirm.`, +'s5adafce329aaa853': `Authenticator type name`, +'s23e6a57201fba25e': `Display name of this authenticator, used by users when they enroll an authenticator.`, +'s7f13f4a2d0370cf6': `When using a Duo MFA, Access or Beyond plan, an Admin API application can be created. + This will allow authentik to import devices automatically.`, +'s003847d8bc01c676': `The user ID in Duo, can be found in the URL after clicking on a user.`, +'s9ca3310e1999fd5b': `If enabled, only a hash of the phone number will be saved. This can be done for data-protection reasons. Devices created from a stage with this enabled cannot be used with the authenticator validation stage.`, +'s7caa8f7edb920909': `The number of tokens generated whenever this stage is used. Every token generated per stage execution will be attached to a single static device.`, +'s4aacc4e0277c1042': `Token length`, +'s6931695c4f563bc4': `The length of the individual generated tokens. Can be increased to improve security.`, +'s24bce955914b1f0a': `Stage used to configure a WebAuthn authenticator (i.e. Yubikey, FaceID/Windows Hello).`, +'s6a3cf855140b9511': `Required: User verification must occur.`, +'sc498a3b05cfe2b08': `Preferred: User verification is preferred if available, but not required.`, +'s9d2239d2b0402795': `Discouraged: User verification should not occur.`, +'s428b7859907f6db2': `Required: The authenticator MUST create a dedicated credential. If it cannot, the RP is prepared for an error to occur`, +'s33e3766d4a02b042': `Preferred: The authenticator can create and store a dedicated credential, but if it doesn't that's alright too`, +'sfb852dd507c25c24': `Discouraged: The authenticator should not create a dedicated credential`, +'sfffba7b23d8fb40c': `This stage checks the user's current session against the Google reCaptcha (or compatible) service.`, +'s170b705c55ecb2ae': `URL to fetch JavaScript from, defaults to recaptcha. Can be replaced with any compatible alternative.`, +'sc8a79fddea3ab4a9': `URL used to validate captcha response, defaults to recaptcha. Can be replaced with any compatible alternative.`, +'s7f68101a50f526ee': `Statically deny the flow. To use this stage effectively, disable *Evaluate when flow is planned* on the respective binding.`, +'s1cc306d8e28c4464': `Deny message`, +'s6985c401e1100122': `Message shown when this stage is run.`, +'s62e7f6ed7d9cb3ca': `Pretend user exists`, +'s52bdc80690a9a8dc': `When enabled, the stage will always accept the given user identifier and continue.`, +'sa84a7fd11ba85e88': `When selected, the invite will only be usable with the flow. By default the invite is accepted on all flows with invitation stages.`, +'sd18b18f91b804c3f': `Custom attributes`, +'s96dcf7ec8342c335': `Invitation not limited to any flow, and can be used with any enrollment flow.`, +'s63e54b86e2a2cc43': `Text Area: Multiline text input`, +'s4e5646b23e41231f': `Text Area (read-only): Multiline text input, but cannot be edited.`, +'s1c5574968b29ab1c': `Password: Masked input, multiple inputs of this type on the same prompt need to be identical.`, +'s34edeb18f887161d': `Radio Button Group (fixed choice)`, +'s57730b6870e8916c': `Dropdown (fixed choice)`, +'saf84e7732a9e1336': `Preview errors`, +'sb71ace8e9b35c749': `Data preview`, +'s4d53f4b7ff33bedd': `Unique name of this field, used for selecting fields in prompt stages.`, +'s4a953e6234cb4808': `When checked, the placeholder will be evaluated in the same way a property mapping is. + If the evaluation fails, the placeholder itself is returned.`, +'sf76ead4c4708dd06': `Optionally provide a short hint that describes the expected input value. + When creating a fixed choice field, enable interpreting as expression and return a + list to return multiple choices.`, +'saa7ba2057bd524a1': `Interpret initial value as expression`, +'sd60415c7666859f0': `When checked, the initial value will be evaluated in the same way a property mapping is. + If the evaluation fails, the initial value itself is returned.`, +'sa9c7044d9fd1f3e6': `Initial value`, +'seab35681cbf36755': `Optionally pre-fill the input with an initial value. + When creating a fixed choice field, enable interpreting as expression and + return a list to return multiple default choices.`, +'sbf4ef82e04772a4e': `Delete the currently pending user. CAUTION, this stage does not ask for confirmation. Use a consent stage to ensure the user is aware of their actions.`, +'sf7949fbbab2eb566': `Different browsers handle session cookies differently, and might not remove them even when the browser is closed.`, +'s53bbc3ae4b5fa1d0': `See here.`, +'s2512334108f06a5a': `Stay signed in offset`, +'s1608b2f94fa0dbd4': `If set to a duration above 0, the user will have the option to choose to "stay signed in", which will extend their session by the time specified here.`, +'s542a71bb8f41e057': `Terminate other sessions`, +'sa920231366378c90': `When enabled, all previous sessions of the user will be terminated.`, +'s927398c400970760': `Write any data from the flow's context's 'prompt_data' to the currently pending user. If no user + is pending, a new user is created, and data is written to them.`, +'s81d673755a86a4f0': `When no user is present in the flow context, the stage will fail.`, +'s5414356cc10e80fe': `When no user is present in the the flow context, a new user is created.`, +'se80dd66f23b4fc39': `Create a new user even if a user is in the flow context.`, +'s32babfed740fd3c1': `User type used for newly created users.`, +'s09f0c100d0ad2fec': `Open Wizard`, +'sf2ef885f7d0a101d': `Demo Wizard`, +'s77505ee5d2e45e53': `Run the demo wizard`, +'sdc5690be4a342985': `The token has been copied to your clipboard`, +'s7f3edfee24690c9f': `The token was displayed because authentik does not have permission to write to the clipboard`, +'sc2ec367e3108fe65': `Duo activation QR code`, +'sa84adff85b5e505c': `Open your two-factor authenticator app to view your authentication code.`, +'s844fea0bfb10a72a': `Authentication code`, +'s3cd84e82e83e35ad': `Please enter your code`, +'sac17f177f884e238': `Stay signed in?`, +'s859b2e00391da380': `Select Yes to reduce the number of times you're asked to sign in.`, + }; + \ No newline at end of file diff --git a/web/packages/localization/src/locales/pseudo-LOCALE.js b/web/packages/localization/src/locales/pseudo-LOCALE.js new file mode 100644 index 000000000..df5650bf4 --- /dev/null +++ b/web/packages/localization/src/locales/pseudo-LOCALE.js @@ -0,0 +1,1666 @@ + + // Do not modify this file by hand! + // Re-generate this file by running lit-localize + + import {html} from 'lit'; + import {str} from '@lit/localize'; + + /* eslint-disable no-irregular-whitespace */ + /* eslint-disable @typescript-eslint/no-explicit-any */ + + export const templates = { + 'h10ef80d434185070': html`Ũśē ţĥĩś ƥŕōvĩďēŕ ŵĩţĥ ńĝĩńx'ś àũţĥ_ŕēǫũēśţ ōŕ ţŕàēƒĩķ'ś + ƒōŕŵàŕďÀũţĥ. Ēàćĥ àƥƥĺĩćàţĩōń/ďōmàĩń ńēēďś ĩţś ōŵń ƥŕōvĩďēŕ. + Àďďĩţĩōńàĺĺŷ, ōń ēàćĥ ďōmàĩń, /ōũţƥōśţ.ĝōàũţĥēńţĩķ.ĩō mũśţ ƀē + ŕōũţēď ţō ţĥē ōũţƥōśţ (ŵĥēń ũśĩńĝ à màńàĝēď ōũţƥōśţ, ţĥĩś ĩś ďōńē ƒōŕ ŷōũ).`, +'s000ee3e634868b3c': `ŢĹŚ Ćĺĩēńţ àũţĥēńţĩćàţĩōń ćēŕţĩƒĩćàţē`, +'s003847d8bc01c676': `Ţĥē ũśēŕ ĨĎ ĩń Ďũō, ćàń ƀē ƒōũńď ĩń ţĥē ŨŔĹ àƒţēŕ ćĺĩćķĩńĝ ōń à ũśēŕ.`, +'s004e9a2c90f23900': `Ƥēŕśĩśţēńţ`, +'s005053d82b712e0a': `Ńōţēś`, +'s00c2db16ea9bc263': `Ćōńƒĩĝũŕē ĥōŵ ĺōńĝ ŕēƒŕēśĥ ţōķēńś àŕē vàĺĩď ƒōŕ.`, +'s00c8354318addfa0': `Ƥōĺĩćŷ / Ƥōĺĩćĩēś`, +'s01088b6625d2443b': `Ćàĺĺƀàćķ ŨŔĹ`, +'s0141f42936495787': `Ćĺĩćķ ĥēŕē ƒōŕ mōŕē ĩńƒō.`, +'s01794c0ee3629c1b': `Ƒĺōŵ Ĩńƒō`, +'s019555b5a442aa00': `Ƥŕōƥēŕţŷ màƥƥĩńĝś ũśēď ţō ũśēŕ màƥƥĩńĝ.`, +'s0195c0df7294228a': `Śēē mōŕē àƀōũţ ŌĆĨ śũƥƥōŕţ ĥēŕē:`, +'s01a3a7f48ee4edaf': `Ōƥţĩōńàĺ ēńŕōĺĺmēńţ ƒĺōŵ, ŵĥĩćĥ ĩś ĺĩńķēď àţ ţĥē ƀōţţōm ōƒ ţĥē ƥàĝē.`, +'s01ef54f5d7c6ed47': `Ţŕŷ ĩţ ńōŵ`, +'s02240309358f557c': `Ũńķńōŵń śēvēŕĩţŷ`, +'s026555347e589f0e': `ŌƀĴēćţ ũńĩǫũēńēśś ƒĩēĺď`, +'s02839b01844d6ca8': `Ćŕēàţĩōń Ďàţē`, +'s0285b4bd69130fa3': `Ĩńśţàĺĺ Ĺĩćēńśē`, +'s028be8989873f001': `Àũţĥōŕĩźē ŨŔĹ`, +'s028d385389b5aac0': `Ĺōćķ ţĥē ũśēŕ ōũţ ōƒ ţĥĩś śŷśţēm`, +'s0295ce5d6f635d75': `Śōũŕćē śēţţĩńĝś`, +'s02b3fade1795d03f': `Ćōńńēćţ ţō ţĥē ĹĎÀƤ Śēŕvēŕ ōń ƥōŕţ 389:`, +'s02b632a9ac24a824': str`Ĺàśţ śēēń: ${0}`, +'s02de8d9e8583b480': `Ŕàŵ ĵŴĶŚ ďàţà.`, +'s030ac0829bb50a49': str`Ƥōĺĩćŷ ${0}`, +'s037bc6d25a03c3c8': `Śũććēśśƒũĺĺŷ ũƥďàţēď ţŕàńśƥōŕţ.`, +'s0382d73823585617': str`${0}: ${1}`, +'s03907d7a66c6164e': `Àƥƥĺĩćàţĩōń'ś ďĩśƥĺàŷ Ńàmē.`, +'s03970aa76a09982d': `Ĩńţēĝŕàţĩōń`, +'s039b6434e8a75560': str`Ďēĺēţē ${0}`, +'s03f42eea72154959': `Ũśēŕńàmē`, +'s03f49e598ffb11cc': `Ƥōĺĩśĥ`, +'s03fb3fa232f0434a': `Ćĺĩēńţ Śēćŕēţ`, +'s03fd2c252ad7972a': `Ēmàĩĺ ŕēćōvēŕŷ ĺĩńķ`, +'s0410779cb47de312': `Ƥàţĥ ţēmƥĺàţē ƒōŕ ũśēŕś ćŕēàţēď. Ũśē ƥĺàćēĥōĺďēŕś ĺĩķē \`%(śĺũĝ)ś\` ţō ĩńśēŕţ ţĥē śōũŕćē śĺũĝ.`, +'s042baf59902a711f': `Ƥōĺĩćŷ`, +'s04440099d97c0bef': `Ēďĩţ Śţàĝē`, +'s045c3b86aae073c1': `Ďēĺēţē àććōũńţ`, +'s04b7f8d6aaef3756': `Ũśēŕś ĩń ţĥē śēĺēćţēď ĝŕōũƥ ćàń ďō śēàŕćĥ ǫũēŕĩēś. Ĩƒ ńō ĝŕōũƥ ĩś śēĺēćţēď, ńō ĹĎÀƤ Śēàŕćĥēś àŕē àĺĺōŵēď.`, +'s04bfd02201db5ab8': `Śēţ ćũśţōm àţţŕĩƀũţēś ũśĩńĝ ŶÀMĹ ōŕ ĵŚŌŃ. Àńŷ àţţŕĩƀũţēś śēţ ĥēŕē ŵĩĺĺ ƀē ĩńĥēŕĩţēď ƀŷ ũśēŕś, ĩƒ ţĥē ŕēǫũēśţ ĩś ĥàńďĺēď ƀŷ ţĥĩś ţēńàńţ.`, +'s04c1210202f48dc9': `Ƥĺēàśē ēńţēŕ ŷōũŕ Ƥĥōńē ńũmƀēŕ.`, +'s04c5a637328c9b67': str`${0} - ${1} ōƒ ${2}`, +'s04ceadb276bbe149': `Ĺōàďĩńĝ ōƥţĩōńś...`, +'s05e395ff60af047b': `Ŵàŕńĩńĝ: Ƥŕōvĩďēŕ ĩś ńōţ ũśēď ƀŷ àńŷ Ōũţƥōśţ.`, +'s0639662111324466': `Ƥōĺĩćŷ ēńĝĩńē mōďē`, +'s065604a41e9d1584': `Ũƥďàţē ŌÀũţĥ Śōũŕćē`, +'s068d4dd16d9106d0': `Ĩćōń`, +'s06ae64e621f302eb': `Śũććēśśƒũĺĺŷ ćŕēàţēď ĺĩćēńśē.`, +'s06c163334767a381': `Ćŕēàţē Śēŕvĩćē àććōũńţ`, +'s06c92148da82be0d': `Ćĥàńĝē ŷōũŕ ƥàśśŵōŕď`, +'s06df3c3b6a503da8': `Ƒĩēĺď ōƒ ţĥē ũśēŕ ōƀĴēćţ ţĥĩś vàĺũē ĩś ŵŕĩţţēń ţō.`, +'s070fdfb03034ca9b': `Ōńē ĥĩńţ, 'Ńēŵ Àƥƥĺĩćàţĩōń Ŵĩźàŕď', ĩś ćũŕŕēńţĺŷ ĥĩďďēń`, +'s072c6d12d3d37501': `ĤŢŢƤ-ßàśĩć Ũśēŕńàmē Ķēŷ`, +'s079d388d3cbfa54f': `Ćĥēćķ ţĥē ĺōĝś`, +'s081d3c4b47a6ff83': `Ĩƒ śēţ, ũśēŕś àŕē àƀĺē ţō ũńēńŕōĺĺ ţĥēmśēĺvēś ũśĩńĝ ţĥĩś ƒĺōŵ. Ĩƒ ńō ƒĺōŵ ĩś śēţ, ōƥţĩōń ĩś ńōţ śĥōŵń.`, +'s086e1bbe7c97ea16': `Śēàŕćĥ ƀàśē`, +'s08a8716c214a0efb': `ƤĒM-ēńćōďēď Ćēŕţĩƒĩćàţē ďàţà.`, +'s08c91cb1a2cd3d97': `Ŵĥēń śēĺēćţēď, à ƥàśśŵōŕď ƒĩēĺď ĩś śĥōŵń ōń ţĥē śàmē ƥàĝē ĩńśţēàď ōƒ à śēƥàŕàţē ƥàĝē. Ţĥĩś ƥŕēvēńţś ũśēŕńàmē ēńũmēŕàţĩōń àţţàćķś.`, +'s08df8d0a773a3ea0': `Ŕēmōvē ĩţēm`, +'s091d3d07b5b3076f': `ŌĶ`, +'s091d5407b5b32e84': `Ōŕ`, +'s09205907b5b56cda': `Ńō`, +'s09240e07b5b8d640': `ĨĎ`, +'s09242207b5b8f83c': `ĨƤ`, +'s0924f51b028233a3': `<Ńō ńàmē śēţ>`, +'s09353907b5c79284': `Ţō`, +'s09810653c832e935': `Ćĺĩćķ ţō ćĥàńĝē vàĺũē`, +'s098237f7ccb4dc4a': `Śũććēśśƒũĺĺŷ ćĺēàŕēď ƒĺōŵ ćàćĥē`, +'s09b671b120443043': `Ũƥďàţē Ŕàďĩũś Ƥŕōvĩďēŕ`, +'s09f0c100d0ad2fec': `Ōƥēń Ŵĩźàŕď`, +'s0a0ca63b967f1630': `Śōũŕćē(ś)`, +'s0a11c2ffb8309d1a': `Ńōţ ƒōũńď`, +'s0a39e4f61ccafacb': `Śũććēśśƒũĺĺŷ ũƥďàţēď ŕũĺē.`, +'s0a5401d4419f9958': `Ũśĩńĝ śōũŕćē`, +'s0a57e911e457302b': `ŚĹŌ ŨŔĹ (Ƥōśţ)`, +'s0a61796c1956d32c': `Ēvàĺũàţē ŵĥēń ƒĺōŵ ĩś ƥĺàńńēď`, +'s0a63a8be0b2b422c': `Ŵōŕķēŕś`, +'s0a72e65aef45b1e8': `Śēŕvēŕ ŨŔĨ`, +'s0ae0072614320ae2': `Ĥàśĥ ƥĥōńē ńũmƀēŕ`, +'s0ae3395d8f48e624': `Śũććēśśƒũĺĺŷ ĝēńēŕàţēď ŕēćōvēŕŷ ĺĩńķ`, +'s0af6301e76e2a2a5': `Śũććēśśƒũĺĺŷ ũƥďàţēď ţēńàńţ.`, +'s0b15ff11a0049cfd': `ĹĎÀƤ ĎŃ ũńďēŕ ŵĥĩćĥ ƀĩńď ŕēǫũēśţś àńď śēàŕćĥ ŕēǫũēśţś ćàń ƀē màďē.`, +'s0b3bf19b31dd6bac': `Ţŕŷ ţĥē ńēŵ àƥƥĺĩćàţĩōń ŵĩźàŕď`, +'s0b55a57f473ab8af': `Ũƥďàţē Ĝŕōũƥ`, +'s0c135eba6017d94f': `Ĺàƀēĺ śĥōŵń ńēxţ ţō/àƀōvē ţĥē ƥŕōmƥţ.`, +'s0c3ac7f9383a8cfd': `Ţŕàńśĩēńţ`, +'s0c8c4d2bb0a9162a': `Ōƥţĩōńàĺ ƥàśśŵōŕďĺēśś ƒĺōŵ, ŵĥĩćĥ ĩś ĺĩńķēď àţ ţĥē ƀōţţōm ōƒ ţĥē ƥàĝē. Ŵĥēń ćōńƒĩĝũŕēď, ũśēŕś ćàń ũśē ţĥĩś ƒĺōŵ ţō àũţĥēńţĩćàţē ŵĩţĥ à ŴēƀÀũţĥń àũţĥēńţĩćàţōŕ, ŵĩţĥōũţ ēńţēŕĩńĝ àńŷ ďēţàĩĺś.`, +'s0c9670f429e74283': `Ńēŵ àƥƥĺĩćàţĩōń`, +'s0d4268408182491d': `Ũśē ŢĹŚ`, +'s0d5d05bf3d122ced': `Ţŵĩĺĩō`, +'s0dc46deb8f181baf': `Ĩńvàĺĩď ŕēśƥōńśē ƀēĥàvĩōŕ`, +'s0dd00fbaba08748a': `Śēśśĩōń ńōţ vàĺĩď ōń ōŕ àƒţēŕ ćũŕŕēńţ ţĩmē + ţĥĩś vàĺũē.`, +'s0dd031b58ed4017c': str`Ĩńţēŕńàĺ: ${0}`, +'s0dfc6838c9d07677': `Ćōńƒĩĝũŕàţĩōń ƒĺōŵ`, +'s0e03fe2dc5b9164b': `Ĩƒ ŷōũŕ àũţĥēńţĩķ Ĩńśţàńćē ĩś ũśĩńĝ à śēĺƒ-śĩĝńēď ćēŕţĩƒĩćàţē, śēţ ţĥĩś vàĺũē.`, +'s0e15f678445dfc45': `Śţàĝē ũśēď ţō vàĺĩďàţē àńŷ àũţĥēńţĩćàţōŕ. Ţĥĩś śţàĝē śĥōũĺď ƀē ũśēď ďũŕĩńĝ àũţĥēńţĩćàţĩōń ōŕ àũţĥōŕĩźàţĩōń ƒĺōŵś.`, +'s0e427111d750cc02': `Śũććēśśƒũĺĺŷ ũƥďàţēď ĺĩćēńśē.`, +'s0e516232f2ab4e04': `Ţōķēńś śēńţ vĩà ŚMŚ.`, +'s0eaf755fa88c8d97': `Śţàĝē(ś)`, +'s0f2e070d38cd36df': `ŢĹŚ Àũţĥēńţĩćàţĩōń Ćēŕţĩƒĩćàţē/ŚŚĤ Ķēŷƥàĩŕ`, +'s0f4c6540c30bd8b4': `Ďēśĩĝńàţĩōń`, +'s0fbf6dc6a1966408': `Ńēxţ`, +'s1024166475850a65': `Ũśē Śēŕvēŕ ŨŔĨ ƒōŕ ŚŃĨ vēŕĩƒĩćàţĩōń`, +'s10356fd921037fbf': `Ďēƒàũĺţ ƒĺōŵś`, +'s107bf77afb93c9b8': `Śēńď ńōţĩƒĩćàţĩōńś ŵĥēńēvēŕ à śƥēćĩƒĩć Ēvēńţ ĩś ćŕēàţēď àńď màţćĥēď ƀŷ ƥōĺĩćĩēś.`, +'s10922bd0ac765562': `ōƀĴēćţ ŵĩĺĺ ƀē ĎĒĹĒŢĒĎ`, +'s10929ca568ae10bc': `Ƥŕōvĩďēŕ(ś)`, +'s10d2dbc4613397f0': `Ũƥďàţēď`, +'s11204eeb1e27ea8f': `ÀĆŚ ŨŔĹ`, +'s11326fd2590f4e5e': `Ďēƒàũĺţ`, +'s113c05ef9996ca4b': `Ēmƀēďďēď ōũţƥōśţ ĩś ńōţ ćōńƒĩĝũŕēď ćōŕŕēćţĺŷ.`, +'s119498d4e4cf59a6': `Àƒƒēćţēď mōďēĺ:`, +'s11bc220e8fa9d797': `Àũţĥōŕĩźàţĩōńś`, +'s12146091b2b539a3': `Ćōńţēńţ ĺēƒţ`, +'s122f308b5f198ba7': `Śũććēśśƒũĺĺŷ ćŕēàţēď ćēŕţĩƒĩćàţē-ķēŷ ƥàĩŕ.`, +'s124f93a61ee772d6': `Àďvàńćēď ƥŕōţōćōĺ śēţţĩńĝś`, +'s128e7f5f34bfa155': `Śţàĝē ũśēď ţō ćōńƒĩĝũŕē à śţàţĩć àũţĥēńţĩćàţōŕ (ĩ.ē. śţàţĩć ţōķēńś). Ţĥĩś śţàĝē śĥōũĺď ƀē ũśēď ƒōŕ ćōńƒĩĝũŕàţĩōń ƒĺōŵś.`, +'s1293ad87acc7a609': `ĤàvēĨßēēńƤŵńēď śēţţĩńĝś`, +'s1298e361e40ee1c5': `Śţōƥ ĩmƥēŕśōńàţĩōń`, +'s12de1c06a1e18cc5': `Ţēxţ (ŕēàď-ōńĺŷ): Śĩmƥĺē Ţēxţ ĩńƥũţ, ƀũţ ćàńńōţ ƀē ēďĩţēď.`, +'s134177568525dbc8': `Ďēvĩćē ćōďē ƒĺōŵ`, +'s13de04774ff0f210': `Ďōćķēŕ ŨŔĹ`, +'s14401ff4a0cba208': str`Ƒàĩĺēď ţō ũƥďàţē ${0}: ${1}`, +'s145483489b87a622': `Ĺōĝōũţ ŨŔĹ`, +'s1455753daa00f1bc': `Ũśēŕ ďōēśń'ţ ĥàvē vĩēŵ ƥēŕmĩśśĩōń śō ďēśćŕĩƥţĩōń ćàńńōţ ƀē ŕēţŕĩēvēď.`, +'s14622ee6de586485': str`Àţţēmƥţēď ţō ĺōĝ ĩń àś ${0}`, +'s14ace18ccf4fb86d': `Ĩńćŕēàśēś ćōmƥàţĩƀĩĺĩţŷ ŵĩţĥ ƥàśśŵōŕď màńàĝēŕś àńď mōƀĩĺē ďēvĩćēś.`, +'s14bf17e2a1a2c381': `Ŕēśţàŕţ ţàśķ`, +'s14bfa8fd1bec8889': `Ŕōĺē ďōēśń'ţ ĥàvē vĩēŵ ƥēŕmĩśśĩōń śō ďēśćŕĩƥţĩōń ćàńńōţ ƀē ŕēţŕĩēvēď.`, +'s14c552fb0a4c0186': `Àƥƥĺĩćàţĩōń ŕēǫũĩŕēś ƒōĺĺōŵĩńĝ ƥēŕmĩśśĩōńś:`, +'s14c8f36e180d6bbc': `Śũććēśśƒũĺĺŷ ćŕēàţēď śţàĝē.`, +'s1575a15cee001915': `Śũććēśśƒũĺĺŷ ćŕēàţēď ţŕàńśƥōŕţ.`, +'s15831fa50a116545': `Śàvĩńĝ Àƥƥĺĩćàţĩōń...`, +'s15b46b78edebb20a': `Àŕē ŷōũ śũŕē ŷōũ ŵàńţ ţō ćĺēàŕ ţĥē ƥōĺĩćŷ ćàćĥē? Ţĥĩś ŵĩĺĺ ćàũśē àĺĺ ƥōĺĩćĩēś ţō ƀē ŕē-ēvàĺũàţēď ōń ţĥēĩŕ ńēxţ ũśàĝē.`, +'s1608b2f94fa0dbd4': `Ĩƒ śēţ ţō à ďũŕàţĩōń àƀōvē 0, ţĥē ũśēŕ ŵĩĺĺ ĥàvē ţĥē ōƥţĩōń ţō ćĥōōśē ţō "śţàŷ śĩĝńēď ĩń", ŵĥĩćĥ ŵĩĺĺ ēxţēńď ţĥēĩŕ śēśśĩōń ƀŷ ţĥē ţĩmē śƥēćĩƒĩēď ĥēŕē.`, +'s164be9a7537b99f6': `Ćōńƒĩĝũŕē vĩśũàĺ śēţţĩńĝś àńď ďēƒàũĺţś ƒōŕ ďĩƒƒēŕēńţ ďōmàĩńś.`, +'s1665454e31e14941': `X509 ŚũƀĴēćţ`, +'s16b9446e3a70e1f4': `Àţţŕĩƀũţēś`, +'s16bc281dce5685e8': `Àũţĥēńţĩćàţōŕ`, +'s170b705c55ecb2ae': `ŨŔĹ ţō ƒēţćĥ ĵàvàŚćŕĩƥţ ƒŕōm, ďēƒàũĺţś ţō ŕēćàƥţćĥà. Ćàń ƀē ŕēƥĺàćēď ŵĩţĥ àńŷ ćōmƥàţĩƀĺē àĺţēŕńàţĩvē.`, +'s17a679298216aca9': `Śēĺēćţ śōũŕćēś śĥōũĺď ƀē śĥōŵń ƒōŕ ũśēŕś ţō àũţĥēńţĩćàţē ŵĩţĥ. Ţĥĩś ōńĺŷ àƒƒēćţś ŵēƀ-ƀàśēď śōũŕćēś, ńōţ ĹĎÀƤ.`, +'s17d1e337f6c11c1e': `Ĩńćĺũďē ćĺàĩmś ĩń ĩď_ţōķēń`, +'s17f3eaf3b07ece26': `Ŵàŕńĩńĝ: Ƥŕōvĩďēŕ ĩś ńōţ ũśēď ƀŷ àń Àƥƥĺĩćàţĩōń.`, +'s1823625e6f831d73': `Ćũśţōmĩśàţĩōń`, +'s18269e3889d6fa54': `Ƥàţĥ ńēŵ ũśēŕś ŵĩĺĺ ƀē ćŕēàţēď ũńďēŕ. Ĩƒ ĺēƒţ ƀĺàńķ, ţĥē ďēƒàũĺţ ƥàţĥ ŵĩĺĺ ƀē ũśēď.`, +'s1828fbfc2c56379c': `Ćĥēćķ ĨƤ`, +'s1889ba2eaeec2f1e': `Ŵĥēń ēńàƀĺēď, ćōďē-ƀàśēď mũĺţĩ-ƒàćţōŕ àũţĥēńţĩćàţĩōń ćàń ƀē ũśēď ƀŷ àƥƥēńďĩńĝ à śēmĩćōĺōń àńď ţĥē ŢŌŢƤ ćōďē ţō ţĥē ƥàśśŵōŕď. Ţĥĩś śĥōũĺď ōńĺŷ ƀē ēńàƀĺēď ĩƒ àĺĺ ũśēŕś ţĥàţ ŵĩĺĺ ƀĩńď ţō ţĥĩś ƥŕōvĩďēŕ ĥàvē à ŢŌŢƤ ďēvĩćē ćōńƒĩĝũŕēď, àś ōţĥēŕŵĩśē à ƥàśśŵōŕď màŷ ĩńćōŕŕēćţĺŷ ƀē ŕēĴēćţēď ĩƒ ĩţ ćōńţàĩńś à śēmĩćōĺōń.`, +'s18b910437b73e8e8': `Ŕēţũŕń ţō ďēvĩćē ƥĩćķēŕ`, +'s19409e8712ddd369': `Àďď ƥŕōvĩďēŕ`, +'s197420b40df164f8': `Ƒōĺĺōŵ ŕēďĩŕēćţ`, +'s199b55513a739f43': `ŌĨĎĆ Ŵēĺĺ-ķńōŵń ŨŔĹ`, +'s19b09f4fc72175d1': `Ćŕēàţē à ńēŵ śōũŕćē.`, +'s1a0e95458b44d7f8': `Àńŷ ƥōĺĩćŷ mũśţ màţćĥ ţō ĝŕàńţ àććēśś`, +'s1a2797874b7fe852': `ŃàmēĨĎ Ƥŕōƥēŕţŷ Màƥƥĩńĝ`, +'s1a2f8f4b3861583b': `Ćŕēàţē Ōũţƥōśţ`, +'s1a635369edaf4dc3': `Śēŕvĩćē àććōũńţ`, +'s1a65ee08832fbfe2': `Ƒĺōŵś àńď Śţàĝēś`, +'s1a711c19cda48375': `Ćōńƒĩĝũŕē ĹĎÀƤ Ƥŕōvĩďēŕ`, +'s1ac2653a6492b435': str`${0}, śĥōũĺď ƀē ${1}`, +'s1b07757762cda372': `Ćĺēàŕ Ƥōĺĩćŷ ćàćĥē`, +'s1b14062c44e5ef45': `Ēxƥĩŕĩńĝ`, +'s1b42b49e7b392013': `Ũƥďàţē Ĩńvĩţàţĩōń`, +'s1b448a4ea79d4eef': `Ńō Ēvēńţś ƒōũńď.`, +'s1b606acd76ba2c4c': `Ũƥďàţē Ţēńàńţ`, +'s1b783856ab4aaaf3': `Ńō àďďĩţĩōńàĺ śēţũƥ ĩś ŕēǫũĩŕēď.`, +'s1b88fa3df4423292': `Ĺàśţ ĨƤ`, +'s1bd5920d8adf2bd5': `Ĝŕōũƥś ţō àďď`, +'s1bf56ee106e9e711': `Śũććēśśƒũĺĺŷ ćŕēàţēď ƀĩńďĩńĝ.`, +'s1c2a173db0e1ec61': `Ćōńśĩďēŕ ŌƀĴēćţś màţćĥĩńĝ ţĥĩś ƒĩĺţēŕ ţō ƀē Ũśēŕś.`, +'s1c2fd8097e14a608': `Ŕēćōvēŕŷ ƒĺōŵ. Ĩƒ ĺēƒţ ēmƥţŷ, ţĥē ƒĩŕśţ àƥƥĺĩćàƀĺē ƒĺōŵ śōŕţēď ƀŷ ţĥē śĺũĝ ĩś ũśēď.`, +'s1c33d22492029aba': `ŌƀĴēćţ ƒĩēĺď`, +'s1c5574968b29ab1c': `Ƥàśśŵōŕď: Màśķēď ĩńƥũţ, mũĺţĩƥĺē ĩńƥũţś ōƒ ţĥĩś ţŷƥē ōń ţĥē śàmē ƥŕōmƥţ ńēēď ţō ƀē ĩďēńţĩćàĺ.`, +'s1c6ba8d100453392': `Ţĩmē ĩń mĩńũţēś ţĥē ţōķēń śēńţ ĩś vàĺĩď.`, +'s1c8916418c334935': `ĨĎ Ţōķēń`, +'s1c8e9816dcae6d9c': `Ţĥē śţàŕţ ƒōŕ ĝĩďŃũmƀēŕś, ţĥĩś ńũmƀēŕ ĩś àďďēď ţō à ńũmƀēŕ ĝēńēŕàţēď ƒŕōm ţĥē ĝŕōũƥ.Ƥķ ţō màķē śũŕē ţĥàţ ţĥē ńũmƀēŕś àŕēń'ţ ţōō ĺōŵ ƒōŕ ƤŌŚĨX ĝŕōũƥś. Ďēƒàũĺţ ĩś 4000 ţō ēńśũŕē ţĥàţ ŵē ďōń'ţ ćōĺĺĩďē ŵĩţĥ ĺōćàĺ ĝŕōũƥś ōŕ ũśēŕś ƥŕĩmàŕŷ ĝŕōũƥś ĝĩďŃũmƀēŕ`, +'s1cc0e66dbd2b5502': `Ƒĺōŵ śēţţĩńĝś`, +'s1cc306d8e28c4464': `Ďēńŷ mēśśàĝē`, +'s1cd198d689c66e4b': `ÀƤĨ Àććēśś`, +'s1cd264012278c047': `Ƒĺōŵ ēxēćũţĩōń`, +'s1cd617e7bbe278d0': `Ƥŕōmƥţ ƒōŕ ţĥē ũśēŕ'ś ćōńśēńţ. Ţĥē ćōńśēńţ ćàń ēĩţĥēŕ ƀē ƥēŕmàńēńţ ōŕ ēxƥĩŕē ĩń à ďēƒĩńēď àmōũńţ ōƒ ţĩmē.`, +'s1cf2298d92c327a6': `Mŷ Àƥƥĺĩćàţĩōńś`, +'s1cffe58249b04669': `Ĩńţēŕńàĺ àƥƥĺĩćàţĩōń ńàmē ũśēď ĩń ŨŔĹś.`, +'s1d30ff9ba938e68d': `Ŵàĩţ (màx)`, +'s1d49ec5030447643': `Ōũţƥōśţ(ś)`, +'s1d6e16d86961c782': `Ćēŕţĩƒĩćàţē-Ķēŷ Ƥàĩŕ(ś)`, +'s1d9d6c5b424fdc1f': `ŨŔĹ ţĥàţ ţĥē ĩńĩţĩàĺ Ĺōĝĩń ŕēǫũēśţ ĩś śēńţ ţō.`, +'s1e0de9c4f66dc371': `ŴēƀÀũţĥń Ũśēŕ vēŕĩƒĩćàţĩōń`, +'s1e176e35c828318c': `Ĥōśţńàmē`, +'s1e36813d3504ed48': `Śũććēśśƒũĺĺŷ ũƥďàţēď ƀĩńďĩńĝ.`, +'s1e4c3de6e12cd87b': `Ũśēŕńàmē: Śàmē àś Ţēxţ ĩńƥũţ, ƀũţ ćĥēćķś ƒōŕ àńď ƥŕēvēńţś ďũƥĺĩćàţē ũśēŕńàmēś.`, +'s1e7308bb1ca323e1': `ŚĹŌ ŨŔĹ (Ŕēďĩŕēćţ)`, +'s1efbfc3937d565bd': `ßàćķĝŕōũńď`, +'s1f1c857c0c4250e4': str`${0} ďàŷ(ś) àĝō`, +'s1f7698c061c208c9': `Ōƥēń`, +'s1fc9c70610c4c67d': `Ĩńvàĺĩďàţĩōń`, +'s2035f889f576bca6': `Ćōńńēćţĩōń śēţţĩńĝś`, +'s207e8b106806d7e4': `ßĩńď śţàĝē`, +'s20a0ce62823bfa97': `Ďēĺēţē ţēmƥōŕàŕŷ ũśēŕś àƒţēŕ`, +'s211b75e868072162': `Śēţ ţĥĩś ţō ţĥē ďōmàĩń ŷōũ ŵĩśĥ ţĥē àũţĥēńţĩćàţĩōń ţō ƀē vàĺĩď ƒōŕ. Mũśţ ƀē à ƥàŕēńţ ďōmàĩń ōƒ ţĥē ŨŔĹ àƀōvē. Ĩƒ ŷōũ'ŕē ŕũńńĩńĝ àƥƥĺĩćàţĩōńś àś àƥƥ1.ďōmàĩń.ţĺď, àƥƥ2.ďōmàĩń.ţĺď, śēţ ţĥĩś ţō 'ďōmàĩń.ţĺď'.`, +'s2152f3482784705f': `Ŕēćēńţ ēvēńţś`, +'s216eb300543edd91': `Śēĺēćţ ŵĥĩćĥ śēŕvēŕ à ũśēŕ ĥàś ţō ƀē à mēmƀēŕ ōƒ ţō ƀē àĺĺōŵēď ţō àũţĥēńţĩćàţē.`, +'s21b3058faf874368': `Ōũţďàţēď ōũţƥōśţś`, +'s21d0e290c51a8ef9': `Śŷmƀōĺ ćĥàŕśēţ`, +'s21e3c227cc2c5873': `Śēƥàŕàţōŕ: Śţàţĩć Śēƥàŕàţōŕ Ĺĩńē`, +'s21f95eaf151d4ce3': `Ŕēvĩēŵ ţĥē ƥŕōvĩďēŕ.`, +'s2221fef80f4753a2': `ŢĹŚ Vēŕĩƒĩćàţĩōń Ćēŕţĩƒĩćàţē`, +'s2236dc563c2dbf76': `(Ƒōŕmàţ: ĥōũŕś=-1;mĩńũţēś=-2;śēćōńďś=-3).`, +'s22b0e8c5277dd5a9': `Ŵĩĺĺ ńōţĩƒŷ ţĥē ũśēŕ ţĥē ƒĺōŵ ĩśń'ţ àƥƥĺĩćàƀĺē`, +'s22b10ed263b96194': `Ďũmmŷ śţàĝē ũśēď ƒōŕ ţēśţĩńĝ. Śĥōŵś à śĩmƥĺē ćōńţĩńũē ƀũţţōń àńď àĺŵàŷś ƥàśśēś.`, +'s22e566052f7bec81': `ĵŴŢś śĩĝńēď ƀŷ ćēŕţĩƒĩćàţēś ćōńƒĩĝũŕēď ĩń ţĥē śēĺēćţēď śōũŕćēś ćàń ƀē ũśēď ţō àũţĥēńţĩćàţē ţō ţĥĩś ƥŕōvĩďēŕ.`, +'s2345170f7e272668': `Ũńķńōŵń ƥŕōxŷ mōďē`, +'s2348f46ebf436671': `Ōƥēń ĩń ńēŵ ţàƀ`, +'s239c2a351cde6d39': `Ŕēǫũĩŕē ńō àũţĥēńţĩćàţĩōń.`, +'s23ab136ad85f0ad2': `Ōńĺŷ śŷńć ũśēŕś ŵĩţĥĩń ţĥē śēĺēćţēď ĝŕōũƥ.`, +'s23cee624c735f266': `Ĩńţēŕćēƥţ ĥēàďēŕ àũţĥēńţĩćàţĩōń`, +'s23de62f931f7d754': `Ĺàśţ àƥƥĺĩēď`, +'s23e6a57201fba25e': `Ďĩśƥĺàŷ ńàmē ōƒ ţĥĩś àũţĥēńţĩćàţōŕ, ũśēď ƀŷ ũśēŕś ŵĥēń ţĥēŷ ēńŕōĺĺ àń àũţĥēńţĩćàţōŕ.`, +'s23fd4411419fca06': `Śćōƥē ŵĥĩćĥ ţĥē ćĺĩēńţ ćàń śƥēćĩƒŷ ţō àććēśś ţĥēśē ƥŕōƥēŕţĩēś.`, +'s240ff02ce3a53dee': `Ĩńţēĝŕàţĩōń ķēŷ`, +'s24211f319e5b7e98': `Ƒĩēĺď ŵĥĩćĥ ćōńţàĩńś à ũńĩǫũē Ĩďēńţĩƒĩēŕ.`, +'s2430e000b7cfefd0': `Ōńĺŷ śēńď ńōţĩƒĩćàţĩōń ōńćē, ƒōŕ ēxàmƥĺē ŵĥēń śēńďĩńĝ à ŵēƀĥōōķ ĩńţō à ćĥàţ ćĥàńńēĺ.`, +'s2474e7fb1aec9f05': `Ţēśţ`, +'s24875d5475e82526': `Śũććēśśƒũĺĺŷ ũƥďàţēď śōũŕćē.`, +'s24bce955914b1f0a': `Śţàĝē ũśēď ţō ćōńƒĩĝũŕē à ŴēƀÀũţĥń àũţĥēńţĩćàţōŕ (ĩ.ē. Ŷũƀĩķēŷ, ƑàćēĨĎ/Ŵĩńďōŵś Ĥēĺĺō).`, +'s24f405197ede5ebb': `Ŕē-àũţĥēńţĩćàţē ŵĩţĥ ƥĺēx`, +'s2512334108f06a5a': `Śţàŷ śĩĝńēď ĩń ōƒƒśēţ`, +'s252a52330d32b900': `Mēţàďàţà`, +'s2536ac8d32d2e63f': `Ďũŕàţĩōń àƒţēŕ ŵĥĩćĥ ēvēńţś ŵĩĺĺ ƀē ďēĺēţēď ƒŕōm ţĥē ďàţàƀàśē.`, +'s2543cffd6ebb6803': `Śŷśţēm ţàśķ ēxēćũţĩōń`, +'s254a9a23dc1635df': `Ĩmƥōŕţ ďēvĩćēś`, +'s254d527e3a53dbb7': `Ćōďē-ƀàśēď MƑÀ Śũƥƥōŕţ`, +'s256b8452664ccae4': `Ćōńƒĩĝũŕē ĥōŵ ţĥē ŃàmēĨĎ vàĺũē ŵĩĺĺ ƀē ćŕēàţēď. Ŵĥēń ĺēƒţ ēmƥţŷ, ţĥē ŃàmēĨĎƤōĺĩćŷ ōƒ ţĥē ĩńćōmĩńĝ ŕēǫũēśţ ŵĩĺĺ ƀē ŕēśƥēćţēď.`, +'s259de999919316db': `Ŕōĺē(ś)`, +'s25d0cd75377daf75': `Ƒōŕŵàŕď àũţĥ (ďōmàĩń ĺēvēĺ)`, +'s25ec2846f6b88214': `Ŵēƀĥōōķ Màƥƥĩńĝ`, +'s26513c9dd154f041': `Àĺŵàŷś ŕēǫũĩŕē ćōńśēńţ`, +'s2656433a3b1f7e86': `Mŷ àƥƥĺĩćàţĩōńś`, +'s26bf2730430efbea': `ŚũƀĴēćţ mōďē`, +'s2708cac1f4942708': `ßĺũēƥŕĩńţ(ś)`, +'s271a7e04ff9865b1': `Ćōńţŕōĺ ĥōŵ àũţĥēńţĩķ ēxƥōśēś àńď ĩńţēŕƥŕēţś ĩńƒōŕmàţĩōń.`, +'s275021658614ce9e': `ÀƤĨ ŨŔĹ`, +'s27586544c447d9e3': `Ũśēŕ ēvēńţś`, +'s275c956687e2e656': `Ƒàĩĺēď ĺōĝĩńś`, +'s276d751eb7a186cc': `ÀƤĨ Ĥōśţńàmē`, +'s27976e94b05c6970': `Àćţĩvàţē`, +'s27ac7a47b390e3cb': `Ćēŕţĩƒĩćàţē-Ķēŷ Ƥàĩŕś`, +'s2801a48ceac691b3': `Ēńŕōĺĺmēńţ ƒĺōŵ`, +'s289fce7e694b98ac': `ŚMŢƤ Ƥōŕţ`, +'s28b3de1561da72b3': `MƑÀ Àũţĥēńţĩćàţōŕś`, +'s28cbd874ba450b4e': `Ĺēśś ďēţàĩĺś`, +'s28d84abfbaf555ea': `Śćōŕē ţĥŕēśĥōĺď`, +'s28f270859c5f4d51': `Ţĥē Ĥōśţ ĨƤ ōƒ ţĥē ďōćķēŕ ĥōśţ`, +'s2905c425adae99bd': `Ĩńśţàĺĺ ĨĎ`, +'s29315e374008d0c5': `Ũśēŕś àďďēď ţō ţĥĩś ĝŕōũƥ ŵĩĺĺ ƀē śũƥēŕũśēŕś.`, +'s293801033f9fc0d0': `Ćŕēàţē à ńēŵ śţàĝē.`, +'s293aa6a6446fb153': `Ēxƥōŕţ`, +'s293ab4331c1dd387': `Ţĥĩś ĩś ţĥē ũśēŕńàmē ţō ƀē ũśēď ŵĩţĥ ƀàśĩć àũţĥ ōŕ ţĥē ţōķēń ŵĥēń ũśēď ŵĩţĥ ƀēàŕēŕ ţōķēń`, +'s296fbffaaa7c910a': `Ŕēǫũĩŕēď.`, +'s297a2075bd7e40db': `ŃàmēĨĎ Ƥōĺĩćŷ`, +'s29ec5e7889f4787f': `Śũććēśśƒũĺĺŷ ũƥďàţēď ƥōĺĩćŷ.`, +'s2a0f60e74b478804': `Ďĩĝēśţ àĺĝōŕĩţĥm`, +'s2a12e0b5527ff99a': `Ēńàƀĺĩńĝ ţĥĩś ţōĝĝĺē ŵĩĺĺ ćŕēàţē à ĝŕōũƥ ńàmēď àƒţēŕ ţĥē ũśēŕ, ŵĩţĥ ţĥē ũśēŕ àś mēmƀēŕ.`, +'s2a1debf34e5aeba4': `Ũśē ţĥē ũśēŕ'ś ũśēŕńàmē, ƀũţ ďēńŷ ēńŕōĺĺmēńţ ŵĥēń ţĥē ũśēŕńàmē àĺŕēàďŷ ēxĩśţś`, +'s2a2d3e7c379e9518': `Ćēŕţĩƒĩćàţē ŚũƀĴēćţ`, +'s2a369bc2febb5d55': `Ĩƒ ńō ēxƥĺĩćĩţ ŕēďĩŕēćţ ŨŔĨś àŕē śƥēćĩƒĩēď, ţĥē ƒĩŕśţ śũććēśśƒũĺĺŷ ũśēď ŕēďĩŕēćţ ŨŔĨ ŵĩĺĺ ƀē śàvēď.`, +'s2a64d2dca3da9b0e': str`Ĝŕōũƥ ${0}`, +'s2a957e843960b604': `Ƥàśśŵōŕď ƒĩēĺď`, +'s2acef4f6ba39bf11': `ĎŃŚ ńàmē ƒōŕ ŵĥĩćĥ ţĥē àƀōvē ćōńƒĩĝũŕēď ćēŕţĩƒĩćàţē śĥōũĺď ƀē ũśēď. Ţĥē ćēŕţĩƒĩćàţē ćàńńōţ ƀē ďēţēćţēď ƀàśēď ōń ţĥē ƀàśē ĎŃ, àś ţĥē ŚŚĹ/ŢĹŚ ńēĝōţĩàţĩōń ĥàƥƥēńś ƀēƒōŕē śũćĥ ďàţà ĩś ēxćĥàńĝēď.`, +'s2af5754090898640': `Àśśēŕţĩōń vàĺĩď ńōţ ōń ōŕ àƒţēŕ`, +'s2b088ba65eb69b7e': `Ńàmē ōƒ ţĥē ƒōŕm ƒĩēĺď, àĺśō ũśēď ţō śţōŕē ţĥē vàĺũē.`, +'s2b1bc31276c4c477': `Ƥōĺĩćŷ / Ĝŕōũƥ / Ũśēŕ ßĩńďĩńĝś`, +'s2b1c81130a65a55b': `Śŷńć ćũŕŕēńţĺŷ ŕũńńĩńĝ.`, +'s2b7dbba348234a36': `À ćōďē ĥàś ƀēēń śēńţ ţō ŷōũ vĩà ŚMŚ.`, +'s2b952e9dc99cbded': `Ĺōĝĩń ƥàśśŵōŕď ĩś śŷńćēď ƒŕōm ĹĎÀƤ ĩńţō àũţĥēńţĩķ àũţōmàţĩćàĺĺŷ. Ēńàƀĺē ţĥĩś ōƥţĩōń ōńĺŷ ţō ŵŕĩţē ƥàśśŵōŕď ćĥàńĝēś ĩń àũţĥēńţĩķ ƀàćķ ţō ĹĎÀƤ.`, +'s2ba5f4d8f3bd7c57': `Ōŕďēŕ`, +'s2bc8aa1740d3da34': `Śţàĝē ōƀĴēćţ`, +'s2be6121210e2a2f8': `Ƥŕōmƥţś`, +'s2c0de3d35a7bc784': `Ŕēĺàţēď ōƀĴēćţś`, +'s2c8189544e3ea679': `Ŕēţŕŷ`, +'s2c8c6f89089b31d4': `Ćōńƒĩĝũŕē Ŕàďĩũś Ƥŕōvĩďēŕ`, +'s2ceb11be2290bb1b': `Ćàńćēĺ`, +'s2d34c87f67f66c6a': `Ŵĩńďōŵś`, +'s2d46e3a9ee8e0e7e': `Ũƥďàţē ĹĎÀƤ Ƥŕōvĩďēŕ`, +'s2d5f69929bb7221d': str`${0} ("${1}", ōƒ ţŷƥē ${2})`, +'s2da4aa7a9abeb653': `Ƥśēũďōĺōćàĺē (ƒōŕ ţēśţĩńĝ)`, +'s2da51a6287118ba8': `ŚŚŌ ŨŔĹ (ĨďƤ-ĩńĩţĩàţēď Ĺōĝĩń)`, +'s2ddbebcb8a49b005': `Ŵàĩţĩńĝ ƒōŕ àũţĥēńţĩćàţĩōń...`, +'s2df0b65125600de9': `ŌĨĎĆ ĵŴĶŚ`, +'s2e109263b73c12d5': `Ĺĩćēńśēś`, +'s2e3ef41a0edd8608': `Śćōƥēś`, +'s2e422519ed38f7d8': `Ƥàśś`, +'s2e4818861000b13f': `Ĺàŷōũţ`, +'s2e532e19ed477a56': `Ƥàţĥ`, +'s2ec94a7c7f5bcd1b': `Ĝŕōũƥ ōƀĴēćţ ƒĩĺţēŕ`, +'s2ed8eb02525a920a': str`${0} ĥōũŕ(ś) àĝō`, +'s2eeca5cfc99ef19b': `Ďēćĩďēś ţĥē ŕēśƥōńśē ŵĥēń à ƥōĺĩćŷ ďēńĩēś àććēśś ţō ţĥĩś ƒĺōŵ ƒōŕ à ũśēŕ.`, +'s2f0f6691de0b0388': `Ŵàŕńĩńĝ: Ƥŕōvĩďēŕ ĩś ńōţ àśśĩĝńēď ţō àń àƥƥĺĩćàţĩōń àś ƀàćķćĥàńńēĺ ƥŕōvĩďēŕ.`, +'s2f1bcfcc5cae94c3': `Ćŕēàţē Ƒĺōŵ`, +'s2f58bb9905d2b76f': `Ćēŕţĩƒĩćàţē/Ķēŷ ũśēď ƒōŕ àũţĥēńţĩćàţĩōń. Ćàń ƀē ĺēƒţ ēmƥţŷ ƒōŕ ńō àũţĥēńţĩćàţĩōń.`, +'s2f8c4cf12350a36c': `Ćĥēćķ śţàţĩć ŕũĺēś`, +'s2f995efbb1e46b18': `Àũţō-ďēţēćţ (ƀàśēď ōń ŷōũŕ ƀŕōŵśēŕ)`, +'s2fc3eb68c7ced3af': `Ũśēŕĩńƒō ŨŔĹ`, +'s2feae323f46479f8': `Ţĥēśē ƀĩńďĩńĝś ćōńţŕōĺ ŵĥĩćĥ ũśēŕś ćàń àććēśś ţĥĩś śōũŕćē. + Ŷōũ ćàń ōńĺŷ ũśē ƥōĺĩćĩēś ĥēŕē àś àććēśś ĩś ćĥēćķēď ƀēƒōŕē ţĥē ũśēŕ ĩś àũţĥēńţĩćàţēď.`, +'s2ffad156e8332f04': `Ũƥďàţē Ŕōĺē`, +'s30205d424e710818': `Śũććēśśƒũĺĺŷ ďĩśćōńńēćţēď śōũŕćē`, +'s303b5e552246e613': `Màţćĥēś àń ēvēńţ àĝàĩńśţ à śēţ ōƒ ćŕĩţēŕĩà. Ĩƒ àńŷ ōƒ ţĥē ćōńƒĩĝũŕēď vàĺũēś màţćĥ, ţĥē ƥōĺĩćŷ ƥàśśēś.`, +'s306a35df5d0d38bb': `Ũśēŕś ţō àďď`, +'s3079ca1184e77573': `Śũććēśśƒũĺĺŷ ćŕēàţēď ĝŕōũƥ.`, +'s30d0d0e6c626a234': `Ţĥē ōũţƥōśţ ĥōĺďś àĺĺ ũśēŕś àńď ĝŕōũƥś ĩń-mēmōŕŷ àńď ŵĩĺĺ ŕēƒŕēśĥ ēvēŕŷ 5 Mĩńũţēś`, +'s30d1f50f476c3f48': `Ƒĺōŵ Ōvēŕvĩēŵ`, +'s310d8757ce319673': `Ĺōĝĩńś`, +'s319040353f479853': `Ƒĺōŵ ũśēď ƒōŕ ũśēŕś ţō àũţĥēńţĩćàţē.`, +'s3198c384c2f68b08': `Ţĩmē ōƒƒśēţ ŵĥēń ţēmƥōŕàŕŷ ũśēŕś śĥōũĺď ƀē ďēĺēţēď. Ţĥĩś ōńĺŷ àƥƥĺĩēś ĩƒ ŷōũŕ ĨĎƤ ũśēś ţĥē ŃàmēĨĎ Ƒōŕmàţ 'ţŕàńśĩēńţ', àńď ţĥē ũśēŕ ďōēśń'ţ ĺōĝ ōũţ màńũàĺĺŷ.`, +'s31a2d43bc1cf1790': `Ńōţ śŷńćēď ŷēţ.`, +'s31d15c6f16951464': `Àũţĥēńţĩćàţĩōń ŨŔĹ`, +'s31d7f3ba04d306a5': `ŚŚŌ ŨŔĹ`, +'s31ebc5431d677f5d': `ŚMŢƤ Ĥōśţ`, +'s31fba571065f2c87': `Màķē śũŕē ţō ķēēƥ ţĥēśē ţōķēńś ĩń à śàƒē ƥĺàćē.`, +'s322e34cfcba47155': `Ńōţ àvàĩĺàƀĺē`, +'s32a3efa23718e713': `ÀƤĨ Ŕēǫũēśţś`, +'s32babfed740fd3c1': `Ũśēŕ ţŷƥē ũśēď ƒōŕ ńēŵĺŷ ćŕēàţēď ũśēŕś.`, +'s32f04d33924ce8ad': `Ƥōĺĩćŷ ēxēćũţĩōń`, +'s332a5235948c1a1d': `Ćōńśēńţ`, +'s3330adb3f0922f7b': `Ũśēŕ ďàţàƀàśē + àƥƥ ƥàśśŵōŕďś`, +'s33318837e6c54a9b': `Ţŕũśţēď ŌĨĎĆ Śōũŕćēś`, +'s33683c3b1dbaf264': `Ţō ũśē ŚŚĹ ĩńśţēàď, ũśē 'ĺďàƥś://' àńď ďĩśàƀĺē ţĥĩś ōƥţĩōń.`, +'s3380d7cbcebe50f6': `Ƥàśśŵōŕď śţàĝē`, +'s33aa05f435c29753': `Ũƥďàţē Ćēŕţĩƒĩćàţē-Ķēŷ Ƥàĩŕ`, +'s33d48fb745f4d4ae': `Mĩńĩmũm àmōũńţ ōƒ Ũƥƥēŕćàśē Ćĥàŕàćţēŕś`, +'s33e3766d4a02b042': `Ƥŕēƒēŕŕēď: Ţĥē àũţĥēńţĩćàţōŕ ćàń ćŕēàţē àńď śţōŕē à ďēďĩćàţēď ćŕēďēńţĩàĺ, ƀũţ ĩƒ ĩţ ďōēśń'ţ ţĥàţ'ś àĺŕĩĝĥţ ţōō`, +'s33ed903c210a6209': `Ţōķēń ţō àũţĥēńţĩćàţē ŵĩţĥ. Ćũŕŕēńţĺŷ ōńĺŷ ƀēàŕēŕ àũţĥēńţĩćàţĩōń ĩś śũƥƥōŕţēď.`, +'s33f85f24c0f5f008': `Śàvē`, +'s341ab68d4130de20': `Ńō ŵōŕķēŕś ćōńńēćţēď. ßàćķĝŕōũńď ţàśķś ŵĩĺĺ ńōţ ŕũń.`, +'s342eccabf83c9bde': `Ƥĺàń ĥĩśţōŕŷ`, +'s344c4a2a48997e18': `.ŷàmĺ ƒĩĺēś, ŵĥĩćĥ ćàń ƀē ƒōũńď ōń ĝōàũţĥēńţĩķ.ĩō àńď ćàń ƀē ēxƥōŕţēď ƀŷ àũţĥēńţĩķ.`, +'s3484b1e6d0b5335f': `Màńàĝē ŕōĺēś ŵĥĩćĥ ĝŕàńţ ƥēŕmĩśśĩōńś ţō ōƀĴēćţś ŵĩţĥĩń àũţĥēńţĩķ.`, +'s34b23ebbac9f6ab9': `Ũśēŕ vēŕĩƒĩćàţĩōń`, +'s34be76c6b1eadbef': `Ŵàŕńĩńĝ`, +'s34edeb18f887161d': `Ŕàďĩō ßũţţōń Ĝŕōũƥ (ƒĩxēď ćĥōĩćē)`, +'s350a616ff5e145ec': `Śēĺēćţ à ƥŕōvĩďēŕ ţĥàţ ţĥĩś àƥƥĺĩćàţĩōń śĥōũĺď ũśē.`, +'s351246c52548086a': `Ďōŵńĺōàď Ćēŕţĩƒĩćàţē`, +'s354e0a9f146d2869': `Ćĥĩńēśē (śĩmƥĺĩƒĩēď)`, +'s355b21b89ce5d9c5': `Ďēţàĩĺś`, +'s3576aead3e68c5c9': `Ēxƥōŕţ ƒĺōŵ`, +'s35e6e60e83a8c003': `Ĩńvàĺĩďàţĩōń ƒĺōŵ`, +'s35f9df7668d5fa79': `Vĩēŵ ďēƥĺōŷmēńţ ďōćũmēńţàţĩōń`, +'s35fac2e5677d55cd': `Ďēśĩĝńàţēś ŵĥēţĥēŕ ţĥĩś ũśēŕ śĥōũĺď ƀē ţŕēàţēď àś àćţĩvē. Ũńśēĺēćţ ţĥĩś ĩńśţēàď ōƒ ďēĺēţĩńĝ àććōũńţś.`, +'s3616cc78631f5893': str`Ŵàŕńĩńĝ: Ŷōũ'ŕē àƀōũţ ţō ďēĺēţē ţĥē ũśēŕ ŷōũ'ŕē ĺōĝĝēď ĩń àś (${0}). Ƥŕōćēēď àţ ŷōũŕ ōŵń ŕĩśķ.`, +'s36247910d67421e1': `Śēĺēćţ ƥēŕmĩśśĩōńś`, +'s3626433940124897': `Ƒàvĩćōń`, +'s3643189d1abbb7f4': `Ćōďē`, +'s364c4f177a2f8322': `Ōƥēń ÀƤĨ ďŕàŵēŕ`, +'s3687049d1af562c4': `Ćōƥŷ`, +'s36cb242ac90353bc': `Ƒĩēĺďś`, +'s36e630ba56617556': `Śēńď ĤŢŢƤ-ßàśĩć Àũţĥēńţĩćàţĩōń`, +'s374abf1a54d87b67': `ßàćķĝŕōũńď śĥōŵń ďũŕĩńĝ ēxēćũţĩōń.`, +'s3794c596ee7964ad': `Ũƥďàţē ƥàśśŵōŕď`, +'s37cbecaec58e2192': `Mōďē`, +'s37d9155b9f4cc7bd': `Ćōńƒĩĝũŕē ĥōŵ ţĥē ĩśśũēŕ ƒĩēĺď ōƒ ţĥē ĨĎ Ţōķēń śĥōũĺď ƀē ƒĩĺĺēď.`, +'s37dbfe2133b74d2d': `Ĩńţēŕƥŕēţ ƥĺàćēĥōĺďēŕ àś ēxƥŕēśśĩōń`, +'s37eb2f1b6e3c19c2': `Ƥŕōţōćōĺ Śēţţĩńĝś`, +'s38162f615710c7b4': `Mōďĩƒŷ ţĥē ƥàŷĺōàď śēńţ ţō ţĥē ćũśţōm ƥŕōvĩďēŕ.`, +'s382a2aa3984474dd': `Ćŕēàţē`, +'s382b702673776873': `Ēxàmƥĺē ŚÀMĹ àţţŕĩƀũţēś`, +'s38887b94b3320533': `Ēmàĩĺ àďďŕēśś`, +'s388ee787bbf2271b': `Ţàśķ ƒĩńĩśĥēď ŵĩţĥ ŵàŕńĩńĝś`, +'s38c72e1cf120b8d8': `Ćŕēàţē Ĩńvĩţàţĩōń`, +'s38f774cd7e9b9dad': `Śĩĝń ũƥ.`, +'s3914cb410fca44d4': `Ĩmƥōŕţ`, +'s3926da5b20cdf3b6': `ŨŔĹ ũśēď ţō ŕēǫũēśţ ţĥē ĩńĩţĩàĺ ţōķēń. Ţĥĩś ŨŔĹ ĩś ōńĺŷ ŕēǫũĩŕēď ƒōŕ ŌÀũţĥ 1.`, +'s398f6ba74ba8943a': `Śēĺēćţ ƥŕōvĩďēŕś ţō àďď ţō àƥƥĺĩćàţĩōń`, +'s399cc2d67d92e957': `Ćōńƒĩďēńţĩàĺ`, +'s39c8c0bf4d927c9f': ` Àĺĺōŵ ĨĎƤ-ĩńĩţĩàţēď ĺōĝĩńś`, +'s39e436de1dc4df4f': `ĵŚ ŨŔĹ`, +'s3a135682bd30bdbb': `Ćŕēàţē Àƥƥ ƥàśśŵōŕď`, +'s3a3fae99373ce56b': `Śēĺēćţ ŵĥĩćĥ śćōƥēś ćàń ƀē ũśēď ƀŷ ţĥē ćĺĩēńţ. Ţĥē ćĺĩēńţ śţĩĺĺ ĥàś ţō śƥēćĩƒŷ ţĥē śćōƥē ţō àććēśś ţĥē ďàţà.`, +'s3a5fec3d73ac9edc': `Ćŕēàţē Ćēŕţĩƒĩćàţē-Ķēŷ Ƥàĩŕ`, +'s3ab772345f78aee0': `Ƒĺōŵ ĩńśƥēćţōŕ`, +'s3abecf1e778c9625': `Śēē mōŕē ĥēŕē:`, +'s3b34d9930e33bd46': `Śŷśţēm Ţàśķś`, +'s3b3c333481944862': `Śĥōŵ ďēţàĩĺś`, +'s3b58f8d2155ae90c': `Ƒĩēĺď Ķēŷ`, +'s3b68883dda2682ed': `Àśśēŕţĩōńś ĩś ēmƥţŷ`, +'s3b7b519444181264': `Vàĺĩďàţĩōń Ƥōĺĩćĩēś`, +'s3ba9b8aeb686d9f7': `Màţćĥ ēvēńţś ćŕēàţēď ƀŷ śēĺēćţēď mōďēĺ. Ŵĥēń ĺēƒţ ēmƥţŷ, àĺĺ mōďēĺś àŕē màţćĥēď.`, +'s3baf512851453712': `Ţŵĩĺĩō Àććōũńţ ŚĨĎ`, +'s3bb51cabb02b997e': `Ƒōŕmàţ: "ŵēēķś=3;ďàŷś=2;ĥōũŕś=3,śēćōńďś=2".`, +'s3be1d90ffa46b7f1': `Ēńţēŕƥŕĩśē ĩś ĩń ƥŕēvĩēŵ.`, +'s3bfa0258999fb629': `Ńēĝàţēś ţĥē ōũţćōmē ōƒ ţĥē ƀĩńďĩńĝ. Mēśśàĝēś àŕē ũńàƒƒēćţēď.`, +'s3c6de3f257e0c912': `Ŕēǫũēśţ`, +'s3cd84e82e83e35ad': `Ƥĺēàśē ēńţēŕ ŷōũŕ ćōďē`, +'s3d197283cb019b5a': `Ōvēŕvĩēŵ`, +'s3d2a8b86a4f5a810': str`Śũććēśśƒũĺĺŷ ćŕēàţēď ũśēŕ àńď àďďēď ţō ĝŕōũƥ ${0}`, +'s3d34068a31cab30b': `Ĩńţēŕńàĺ ĥōśţ ŚŚĹ Vàĺĩďàţĩōń`, +'s3de6db803012016a': `ĹĎÀƤ Àţţŕĩƀũţē màƥƥĩńĝ`, +'s3e211d29fa10f843': `ŕēƒēŕēńćē ŵĩĺĺ ƀē śēţ ţō àń ēmƥţŷ vàĺũē`, +'s3e3bb9e7cb1de4fd': `Śēĺēćţ ũśēŕś ţō àďď`, +'s3e59b8b2debf0209': `Ţĥĩś śţàĝē ćàń ƀē ĩńćĺũďēď ĩń ēńŕōĺĺmēńţ ƒĺōŵś ţō àććēƥţ ĩńvĩţàţĩōńś.`, +'s3e87ce98ba3c4d80': `Ćōńƒĩĝũŕē ĥōŵ ĺōńĝ ţōķēńś àŕē vàĺĩď ƒōŕ.`, +'s3e902999ddf7b50e': `ŚĆĨM (Śŷśţēm ƒōŕ Ćŕōśś-ďōmàĩń Ĩďēńţĩţŷ Màńàĝēmēńţ)`, +'s3e99ea082ca5ade9': `Ƒàĩĺēď ţō ƒēţćĥ`, +'s3ebf4c166058afce': `Ćĺēàŕ ƀàćķĝŕōũńď`, +'s3ed5607ad78d4224': `Ćĺēàŕ ćàćĥē`, +'s3ef3c252ada78076': `Ƒàĩĺēď Ĺōĝĩńś`, +'s3fb39fc45e840f78': `Ŕēƒēŕ ţō ďōćũmēńţàţĩōń`, +'s3fd219b045193507': `źxćvƀń śēţţĩńĝś`, +'s3feea7b49673bef2': `Ńō ĺōĝ mēśśàĝēś.`, +'s3ffa320128991a45': `Ƥŕōvĩďē śũƥƥōŕţ ƒōŕ ƥŕōţōćōĺś ĺĩķē ŚÀMĹ àńď ŌÀũţĥ ţō àśśĩĝńēď àƥƥĺĩćàţĩōńś.`, +'s4015746f55a8d89f': `Ĝēţ à ĺĩćēńśē`, +'s40830ec037f34626': `Ćōńƒĩĝũŕē ŚÀMĹ ƥŕōvĩďēŕ màńũàĺĺŷ`, +'s4090dd0c0e45988b': `Ŕēǫũēśţ ĨĎ`, +'s40b034801fcb843b': `Àĺĺōŵś/ďēńŷś ŕēǫũēśţś ƀàśēď ōń ţĥē ũśēŕś àńď/ōŕ ţĥē ĨƤś ŕēƥũţàţĩōń.`, +'s40b80eb4cc1f0e0c': `Ēďĩţ ßĩńďĩńĝ`, +'s40bf151b56a64f51': `Śēŕvēŕ àńď ćĺĩēńţ àŕē ƒũŕţĥēŕ ţĥàń 5 śēćōńďś àƥàŕţ.`, +'s40e2c72dae905a50': `Śţàţĩć: Śţàţĩć vàĺũē, ďĩśƥĺàŷēď àś-ĩś.`, +'s4165cd175bc4c0c4': `Ēxƥĩŕēś ōń`, +'s416a540b16275f2e': `Ćŕēàţē Ĝŕōũƥ`, +'s41706a202b6c40f1': `Ďōmàĩń`, +'s417b90913e05bc17': `Ƥŕēvĩēŵ`, +'s41b105819b67ee7a': `Śţàĝēś`, +'s41e035c4bb8d15f2': `Ĝēńēŕàĺ śŷśţēm śţàţũś`, +'s4207178ba0b99418': `À ńēŵēŕ vēŕśĩōń ōƒ ţĥē ƒŕōńţēńď ĩś àvàĩĺàƀĺē.`, +'s420d2cdedcaf8cd0': `Àũţĥēńţĩćàţĩńĝ ŵĩţĥ Ƥĺēx...`, +'s424f57afae0caac4': `Àďď ũśēŕś`, +'s427f788ff333f45b': `Ĺàũńćĥ ŨŔĹ`, +'s428b7859907f6db2': `Ŕēǫũĩŕēď: Ţĥē àũţĥēńţĩćàţōŕ MŨŚŢ ćŕēàţē à ďēďĩćàţēď ćŕēďēńţĩàĺ. Ĩƒ ĩţ ćàńńōţ, ţĥē ŔƤ ĩś ƥŕēƥàŕēď ƒōŕ àń ēŕŕōŕ ţō ōććũŕ`, +'s4291727352c4f295': `ßàśēď ōń ţĥē Ũśēŕ'ś ũśēŕńàmē`, +'s42a1ebe17efda727': `Ƒĩēĺď`, +'s42cbd8dca939a9c7': `Ćĥēćķ`, +'s42fc6f4b64eff5d9': `Śĩńĝĺē Ƥŕōmƥţś ţĥàţ ćàń ƀē ũśēď ƒōŕ Ƥŕōmƥţ Śţàĝēś.`, +'s43be3ce2439ffe9c': `Mĩńĩmũm àmōũńţ ōƒ Ďĩĝĩţś`, +'s43c1f927936f0a02': `Àśśēŕţĩōń ńōţ vàĺĩď ōń ōŕ àƒţēŕ ćũŕŕēńţ ţĩmē + ţĥĩś vàĺũē.`, +'s43fe853bf219a9b8': `Ţēmƥōŕàŕĩĺŷ àśśũmē ţĥē ĩďēńţĩţŷ ōƒ ţĥĩś ũśēŕ`, +'s4409ada9c5c2a7f8': `Ĩńàćţĩvē`, +'s4414164d120de61a': str`Ţĥē ƒōĺĺōŵĩńĝ ōƀĴēćţś ũśē ${0}`, +'s44536d20bb5c8257': `Ţĥĩś śēţţĩńĝ ōńĺŷ àƒƒēćţś ńēŵ Ēvēńţś, àś ţĥē ēxƥĩŕàţĩōń ĩś śàvēď ƥēŕ-ēvēńţ.`, +'s4476e9c50cfd13f4': `Ĝĺōƀàĺ śţàţũś`, +'s4498e890d47a8066': `ŌÀũţĥ2/ŌĨĎĆ (Ōƥēń Àũţĥōŕĩźàţĩōń/ŌƥēńĨĎ Ćōńńēćţ)`, +'s44b1f042790cd1a2': `ŚÀMĹ Ćōńƒĩĝũŕàţĩōń`, +'s44c90273f08fb718': `Ũśē ţĥĩś ƥŕōvĩďēŕ ŵĩţĥ ńĝĩńx'ś àũţĥ_ŕēǫũēśţ ōŕ ţŕàēƒĩķ'ś ƒōŕŵàŕďÀũţĥ. Ōńĺŷ à śĩńĝĺē ƥŕōvĩďēŕ ĩś ŕēǫũĩŕēď ƥēŕ ŕōōţ ďōmàĩń. Ŷōũ ćàń'ţ ďō ƥēŕ-àƥƥĺĩćàţĩōń àũţĥōŕĩźàţĩōń, ƀũţ ŷōũ ďōń'ţ ĥàvē ţō ćŕēàţē à ƥŕōvĩďēŕ ƒōŕ ēàćĥ àƥƥĺĩćàţĩōń.`, +'s44ea4e9a81ce730d': `Ēmàĩĺ śţàĝē`, +'s453b0c150a7ca58e': `Ēxàmƥĺē ĵŴŢ ƥàŷĺōàď (ƒōŕ ćũŕŕēńţĺŷ àũţĥēńţĩćàţēď ũśēŕ)`, +'s4557b6b9da258643': `Ƒōŕēćàśţ ēxţēŕńàĺ ũśēŕś`, +'s455a8fc21077e7f9': `Ŷōũ'vē śũććēśśƒũĺĺŷ àũţĥēńţĩćàţēď ŷōũŕ ďēvĩćē.`, +'s455de2f740b073fd': `Ēvēńţ ĩńƒō`, +'s457c639088c547c5': `Śũććēśśƒũĺĺŷ ćŕēàţēď ƥŕōvĩďēŕ.`, +'s45935843b1b5b496': `Ƒōŕm ďĩďń'ţ ŕēţũŕń à ƥŕōmĩśē ƒōŕ śũƀmĩţţĩńĝ`, +'s45960273852a61b2': `Ďàţē Ţĩmē`, +'s45cb501abd43ba52': `Ĝēńēŕàţē`, +'s45f9e7ce0897f9e5': `Ţēńàńţ`, +'s4647b2c92638d6fd': `Ţĥē ćēŕţĩƒĩćàţē ƒōŕ ţĥē àƀōvē ćōńƒĩĝũŕēď ßàśē ĎŃ. Àś à ƒàĺĺƀàćķ, ţĥē ƥŕōvĩďēŕ ũśēś à śēĺƒ-śĩĝńēď ćēŕţĩƒĩćàţē.`, +'s4660da32fb311ac0': `Ţàĩŵàńēśē Màńďàŕĩń`, +'s473f0143efa3f706': `Ţĥēśē ƥōĺĩćĩēś ćōńţŕōĺ ŵĥĩćĥ ũśēŕś ćàń àććēśś ţĥĩś àƥƥĺĩćàţĩōń.`, +'s47490298c17b753a': `Ŕēćēĩvē à ƥũśĥ ńōţĩƒĩćàţĩōń ōń ŷōũŕ ďēvĩćē.`, +'s4751df77cfd8a5f9': `Ćĥēćķ Ũśēŕńàmē`, +'s476ffc07e6d66f18': `Śũććēśśƒũĺĺŷ ũƥďàţēď ţōķēń.`, +'s477de089b505a6ea': `ŚĆĨM Ƥŕōvĩďēŕ`, +'s47a4983a2c6bb749': `Mōďēĺ ũƥďàţēď`, +'s47bd537a3bcebf19': `Ďōŵńĺōàď Ƥŕĩvàţē ķēŷ`, +'s4802636d55022ed3': `Ďēƒàũĺţ?`, +'s480c6c40a248f7d2': `Ũśē ŚŚĹ`, +'s482ae78809a6822b': `Ƒĺōŵ ũśēď ƀŷ àń àũţĥēńţĩćàţēď ũśēŕ ţō ćōńƒĩĝũŕē ţĥēĩŕ ƥàśśŵōŕď. Ĩƒ ēmƥţŷ, ũśēŕ ŵĩĺĺ ńōţ ƀē àƀĺē ţō ćōńƒĩĝũŕē ćĥàńĝē ţĥēĩŕ ƥàśśŵōŕď.`, +'s485c05d34eb00415': `Ďēĺēţē ćũŕŕēńţĺŷ śēţ ĩćōń.`, +'s48cf8fd56b1237ed': `Śũććēśśƒũĺĺŷ ũƥďàţēď ƒĺōŵ.`, +'s494e1ed913d9351a': `Ēďĩţ Ĝŕōũƥ`, +'s49730f3d5751a433': `Ĺōàďĩńĝ...`, +'s4a1e774ab25aa232': `Ĩńţēŕńàĺ Ĥōśţ`, +'s4a26798e1c3c37dd': `Vàĺĩďàţē ŚŚĹ Ćēŕţĩƒĩćàţēś ōƒ ũƥśţŕēàm śēŕvēŕś.`, +'s4a34a6be4c68ec87': `Ũśēŕś ćŕēàţēď`, +'s4a697f0b36c4fe83': `Àćţĩvē Ďĩŕēćţōŕŷ Ũśēŕ`, +'s4a6aa26413287069': `Śũććēśśƒũĺĺŷ ũƥďàţēď ďēţàĩĺś`, +'s4a87445f3108db7c': `Śēĺēćţ ōńē ōƒ ţĥē śōũŕćēś ƀēĺōŵ ţō ĺōĝĩń.`, +'s4a953e6234cb4808': `Ŵĥēń ćĥēćķēď, ţĥē ƥĺàćēĥōĺďēŕ ŵĩĺĺ ƀē ēvàĺũàţēď ĩń ţĥē śàmē ŵàŷ à ƥŕōƥēŕţŷ màƥƥĩńĝ ĩś. + Ĩƒ ţĥē ēvàĺũàţĩōń ƒàĩĺś, ţĥē ƥĺàćēĥōĺďēŕ ĩţśēĺƒ ĩś ŕēţũŕńēď.`, +'s4aacc4e0277c1042': `Ţōķēń ĺēńĝţĥ`, +'s4acf840bc792c3ae': `Ĺōćàĺ (ńōţĩƒĩćàţĩōńś ŵĩĺĺ ƀē ćŕēàţēď ŵĩţĥĩń àũţĥēńţĩķ)`, +'s4aee34a672e5cfc0': `Ćŕēàţēď ƀŷ`, +'s4af8a3ce5a600855': `Ĺēţ ţĥē ũśēŕ ĩďēńţĩƒŷ ţĥēmśēĺvēś ŵĩţĥ ţĥēĩŕ ũśēŕńàmē ōŕ Ēmàĩĺ àďďŕēśś.`, +'s4afb26a8fae257e9': `Ďĩŕēćţĺŷ àśśĩĝńēď`, +'s4b2a1b657c160f5b': `ĵŚŌŃ Ŵēƀ Ķēŷ ŨŔĹ. Ķēŷś ƒŕōm ţĥē ŨŔĹ ŵĩĺĺ ƀē ũśēď ţō vàĺĩďàţē ĵŴŢś ƒŕōm ţĥĩś śōũŕćē.`, +'s4b5af7736aedd6c1': `Ƥŕĩvàţē ķēŷ àvàĩĺàƀĺē?`, +'s4ba4473f3d4ec896': `Ńēŵ vēŕśĩōń àvàĩĺàƀĺē`, +'s4bd386db7302bb22': `Ćŕēàţē Ŵĩţĥ Ŵĩźàŕď`, +'s4c24b2baa377e870': `Śũććēśśƒũĺĺŷ ũƥďàţēď ćēŕţĩƒĩćàţē-ķēŷ ƥàĩŕ.`, +'s4c41f3f4c23e8eaa': `Ŵàŕńĩńĝ: Ţĥĩś ĝŕōũƥ ĩś ćōńƒĩĝũŕēď ŵĩţĥ śũƥēŕũśēŕ àććēśś. Àďďēď ũśēŕś ŵĩĺĺ ĥàvē śũƥēŕũśēŕ àććēśś.`, +'s4c4c504a48c3b7bd': `Ţŕàēƒĩķ (Śţàńďàĺōńē)`, +'s4c6534a118f52fdd': `Śēĺēćţ ƀàćķćĥàńńēĺ ƥŕōvĩďēŕś ŵĥĩćĥ àũĝmēńţ ţĥē ƒũńćţĩōńàĺĩţŷ ōƒ ţĥē màĩń ƥŕōvĩďēŕ.`, +'s4caed5b7a7e5d89b': `Ēńĝĺĩśĥ`, +'s4cdae7635e757555': `Ƒĩēĺďś à ũśēŕ ćàń ĩďēńţĩƒŷ ţĥēmśēĺvēś ŵĩţĥ. Ĩƒ ńō ƒĩēĺďś àŕē śēĺēćţēď, ţĥē ũśēŕ ŵĩĺĺ ōńĺŷ ƀē àƀĺē ţō ũśē śōũŕćēś.`, +'s4d00e5de1c8213b7': `Ćĺĩēńţ ĨĎ`, +'s4d00f1de1c82281b': `Ćĺĩēńţ ĨƤ`, +'s4d182bae8a578010': `ŚMŚ-ƀàśēď Àũţĥēńţĩćàţōŕś`, +'s4d31797d81e9cea3': `Ēxƥĺĩćĩţ Ćōńśēńţ`, +'s4d53f4b7ff33bedd': `Ũńĩǫũē ńàmē ōƒ ţĥĩś ƒĩēĺď, ũśēď ƒōŕ śēĺēćţĩńĝ ƒĩēĺďś ĩń ƥŕōmƥţ śţàĝēś.`, +'s4d7fe7be1c49896c': `Ŷōũ màŷ ćĺōśē ţĥĩś ƥàĝē ńōŵ.`, +'s4dcb9288f7e9e4d7': `Ĝŕōũƥ ũśēŕś ţōĝēţĥēŕ àńď ĝĩvē ţĥēm ƥēŕmĩśśĩōńś ƀàśēď ōń ţĥē mēmƀēŕśĥĩƥ.`, +'s4e28e2899e08a5f8': `Ďēţēŕmĩńēś ĥōŵ àũţĥēńţĩķ śēńďś ţĥē ŕēśƥōńśē ƀàćķ ţō ţĥē Śēŕvĩćē Ƥŕōvĩďēŕ.`, +'s4e474b9e2e737dd1': `Ũƥďàţē Ƥŕōxŷ Ƥŕōvĩďēŕ`, +'s4e5646b23e41231f': `Ţēxţ Àŕēà (ŕēàď-ōńĺŷ): Mũĺţĩĺĩńē ţēxţ ĩńƥũţ, ƀũţ ćàńńōţ ƀē ēďĩţēď.`, +'s4eb514ebcb80553d': `Ƥàŕēńţ`, +'s4f1ad6b48a5df506': `Ĺōĝś`, +'s4f1af2b48a5e249a': `Ĺōĝō`, +'s4f2e195d09e2868c': `ĹĎÀƤ (Ĺĩĝĥţŵēĩĝĥţ Ďĩŕēćţōŕŷ Àććēśś Ƥŕōţōćōĺ)`, +'s4ff2c202b4e5bdc5': `ßũĩĺţ-ĩń`, +'s502884e1977b2c06': `Ńēxţ śţàĝē`, +'s502d2473587032e1': `Ńō ƥŕēƒēŕēńćē ĩś śēńţ`, +'s505fbbdcbc6aa921': `Àďď ńēŵ ĝŕōũƥ`, +'s506beb486fa41241': `Àƥƥĺĩćàţĩōń àũţĥōŕĩźàţĩōńś`, +'s50719dda8f90abf4': `Vĩśĩƀĺē ĩń ţĥē ŨŔĹ.`, +'s50911ec1c8aee99a': `Ńō màţćĥĩńĝ ēvēńţś ćōũĺď ƀē ƒōũńď.`, +'s50c312bea93b6925': `Ēďĩţ Ƥōĺĩćŷ`, +'s50ebe627b4bc7d02': `ßĩńďĩńĝ`, +'s510c7add9e24c306': `Ĥĩďē ďēàćţĩvàţēď ũśēŕ`, +'s5116b89f7db1fbec': `Àĺĺōŵēď Ŕēďĩŕēćţ ŨŔĨś`, +'s512957aa09384646': `Ĺàũńćĥ`, +'s5140d157642d7362': `Ńōńē (ŕũĺē ďĩśàƀĺēď)`, +'s5170f9ef331949c0': `Śĥōŵ àŕƀĩţŕàŕŷ ĩńƥũţ ƒĩēĺďś ţō ţĥē ũśēŕ, ƒōŕ ēxàmƥĺē ďũŕĩńĝ ēńŕōĺĺmēńţ. Ďàţà ĩś śàvēď ĩń ţĥē ƒĺōŵ ćōńţēxţ ũńďēŕ ţĥē 'ƥŕōmƥţ_ďàţà' vàŕĩàƀĺē.`, +'s51c6b8403c2dc5d9': `Ƥũƀĺĩć ćĺĩēńţś àŕē ĩńćàƥàƀĺē ōƒ màĩńţàĩńĩńĝ ţĥē ćōńƒĩďēńţĩàĺĩţŷ àńď śĥōũĺď ũśē mēţĥōďś ĺĩķē ƤĶĆĒ. `, +'s51da4de00984fe51': `ÀƤĨ Àũţĥ Ũśēŕńàmē`, +'s51ea3a244c781b1f': `ŌƀĴēćţś ćŕēàţēď`, +'s51f92b6fa76656ca': `Ũńĥēàĺţĥŷ ōũţƥōśţś`, +'s523160b433311521': `Ĩƒ śēţ, ũśēŕś àŕē àƀĺē ţō ćōńƒĩĝũŕē ďēţàĩĺś ōƒ ţĥēĩŕ ƥŕōƒĩĺē.`, +'s526e2c66bd51ff5f': `Ŕōĺē Ĩńƒō`, +'s52b500138a2d2b8a': `Ũƥďàţē ĹĎÀƤ Śōũŕćē`, +'s52bdc80690a9a8dc': `Ŵĥēń ēńàƀĺēď, ţĥē śţàĝē ŵĩĺĺ àĺŵàŷś àććēƥţ ţĥē ĝĩvēń ũśēŕ ĩďēńţĩƒĩēŕ àńď ćōńţĩńũē.`, +'s53ad3455d9523b54': `Ćŕēàţē Ũśēŕ`, +'s53bbc3ae4b5fa1d0': `Śēē ĥēŕē.`, +'s5414356cc10e80fe': `Ŵĥēń ńō ũśēŕ ĩś ƥŕēśēńţ ĩń ţĥē ţĥē ƒĺōŵ ćōńţēxţ, à ńēŵ ũśēŕ ĩś ćŕēàţēď.`, +'s542a71bb8f41e057': `Ţēŕmĩńàţē ōţĥēŕ śēśśĩōńś`, +'s542ecb4130f6cea5': `Ĺĩńķ ţō à ũśēŕ ŵĩţĥ ĩďēńţĩćàĺ ũśēŕńàmē. Ćàń ĥàvē śēćũŕĩţŷ ĩmƥĺĩćàţĩōńś ŵĥēń à ũśēŕńàmē ĩś ũśēď ŵĩţĥ àńōţĥēŕ śōũŕćē`, +'s544142ce35050751': `Ţēśţ Ƥōĺĩćŷ`, +'s545d99afa61e4095': `Ćĥàŕàćţēŕś ŵĥĩćĥ àŕē ćōńśĩďēŕēď àś śŷmƀōĺś.`, +'s5462c7f56ed65e6c': `Ēmàĩĺ: Ţēxţ ƒĩēĺď ŵĩţĥ Ēmàĩĺ ţŷƥē.`, +'s54cd35e6224ba65d': `ßŷ ďēƒàũĺţ, ōńĺŷ ĩćōńś àŕē śĥōŵń ƒōŕ śōũŕćēś. Ēńàƀĺē ţĥĩś ţō śĥōŵ ţĥēĩŕ ƒũĺĺ ńàmēś.`, +'s54e7a23a95d99649': `Ţēxţ: Śĩmƥĺē Ţēxţ ĩńƥũţ`, +'s5506b35a1bceb141': `Ćĺĩēńţ ćēŕţĩƒĩćàţē ķēŷƥàĩŕ ţō àũţĥēńţĩćàţē àĝàĩńśţ ţĥē ĹĎÀƤ Śēŕvēŕ'ś Ćēŕţĩƒĩćàţē.`, +'s5515a897ae98bed9': `Ćēŕţĩƒĩćàţēś`, +'s554ce268e9727e79': `Ŷōũ ćàń ōńĺŷ śēĺēćţ ƥŕōvĩďēŕś ţĥàţ màţćĥ ţĥē ţŷƥē ōƒ ţĥē ōũţƥōśţ.`, +'s5572ac4d2208f5ec': `Śũććēśśƒũĺĺŷ ćŕēàţēď ƥŕōmƥţ.`, +'s55787f4dfcdce52b': `Śĩĝńĩńĝ Ķēŷ`, +'s5590dbf7e425789d': `Ĺàƀēĺ`, +'s5599c62bb78c631f': `Àďmĩń ĩńţēŕƒàćē`, +'s55d731be1ef66efe': `ßàśē ĎŃ`, +'s55eb75bedf96be0f': `Ţĥĩś ĩś ŕēćōmmēńďēď ōvēŕ ţĥē ŨƤŃ mōďē.`, +'s55fa598b754cc3cc': str`${0} (${1})`, +'s5615bb595ad6ded6': `ßĩńďĩńĝ Ţŷƥē`, +'s56806e9f63efa298': `Ŕēďĩŕēćţ ŨŔĨś`, +'s5694f9421c428227': `ßĩńď Ƥàśśŵōŕď`, +'s56fd9ed596c724fa': `Śēćŕēţ ķēŷ`, +'s57072ffb92b6c9c8': `Ďēƒĩńē ĥōŵ ńōţĩƒĩćàţĩōńś àŕē śēńţ ţō ũśēŕś, ĺĩķē Ēmàĩĺ ōŕ Ŵēƀĥōōķ.`, +'s57337099d96ce6d2': `Àĺŵàŷś ćŕēàţē ńēŵ ũśēŕś`, +'s57448f10eb973100': `Ćŕēàţē Ĩńvĩţàţĩōń Ĺĩńķś ţō ēńŕōĺĺ Ũśēŕś, àńď ōƥţĩōńàĺĺŷ ƒōŕćē śƥēćĩƒĩć àţţŕĩƀũţēś ōƒ ţĥēĩŕ àććōũńţ.`, +'s57730b6870e8916c': `Ďŕōƥďōŵń (ƒĩxēď ćĥōĩćē)`, +'s5795b310ab271d20': `Ţĥēśē ƀĩńďĩńĝś ćōńţŕōĺ ũƥōń ŵĥĩćĥ ēvēńţś ţĥĩś ŕũĺē ţŕĩĝĝēŕś. +ßĩńďĩńĝś ţō ĝŕōũƥś/ũśēŕś àŕē ćĥēćķēď àĝàĩńśţ ţĥē ũśēŕ ōƒ ţĥē ēvēńţ.`, +'s57b07e524f8f5c2a': str`Ēxţēŕńàĺ: ${0}`, +'s5819a49638f6d7cb': str`Àŕē ŷōũ śũŕē ŷōũ ŵàńţ ţō ďēĺēţē ${0} ${1}?`, +'s584d1c38ad20d560': `Àńŷ ĤŢMĹ ćàń ƀē ũśēď.`, +'s586d6bd2eca2da93': `Ũśēŕś`, +'s587ba266269297ab': `Ƥōĺĩćŷ ßĩńďĩńĝś`, +'s588796ee929a2e4c': `Ũśēŕ ďēţàĩĺś`, +'s58888ef1ee9b5bb8': `Ũśēŕ śţàţũś`, +'s58c867aac77b9158': `Ĺàśţ ĺōĝĩń`, +'s58cd9c2fe836d9c6': `Ŕēţũŕń ĥōmē`, +'s58d1eb482059da12': `Ńēŵ ƥŕōvĩďēŕ`, +'s58fd2aafa4261c55': `Śũććēśśƒũĺĺŷ ũƥďàţēď àƥƥĺĩćàţĩōń.`, +'s592425143c4f5834': `ŚũƀĴēćţ-àĺţ ńàmē`, +'s592ab7d2bc1b8973': `Ũśēŕ ƒĩēĺďś`, +'s593db2c00d6516a2': `ŚMŢƤ Ƥàśśŵōŕď`, +'s5944355d69db1fb8': `Àďďĩţĩōń Ĝŕōũƥ ĎŃ`, +'s59572c1be31a812e': `Ƒàĩĺēď ţō ďēĺēţē ƒĺōŵ ćàćĥē`, +'s59691290a232c687': `Śēĺēćţēď ƥōĺĩćĩēś àŕē ēxēćũţēď ŵĥēń ţĥē śţàĝē ĩś śũƀmĩţţēď ţō vàĺĩďàţē ţĥē ďàţà.`, +'s59b6028f19d15cda': `Ńō ĩńţēĝŕàţĩōń àćţĩvē`, +'s59bf194136d0d13a': `Ũśēď ţō ĺōĝĩń ũśĩńĝ à ƒĺōŵ ēxēćũţōŕ`, +'s59dc0eda07f9e2b6': `Ƥŕōƥēŕţŷ Màƥƥĩńĝ(ś)`, +'s59f5eda30a904b75': `ĵŴĶŚ ŨŔĹ`, +'s5a13f4bbe004503f': `Ćĥēćķś ĩƒ ţĥē ŕēǫũēśţ'ś ũśēŕ'ś ƥàśśŵōŕď ĥàś ƀēēń ćĥàńĝēď ĩń ţĥē ĺàśţ x ďàŷś, àńď ďēńŷś ƀàśēď ōń śēţţĩńĝś.`, +'s5a15a8f39c699273': `Màţćĥ ēvēńţś ćŕēàţēď ƀŷ śēĺēćţēď àƥƥĺĩćàţĩōń. Ŵĥēń ĺēƒţ ēmƥţŷ, àĺĺ àƥƥĺĩćàţĩōńś àŕē màţćĥēď.`, +'s5a48d5171e1a1522': `Ŵàŕńĩńĝ: Ƥōĺĩćŷ ĩś ńōţ àśśĩĝńēď.`, +'s5a802e46a033c8af': `Ũśēŕ'ś ƥŕĩmàŕŷ ĩďēńţĩƒĩēŕ. 150 ćĥàŕàćţēŕś ōŕ ƒēŵēŕ.`, +'s5acb607b40356974': `ĜĨĎ śţàŕţ ńũmƀēŕ`, +'s5adafce329aaa853': `Àũţĥēńţĩćàţōŕ ţŷƥē ńàmē`, +'s5b1fb0d4c0daeba8': `Ćŕēàţē ßĩńďĩńĝ`, +'s5b6b6e2cb884d59f': `Ďũō Àũţĥ ÀƤĨ`, +'s5b8ee296ed258568': `Ţĥē ćũŕŕēńţ ţēńàńţ mũśţ ĥàvē à ŕēćōvēŕŷ ƒĺōŵ ćōńƒĩĝũŕēď ţō ũśē à ŕēćōvēŕŷ ĺĩńķ`, +'s5be3b0567172e415': `Vēŕĩƒĩćàţĩōń Ćēŕţĩƒĩćàţē`, +'s5be3c6d61cd9182f': `Ńōţĩƒĩćàţĩōńś`, +'s5c18cae48b93138c': `Śēśśĩōńś`, +'s5c1dc164c89ac13e': `Ũńķńōŵń ƥŕōvĩďēŕ ţŷƥē`, +'s5cd31f4a88adf180': `Ēďĩţ Ũśēŕ`, +'s5d0a14d29ebad561': `Ƒĺōŵ ţō ũśē ŵĥēń ēńŕōĺĺĩńĝ ńēŵ ũśēŕś.`, +'s5d6af4c100ad321b': str`Ćŕēàţē ${0}`, +'s5d7748b1d2363478': str`Àŕē ŷōũ śũŕē ŷōũ ŵàńţ ţō ŕēmōvē ţĥē śēĺēćţēď ũśēŕś ƒŕōm ţĥē ĝŕōũƥ ${0}?`, +'s5d9f93f1fe1c19d3': `Ţŕàēƒĩķ (Ĩńĝŕēśś)`, +'s5da52af9b083c29a': `Mōďēĺ`, +'s5deac600e329de1b': `Ĺōĝ mēśśàĝēś`, +'s5e169e1bac20b4a6': `Ōũţƥōśţś`, +'s5e8250fb85d64c23': `Ćĺōśē`, +'s5e830ae7688d1219': `Śţàĝē ũśēď ţō ćōńƒĩĝũŕē àń ŚMŚ-ƀàśēď ŢŌŢƤ àũţĥēńţĩćàţōŕ.`, +'s5eaf1d304e03ed4b': `Ďũō Ũśēŕ ĨĎ`, +'s5ee6f1b84e9ebc69': `Àśśĩĝń ţō ńēŵ ŕōĺē`, +'s5f343a43e7ea9f91': `Ēŕŕōŕ`, +'s5f4586bc1e2740e6': `Ćĺēàŕ śēàŕćĥ`, +'s5f496533610103f2': `Àƥƥĺĩćàţĩōń àũţĥōŕĩźēď`, +'s5f5bf4ef2bd93c04': `Ĝŕōũƥ màƥƥĩńĝś ćàń ōńĺŷ ƀē ćĥēćķēď ĩƒ à ũśēŕ ĩś àĺŕēàďŷ ĺōĝĝēď ĩń ŵĥēń ţŕŷĩńĝ ţō àććēśś ţĥĩś śōũŕćē.`, +'s5f71fa3c53828e30': `Ŕēmōvē ƒŕōm Ĝŕōũƥ(ś)`, +'s5fbaeb14f42815e5': `Àũţĥēńţĩćàţōŕ Àţţàćĥmēńţ`, +'s5fc4269c2addee61': `Ũńĩǫũē ĩďēńţĩƒĩēŕ ţĥē ţōķēń ĩś ŕēƒēŕēńćēď ƀŷ.`, +'s60cc554fde2676cb': `À ńōń-ŕēmōvàƀĺē àũţĥēńţĩćàţōŕ, ĺĩķē ŢōũćĥĨĎ ōŕ Ŵĩńďōŵś Ĥēĺĺō`, +'s60d891ed3ee9ebc5': `Śũććēśśƒũĺĺŷ ćŕēàţēď śōũŕćē.`, +'s60edbcfac8ed1f90': `Ţĥē śţàŕţ ƒōŕ ũĩďŃũmƀēŕś, ţĥĩś ńũmƀēŕ ĩś àďďēď ţō ţĥē ũśēŕ.Ƥķ ţō màķē śũŕē ţĥàţ ţĥē ńũmƀēŕś àŕēń'ţ ţōō ĺōŵ ƒōŕ ƤŌŚĨX ũśēŕś. Ďēƒàũĺţ ĩś 2000 ţō ēńśũŕē ţĥàţ ŵē ďōń'ţ ćōĺĺĩďē ŵĩţĥ ĺōćàĺ ũśēŕś ũĩďŃũmƀēŕ`, +'s6152026c364ad974': `Śōũŕćēś ōƒ ĩďēńţĩţĩēś, ŵĥĩćĥ ćàń ēĩţĥēŕ ƀē śŷńćēď ĩńţō àũţĥēńţĩķ'ś ďàţàƀàśē, ōŕ ćàń ƀē ũśēď ƀŷ ũśēŕś ţō àũţĥēńţĩćàţē àńď ēńŕōĺĺ ţĥēmśēĺvēś.`, +'s618d4e53f455c834': `Ũśē ĝĺōƀàĺ śēţţĩńĝś`, +'s6196153c4b0c1ea0': `Ĩńśţàĺĺ`, +'s61b6f3e6bc59c6dd': `Ćŕēàţē Ƥŕōmƥţ`, +'s61bd841e66966325': `Ēxţēŕńàĺ àƥƥĺĩćàţĩōńś ţĥàţ ũśē àũţĥēńţĩķ àś àń ĩďēńţĩţŷ ƥŕōvĩďēŕ vĩà ƥŕōţōćōĺś ĺĩķē ŌÀũţĥ2 àńď ŚÀMĹ. Àĺĺ àƥƥĺĩćàţĩōńś àŕē śĥōŵń ĥēŕē, ēvēń ōńēś ŷōũ ćàńńōţ àććēśś.`, +'s61ccefd661ac2296': `Ĩƒ ţĥĩś ƒĺàĝ ĩś śēţ, ţĥĩś Śţàĝē ŵĩĺĺ Ĵũmƥ ţō ţĥē ńēxţ Śţàĝē ŵĥēń ńō Ĩńvĩţàţĩōń ĩś ĝĩvēń. ßŷ ďēƒàũĺţ ţĥĩś Śţàĝē ŵĩĺĺ ćàńćēĺ ţĥē Ƒĺōŵ ŵĥēń ńō ĩńvĩţàţĩōń ĩś ĝĩvēń.`, +'s61e48919db20538a': `ŨƤŃ`, +'s61eacb19db252f5e': `ŨŔĹ`, +'s6238f519db67980d': `ŨĨĎ`, +'s624256f8a4bb4c89': `Ńōţĩƒĩćàţĩōń ţŕàńśƥōŕţ(ś)`, +'s62ddcbaaa91d120d': `Ŕēƥũţàţĩōń śćōŕēś`, +'s62e7f6ed7d9cb3ca': `Ƥŕēţēńď ũśēŕ ēxĩśţś`, +'s62f7c59b0606a8d6': `Àũţĥōŕĩźàţĩōń ƒĺōŵ`, +'s62f93cfcb45d5a06': `Śũƥēŕũśēŕ ƥŕĩvĩĺēĝēś?`, +'s6336fa345e96dde9': `Ēvàĺũàţē ŵĥēń śţàĝē ĩś ŕũń`, +'s634448e4942cf452': `Ēďĩţ ţĥē ńōţēś àţţŕĩƀũţē ōƒ ţĥĩś ĝŕōũƥ ţō àďď ńōţēś ĥēŕē.`, +'s634d041fd954ab20': `ÀƤĨ Àũţĥ ƥàśśŵōŕď`, +'s63cb05541b294335': `Ĩś śũƥēŕũśēŕ`, +'s63d894b1ddb06289': `Ďēśćŕĩƥţĩōń`, +'s63d89a6ae0969c30': `Ţō ĺēţ à ũśēŕ ďĩŕēćţĺŷ ŕēśēţ à ţĥēĩŕ ƥàśśŵōŕď, ćōńƒĩĝũŕē à ŕēćōvēŕŷ ƒĺōŵ ōń ţĥē ćũŕŕēńţĺŷ àćţĩvē ţēńàńţ.`, +'s63e03c70f67ebf9c': `Ćōńţēxţ`, +'s63e54b86e2a2cc43': `Ţēxţ Àŕēà: Mũĺţĩĺĩńē ţēxţ ĩńƥũţ`, +'s63e71d20d1eaca93': `Ĝēŕmàń`, +'s643d8f2e5e5e930d': `Śũććēśśƒũĺĺŷ ũƥďàţēď màƥƥĩńĝ.`, +'s64a33dcdaf90af26': `Ũśēŕ Ĩńƒō`, +'s64ef2a6c2dd1d3d1': `Ēďĩţ`, +'s65ca2f256ea09c11': `Àďď ţō ēxĩśţĩńĝ ĝŕōũƥ`, +'s65d507f1513c2f03': `Àĺĺōŵś àũţĥēńţĩćàţĩōń ƒĺōŵś ĩńĩţĩàţēď ƀŷ ţĥē ĨďƤ. Ţĥĩś ćàń ƀē à śēćũŕĩţŷ ŕĩśķ, àś ńō vàĺĩďàţĩōń ōƒ ţĥē ŕēǫũēśţ ĨĎ ĩś ďōńē.`, +'s65d67612999165e9': str`Ēvēńţ ${0}`, +'s662fcb3761ad9df7': `Ŵĥēń ũśēď ĩń ćōńĴũńćţĩōń ŵĩţĥ à Ũśēŕ Ŵŕĩţē śţàĝē, ũśē àţţŕĩƀũţēś.ƒōō ţō ŵŕĩţē àţţŕĩƀũţēś.`, +'s66313b45b69cfc88': `Ćĥēćķ ţĥē ŕēĺēàśē ńōţēś`, +'s66722bc2ea775e05': `Ďĩśàƀĺēď`, +'s66ffc06300964849': `Ũśēŕ ōƀĴēćţ ƒĩĺţēŕ`, +'s670ad066cc0e50a3': str`Ĺōĝĩń ţō ćōńţĩńũē ţō ${0}.`, +'s67560d7e37d984c3': `Ƥōĺĩćŷ / Ũśēŕ / Ĝŕōũƥ`, +'s67664f8ee9aea98d': `Ƥĺēàśē ēńţēŕ ŷōũŕ Ćōďē`, +'s67749057edb2586b': `Ĺōĝōũţ`, +'s677f1b675fc21bb1': `Śēćŕēţ:`, +'s67ac11d47f1ce794': `ŴēƀÀũţĥń ŕēǫũĩŕēś ţĥĩś ƥàĝē ţō ƀē àććēśśēď vĩà ĤŢŢƤŚ.`, +'s67d858051b34c38b': `Mēţĥōď'ś ďĩśƥĺàŷ Ńàmē.`, +'s67dedada007d4067': str`Ƒàĩĺēď ţō ďĩśćōńńēćţēď śōũŕćē: ${0}`, +'s67e136af8fc1107b': `Àśśĩĝń ƥēŕmĩśśĩōń`, +'s67e20cd8018d7e3c': `Ćũŕŕēńţĺŷ śēţ ţō:`, +'s681074b6c1f19c08': `Ńōţ ćōńƒĩĝũŕēď àćţĩōń`, +'s6827a456c9dfc6ee': `Ŵĥēń ũśĩńĝ ĨĎƤ-ĩńĩţĩàţēď ĺōĝĩńś, ţĥē ŕēĺàŷ śţàţē ŵĩĺĺ ƀē śēţ ţō ţĥĩś vàĺũē.`, +'s6835db03209b4f94': `Àũţōmàţē àńď ţēmƥĺàţē ćōńƒĩĝũŕàţĩōń ŵĩţĥĩń àũţĥēńţĩķ.`, +'s6873bdbfa24615fb': `Ŵēƀĥōōķ ŨŔĹ`, +'s68a50b1ee6efee7b': str`${0} ĩś àvàĩĺàƀĺē!`, +'s68d69ad0271c8ef6': `Ćŕēàţē à ńēŵ ōũţƥōśţ ĩńţēĝŕàţĩōń.`, +'s68f935c9ca792016': `àƥƥ1 ŕũńńĩńĝ ōń àƥƥ1.ēxàmƥĺē.ćōm`, +'s6931695c4f563bc4': `Ţĥē ĺēńĝţĥ ōƒ ţĥē ĩńďĩvĩďũàĺ ĝēńēŕàţēď ţōķēńś. Ćàń ƀē ĩńćŕēàśēď ţō ĩmƥŕōvē śēćũŕĩţŷ.`, +'s693d975d38ff0214': `Śĩĝńàţũŕē àĺĝōŕĩţĥm`, +'s6941a67f0038ba4c': `Śţàĝēś ũśēď ţō ćōńƒĩĝũŕē Àũţĥēńţĩćàţōŕ ŵĥēń ũśēŕ ďōēśń'ţ ĥàvē àńŷ ćōmƥàţĩƀĺē ďēvĩćēś. Àƒţēŕ ţĥĩś ćōńƒĩĝũŕàţĩōń Śţàĝē ƥàśśēś, ţĥē ũśēŕ ĩś ńōţ ƥŕōmƥţēď àĝàĩń.`, +'s6985c401e1100122': `Mēśśàĝē śĥōŵń ŵĥēń ţĥĩś śţàĝē ĩś ŕũń.`, +'s69a56a3022c4be7f': `Ţēńàńţ(ś)`, +'s69bd313dd12fc2f3': `Ƥŕōƒĩĺē ŨŔĹ`, +'s6a3cf855140b9511': `Ŕēǫũĩŕēď: Ũśēŕ vēŕĩƒĩćàţĩōń mũśţ ōććũŕ.`, +'s6a406aecb2c0e5c5': `Ēńŕōĺĺ`, +'s6a615f6165ef01c9': `Śţàŕţ àũţōmàţĩć ĩmƥōŕţ`, +'s6a66759749bf31ed': `Ďĩŕēćţ ƀĩńďĩńĝ`, +'s6a89bb10338369b4': `Ĝō ţō ƥŕēvĩōũś ƥàĝē`, +'s6ab73c998850c5ab': `Ēxƥŕēśśĩōń`, +'s6abff64e7ff7fde9': `Àvàţàŕ ĩmàĝē`, +'s6ac670086eb137c6': `Ŕēćōvēŕŷ`, +'s6ae0d087036e6d6d': `Śēĺēćţ àń àũţĥēńţĩćàţĩōń mēţĥōď.`, +'s6b1ed7507f26cb4a': `Ƒàĩĺũŕē ŕēśũĺţ`, +'s6b2beba7ab637e9e': `Ŕōĺēś`, +'s6b5002c605b39d6d': `Ćŕēàţē Ńōţĩƒĩćàţĩōń Ţŕàńśƥōŕţ`, +'s6b6e6eb037aef7da': `Ũśē ţĥē ũśēŕńàmē àńď ƥàśśŵōŕď ƀēĺōŵ ţō àũţĥēńţĩćàţē. Ţĥē ƥàśśŵōŕď ćàń ƀē ŕēţŕĩēvēď ĺàţēŕ ōń ţĥē Ţōķēńś ƥàĝē.`, +'s6b79e73ca77148a0': `Ōũţƥōśţ Ĩńţēĝŕàţĩōńś`, +'s6b85380416964890': `Ńēĝàţē ŕēśũĺţ`, +'s6b9a1dd402750a8a': `Ŕēśţàŕţś ţĥē ƒĺōŵ ƒŕōm ţĥē ƀēĝĩńńĩńĝ, ŵĥĩĺē ķēēƥĩńĝ ţĥē ƒĺōŵ ćōńţēxţ`, +'s6ba50bb0842ba1e2': `Àƥƥĺĩćàţĩōńś`, +'s6c3daaac4eed12f9': `Ćĥàńĝēĺōĝ`, +'s6c410fedda2a575f': `Ũƥďàţē àvàĩĺàƀĺē`, +'s6c607d74bdfe9f36': `Ũśēŕ màƥƥĩńĝś ćàń ōńĺŷ ƀē ćĥēćķēď ĩƒ à ũśēŕ ĩś àĺŕēàďŷ ĺōĝĝēď ĩń ŵĥēń ţŕŷĩńĝ ţō àććēśś ţĥĩś śōũŕćē.`, +'s6c70a73265e14521': `Ĺĩńķ ţō à ũśēŕ ŵĩţĥ ĩďēńţĩćàĺ ēmàĩĺ àďďŕēśś. Ćàń ĥàvē śēćũŕĩţŷ ĩmƥĺĩćàţĩōńś ŵĥēń à śōũŕćē ďōēśń'ţ vàĺĩďàţē ēmàĩĺ àďďŕēśśēś`, +'s6c8f05e3be04f62a': `Ŕēĝĩśţēŕ ďēvĩćē`, +'s6d3b4d0561ba1cff': `Ƥũƀĺĩśĥēŕ`, +'s6d5bce4321f57cda': `Ũńēńŕōĺĺmēńţ`, +'s6df42b3072a2d7e9': `Ńĝĩńx (Ĩńĝŕēśś)`, +'s6dfb7283452f78fe': `Àũţĥōŕĩźàţĩōń`, +'s6dfd15978586d05f': str`Ŵēĺćōmē, ${0}.`, +'s6e09a19aa3952509': `Àƥƥś ŵĩţĥ mōśţ ũśàĝē`, +'s6e4c997a101b6abf': `ŵĩţĥ ćũŕŕēńţ ũśēŕ`, +'s6e612e5a6a359bbb': `Ōƥţĩōńàĺ Ƥŕĩvàţē Ķēŷ. Ĩƒ ţĥĩś ĩś śēţ, ŷōũ ćàń ũśē ţĥĩś ķēŷƥàĩŕ ƒōŕ ēńćŕŷƥţĩōń.`, +'s6e6e737601f44b2c': `Śũććēśśƒũĺĺŷ ćĺēàŕēď ńōţĩƒĩćàţĩōńś`, +'s6ec8c9d11310300a': `Ōŕƥĥàńēď`, +'s6f270e1668c036e9': `Śũććēśśƒũĺĺŷ ũƥďàţēď ōũţƥōśţ.`, +'s6f328f2d8382d998': `Ćōńśēńţ ēxƥĩŕēś ĩń`, +'s6f367f5604d5056d': `Ćŕēàţē àńď ƀĩńď Śţàĝē`, +'s6f5bb31e2733ecd5': `Ćŕēàţē à ĺĩńķ ƒōŕ ţĥĩś ũśēŕ ţō ŕēśēţ ţĥēĩŕ ƥàśśŵōŕď`, +'s6f857299d5db1ecf': `Ƒĺōŵ(ś)`, +'s6f96a78d81ef277c': `Ƥōśţ-àũţō ƀĩńďĩńĝ`, +'s6fcd9b5a87ceccd6': `Ōƥēń śēţţĩńĝś`, +'s6fe64b4625517333': `Ƥōŵēŕēď ƀŷ àũţĥēńţĩķ`, +'s7031e6928c44cedd': `Ũśēŕ ĩńţēŕƒàćē`, +'s706af57c1af42c6d': `Ĥĩďďēń: Ĥĩďďēń ƒĩēĺď, ćàń ƀē ũśēď ţō ĩńśēŕţ ďàţà ĩńţō ƒōŕm.`, +'s7073489bb01b3c24': `Àƥƥĺĩćàţĩōń àĺŕēàďŷ ĥàś àććēśś ţō ţĥē ƒōĺĺōŵĩńĝ ƥēŕmĩśśĩōńś:`, +'s708d9a4a0db0be8f': `Ćĥēćķ śţàţũś`, +'s70f6471de355b98c': `ĤŢŢƤ-ßàśĩć Ƥàśśŵōŕď Ķēŷ`, +'s713d147e1761d0f0': `Ũƥ-ţō-ďàţē!`, +'s713e8666ed70f8b3': `Ćŕēàţē à ńēŵ ƥŕōƥēŕţŷ màƥƥĩńĝ.`, +'s71633a67e0d7c0e4': `Śũććēśśƒũĺĺŷ ĩmƥōŕţēď ďēvĩćē.`, +'s7181a5504472e856': `Àƥƥĺŷ ćĥàńĝēś`, +'s71c5d51d5a357dbd': `Ďōń'ţ śĥōŵ ţĥĩś mēśśàĝē àĝàĩń.`, +'s71dcd9cf808449aa': `Ţōķēń(ś)`, +'s720594461542943f': `Àďď Ũśēŕ`, +'s721d94ae700b5dfd': `Ďũō àćţĩvàţĩōń`, +'s7220fcf4fec4e0df': `Ŕēmōvē Ũśēŕś(ś)`, +'s72559845d38bf688': `Ćōńƒĩĝũŕē ĥōŵ ĺōńĝ àććēśś ţōķēńś àŕē vàĺĩď ƒōŕ.`, +'s72c1c17a9bdc76ad': `Ĥēĺƥ ţēxţ`, +'s72e102414fec81a4': `Śũććēśśƒũĺĺŷ ćŕēàţēď ŕũĺē.`, +'s730182ad28374cda': `ŌƀĴēćţ`, +'s7301a7069b7bc83e': `Ŕēvōķēď?`, +'s733f83ff9d50da30': `Ćōńƒĩĝũŕē ţĥē màxĩmũm àĺĺōŵēď ţĩmē ďŕĩƒţ ƒōŕ àń àśśēŕţĩōń.`, +'s73c13e5a6f5e38a3': `Ďēvĩćē ćĺàśśēś`, +'s74475586afc1fb0f': `Śēĺēćţ ţŷƥē`, +'s745a55f9abf9f2e5': `Śĩďēƀàŕ ŕĩĝĥţ`, +'s7468e87263dfff7e': `Ĩďēńţĩƒĩēŕ`, +'s7489f76224f8120d': `Ƒōŕŵàŕď àũţĥ (śĩńĝĺē àƥƥĺĩćàţĩōń)`, +'s74cb3d66f6a668e1': `Ďōćũmēńţàţĩōń`, +'s74f809a69e030351': `ŌƥēńĨĎ Ćōńƒĩĝũŕàţĩōń Ĩśśũēŕ`, +'s7520286c8419a266': `Ōƥţĩōńàĺ ďàţà ŵĥĩćĥ ĩś ĺōàďēď ĩńţō ţĥē ƒĺōŵ'ś 'ƥŕōmƥţ_ďàţà' ćōńţēxţ vàŕĩàƀĺē. ŶÀMĹ ōŕ ĵŚŌŃ.`, +'s75a27f43413e02c5': `Ƒŕēńćĥ`, +'s75d5ff5dd8d3c6d2': `Śũććēśśƒũĺĺŷ ũƥďàţēď ĝŕōũƥ.`, +'s7609ee54e8a7b05a': `Vàĺĩďĩţŷ ďàŷś`, +'s764bccb30868bf62': `Ţĥē ēxţēŕńàĺ ŨŔĹ ŷōũ'ĺĺ àććēśś ţĥē àƥƥĺĩćàţĩōń àţ. Ĩńćĺũďē àńŷ ńōń-śţàńďàŕď ƥōŕţ.`, +'s76768bebabb7d543': `Ƒĩēĺď ŵĥĩćĥ ćōńţàĩńś mēmƀēŕś ōƒ à ĝŕōũƥ. Ńōţē ţĥàţ ĩƒ ũśĩńĝ ţĥē "mēmƀēŕŨĩď" ƒĩēĺď, ţĥē vàĺũē ĩś àśśũmēď ţō ćōńţàĩń à ŕēĺàţĩvē ďĩśţĩńĝũĩśĥēď ńàmē. ē.ĝ. 'mēmƀēŕŨĩď=śōmē-ũśēŕ' ĩńśţēàď ōƒ 'mēmƀēŕŨĩď=ćń=śōmē-ũśēŕ,ōũ=ĝŕōũƥś,...'`, +'s7683363cdf78cf31': `Ũśēŕ vēŕĩƒĩćàţĩōń ĩś ƥŕēƒēŕŕēď ĩƒ àvàĩĺàƀĺē, ƀũţ ńōţ ŕēǫũĩŕēď.`, +'s76881c01b6a3a8c7': `Ćōńśēńţ(ś)`, +'s76da2c978dcc5ef4': `Śũććēśśƒũĺĺŷ ćĺēàŕēď ƥōĺĩćŷ ćàćĥē`, +'s76f5dca6404a1210': `Ŵēƀĥōōķ (Śĺàćķ/Ďĩśćōŕď)`, +'s77099d752f1ab773': `Ŕēĺàţēď àćţĩōńś`, +'s77299a9d3dd932cd': str`Śũććēśśƒũĺĺŷ ĩmƥōŕţēď ${0} ďēvĩćēś.`, +'s773aa6621d7e37b7': `Ćŕēàţē Ţēńàńţ`, +'s77505ee5d2e45e53': `Ŕũń ţĥē ďēmō ŵĩźàŕď`, +'s7754f0e34f27fb6e': `Ďēśćŕĩƥţĩōń śĥōŵń ţō ţĥē ũśēŕ ŵĥēń ćōńśēńţĩńĝ. Ĩƒ ĺēƒţ ēmƥţŷ, ţĥē ũśēŕ ŵōń'ţ ƀē ĩńƒōŕmēď.`, +'s77994108c886b965': `Ƒàĩĺēď àţţēmƥţś ƀēƒōŕē ćàńćēĺ`, +'s77e8668a27dbc402': `Śēŕvĩćē àććōũńţś śĥōũĺď ƀē ũśēď ƒōŕ màćĥĩńē-ţō-màćĥĩńē àũţĥēńţĩćàţĩōń ōŕ ōţĥēŕ àũţōmàţĩōńś.`, +'s77f572257f69a8db': `Ƥŕōƥēŕţŷ Màƥƥĩńĝ ēxćēƥţĩōń`, +'s78ab26da7f067de8': `Śēĺēćţ ƥēŕmĩśśĩōńś ţō ĝŕàńţ`, +'s78c08391ffbfb8c0': `Ţĥēśē ƀĩńďĩńĝś ćōńţŕōĺ ŵĥĩćĥ ũśēŕś ćàń àććēśś ţĥĩś ƒĺōŵ.`, +'s78fd8c03f8c967f3': `Ţōķēńś`, +'s7968dbed9b106c29': `Ńō śēŕvĩćēś àvàĩĺàƀĺē.`, +'s7989db5f4819af89': `Ƒĺōŵ ũśēď ţō ĺōĝōũţ. Ĩƒ ĺēƒţ ēmƥţŷ, ţĥē ƒĩŕśţ àƥƥĺĩćàƀĺē ƒĺōŵ śōŕţēď ƀŷ ţĥē śĺũĝ ĩś ũśēď.`, +'s79ad406777feab1f': `Ćōńţĩńũē ƒĺōŵ ŵĩţĥōũţ ĩńvĩţàţĩōń`, +'s79aed8154d7c472c': `Śũććēśśƒũĺĺŷ ćŕēàţēď ōũţƥōśţ.`, +'s79e8cc71a5975b04': `Mēśśàĝē`, +'s7a141f1b61074fbe': `ßàśĩć-Àũţĥ`, +'s7a322c89298dd27c': `Śũććēśśƒũĺĺŷ ũƥďàţēď ĩńvĩţàţĩōń.`, +'s7a4f059aaa029719': `Ćōńńēćţ`, +'s7a6b3453209e1066': `Ţĥēŕē ŵàś àń ēŕŕōŕ ćŕēàţĩńĝ ţĥē àƥƥĺĩćàţĩōń, ƀũţ ńō ēŕŕōŕ mēśśàĝē ŵàś śēńţ. Ƥĺēàśē ŕēvĩēŵ ţĥē śēŕvēŕ ĺōĝś.`, +'s7abc9d08b0f70fd6': `Śţàţĩć ţōķēń`, +'s7b105164d209f670': `Ŕēǫũĩŕē àũţĥēńţĩćàţĩōń`, +'s7b18721be331241e': `Śēĺēćţ ŵĥĩćĥ ţŕàńśƥōŕţś śĥōũĺď ƀē ũśēď ţō ńōţĩƒŷ ţĥē ũśēŕ. Ĩƒ ńōńē àŕē śēĺēćţēď, ţĥē ńōţĩƒĩćàţĩōń ŵĩĺĺ ōńĺŷ ƀē śĥōŵń ĩń ţĥē àũţĥēńţĩķ ŨĨ.`, +'s7b1fba26d245cb1c': `Ŵĥēń ũśĩńĝ àń ēxţēŕńàĺ ĺōĝĝĩńĝ śōĺũţĩōń ƒōŕ àŕćĥĩvĩńĝ, ţĥĩś ćàń ƀē śēţ ţō "mĩńũţēś=5".`, +'s7b298427bdea81ae': `Ĩƒ śēţ, ţĥē ŌÀũţĥ Ďēvĩćē Ćōďē ƥŕōƒĩĺē ćàń ƀē ũśēď, àńď ţĥē śēĺēćţēď ƒĺōŵ ŵĩĺĺ ƀē ũśēď ţō ēńţēŕ ţĥē ćōďē.`, +'s7b3148ffba9f4527': `Ĩƒ ţĥē ƥàśśŵōŕď'ś śćōŕē ĩś ĺēśś ţĥàń ōŕ ēǫũàĺ ţĥĩś vàĺũē, ţĥē ƥōĺĩćŷ ŵĩĺĺ ƒàĩĺ.`, +'s7b576aa71acb36a6': `Ďĩàĝŕàm`, +'s7b7163270e57e8b4': `Ŕēƒŕēśĥ`, +'s7ba9677d069e5f02': `Ćàďďŷ (Śţàńďàĺōńē)`, +'s7bc8c327f1f7c82c': `Ńō ōƀĴēćţś ƒōũńď.`, +'s7bda44013984fc48': `Ƥàśśŵōŕď śēţ`, +'s7be2df39f727faa2': `Ēńţēŕƥŕĩśē`, +'s7c05ee41d634aa45': `Ƥŕōƥēŕţŷ màƥƥĩńĝś ũśēď ţō ũśēŕ ćŕēàţĩōń.`, +'s7c10976de6411844': `Ţōķēń vàĺĩďĩţŷ`, +'s7c27e113f90a89e0': `Ŵĥēń śēĺēćţēď, ĩńćōmĩńĝ àśśēŕţĩōń'ś Śĩĝńàţũŕēś ŵĩĺĺ ƀē vàĺĩďàţēď àĝàĩńśţ ţĥĩś ćēŕţĩƒĩćàţē. Ţō àĺĺōŵ ũńśĩĝńēď Ŕēǫũēśţś, ĺēàvē ōń ďēƒàũĺţ.`, +'s7c5774fad9d050ce': `Ćŕēàţē ĝŕōũƥ`, +'s7caa8f7edb920909': `Ţĥē ńũmƀēŕ ōƒ ţōķēńś ĝēńēŕàţēď ŵĥēńēvēŕ ţĥĩś śţàĝē ĩś ũśēď. Ēvēŕŷ ţōķēń ĝēńēŕàţēď ƥēŕ śţàĝē ēxēćũţĩōń ŵĩĺĺ ƀē àţţàćĥēď ţō à śĩńĝĺē śţàţĩć ďēvĩćē.`, +'s7cb9aa9ee1783f00': `Ĝŕōũƥ Ƥŕōƥēŕţŷ Màƥƥĩńĝś`, +'s7ccce0ec8d228db6': `Ćōńƒĩĝũŕē ŚĆĨM Ƥŕōvĩďēŕ`, +'s7cfe12cd14df9950': `Śĩĝń ōũţ`, +'s7d499be3b781a3ca': `Ũśēŕ(ś)`, +'s7d61705dfb120d7b': `Ţĥē ũśēŕ ĩń àũţĥēńţĩķ ţĥĩś ďēvĩćē ŵĩĺĺ ƀē àśśĩĝńēď ţō.`, +'s7d684b6257284e55': `Śćōŕē`, +'s7def067ed3ad3ad9': `Ćōōķĩē ďōmàĩń`, +'s7df5b92a3f93544f': `Ŵàŕńĩńĝ: Ţĥē ćũŕŕēńţ ũśēŕ ćōũńţ ĥàś ēxćēēďēď ţĥē ćōńƒĩĝũŕēď ĺĩćēńśēś.`, +'s7e1342d37124b65b': `Ćōńƒĩĝũŕē ţĥē ƀĺũēƥŕĩńţ ćōńţēxţ, ũśēď ƒōŕ ţēmƥĺàţĩńĝ.`, +'s7e537ad68d7c16e1': `Ũśēŕ ŵàś ŵŕĩţţēń ţō`, +'s7e5af9c6ba6f5cc6': `Ŵĥēń mũĺţĩƥĺē śţàĝēś àŕē śēĺēćţēď, ţĥē ũśēŕ ćàń ćĥōōśē ŵĥĩćĥ ōńē ţĥēŷ ŵàńţ ţō ēńŕōĺĺ.`, +'s7e796fe83982863f': str`Ŕōĺē ${0}`, +'s7e87ab366c199345': `Ũƥďàţē ßĩńďĩńĝ`, +'s7eb3d239e0b491ab': `Śēĺēćţ ĝŕōũƥś ţō àďď ũśēŕ ţō`, +'s7ec7036b249f4f22': `Ŕēĝũĺàŕ ũśēŕ`, +'s7edad99c6b7bfe88': `Ĝō ţō ńēxţ ƥàĝē`, +'s7f13f4a2d0370cf6': `Ŵĥēń ũśĩńĝ à Ďũō MƑÀ, Àććēśś ōŕ ßēŷōńď ƥĺàń, àń Àďmĩń ÀƤĨ àƥƥĺĩćàţĩōń ćàń ƀē ćŕēàţēď. + Ţĥĩś ŵĩĺĺ àĺĺōŵ àũţĥēńţĩķ ţō ĩmƥōŕţ ďēvĩćēś àũţōmàţĩćàĺĺŷ.`, +'s7f2dcf01f7a8c0b7': `Ĺĩśţ ōƒ ĆĨĎŔś (ćōmmà-śēƥēŕàţēď) ţĥàţ ćĺĩēńţś ćàń ćōńńēćţ ƒŕōm. À mōŕē śƥēćĩƒĩć + ĆĨĎŔ ŵĩĺĺ màţćĥ ƀēƒōŕē à ĺōōśēŕ ōńē. Ćĺĩēńţś ćōńńēćţĩńĝ ƒŕōm à ńōń-śƥēćĩƒĩēď ĆĨĎŔ + ŵĩĺĺ ƀē ďŕōƥƥēď.`, +'s7f3edfee24690c9f': `Ţĥē ţōķēń ŵàś ďĩśƥĺàŷēď ƀēćàũśē àũţĥēńţĩķ ďōēś ńōţ ĥàvē ƥēŕmĩśśĩōń ţō ŵŕĩţē ţō ţĥē ćĺĩƥƀōàŕď`, +'s7f4e4054fbe132e1': `Ōţĥēŕ ĝĺōƀàĺ śēţţĩńĝś`, +'s7f5869b3d14d7cbc': `Ƥŕōvĩďēŕ`, +'s7f5bb0c9923315ed': `Ƒōŕŵàŕď Àũţĥ (Śĩńĝĺē Àƥƥĺĩćàţĩōń)`, +'s7f68101a50f526ee': `Śţàţĩćàĺĺŷ ďēńŷ ţĥē ƒĺōŵ. Ţō ũśē ţĥĩś śţàĝē ēƒƒēćţĩvēĺŷ, ďĩśàƀĺē *Ēvàĺũàţē ŵĥēń ƒĺōŵ ĩś ƥĺàńńēď* ōń ţĥē ŕēśƥēćţĩvē ƀĩńďĩńĝ.`, +'s7f9e79189a3d19e2': `Ţēńàńţś`, +'s7f9eb9c8bd26e8fd': `Vàĺĩď ŕēďĩŕēćţ ŨŔĹś àƒţēŕ à śũććēśśƒũĺ àũţĥōŕĩźàţĩōń ƒĺōŵ. Àĺśō śƥēćĩƒŷ àńŷ ōŕĩĝĩńś ĥēŕē ƒōŕ Ĩmƥĺĩćĩţ ƒĺōŵś.`, +'s7fa236d26b798301': `Śēńď ĺĩńķ`, +'s7fa4e5e409d43573': str`Ēŕŕōŕ ćŕēàţĩńĝ ćŕēďēńţĩàĺ: ${0}`, +'s7fc1ace65486dc25': `Àĺĺ ƥōĺĩćĩēś mũśţ màţćĥ ţō ĝŕàńţ àććēśś`, +'s802826db4e2c852e': `Ŵàŕńĩńĝ: Ńō ĩńvĩţàţĩōń śţàĝē ĩś ƀōũńď ţō àńŷ ƒĺōŵ. Ĩńvĩţàţĩōńś ŵĩĺĺ ńōţ ŵōŕķ àś ēxƥēćţēď.`, +'s803b0621006085be': `Ũƥďàţē ŚÀMĹ Ƥŕōvĩďēŕ`, +'s80e6d6fe5ad458d3': `Ćĺēàŕ ĩćōń`, +'s819509c33a7534ac': `Ńōţĩƒĩćàţĩōń Ţŕàńśƥōŕţś`, +'s81a45c4fd11e8e1a': `Ďōń'ţ ƥàśś`, +'s81a87652ade099e4': `Ũśēŕ màţćĥĩńĝ mōďē`, +'s81ce0d54727f42d2': `Ũńķńōŵń ũśēŕ màţćĥĩńĝ mōďē`, +'s81d673755a86a4f0': `Ŵĥēń ńō ũśēŕ ĩś ƥŕēśēńţ ĩń ţĥē ƒĺōŵ ćōńţēxţ, ţĥē śţàĝē ŵĩĺĺ ƒàĩĺ.`, +'s81ecf2d4386b8e84': `Ćōńţĩńũē`, +'s81eff3409d572a21': `Ĝēńēŕàĺ śŷśţēm ēxćēƥţĩōń`, +'s82188c9542510212': `Ōƥţĩōńàĺ ŕēćōvēŕŷ ƒĺōŵ, ŵĥĩćĥ ĩś ĺĩńķēď àţ ţĥē ƀōţţōm ōƒ ţĥē ƥàĝē.`, +'s821f6014c1a435b9': `Ŕēƒŕēśĥ Ţōķēń vàĺĩďĩţŷ`, +'s8226f48cb1a80997': `Ĩńvĩţàţĩōńś`, +'s823abdb61543a826': `Àũţĥēńţĩķ ŵàś ũńàƀĺē ţō śàvē ţĥĩś àƥƥĺĩćàţĩōń:`, +'s824e0943a7104668': str`Ţĥĩś ũśēŕ ŵĩĺĺ ƀē àďďēď ţō ţĥē ĝŕōũƥ "${0}".`, +'s832282d415294df4': `Ĩmƥōŕţ Ƒĺōŵ`, +'s8323a9af28e10502': `Ţĥē ƥōĺĩćŷ ƥàśśēś ŵĥēń ţĥē ŕēƥũţàţĩōń śćōŕē ĩś ƀēĺōŵ ţĥē ţĥŕēśĥōĺď, àńď +ďōēśń'ţ ƥàśś ŵĥēń ēĩţĥēŕ ōŕ ƀōţĥ ōƒ ţĥē śēĺēćţēď ōƥţĩōńś àŕē ēǫũàĺ ōŕ àƀōvē ţĥē ţĥŕēśĥōĺď.`, +'s835da49b4dc83a51': `Ƒàĩĺēď Ĺōĝĩńś ƥēŕ ďàŷ ĩń ţĥē ĺàśţ mōńţĥ`, +'s836148f721d8913b': `Ţŕàńśƥàŕēńţ Ŕēvēŕśē Ƥŕōxŷ`, +'s836aa192b30c21da': `Ũńēńŕōĺĺmēńţ ƒĺōŵ`, +'s838418d1a0815157': `Ƥàśś ƥōĺĩćŷ?`, +'s838ed611b533b19e': `Ķēŷƥàĩŕ ŵĥĩćĥ ĩś ũśēď ţō śĩĝń ōũţĝōĩńĝ ŕēǫũēśţś. Ĺēàvē ēmƥţŷ ţō ďĩśàƀĺē śĩĝńĩńĝ.`, +'s839cb09cb2193da9': `Ĺĩńķ ţō ũśē ţĥē ĩńvĩţàţĩōń.`, +'s83d0f62ad1731a03': `Ƥŕĩvàţē Ķēŷ`, +'s842d690eb3c11762': `Ƒĺōŵ ĩś ēxēćũţēď àńď śēśśĩōń ĩś ćàćĥēď ĩń mēmōŕŷ. Ƒĺōŵ ĩś ēxēćũţēď ŵĥēń śēśśĩōń ēxƥĩŕēś`, +'s844fea0bfb10a72a': `Àũţĥēńţĩćàţĩōń ćōďē`, +'s848288f8c2265aad': `Ŷōũŕ àƥƥĺĩćàţĩōń ĥàś ƀēēń śàvēď`, +'s8489d5559dda260c': `Ŕōĺē ŌƀĴēćţ Ƥēŕmĩśśĩōńś`, +'s848a23972e388662': `ŔÀĎĨŨŚ (Ŕēmōţē Àũţĥēńţĩćàţĩōń Ďĩàĺ-Ĩń Ũśēŕ Śēŕvĩćē)`, +'s84c5a011acd608c9': `Ēvēńţ ŕēţēńţĩōń`, +'s84d7d6ebbedcb586': `Ĥēàĺţĥ àńď Vēŕśĩōń`, +'s84fcddede27b8e2a': `Ēxţēŕńàĺ`, +'s850a58c683682809': `Ĩśśũēŕ mōďē`, +'s851c108679653d2a': `Śćōƥē ńàmē`, +'s85366fac18679f28': `Ƒōŕĝōţ ƥàśśŵōŕď?`, +'s858e7ac4b3cf955f': `Śţàţĩć ţōķēńś`, +'s859b2e00391da380': `Śēĺēćţ Ŷēś ţō ŕēďũćē ţĥē ńũmƀēŕ ōƒ ţĩmēś ŷōũ'ŕē àśķēď ţō śĩĝń ĩń.`, +'s8655c52824caac63': `Ĩƒ ćĥēćķēď, ţĥē ĺàũńćĥ ŨŔĹ ŵĩĺĺ ōƥēń ĩń à ńēŵ ƀŕōŵśēŕ ţàƀ ōŕ ŵĩńďōŵ ƒŕōm ţĥē ũśēŕ'ś àƥƥĺĩćàţĩōń ĺĩƀŕàŕŷ.`, +'s872d0e88ab34ed83': `Àũţĥōŕĩźàţĩōń ŨŔĹ`, +'s8763a33c3d46aaf5': `Ōũţƥōśţ śţàţũś`, +'s87b7e3bc944c728c': `Àćţĩvàţē ƥēńďĩńĝ ũśēŕ ōń śũććēśś`, +'s8802553bc57617ee': `Ōũţƥōśţś àŕē ďēƥĺōŷmēńţś ōƒ àũţĥēńţĩķ ćōmƥōńēńţś ţō śũƥƥōŕţ ďĩƒƒēŕēńţ ēńvĩŕōńmēńţś àńď ƥŕōţōćōĺś, ĺĩķē ŕēvēŕśē ƥŕōxĩēś.`, +'s880b8b70b22f9977': `Ũƥďàţē ßĺũēƥŕĩńţ`, +'s883b544e2b4aa3b5': `Mĩńĩmũm àmōũńţ ōƒ Ĺōŵēŕćàśē Ćĥàŕàćţēŕś`, +'s8849ece8c65e3a18': `Ďàśĥƀōàŕďś`, +'s88870d7e499e848b': `Ďũō Àďmĩń ÀƤĨ (ōƥţĩōńàĺ)`, +'s88b8a2892635a2fc': `ŨŔĹ ũśēď ƀŷ àũţĥēńţĩķ ţō ŕēţŕĩēvē ţōķēńś.`, +'s890810efbe103cbc': `Màţćĥ ćŕēàţēď ēvēńţś ŵĩţĥ ţĥĩś àćţĩōń ţŷƥē. Ŵĥēń ĺēƒţ ēmƥţŷ, àĺĺ àćţĩōń ţŷƥēś ŵĩĺĺ ƀē màţćĥēď.`, +'s890e983a7be64da4': `Ŕēśũĺţ`, +'s8915e64b8b999bfe': `Ćàćĥēď ƀĩńďĩńĝ`, +'s892d2731a6f22e59': `Ƥŕĩvàţē ķēŷ, àćǫũĩŕēď ƒŕōm ĥţţƥś://ŵŵŵ.ĝōōĝĺē.ćōm/ŕēćàƥţćĥà/ĩńţŕō/v3.ĥţmĺ.`, +'s8939f574b096054a': `Ńōţ ŷōũ?`, +'s895514dda9cb9c94': `Ćŕēàţē ŕēćōvēŕŷ ĺĩńķ`, +'s89d1847b5e4ad225': `Ũśēŕ ƥàţĥ ţēmƥĺàţē`, +'s8a1d9403ca90989b': `Ĩńvĩţàţĩōń ũśēď`, +'s8a67b33a0d70d322': `Ĩmƥōŕţ Ďũō ďēvĩćē`, +'s8a75e83497a183a2': `Ĥēàĺţĥŷ`, +'s8aaad223e954f9ca': `Ŵĥēń ēńàƀĺēď, ũśēŕ ƒĩēĺďś àŕē màţćĥēď ŕēĝàŕďĺēśś ōƒ ţĥēĩŕ ćàśĩńĝ.`, +'s8aae61c41319602c': `2: Śōmēŵĥàţ ĝũēśśàƀĺē: ƥŕōţēćţĩōń ƒŕōm ũńţĥŕōţţĺēď ōńĺĩńē àţţàćķś. (ĝũēśśēś &ĺţ; 10^8)`, +'s8af61807443f32a4': `Àćţĩōńś`, +'s8af7239354f7e7b6': `Śŷńć ũśēŕś`, +'s8afc8c5aafb392d3': `Ŕàďĩũś`, +'s8aff572e64b7936b': `Śēńď Ēmàĩĺ àĝàĩń.`, +'s8b0432eecbd8b034': `Ũƥďàţē`, +'s8b149b30b5b523ef': `ŌĨĎĆ ŵēĺĺ-ķńōŵń ćōńƒĩĝũŕàţĩōń ŨŔĹ. Ćàń ƀē ũśēď ţō àũţōmàţĩćàĺĺŷ ćōńƒĩĝũŕē ţĥē ŨŔĹś àƀōvē.`, +'s8b2b2a43fcf688a3': `Śũććēśśƒũĺĺŷ ũƥďàţēď ƥŕōmƥţ.`, +'s8b33660e2ed7212c': `Ŵĥēń ćōńńēćţĩńĝ vĩà ŚŚĤ, ţĥĩś ķēŷƥàĩŕ ĩś ũśēď ƒōŕ àũţĥēńţĩćàţĩōń.`, +'s8b87df5664de7eb8': `Ćōńƒĩĝũŕē ĥōŵ ţĥē ōũţƥōśţ ǫũēŕĩēś ţĥē ćōŕē àũţĥēńţĩķ śēŕvēŕ'ś ũśēŕś.`, +'s8be4abc7ca71da6c': `ŨĨ śēţţĩńĝś`, +'s8c05cccd470f6b5f': `Ńō śēţţĩńĝś ƒĺōŵ ćōńƒĩĝũŕēď.`, +'s8ca0dbaec5d48563': `Ńō ŕēćōvēŕŷ ƒĺōŵ ĩś ćōńƒĩĝũŕēď.`, +'s8cb7bb82e96d5d77': `Ƥōĺĩćĩēś`, +'s8cc920e6a8430a0d': `Ĺōĝ ţĥē ćũŕŕēńţĺŷ ƥēńďĩńĝ ũśēŕ ĩń.`, +'s8cda828dac449ea5': `Ćĺēàŕ àĺĺ`, +'s8ce8bdc9cc9c8604': `Ćōńśēńţ ĝĩvēń ĺàśţ ĩńďēƒĩńĩţēĺŷ`, +'s8d08843f397d9e81': `Śēē ďōćũmēńţàţĩōń ƒōŕ à ĺĩśţ ōƒ àĺĺ vàŕĩàƀĺēś.`, +'s8d32d7b9e8ca60b1': `Śàmē ĩďēńţĩƒĩēŕ ĩś ũśēď ƒōŕ àĺĺ ƥŕōvĩďēŕś`, +'s8d7ecd944ebe834b': `Ţōķēń ĩś màńàĝēď ƀŷ àũţĥēńţĩķ.`, +'s8d857061510fe794': `Ďũō ƥũśĥ-ńōţĩƒĩćàţĩōńś`, +'s8da88a8a5750bce1': `Ďũō Àũţĥēńţĩćàţōŕś`, +'s8e01a852c1db8d29': `Ńĝĩńx (Ƥŕōxŷ Màńàĝēŕ)`, +'s8ecdbff1a7329b64': `ŵĩţĥ ĩńśƥēćţōŕ`, +'s8f12575f694e85a2': `Àďďĩţĩōńàĺ śćōƥē màƥƥĩńĝś, ŵĥĩćĥ àŕē ƥàśśēď ţō ţĥē ƥŕōxŷ.`, +'s8f85a0e678846080': `Àśśĩĝńēď ōƀĴēćţ ƥēŕmĩśśĩōńś`, +'s8fa26f65aed77c96': `Mōŕē ďēţàĩĺś`, +'s900b0d85b872d134': `Ĺĩńķ ũśēŕś ōń ũńĩǫũē ĩďēńţĩƒĩēŕ`, +'s9065fcccd837a679': `Ćàćĥēď ǫũēŕŷĩńĝ`, +'s90760e5e02e95dfe': `Ŕēƒŕēśĥ Ţōķēńś(ś)`, +'s909e876731a8febb': `Śēĺēćţ àĺĺ ŕōŵś`, +'s90c3b62194fe8508': `Ōũţƥōśţ Ďēƥĺōŷmēńţ Ĩńƒō`, +'s9103a949a3963aa9': `Śũććēśśƒũĺĺŷ ũƥďàţēď ŕōĺē.`, +'s9117fb5195e75151': `Ńōţĩćē`, +'s911a27022aba349f': `Ćŕēàţē àńď ƀĩńď Ƥōĺĩćŷ`, +'s916b32ac64ea2b05': `Śũććēśśƒũĺĺŷ ũƥďàţēď śţàĝē.`, +'s9193ef1a39a6c872': `Màŕķ ńēŵĺŷ ćŕēàţēď ũśēŕś àś ĩńàćţĩvē.`, +'s91e3a47599412f51': `Śōũŕćēś`, +'s91f389c796720a81': `Ĺōàď śēŕvēŕś`, +'s91f70424f5d5d23e': `Śĺũĝ`, +'s9222ca30ae7786e4': `Śũććēśśƒũĺĺŷ ćŕēàţēď àƥƥĺĩćàţĩōń.`, +'s925936f647ae52cc': `Śĥōŵń àś ţĥē Ţĩţĺē ĩń Ƒĺōŵ ƥàĝēś.`, +'s926e0ecf124fb01a': `Àććēśś ćōďē vàĺĩďĩţŷ`, +'s927398c400970760': `Ŵŕĩţē àńŷ ďàţà ƒŕōm ţĥē ƒĺōŵ'ś ćōńţēxţ'ś 'ƥŕōmƥţ_ďàţà' ţō ţĥē ćũŕŕēńţĺŷ ƥēńďĩńĝ ũśēŕ. Ĩƒ ńō ũśēŕ + ĩś ƥēńďĩńĝ, à ńēŵ ũśēŕ ĩś ćŕēàţēď, àńď ďàţà ĩś ŵŕĩţţēń ţō ţĥēm.`, +'s9277b90db38e1983': `Àćţĩvē Ďĩŕēćţōŕŷ Ĝŕōũƥ`, +'s92921878e886e36d': `Ďũŕàţĩōń`, +'s92ca679592a36b35': `Śēćŕēţ ŵàś ŕōţàţēď`, +'s92e241c9f3c101a2': `ćōńńēćţĩńĝ ōƀĴēćţ ŵĩĺĺ ƀē ďēĺēţēď`, +'s92e91071c6a45eb4': `Ďĩśàƀĺēď ƀĺũēƥŕĩńţś àŕē ńēvēŕ àƥƥĺĩēď.`, +'s9307f3dbb07a73b5': `Ōńĺŷ ƒàĩĺ ţĥē ƥōĺĩćŷ, ďōń'ţ ĩńvàĺĩďàţē ũśēŕ'ś ƥàśśŵōŕď`, +'s93574c03953f25dd': `Ţĥĩś ƥŕōvĩďēŕ ŵĩĺĺ ƀēĥàvē ĺĩķē à ţŕàńśƥàŕēńţ ŕēvēŕśē-ƥŕōxŷ, ēxćēƥţ ŕēǫũēśţś mũśţ ƀē àũţĥēńţĩćàţēď. Ĩƒ ŷōũŕ ũƥśţŕēàm àƥƥĺĩćàţĩōń ũśēś ĤŢŢƤŚ, màķē śũŕē ţō ćōńńēćţ ţō ţĥē ōũţƥōśţ ũśĩńĝ ĤŢŢƤŚ àś ŵēĺĺ.`, +'s9368e965b5c292ab': `Ćōńƒĩĝũŕē ŌÀũţĥ2/ŌƥēńĨď Ƥŕōvĩďēŕ`, +'s936bf4342b182ad4': `Ŵĩĺĺ ēĩţĥēŕ ƒōĺĺōŵ ţĥē ?ńēxţ ƥàŕàmēţēŕ ōŕ ŕēďĩŕēćţ ţō ţĥē ďēƒàũĺţ ĩńţēŕƒàćē`, +'s93c1e5fbe8184895': `Śũććēśśƒũĺĺŷ ćŕēàţēď ţōķēń.`, +'s93cea6ca1f93349d': `Ũńàũţĥēńţĩćàţēď ŨŔĹś`, +'s93cf77a59db53395': `ŕēƒēŕēńćē ŵĩĺĺ ƀē ŕēśēţ ţō ďēƒàũĺţ vàĺũē`, +'s94055b4eb957dc8f': `Ũśēŕ ƒōĺďēŕś`, +'s94333971a07803b9': `Àďďĩţĩōńàĺ śēţţĩńĝś`, +'s945a6b94361ee45b': `Ƒōŕ ţŕàńśƥàŕēńţ ŕēvēŕśē ƥŕōxĩēś ŵĩţĥ ŕēǫũĩŕēď àũţĥēńţĩćàţĩōń`, +'s949826fad0fe0909': `Ţàśķ ƒĩńĩśĥēď ŵĩţĥ ēŕŕōŕś`, +'s951281efc92b03fc': `Ĩƒ àńŷ ōƒ ţĥē ďēvĩćēś ũśēŕ ōƒ ţĥē ţŷƥēś śēĺēćţēď àƀōvē ĥàvē ƀēēń ũśēď ŵĩţĥĩń ţĥĩś ďũŕàţĩōń, ţĥĩś śţàĝē ŵĩĺĺ ƀē śķĩƥƥēď.`, +'s955c1fec1c6fb970': `Ńō śţàĝēś àŕē ćũŕŕēńţĺŷ ƀōũńď ţō ţĥĩś ƒĺōŵ.`, +'s95a032ae86881bf5': `Ũśĩńĝ ƒĺōŵ`, +'s95b73e0f4e47eb9a': `Ŕēśũĺţ ũśēď ŵĥēń ƥōĺĩćŷ ēxēćũţĩōń ƒàĩĺś.`, +'s95f09b229a0a0bb0': `Ćōńƒĩďēńţĩàĺ ćĺĩēńţś àŕē ćàƥàƀĺē ōƒ màĩńţàĩńĩńĝ ţĥē ćōńƒĩďēńţĩàĺĩţŷ ōƒ ţĥēĩŕ ćŕēďēńţĩàĺś śũćĥ àś ćĺĩēńţ śēćŕēţś`, +'s964f6725aeb7662f': `Àďď Ĝŕōũƥ`, +'s965c503c3e42fdfe': `Ēńàƀĺēď`, +'s968c90258dcf7562': `Ƥōśţ ƀĩńďĩńĝ`, +'s96b2fefc550e4b1c': `Ƥŕōvĩďēŕ Ţŷƥē`, +'s96b3cddf33e1c853': str`Ŷōũ'ŕē ćũŕŕēńţĺŷ ĩmƥēŕśōńàţĩńĝ ${0}. Ćĺĩćķ ţō śţōƥ.`, +'s96d2bb4be3f5e8aa': `Śēĺēćţ ŕōĺēś ţō ĝŕàńţ ţĥĩś ĝŕōũƥś' ũśēŕś' ƥēŕmĩśśĩōńś ƒŕōm ţĥē śēĺēćţēď ŕōĺēś.`, +'s96dcf7ec8342c335': `Ĩńvĩţàţĩōń ńōţ ĺĩmĩţēď ţō àńŷ ƒĺōŵ, àńď ćàń ƀē ũśēď ŵĩţĥ àńŷ ēńŕōĺĺmēńţ ƒĺōŵ.`, +'s97d1b0070f50c07f': `Śţàţĩć Ţōķēńś`, +'s97f2dc19fa556a6a': `ŚMŚ`, +'s97f5e0c138eae172': `Ŵàŕńĩńĝ: Ƥŕōvĩďēŕ ńōţ àśśĩĝńēď ţō àńŷ àƥƥĺĩćàţĩōń.`, +'s980270d0fab7ecb3': `Ũƥďàţē Śţàĝē ƀĩńďĩńĝ`, +'s98327528f00365a7': `Ƒàĩĺēď ţō ƒēţćĥ ďàţà.`, +'s98b1cb8fb62909ec': `Ĝŕōũƥ`, +'s98beadfeeb3acb66': `Ŕēǫũĩŕē śũƥēŕũśēŕ.`, +'s98c3bdf4fd5cdf65': `Ńōţĩƒĩćàţĩōń Ŕũĺēś`, +'s98dc556f8bf707dc': `Àƥƥĺĩćàţĩōń ŕēǫũĩŕēś ƒōĺĺōŵĩńĝ ńēŵ ƥēŕmĩśśĩōńś:`, +'s991b750e2d5c4234': `Śēŕvĩćē Ƥŕōvĩďēŕ ßĩńďĩńĝ`, +'s992f8d1a776e763c': `Ĩƒ ĺēƒţ ēmƥţŷ, àũţĥēńţĩķ ŵĩĺĺ ţŕŷ ţō ēxţŕàćţ ţĥē ĺàũńćĥ ŨŔĹ ƀàśēď ōń ţĥē śēĺēćţēď ƥŕōvĩďēŕ.`, +'s9940e3f073fbdbd4': `Ćŕēàţē ũśēŕś ŵĥēń ŕēǫũĩŕēď`, +'s995535e7af30d754': `Ũśē ţĥē ũśēŕ'ś ēmàĩĺ àďďŕēśś, ƀũţ ďēńŷ ēńŕōĺĺmēńţ ŵĥēń ţĥē ēmàĩĺ àďďŕēśś àĺŕēàďŷ ēxĩśţś`, +'s99f110d27e30b289': `Ţĩţĺē`, +'s9a34d1520e320465': `Śţàĝē-śƥēćĩƒĩć śēţţĩńĝś`, +'s9a393a04eaf1eb0e': `Ćŕēàţē Śţàĝē ƀĩńďĩńĝ`, +'s9ae089fd248e72db': `Àďďĩţĩōńàĺ ũśēŕ ĎŃ, ƥŕēƥēńďēď ţō ţĥē ßàśē ĎŃ.`, +'s9ba989e69344ff29': `Ōƥēń Ńōţĩƒĩćàţĩōń ďŕàŵēŕ`, +'s9bd59e0ea70a3e4a': `Ũƥďàţē Ōũţƥōśţ`, +'s9bd9ba84819493d4': `Śōmēţĥĩńĝ ŵēńţ ŵŕōńĝ! Ƥĺēàśē ţŕŷ àĝàĩń ĺàţēŕ.`, +'s9bf48a89367282cd': `Ŵàŕńĩńĝ: àũţĥēńţĩķ Ďōmàĩń ĩś ńōţ ćōńƒĩĝũŕēď, àũţĥēńţĩćàţĩōń ŵĩĺĺ ńōţ ŵōŕķ.`, +'s9c29565c5ae1cc92': `Śēĺēćţĩńĝ àń ĩńţēĝŕàţĩōń ēńàƀĺēś ţĥē màńàĝēmēńţ ōƒ ţĥē ōũţƥōśţ ƀŷ àũţĥēńţĩķ.`, +'s9c3c272944dcfca3': `Śũććēśśƒũĺĺŷ ćŕēàţēď ũśēŕ.`, +'s9c6f61dc47bc4f0a': `Mōďēĺ ćŕēàţēď`, +'s9c73bd29b279d26b': `Ĩmƥēŕśōńàţĩōń ēńďēď`, +'s9ca3310e1999fd5b': `Ĩƒ ēńàƀĺēď, ōńĺŷ à ĥàśĥ ōƒ ţĥē ƥĥōńē ńũmƀēŕ ŵĩĺĺ ƀē śàvēď. Ţĥĩś ćàń ƀē ďōńē ƒōŕ ďàţà-ƥŕōţēćţĩōń ŕēàśōńś. Ďēvĩćēś ćŕēàţēď ƒŕōm à śţàĝē ŵĩţĥ ţĥĩś ēńàƀĺēď ćàńńōţ ƀē ũśēď ŵĩţĥ ţĥē àũţĥēńţĩćàţōŕ vàĺĩďàţĩōń śţàĝē.`, +'s9cc631505c17b028': `Àśśĩĝńēď ĝĺōƀàĺ ƥēŕmĩśśĩōńś`, +'s9ce7cc01fb9b5b53': `Màńàĝē ēńţēŕƥŕĩśē ĺĩćēńśēś`, +'s9d18948d25c68d66': `Śũććēśśƒũĺĺŷ ĝēńēŕàţēď ćēŕţĩƒĩćàţē-ķēŷ ƥàĩŕ.`, +'s9d2239d2b0402795': `Ďĩśćōũŕàĝēď: Ũśēŕ vēŕĩƒĩćàţĩōń śĥōũĺď ńōţ ōććũŕ.`, +'s9d2d00982edafabb': `Ţũŕķĩśĥ`, +'s9d5796a4b9b7560e': `Śēńď à ćũśţōm ĤŢŢƤ-ßàśĩć Àũţĥēńţĩćàţĩōń ĥēàďēŕ ƀàśēď ōń vàĺũēś ƒŕōm àũţĥēńţĩķ.`, +'s9d8ad4b85287131f': `Ďĩĝĩţś`, +'s9d8b8aa2b404c2c8': `Śēţţĩńĝś`, +'s9d95f09deb601f34': str`Śēŕvēŕ vàĺĩďàţĩōń ōƒ ćŕēďēńţĩàĺ ƒàĩĺēď: ${0}`, +'s9d96eb5ca93e6473': `ŌƥēńĨĎ Ćōńƒĩĝũŕàţĩōń ŨŔĹ`, +'s9db2c836ade1339c': `ŌĨĎĆ ĵŴĶŚ ŨŔĹ`, +'s9e51d6de369f320b': `Śũććēśśƒũĺĺŷ ćŕēàţēď ĩńśţàńćē.`, +'s9e568afec3810bfe': `Ŕēćōvēŕŷ ķēŷś`, +'s9e830cbc0b42a514': `Ũƥďàţē Ƒĺōŵ`, +'s9e9316a6b0c16231': `Ćĺĩēńţ Ńēţŵōŕķś`, +'s9e9c8d99f4c26baf': `Ŵĥēń à ũśēŕ ŕēţũŕńś ƒŕōm ţĥē ēmàĩĺ śũććēśśƒũĺĺŷ, ţĥēĩŕ àććōũńţ ŵĩĺĺ ƀē àćţĩvàţēď.`, +'s9ea472b555374771': `Ŕēśĩďēńţ ķēŷ ŕēǫũĩŕēmēńţ`, +'s9ee20003cb116abf': `Ƥàśśŵōŕďĺēśś ƒĺōŵ`, +'s9ee92717d7f63247': `Ďēţàĩĺēď ĥēàĺţĥ (ōńē ĩńśţàńćē ƥēŕ ćōĺũmń, ďàţà ĩś ćàćĥēď śō màŷ ƀē ōũţ ōƒ ďàţē)`, +'s9f23ed1799b4d49a': `Ćōńƒĩĝũŕē ŵĥàţ ďàţà śĥōũĺď ƀē ũśēď àś ũńĩǫũē Ũśēŕ Ĩďēńţĩƒĩēŕ. Ƒōŕ mōśţ ćàśēś, ţĥē ďēƒàũĺţ śĥōũĺď ƀē ƒĩńē.`, +'s9f26843287bb592d': `Ĝŕōũƥś`, +'s9f5a5f23312798f0': `Mēmƀēŕś`, +'s9f83d7768aea548a': `Ōŕ màńũàĺĺŷ ĩmƥōŕţ`, +'s9f8aac89fe318acc': `Ōƥţĩōńàĺĺŷ śēţ ţĥē 'ƑŕĩēńďĺŷŃàmē' vàĺũē ōƒ ţĥē Àśśēŕţĩōń àţţŕĩƀũţē.`, +'s9f91cc8bcfabb40f': `Àśśēŕţĩōń vàĺĩď ńōţ ƀēƒōŕē`, +'s9f9492d30a96b9c6': `Ũśēŕ ţŷƥē`, +'s9fb28be12e2c6317': `Śũƥēŕũśēŕ`, +'s9fd39a5cb20b4e61': `Ţĥēŕē ŵàś àń ēŕŕōŕ`, +'s9fdda7ea4642306c': `Ĝŕōũƥ(ś)`, +'s9ff3121d30f88d52': `Ńōŕmàĺ`, +'s9ffa1ac03ce6fd20': `Ēxēćũţĩōń ĺōĝĝĩńĝ`, +'sa00cf67b54c44c71': `Ćĥēćķ ţĥē ĨƤ ōƒ ţĥē Ķũƀēŕńēţēś śēŕvĩćē, ōŕ`, +'sa03aa46068460c95': `Ƒōŕĝōţ ũśēŕńàmē ōŕ ƥàśśŵōŕď?`, +'sa03fe48e892df2d8': `Ţĥē ēxţēŕńàĺ ŨŔĹ ŷōũ'ĺĺ àũţĥēńţĩćàţē àţ. Ţĥē àũţĥēńţĩķ ćōŕē śēŕvēŕ śĥōũĺď ƀē ŕēàćĥàƀĺē ũńďēŕ ţĥĩś ŨŔĹ.`, +'sa0b01f479f40c52d': `Ďēvĩćē(ś)`, +'sa0e0bdd7e244416b': `Śũśƥĩćĩōũś ŕēǫũēśţ`, +'sa11e92683c5860c7': `Ŕēǫũēśţ ĥàś ƀēēń ďēńĩēď.`, +'sa13e6c8310000e30': `Śēśśĩōń ĨĎ`, +'sa18e1c6e0e6f16cc': `Ţĥē ńēŵ àƥƥĺĩćàţĩōń ŵĩźàŕď ĝŕēàţĺŷ śĩmƥĺĩƒĩēś ţĥē śţēƥś ŕēǫũĩŕēď ţō ćŕēàţē àƥƥĺĩćàţĩōńś àńď ƥŕōvĩďēŕś.`, +'sa1b0052ae095b9b3': `Ćōńƒĩĝũŕē ŚĆĨM ƥŕōvĩďēŕ màńũàĺĺŷ`, +'sa1b41e334ad89d94': `Śēćŕēţ ŵàś vĩēŵēď`, +'sa1db89262360550b': `Śēńď ũś ƒēēďƀàćķ!`, +'sa248e1021d2c27b5': `Vēŕĩƒŷ ţĥē ũśēŕ'ś ēmàĩĺ àďďŕēśś ƀŷ śēńďĩńĝ ţĥēm à ōńē-ţĩmē-ĺĩńķ. Ćàń àĺśō ƀē ũśēď ƒōŕ ŕēćōvēŕŷ ţō vēŕĩƒŷ ţĥē ũśēŕ'ś àũţĥēńţĩćĩţŷ.`, +'sa266303caf1bd27f': `Ēmàĩĺ śēńţ`, +'sa29b5680cfafacc8': `Ēxţēŕńàĺ ĥōśţ`, +'sa2b727168b090d34': `Ćĺēàŕ Ƒĺōŵ ćàćĥē`, +'sa2c29dc5ed47b26d': `Ƒōŕćē ţĥē ũśēŕ ţō ćōńƒĩĝũŕē àń àũţĥēńţĩćàţōŕ`, +'sa2e4d6830226d3ec': `Ŕēďĩŕēćţ ƀĩńďĩńĝ`, +'sa30c58514a3dc0fb': `Ďēńŷ ţĥē ũśēŕ àććēśś`, +'sa319e3bf44c85963': `Ƥŕōƥēŕţŷ màƥƥĩńĝś ũśēď ţō ĝŕōũƥ ćŕēàţĩōń.`, +'sa33d061d2ade20aa': `Ŕēƥũţàţĩōń`, +'sa3438c7bb4e9cce8': str`${0} ũńŕēàď`, +'sa347e31efbb60be2': `Ũƥďàţē Àƥƥĺĩćàţĩōń`, +'sa3599457b9418bc5': `Ũśēŕ'ś àvàţàŕ`, +'sa3660d505e7011e0': `Àũţĥōŕĩźēď àƥƥĺĩćàţĩōń:`, +'sa3a3e09b88ed9791': `Àśśĩĝńēď ƥēŕmĩśśĩōńś`, +'sa3c1f6ac5e63a70f': `Ƒĺōŵ ũśēď ƀēƒōŕē àũţĥēńţĩćàţĩōń.`, +'sa41aee3ae04c9216': `Śĥōŵ śōũŕćēś' ĺàƀēĺś`, +'sa43153d53ae65063': `Ũńķńōŵń ţŷƥē`, +'sa442044b586ec8bf': `Àćţĩōń`, +'sa45a194b58837e4f': `Àćţĩvē`, +'sa48f81f001b893d2': `Ũśēŕ`, +'sa4a8086275475714': `Śēĺēćţ àń ēńŕōĺĺmēńţ ƒĺōŵ`, +'sa50a6326530d8a0d': `Śĥōŵ ĺēśś`, +'sa55ee64c5c51df0f': `Śēĺēćţ ţĥē ĝŕōũƥ ōƒ ũśēŕś ŵĥĩćĥ ţĥē àĺēŕţś àŕē śēńţ ţō. Ĩƒ ńō ĝŕōũƥ ĩś śēĺēćţēď ţĥē ŕũĺē ĩś ďĩśàƀĺēď.`, +'sa578033f134a83b6': `Ćōńƒĩĝũŕē ĥōŵ ĺōńĝ àććēśś ćōďēś àŕē vàĺĩď ƒōŕ.`, +'sa57c393736e2732c': `Ţēśţ Ƥŕōƥēŕţŷ Màƥƥĩńĝ`, +'sa599dbe5776897ad': `Śƥēćĩƒŷ mũĺţĩƥĺē śēŕvēŕ ŨŔĨś ƀŷ śēƥàŕàţĩńĝ ţĥēm ŵĩţĥ à ćōmmà.`, +'sa61966cd83b4924c': `Àďďĩţĩōńàĺ śćōƥēś ţō ƀē ƥàśśēď ţō ţĥē ŌÀũţĥ Ƥŕōvĩďēŕ, śēƥàŕàţēď ƀŷ śƥàćē. Ţō ŕēƥĺàćē ēxĩśţĩńĝ śćōƥēś, ƥŕēƒĩx ŵĩţĥ *.`, +'sa661ea7d7a50f2e9': `Ćŕēàţē à ńēŵ ƥŕōvĩďēŕ.`, +'sa668bd79645c3e06': `Ķũƀēćōńƒĩĝ`, +'sa6905be242387f36': `Ēxćēƥţĩōń`, +'sa6ab5184d6315895': `Ƒŕōm`, +'sa6c0ba4910c7ad7f': `Àśśĩĝńēď ţō àƥƥĺĩćàţĩōń (ƀàćķćĥàńńēĺ) `, +'sa717841a602fe7d8': `Ƒàĩĺēď ţō ďēĺēţē ƥōĺĩćŷ ćàćĥē`, +'sa72a3bd1e7e89926': `Ƒĺōŵ ũśēď ŵĥēń à ũśēŕ àććēśś ţĥĩś ƥŕōvĩďēŕ àńď ĩś ńōţ àũţĥēńţĩćàţēď.`, +'sa738ce390bc24875': `Ĝēţ ţĥĩś vàĺũē ƒŕōm ĥţţƥś://ćōńśōĺē.ţŵĩĺĩō.ćōm`, +'sa7b56a80ab1801f0': `Ţŵĩĺĩō Àũţĥ Ţōķēń`, +'sa7fcf026bd25f231': `Ćàń ƀē ĩń ţĥē ƒōŕmàţ ōƒ 'ũńĩx://' ŵĥēń ćōńńēćţĩńĝ ţō à ĺōćàĺ ďōćķēŕ ďàēmōń, ũśĩńĝ 'śśĥ://' ţō ćōńńēćţ vĩà ŚŚĤ, ōŕ 'ĥţţƥś://:2376' ŵĥēń ćōńńēćţĩńĝ ţō à ŕēmōţē śŷśţēm.`, +'sa800871782eba1ac': `Ćōńţēńţ ŕĩĝĥţ`, +'sa81e2cdaf6921adc': `Śŷśţēm`, +'sa8384c9c26731f83': `Ţō àĺĺōŵ àńŷ ŕēďĩŕēćţ ŨŔĨ, śēţ ţĥĩś vàĺũē ţō ".*". ßē àŵàŕē ōƒ ţĥē ƥōśśĩƀĺē śēćũŕĩţŷ ĩmƥĺĩćàţĩōńś ţĥĩś ćàń ĥàvē.`, +'sa84a7fd11ba85e88': `Ŵĥēń śēĺēćţēď, ţĥē ĩńvĩţē ŵĩĺĺ ōńĺŷ ƀē ũśàƀĺē ŵĩţĥ ţĥē ƒĺōŵ. ßŷ ďēƒàũĺţ ţĥē ĩńvĩţē ĩś àććēƥţēď ōń àĺĺ ƒĺōŵś ŵĩţĥ ĩńvĩţàţĩōń śţàĝēś.`, +'sa84adff85b5e505c': `Ōƥēń ŷōũŕ ţŵō-ƒàćţōŕ àũţĥēńţĩćàţōŕ àƥƥ ţō vĩēŵ ŷōũŕ àũţĥēńţĩćàţĩōń ćōďē.`, +'sa85cfb884c17d85d': `Vēŕĩƒŷ Ķũƀēŕńēţēś ÀƤĨ ŚŚĹ Ćēŕţĩƒĩćàţē`, +'sa879d5ce584875cf': `Ƥōĺĩćŷ-śƥēćĩƒĩć śēţţĩńĝś`, +'sa8c45b6b92a8ba1f': `Ćŕēàţē Àƥƥĺĩćàţĩōń`, +'sa8d83cd8023e8e4d': `ŨŔĹ ũśēď ƀŷ àũţĥēńţĩķ ţō ĝēţ ũśēŕ ĩńƒōŕmàţĩōń.`, +'sa8e255492bb6ae0d': `Ōũţƥōśţ ĩńţēĝŕàţĩōń(ś)`, +'sa9020b93c3bd7235': `Ĥōŵ màńŷ àţţēmƥţś à ũśēŕ ĥàś ƀēƒōŕē ţĥē ƒĺōŵ ĩś ćàńćēĺēď. Ţō ĺōćķ ţĥē ũśēŕ ōũţ, ũśē à ŕēƥũţàţĩōń ƥōĺĩćŷ àńď à ũśēŕ_ŵŕĩţē śţàĝē.`, +'sa90b7809586c35ce': `Ēĩţĥēŕ ĩńƥũţ à ƒũĺĺ ŨŔĹ, à ŕēĺàţĩvē ƥàţĥ, ōŕ ũśē 'ƒà://ƒà-ţēśţ' ţō ũśē ţĥē Ƒōńţ Àŵēśōmē ĩćōń "ƒà-ţēśţ".`, +'sa920231366378c90': `Ŵĥēń ēńàƀĺēď, àĺĺ ƥŕēvĩōũś śēśśĩōńś ōƒ ţĥē ũśēŕ ŵĩĺĺ ƀē ţēŕmĩńàţēď.`, +'sa92398dba8b12d85': `Màƥƥĩńĝ`, +'sa95a538bfbb86111': str`Àŕē ŷōũ śũŕē ŷōũ ŵàńţ ţō ũƥďàţē ${0} "${1}"?`, +'sa982875b258fea07': `Śũććēśśƒũĺĺŷ àďďēď ũśēŕ ţō ĝŕōũƥ(ś).`, +'sa9b2a245441557dc': `Ĺàśţ ŕũń`, +'sa9c7044d9fd1f3e6': `Ĩńĩţĩàĺ vàĺũē`, +'sa9dbe2fb284e26fe': `Śēńď ŕēćōvēŕŷ ĺĩńķ ţō ũśēŕ`, +'saa0e2675da69651b': str`Ţĥē ŨŔĹ "${0}" ŵàś ńōţ ƒōũńď.`, +'saa10777250a6deca': `Ũƥďàţē ŚÀMĹ Śōũŕćē`, +'saa79b47f60c66458': `ŚŚŌ ŨŔĹ (Ŕēďĩŕēćţ)`, +'saa7ba2057bd524a1': `Ĩńţēŕƥŕēţ ĩńĩţĩàĺ vàĺũē àś ēxƥŕēśśĩōń`, +'saa855c61e0403fe6': `Ŵàŕńĩńĝ: Àƥƥĺĩćàţĩōń ĩś ńōţ ũśēď ƀŷ àńŷ Ōũţƥōśţ.`, +'saa8939ac88a76f98': `Ĺàśţ śēēń`, +'saaa3abe03c7260f9': `Ĺōńĝ-ŕũńńĩńĝ ōƥēŕàţĩōńś ŵĥĩćĥ àũţĥēńţĩķ ēxēćũţēś ĩń ţĥē ƀàćķĝŕōũńď.`, +'saab79cd956ee56a9': `ßĺũēƥŕĩńţś`, +'saabeb4cab074b0b9': `Ũśēŕ ŌƀĴēćţ Ƥēŕmĩśśĩōńś`, +'saae1c70e168b45b4': `Àďmĩń`, +'sab6bad52985c6676': `ßŕàńďĩńĝ śĥōŵń ĩń ƥàĝē ţĩţĺē àńď śēvēŕàĺ ōţĥēŕ ƥĺàćēś.`, +'sab6d24c5ec8dc361': `Ƒŕĩēńďĺŷ Ńàmē`, +'sab85321d3b0840b7': `ÀƤĨ ŕēǫũēśţ ƒàĩĺēď`, +'sababff57115130a0': str`Ēŕŕōŕ: ũńśũƥƥōŕţēď śōũŕćē śēţţĩńĝś: ${0}`, +'sabaf0061f7e41b0b': `Ćōńśũmēŕ śēćŕēţ`, +'sabb56f74492e7e96': `Ũƥďàţē Ďēvĩćē`, +'sabd1bc9fb7da71e7': `Ēxƥŕēśśĩōń ũśĩńĝ Ƥŷţĥōń.`, +'sabebdc7fa6a5bddb': `Ńĝĩńx (śţàńďàĺōńē)`, +'sabf67834e35dede5': `Ţōķēń ćōũńţ`, +'sac1332e6f421526e': `Ũƥďàţē Ńōţĩƒĩćàţĩōń Ţŕàńśƥōŕţ`, +'sac17f177f884e238': `Śţàŷ śĩĝńēď ĩń?`, +'sac43cb9690260b86': `ŨĨĎ śţàŕţ ńũmƀēŕ`, +'sac8252732f2edb19': `Ďàţē`, +'sad09c62cb4ebae68': `Ćĺĩćķ ţō ćōƥŷ ţōķēń`, +'sad130c2d925fb7bf': `Ũƥďàţē Ũśēŕ`, +'sad3e3c8146fc920f': `Śţàţũś`, +'sad59707375956ad2': `Ƒĩńĩśĥ`, +'sad8550b8731518d8': `Śēśśĩōń vàĺĩď ńōţ ōń ōŕ àƒţēŕ`, +'sadadfe9dfa06d7dd': `Ńō śŷńć śţàţũś.`, +'sae1e1a59d22609c4': `Ŵĥēń ēńàƀĺēď, ĝĺōƀàĺ Ēmàĩĺ ćōńńēćţĩōń śēţţĩńĝś ŵĩĺĺ ƀē ũśēď àńď ćōńńēćţĩōń śēţţĩńĝś ƀēĺōŵ ŵĩĺĺ ƀē ĩĝńōŕēď.`, +'sae239213b7c70376': `Śţàţē`, +'sae486938be80729c': `Ēvēŕŷţĥĩńĝ ĩś ōķ.`, +'sae5d87e99fe081e0': `Ŕēǫũĩŕēď`, +'sae5da213b7f896ed': `Śţàĝē`, +'saeff3596e1ac31b6': `Śēţũƥ`, +'saf1d289e3137c2ea': `ĆÀ ŵĥĩćĥ ţĥē ēńďƥōĩńţ'ś Ćēŕţĩƒĩćàţē ĩś vēŕĩƒĩēď àĝàĩńśţ. Ćàń ƀē ĺēƒţ ēmƥţŷ ƒōŕ ńō vàĺĩďàţĩōń.`, +'saf24e253b3b006d4': `Ĥōŵ ţō ćōńńēćţ`, +'saf31b3c610036ed6': `Ŵĥēń ţĥĩś ōƥţĩōń ĩś ēńàƀĺēď, àĺĺ ēxēćũţĩōńś ōƒ ţĥĩś ƥōĺĩćŷ ŵĩĺĺ ƀē ĺōĝĝēď. ßŷ ďēƒàũĺţ, ōńĺŷ ēxēćũţĩōń ēŕŕōŕś àŕē ĺōĝĝēď.`, +'saf5eb7596b3a355b': `Ćōńśĩďēŕ ŌƀĴēćţś màţćĥĩńĝ ţĥĩś ƒĩĺţēŕ ţō ƀē Ĝŕōũƥś.`, +'saf6097bfa25205b8': `À ćōƥŷ ōƒ ţĥĩś ŕēćōvēŕŷ ĺĩńķ ĥàś ƀēēń ƥĺàćēď ĩń ŷōũŕ ćĺĩƥƀōàŕď`, +'saf63a04c86018698': `-`, +'saf63d34c8601dd41': str`${0}`, +'saf794c74c9ea731e': `Ũśēŕ Ƥŕōƥēŕţŷ Màƥƥĩńĝś`, +'saf7ce4165a1025f6': `Śŷńć ĝŕōũƥś`, +'saf84e7732a9e1336': `Ƥŕēvĩēŵ ēŕŕōŕś`, +'safc0e0656d572f4e': `À ƥōĺĩćŷ ũśēď ƒōŕ ţēśţĩńĝ. Àĺŵàŷś ŕēţũŕńś ţĥē śàmē ŕēśũĺţ àś śƥēćĩƒĩēď ƀēĺōŵ àƒţēŕ ŵàĩţĩńĝ à ŕàńďōm ďũŕàţĩōń.`, +'safcc54b2aedb1a17': `Ĩƒ ţĥĩś ĩś śēĺēćţēď, ţĥē ţōķēń ŵĩĺĺ ēxƥĩŕē. Ũƥōń ēxƥĩŕàţĩōń, ţĥē ţōķēń ŵĩĺĺ ƀē ŕōţàţēď.`, +'safd0363143a46a91': `ßàśĩć Àũţĥ`, +'sb0669da3df95837c': `Ĺōĝĩńś ƥēŕ ďàŷ ĩń ţĥē ĺàśţ mōńţĥ`, +'sb07bf992e3d00664': `Ńō àďďĩţĩōńàĺ ďàţà àvàĩĺàƀĺē.`, +'sb0b86b8ca6ab13bd': `Ƥŕōvĩďēŕś`, +'sb157267c85fdff30': `Ćēŕţĩƒĩćàţē`, +'sb15e8daacf26bdfc': `Ćŕēàţē Ţōķēń`, +'sb15fe7b9d09bb419': `Ĩƒ ńō Ƥĺēx ƥōƥũƥ ōƥēńś, ćĺĩćķ ţĥē ƀũţţōń ƀēĺōŵ.`, +'sb1751a1411d6874f': `Ēxţēŕńàĺ ÀƤĨ ŨŔĹ`, +'sb17e8c70f9a05c77': `Ĩń ćàśē ŷōũ ćàń'ţ àććēśś àńŷ ōţĥēŕ mēţĥōď.`, +'sb18ec434a8a3aafb': `Ĺĩćēńśē ķēŷ`, +'sb1a4e9b288e2f005': `Ƒēďēŕàţĩōń àńď Śōćĩàĺ ĺōĝĩń`, +'sb1c91762ae3a9bee': `Ĩmƥēŕśōńàţĩōń śţàŕţēď`, +'sb1fe947f9ad27b9d': `Ţōķēń ēxƥĩŕŷ`, +'sb21f33b039c86322': `ŚĆĨM ƀàśē ũŕĺ, ũśũàĺĺŷ ēńďś ĩń /v2.`, +'sb24755ea94bef31d': `Ďēĺēţē ćũŕŕēńţĺŷ śēţ ƀàćķĝŕōũńď ĩmàĝē.`, +'sb25d9afe10941425': `Ďēćĩďēś ŵĥàţ ţĥĩś Ƒĺōŵ ĩś ũśēď ƒōŕ. Ƒōŕ ēxàmƥĺē, ţĥē Àũţĥēńţĩćàţĩōń ƒĺōŵ ĩś ŕēďĩŕēćţ ţō ŵĥēń àń ũń-àũţĥēńţĩćàţēď ũśēŕ vĩśĩţś àũţĥēńţĩķ.`, +'sb25e689e00c61829': `Ũśē à ćōďē-ƀàśēď àũţĥēńţĩćàţōŕ.`, +'sb2b3b281954752c4': `Àśśĩĝńēď ţō àƥƥĺĩćàţĩōń `, +'sb2bb6f93773a4594': `Ũśēŕ/Ĝŕōũƥ Àţţŕĩƀũţē ũśēď ƒōŕ ţĥē ũśēŕ ƥàŕţ ōƒ ţĥē ĤŢŢƤ-ßàśĩć Ĥēàďēŕ. Ĩƒ ńōţ śēţ, ţĥē ũśēŕ'ś Ēmàĩĺ àďďŕēśś ĩś ũśēď.`, +'sb2c57b2d347203dd': `Śĥōŵ mōŕē`, +'sb2cbd06f8e25b47e': `Ĝō ţō Ćũśţōmēŕ Ƥōŕţàĺ`, +'sb2f307e79d20bb56': `Ćũŕŕēńţ ƥĺàń ćōńţēxţ`, +'sb3182a87ded1bc91': `Ũńķńōŵń ĺàŷōũţ`, +'sb32e9c1faa0b8673': `Ƥŕē-àũţĥēńţĩćàţĩōń ƒĺōŵ`, +'sb357ea19a722d827': `Ƥōśţ`, +'sb35c08e3a541188f': `Àĺśō ķńōŵń àś Ćĺĩēńţ ĨĎ.`, +'sb3651834cca86735': `Mĩńĩmũm àmōũńţ ōƒ Śŷmƀōĺś Ćĥàŕàćţēŕś`, +'sb36e4c05244278c1': `Ńō ŕēǫũĩŕēmēńţ`, +'sb37880a2a7288ef0': `Ũƥďàţē Ƥēŕmĩśśĩōńś`, +'sb379d861cbed0b47': `Ńēvēŕ ćŕēàţē ũśēŕś`, +'sb3d4f79d9d8b71e5': `Śũƀmĩţ`, +'sb3defbacd01ad972': `Ƥŕōƥēŕţŷ màƥƥĩńĝś ũśēď ƒōŕ ũśēŕ màƥƥĩńĝ.`, +'sb3fa80ccfa97ee54': `Śţàĝē ńàmē`, +'sb41b2cfbbc52565b': `Ćŕēàţēď`, +'sb4564c127ab8b921': `Ƒàĩĺēď ĺōĝĩń`, +'sb488dee0be434f7e': `Àũţĥēńţĩćàţĩōń śēţţĩńĝś`, +'sb4a1d1c19438e929': `àũţĥēńţĩķ ŕũńńĩńĝ ōń àũţĥ.ēxàmƥĺē.ćōm`, +'sb4c9ed2a487b238f': str`Àŕē ŷōũ śũŕē ŷōũ ŵàńţ ţō ŕēmōvē ũśēŕ ${0} ƒŕōm ţĥē ƒōĺĺōŵĩńĝ ĝŕōũƥś?`, +'sb4d7bae2440d9781': `Ũśēŕ Śţàţĩśţĩćś`, +'sb4e50ca3cffdbc10': `Śĩďēƀàŕ ĺēƒţ`, +'sb50000a8fada5672': `Ţĥēŕē ŵàś àń ēŕŕōŕ ĩń ţĥē ƥŕōvĩďēŕ.`, +'sb546eb04425e07fa': `Ũƥďàţē ďēţàĩĺś`, +'sb564f81eb057342e': `Àƥƥĺĩćàţĩōń Ĩćōń`, +'sb56674c9ea4f0588': `ßēĥàvĩōŕ śēţţĩńĝś`, +'sb57dbcda1929c642': `Ēďĩţ ţĥē ńōţēś àţţŕĩƀũţē ōƒ ţĥĩś ũśēŕ ţō àďď ńōţēś ĥēŕē.`, +'sb59d68ed12d46377': `Ĺōàďĩńĝ`, +'sb635ad3c2e357d3c': `Ţĥĩś ĩś ţĥē ƥàśśŵōŕď ţō ƀē ũśēď ŵĩţĥ ƀàśĩć àũţĥ`, +'sb6770fa90be6d8b3': `ŌÀũţĥ Ŕēƒŕēśĥ Ţōķēńś`, +'sb69119c9f0547bed': `Ćōƥŷ ŕēćōvēŕŷ ĺĩńķ`, +'sb69a4b0acd0895f2': `Ƒĺōŵś`, +'sb6c3bf5489d7556e': `Ēxàmƥĺē ćōńţēxţ ďàţà`, +'sb6cbd4f92ebaf5d8': `Ŕēĺàţēď`, +'sb6d5146d5efb3058': `Àććēśś Ķēŷ`, +'sb6d7128df5978cee': `Ƥōĺĩćŷ ēxćēƥţĩōń`, +'sb6d7d58cb0a1544e': `Ćōmƥàţĩƀĩĺĩţŷ mōďē`, +'sb71ace8e9b35c749': `Ďàţà ƥŕēvĩēŵ`, +'sb72ebab438cb2983': `Ĩmƥōŕţ ćēŕţĩƒĩćàţēś ōƒ ēxţēŕńàĺ ƥŕōvĩďēŕś ōŕ ćŕēàţē ćēŕţĩƒĩćàţēś ţō śĩĝń ŕēǫũēśţś ŵĩţĥ.`, +'sb7684e2910a33a1f': `ßĩńď ĆŃ`, +'sb7794c2910b1a9ec': `ßĩńď ĎŃ`, +'sb7a30abc1dcf6c36': `Ĩśśũēŕ`, +'sb8168ae309c66abc': `ŢŌŢƤ Àũţĥēńţĩćàţōŕś`, +'sb85ffe141d7c229d': `Śēśśĩōń ďũŕàţĩōń`, +'sb8795b799c70776a': `Śĩńĝĺē ũśē`, +'sb8bc2b8376c96a6b': `Ĩńţēńţ`, +'sb8c13bd58191cea2': `Ŵĥēń ćōńńēćţĩńĝ ţō àń ĹĎÀƤ Śēŕvēŕ ŵĩţĥ ŢĹŚ, ćēŕţĩƒĩćàţēś àŕē ńōţ ćĥēćķēď ƀŷ ďēƒàũĺţ. Śƥēćĩƒŷ à ķēŷƥàĩŕ ţō vàĺĩďàţē ţĥē ŕēmōţē ćēŕţĩƒĩćàţē.`, +'sb8d4f44a1d5b9a14': `ßàćķēńďś`, +'sb8dd788adf7b907b': `Ƥŕōxŷ`, +'sb8f855b49234b81b': `Àƥƥĺŷ`, +'sb904f23f17b60c3a': `Śũććēśśƒũĺĺŷ ĩmƥōŕţēď ƒĺōŵ.`, +'sb923723d27df40ba': `Ƥēŕmĩśśĩōń(ś)`, +'sb932dead79567c7b': `Àććēśś ţōķēń ŨŔĹ`, +'sb95baab425322600': `Śĥàŕēď śēćŕēţ`, +'sb96629f50f2e7fab': `Ũńĥēàĺţĥŷ`, +'sb9834316ffd4ae3e': `Śţàćķēď`, +'sb986f15fa9b17805': `Ćōńśēńţ ēxƥĩŕēś.`, +'sba42248f3f27955c': `Ũśēŕ ďàţàƀàśē + śţàńďàŕď ƥàśśŵōŕď`, +'sba65ae54d6585c1a': `Ũńŕēàď ńōţĩƒĩćàţĩōńś`, +'sba999428083abce3': `ĒńţĩţŷĨĎ/Ĩśśũēŕ`, +'sbab723b98dcfe23f': `Śĥōŵ màţćĥēď ũśēŕ`, +'sbad5b96fb855ef36': `Ńō Ƥōĺĩćĩēś ƀōũńď.`, +'sbadde673052efc02': `Ŵēƀ Ćēŕţĩƒĩćàţē`, +'sbaf20067de176c90': `Àƥƥēàŕàńćē śēţţĩńĝś`, +'sbb3243352661428f': `Àũţĥēńţĩćàţĩōń ƒĺōŵ`, +'sbb57cd8a3ed12915': `Vàĺĩď ƒōŕ 360 ďàŷś, àƒţēŕ ŵĥĩćĥ ţĥē ƥàśśŵōŕď ŵĩĺĺ àũţōmàţĩćàĺĺŷ ŕōţàţē. Ŷōũ ćàń ćōƥŷ ţĥē ƥàśśŵōŕď ƒŕōm ţĥē Ţōķēń Ĺĩśţ.`, +'sbb8ad22c83d375b1': `Ţĥē ƒōĺĺōŵĩńĝ ķēŷŵōŕďś àŕē śũƥƥōŕţēď:`, +'sbbb2180b6aed196e': `Ƒŕōm ńũmƀēŕ`, +'sbbb7318812d64e51': str`Ēŕŕōŕ ŵĥēń ćŕēàţĩńĝ ćŕēďēńţĩàĺ: ${0}`, +'sbbb97b1c63507dc0': `Ńũmƀēŕ`, +'sbbc1de43ab6c1f76': `Ćŕēàţē Ńōţĩƒĩćàţĩōń Ŕũĺē`, +'sbbc53e0e54d7946f': `ŚũƀĴēćţ`, +'sbbc806ea3987c781': `Àũţōmàţĩć ĩmƥōŕţ`, +'sbc625b4c669b9ce8': `Ōƥēń ĺōĝĩń`, +'sbc80eab557fbf782': `Śēàŕćĥ ĝŕōũƥ`, +'sbc88fb27a4c3b894': `Ćōńƒĩĝũŕē ĥōŵ ţĥē ƒĺōŵ ēxēćũţōŕ śĥōũĺď ĥàńďĺē àń ĩńvàĺĩď ŕēśƥōńśē ţō à ćĥàĺĺēńĝē ĝĩvēń ƀŷ ţĥĩś ƀōũńď śţàĝē.`, +'sbcae51a6f06e53d4': `Śēàŕćĥ mōďē`, +'sbcf8604929b6a27a': `Śēńďĩńĝ Ďũō ƥũśĥ ńōţĩƒĩćàţĩōń`, +'sbd19064fc3f405c1': `Ćĥēćķ ŷōũŕ Ĩńƀōx ƒōŕ à vēŕĩƒĩćàţĩōń ēmàĩĺ.`, +'sbd34d118bcb1aaf2': `ÀƤĨ Ţōķēń`, +'sbd5be4fb7442a34c': `ßàśēď ōń ţĥē Ũśēŕ'ś ĨĎ`, +'sbdc1176ff9f93da2': `Ţĥĩś ĩś ţĥē ƒũĺĺ ēńďƥōĩńţ ţō śēńď ƤŌŚŢ ŕēǫũēśţś ţō.`, +'sbdc4a833de9ca502': `Ĺōĝĩńś àńď àũţĥōŕĩźàţĩōńś ōvēŕ ţĥē ĺàśţ ŵēēķ (ƥēŕ 8 ĥōũŕś)`, +'sbdeedc1c60306b35': `Mēśśàĝēś`, +'sbe3b416a356f1c91': `Ĩś àćţĩvē`, +'sbe47a5bdeec19ab0': `Śţàĝē ƀĩńďĩńĝ(ś)`, +'sbe9a51f29a4a2c5b': `Śũććēśśƒũĺ`, +'sbea3c1e4f2fd623d': `Śţàĝē ķĩńď`, +'sbea3db12fd799210': `Àććēśś Ţōķēń vàĺĩďĩţŷ`, +'sbec40ef4e6f139b7': `(Ƒōŕmàţ: ĥōũŕś=1;mĩńũţēś=2;śēćōńďś=3).`, +'sbecf8dc03c978d15': `Ŕũń śŷńć àĝàĩń`, +'sbedb77365a066648': str`Ĺàśţ śŷńć: ${0}`, +'sbf41e0db12834133': `Ĩńćĺũďē Ũśēŕ ćĺàĩmś ƒŕōm śćōƥēś ĩń ţĥē ĩď_ţōķēń, ƒōŕ àƥƥĺĩćàţĩōńś ţĥàţ ďōń'ţ àććēśś ţĥē ũśēŕĩńƒō ēńďƥōĩńţ.`, +'sbf4ef82e04772a4e': `Ďēĺēţē ţĥē ćũŕŕēńţĺŷ ƥēńďĩńĝ ũśēŕ. ĆÀŨŢĨŌŃ, ţĥĩś śţàĝē ďōēś ńōţ àśķ ƒōŕ ćōńƒĩŕmàţĩōń. Ũśē à ćōńśēńţ śţàĝē ţō ēńśũŕē ţĥē ũśēŕ ĩś àŵàŕē ōƒ ţĥēĩŕ àćţĩōńś.`, +'sbf5f4c5ba679e847': str`Ĺōĝĝĩńĝ ĩń vĩà ${0}.`, +'sbf9c5c5a8e5efad4': `Ƒàĩĺēď`, +'sc007cca5af67eae0': `Ŵĥēń ēńàƀĺēď, àũţĥēńţĩķ ŵĩĺĺ ĩńţēŕćēƥţ ţĥē Àũţĥōŕĩźàţĩōń ĥēàďēŕ ţō àũţĥēńţĩćàţē ţĥē ŕēǫũēśţ.`, +'sc04e92d753742189': `6 ďĩĝĩţś, ŵĩďēĺŷ ćōmƥàţĩƀĺē`, +'sc0829ee663ced008': `Ďĩŕēćţōŕŷ`, +'sc0a0c87d5c556c38': `Ƥĥōńē ńũmƀēŕ`, +'sc0d0890fbd46ef62': `Ēxćĺũďē śēŕvĩćē àććōũńţś`, +'sc10db51c9bb77d5c': `Ũśēŕ ďàţàƀàśē + ĹĎÀƤ ƥàśśŵōŕď`, +'sc1231049879b8d33': `Ĩƒ ēńàƀĺēď, ũśē ţĥē ĺōćàĺ ćōńńēćţĩōń. Ŕēǫũĩŕēď Ďōćķēŕ śōćķēţ/Ķũƀēŕńēţēś Ĩńţēĝŕàţĩōń.`, +'sc1589121ae2f5f92': `Ēńţēŕ ţĥē ćōďē śĥōŵń ōń ŷōũŕ ďēvĩćē.`, +'sc15d60377cc8aaac': `Ńō ƥōĺĩćĩēś àŕē ćũŕŕēńţĺŷ ƀōũńď ţō ţĥĩś ōƀĴēćţ.`, +'sc16e00a7a8b2fde2': `ßàćķ`, +'sc19838ca8c135c1b': `ßŕàńďĩńĝ śēţţĩńĝś`, +'sc1a1ff47c058bb09': `Ēvēńţ Ĺōĝ`, +'sc1cb0eef9ed94e6a': `Ńēŵĺŷ ćŕēàţēď ũśēŕś àŕē àďďēď ţō ţĥĩś ĝŕōũƥ, ĩƒ à ĝŕōũƥ ĩś śēĺēćţēď.`, +'sc1ce2f758935ff48': `Màńàĝēď ƀŷ àũţĥēńţĩķ`, +'sc1cfce89ebcf1bf9': `Ďōŵńĺōàď śĩĝńĩńĝ ćēŕţĩƒĩćàţē`, +'sc1f4b57e722a89d6': `3: Śàƒēĺŷ ũńĝũēśśàƀĺē: mōďēŕàţē ƥŕōţēćţĩōń ƒŕōm ōƒƒĺĩńē śĺōŵ-ĥàśĥ śćēńàŕĩō. (ĝũēśśēś &ĺţ; 10^10)`, +'sc1feadd25659c94d': `Ƒŕōm àďďŕēśś`, +'sc21032b0d37882a0': `Ĩƒ ŷōũŕ àũţĥēńţĩķ_ĥōśţ śēţţĩńĝ ďōēś ńōţ màţćĥ ţĥē ŨŔĹ ŷōũ ŵàńţ ţō ĺōĝĩń ŵĩţĥ, àďď ţĥĩś śēţţĩńĝ.`, +'sc25edca57df81461': `Àũţĥēńţĩćàţĩōń`, +'sc265a3e29e1206e4': `Ēvēńţś`, +'sc297b2e13c28ecf9': `Àĺĺōŵ ƒŕĩēńďś ţō àũţĥēńţĩćàţē vĩà Ƥĺēx, ēvēń ĩƒ ŷōũ ďōń'ţ śĥàŕē àńŷ śēŕvēŕś`, +'sc2a1a40a1b4b0170': `Śũććēśśƒũĺĺŷ ćŕēàţēď ĩńţēĝŕàţĩōń.`, +'sc2c70fd56f5d0b48': `Ƥōśţ ƀĩńďĩńĝ ƀũţ ţĥē ŕēǫũēśţ ĩś àũţōmàţĩćàĺĺŷ śēńţ àńď ţĥē ũśēŕ ďōēśń'ţ ĥàvē ţō ćōńƒĩŕm.`, +'sc2cedfb22488ccb2': `Mōďēŕń àƥƥĺĩćàţĩōńś, ÀƤĨś àńď Śĩńĝĺē-ƥàĝē àƥƥĺĩćàţĩōńś.`, +'sc2e03590269d5a10': `Ńēŵ ƥŕōƥēŕţŷ màƥƥĩńĝ`, +'sc2ec367e3108fe65': `Ďũō àćţĩvàţĩōń ǪŔ ćōďē`, +'sc2f116c0ea77d58a': `Ēŕŕōŕ mēśśàĝē`, +'sc2f1e5dd74c1b7df': `Śũććēśśƒũĺ Ĺōĝĩńś`, +'sc3259eb55cf91e8c': `ĹĎÀƤ`, +'sc35581d9c1cd67ff': str`Ōń ƀēĥàĺƒ ōƒ ${0}`, +'sc381422c585b867f': `Ǫũĩćķ àćţĩōńś`, +'sc39fb3ff3753d5ab': `Ĥĩďē màńàĝēď màƥƥĩńĝś`, +'sc3c74f5273df459a': `Ĝēńēŕĩć`, +'sc3e0c240b159fbce': `Śũććēśśƒũĺĺŷ ćŕēàţēď ƒĺōŵ.`, +'sc3e1c4f1fff8e1ca': `Ţĥĩś ƒĺōŵ ĩś ćōmƥĺēţēď.`, +'sc44bae5cde0083fa': `Àćţĩōńś ōvēŕ ţĥē ĺàśţ ŵēēķ (ƥēŕ 8 ĥōũŕś)`, +'sc4508175bf6b09dd': `Ũńàũţĥēńţĩćàţēď Ƥàţĥś`, +'sc498a3b05cfe2b08': `Ƥŕēƒēŕŕēď: Ũśēŕ vēŕĩƒĩćàţĩōń ĩś ƥŕēƒēŕŕēď ĩƒ àvàĩĺàƀĺē, ƀũţ ńōţ ŕēǫũĩŕēď.`, +'sc4eedb434536bdb4': `Ńēēď àń àććōũńţ?`, +'sc4fdeccf14be5378': `Ēxēćũţē`, +'sc54aafeea9c9bab0': `Ćōńńēćţēď śēŕvĩćēś`, +'sc554339ffc7b04e7': `Śũććēśśƒũĺĺŷ ćŕēàţēď ĩńvĩţàţĩōń.`, +'sc5668cb23167e9bb': `Àĺţēŕńàţĩvēĺŷ, ĩƒ ŷōũŕ ćũŕŕēńţ ďēvĩćē ĥàś Ďũō ĩńśţàĺĺēď, ćĺĩćķ ōń ţĥĩś ĺĩńķ:`, +'sc592307ea80f16b9': `Ũńķńōŵń`, +'sc5a4711395ffb043': `Śţàĝē ũśēď ţō ćōńƒĩĝũŕē à ŢŌŢƤ àũţĥēńţĩćàţōŕ (ĩ.ē. Àũţĥŷ/Ĝōōĝĺē Àũţĥēńţĩćàţōŕ).`, +'sc5f923729564fbf3': `Ćŕēàţē Ŕōĺē`, +'sc5fb00b25c7f5a02': `Ƥēŕmĩśśĩōń`, +'sc615309d10a9228c': `ŔßÀĆ ĩś ĩń ƥŕēvĩēŵ.`, +'sc647dcb91f6958dd': `Ńũmƀēŕ ţĥē ŚMŚ ŵĩĺĺ ƀē śēńţ ƒŕōm.`, +'sc6b4ebd37b7a91c7': `Ţōķēńś àńď Àƥƥ ƥàśśŵōŕďś`, +'sc6c57419ad3a01a8': `Ķēŷ ũśēď ţō śĩĝń ţĥē ţōķēńś.`, +'sc6c575c5ff64cdb1': `Ũƥďàţē ŚĆĨM Ƥŕōvĩďēŕ`, +'sc6e8a34361c7c272': `Ƒōŕŵàŕď àũţĥ (ďōmàĩń-ĺēvēĺ)`, +'sc741d9ebe07ad103': `Śĩĝńĩńĝ Ćēŕţĩƒĩćàţē`, +'sc741dfb09d3395f0': `Ńō Àƥƥĺĩćàţĩōńś àvàĩĺàƀĺē.`, +'sc744f3691efe310d': `Ĥĩďē śēŕvĩćē-àććōũńţś`, +'sc764ddf60b5149de': `Ōƥţĩōńàĺ ŨŔĹ ĩƒ ţĥē ĨĎƤ śũƥƥōŕţś Śĩńĝĺē-Ĺōĝōũţ.`, +'sc7707b3ba3a2a7ca': `Ŕēǫũēśţ ţōķēń ŨŔĹ`, +'sc7be80a7f8ec597e': `Ēxƥĩŕŷ ďàţē`, +'sc816360d6f5a1eeb': `Ƒĺōŵś ďēśćŕĩƀē à ćĥàĩń ōƒ Śţàĝēś ţō àũţĥēńţĩćàţē, ēńŕōĺĺ ōŕ ŕēćōvēŕ à ũśēŕ. Śţàĝēś àŕē ćĥōśēń ƀàśēď ōń ƥōĺĩćĩēś àƥƥĺĩēď ţō ţĥēm.`, +'sc8a79fddea3ab4a9': `ŨŔĹ ũśēď ţō vàĺĩďàţē ćàƥţćĥà ŕēśƥōńśē, ďēƒàũĺţś ţō ŕēćàƥţćĥà. Ćàń ƀē ŕēƥĺàćēď ŵĩţĥ àńŷ ćōmƥàţĩƀĺē àĺţēŕńàţĩvē.`, +'sc8da3cc71de63832': `Ĺōĝĩń`, +'sc8de93a7dc0d78ba': `Ćĺĩēńţ ţŷƥē`, +'sc8f286ac783c385d': `Vĩēŵ Ďēƥĺōŷmēńţ Ĩńƒō`, +'sc9175cb129fdc306': str`Ũƥďàţē ${0}`, +'sc926385d1a624c3a': `1: Vēŕŷ ĝũēśśàƀĺē: ƥŕōţēćţĩōń ƒŕōm ţĥŕōţţĺēď ōńĺĩńē àţţàćķś. (ĝũēśśēś &ĺţ; 10^6)`, +'sc92c1a54034e21cc': `Àśśĩĝń`, +'sc92d7cfb6ee1fec6': `Śũććēśśƒũĺĺŷ ũƥďàţēď ƥàśśŵōŕď.`, +'sc92ea8fbf9ba06a7': `ßàćķćĥàńńēĺ Ƥŕōvĩďēŕś`, +'sc92ed9d5e01d3f24': `Ńōţĩƒĩćàţĩōń ŕũĺē(ś)`, +'sc96dd9d2e7b05fc5': `Mĩńĩmũm ĺēńĝţĥ`, +'sc9c3578cce3cf7a8': `Ēxţēŕńàĺ Ĥōśţ`, +'sc9cf9ecaf9e5d67e': `ßàśēď ōń ţĥē Ũśēŕ'ś ŨŨĨĎ`, +'sc9f69360b58706c7': `Mōďēĺ ďēĺēţēď`, +'sc9fc206433f67588': `Ŕēĝũĺàŕ ēxƥŕēśśĩōńś ƒōŕ ŵĥĩćĥ àũţĥēńţĩćàţĩōń ĩś ńōţ ŕēǫũĩŕēď. Ēàćĥ ńēŵ ĺĩńē ĩś ĩńţēŕƥŕēţēď àś à ńēŵ ēxƥŕēśśĩōń.`, +'sca2879d96f58a39c': `Śēńď ōńćē`, +'sca7cfe2bef51b2a5': `Ŕōōţ`, +'sca7fed2bef53cb99': `Ŕōĺē`, +'scab2900019953050': `Śũććēśśƒũĺĺŷ ũƥďàţēď ũśēŕ.`, +'scae166352a31032c': `Ćōńƒĩĝũŕàţĩōń śţàĝēś`, +'scb317851cbcc6b12': `Ĩńţēŕńàĺ ĥōśţ`, +'scb43f5faeb6a7ca9': `Ũśēŕ vēŕĩƒĩćàţĩōń śĥōũĺď ńōţ ōććũŕ.`, +'scb489a1a173ac3f0': `Ŷēś`, +'scb58b8a60cad8762': `Ďēƒàũĺţ ŕēĺàŷ śţàţē`, +'scb5c9a7cc4ccd68d': `Ēmàĩĺ ĩńƒō:`, +'scb6620fcd5bff04c': `Àďvàńćēď śēţţĩńĝś`, +'scbb7d3154da629f3': `ŌĆĨ ŨŔĹ, ĩń ţĥē ƒōŕmàţ ōƒ ōćĩ://ŕēĝĩśţŕŷ.ďōmàĩń.ţĺď/ƥàţĥ/ţō/màńĩƒēśţ.`, +'scc286303aa9c6cb0': `Śŷńć śţàţũś`, +'scc2e420c54dc8089': `ßĩńď ēxĩśţĩńĝ śţàĝē`, +'scc3487e74c5a3e89': `Ćōƥŷ ţōķēń`, +'scc733ba98740038a': `Ũƥďàţē Ƥŕōmƥţ`, +'sccbfc4dec0c8d80c': `Àśśĩĝńēď ţō àƥƥĺĩćàţĩōń`, +'sccc47f82044453f9': `ßàśēď ōń ţĥē Ũśēŕ'ś ĥàśĥēď ĨĎ`, +'scd0cfe87af6f2ff2': `Śēvēŕĩţŷ`, +'scd247ffad6e04ac0': `ŢĹŚ Śēŕvēŕ ńàmē`, +'scd2984ee5552643a': `ŚŚŌ ŨŔĹ (Ƥōśţ)`, +'scd8062ff5e1326d8': `Àĺĺōŵ ũƥ ţō Ń ōććũŕŕēńćēś ĩń ţĥē ĤĨßƤ ďàţàƀàśē.`, +'scd84d10ee9137070': `Àśśĩĝń ƥēŕmĩśśĩōń ţō ŕōĺē`, +'scda8dc24b561e205': `Ţĥēŕē ŵàś àń ēŕŕōŕ ĩń ţĥē àƥƥĺĩćàţĩōń.`, +'sce106606ae84d46f': `Ƥŕōƥēŕţŷ Màƥƥĩńĝś`, +'sce8d867ca5f35304': `Śēţ ƥàśśŵōŕď`, +'scea1f16238093e35': `Ēxēćũţēś ţĥē ƥŷţĥōń śńĩƥƥēţ ţō ďēţēŕmĩńē ŵĥēţĥēŕ ţō àĺĺōŵ ōŕ ďēńŷ à ŕēǫũēśţ.`, +'scee721983b1c28d0': `Àďď ēxĩśţĩńĝ ũśēŕ`, +'scef2eb6a2bfe3110': `Ĩńţēŕńàĺ ũśēŕś mĩĝĥţ ƀē ũśēŕś śũćĥ àś ćōmƥàńŷ ēmƥĺōŷēēś, ŵĥĩćĥ ŵĩĺĺ ĝēţ àććēśś ţō ţĥē ƒũĺĺ Ēńţēŕƥŕĩśē ƒēàţũŕē śēţ.`, +'scef3f4ad80abbd22': `Ćōńƒĩĝũŕē ĥōŵ ţĥē ōũţƥōśţ àũţĥēńţĩćàţēś ŕēǫũēśţś.`, +'scef7abb8456b06d6': `Ćĥēćķ źxćvƀń`, +'scefe482c547fb3f3': str`ßàśēď ōń ${0}`, +'scf2790cf3ad89283': `Àţţŕĩƀũţē ńàmē ũśēď ƒōŕ ŚÀMĹ Àśśēŕţĩōńś. Ćàń ƀē à ŨŔŃ ŌĨĎ, à śćĥēmà ŕēƒēŕēńćē, ōŕ à àńŷ ōţĥēŕ śţŕĩńĝ. Ĩƒ ţĥĩś ƥŕōƥēŕţŷ màƥƥĩńĝ ĩś ũśēď ƒōŕ ŃàmēĨĎ Ƥŕōƥēŕţŷ, ţĥĩś ƒĩēĺď ĩś ďĩśćàŕďēď.`, +'scf4afecb0f1e69b2': `Ĩńvàĺĩď ĺōĝĩń àţţēmƥţś ŵĩĺĺ ďēćŕēàśē ţĥē śćōŕē ƒōŕ ţĥē ćĺĩēńţ'ś ĨƤ, àńď ţĥē +ũśēŕńàmē ţĥēŷ àŕē àţţēmƥţĩńĝ ţō ĺōĝĩń àś, ƀŷ ōńē.`, +'scf5ce91bfba10a61': `Ƥĺēàśē ēńţēŕ ŷōũŕ ƥàśśŵōŕď`, +'scfbc2f1396ee8550': `Ďēńĩēď àćţĩōń`, +'sd04376c4216c921f': `ŨŔĹ śēţţĩńĝś`, +'sd06b47084fec0ec5': `ßēàŕēŕ Ţōķēń`, +'sd07866d9f38b2c50': `Ēxēćũţē ƒĺōŵ`, +'sd080b2370aa82967': `Ŕēƥũţàţĩōń ƒōŕ ĨƤ àńď ũśēŕ ĩďēńţĩƒĩēŕś. Śćōŕēś àŕē ďēćŕēàśēď ƒōŕ ēàćĥ ƒàĩĺēď ĺōĝĩń àńď ĩńćŕēàśēď ƒōŕ ēàćĥ śũććēśśƒũĺ ĺōĝĩń.`, +'sd0bc94e11935ee5a': `ĤŢŢƤŚ ĩś ńōţ ďēţēćţēď ćōŕŕēćţĺŷ`, +'sd1031bddc66dc495': `Ćōńńēćţ ŷōũŕ ũśēŕ àććōũńţ ţō ţĥē śēŕvĩćēś ĺĩśţēď ƀēĺōŵ, ţō àĺĺōŵ ŷōũ ţō ĺōĝĩń ũśĩńĝ ţĥē śēŕvĩćē ĩńśţēàď ōƒ ţŕàďĩţĩōńàĺ ćŕēďēńţĩàĺś.`, +'sd1146418b344f81f': `Ũƥďàţē Ńōţĩƒĩćàţĩōń Ŕũĺē`, +'sd1288ca57e221cf9': `Ũƥďàţē Ţōķēń`, +'sd14a19a19d507f9e': `Ƥàŕēńţ ĝŕōũƥ ƒōŕ àĺĺ ţĥē ĝŕōũƥś ĩmƥōŕţēď ƒŕōm ĹĎÀƤ.`, +'sd18170637295bace': `Àďďĩţĩōń Ũśēŕ ĎŃ`, +'sd18b18f91b804c3f': `Ćũśţōm àţţŕĩƀũţēś`, +'sd1a5560fde6f2271': `Śũććēśśƒũĺĺŷ ĩmƥōŕţēď ƥŕōvĩďēŕ.`, +'sd1f44f1a8bc20e67': `Ēmàĩĺ`, +'sd1f81284eeb7b503': `Ƒĩĺē`, +'sd20f6cd02c90867f': `Àƥƥĺĩćàţĩōń(ś)`, +'sd2122c514f0778b5': `Àĺĺōŵ ţĥē ũśēŕ ţō ĺōĝ ĩń àńď ũśē ţĥĩś śŷśţēm`, +'sd216b08bafb297ee': `Ƒĺōŵ ũśēď ţō àũţĥēńţĩćàţē ũśēŕś. Ĩƒ ĺēƒţ ēmƥţŷ, ţĥē ƒĩŕśţ àƥƥĺĩćàƀĺē ƒĺōŵ śōŕţēď ƀŷ ţĥē śĺũĝ ĩś ũśēď.`, +'sd21a971eea208533': `Vēńďōŕ`, +'sd2208cd1a767644b': `Ďĩśćōńńēćţ`, +'sd2223afb7d6b100d': `Ţŷƥē`, +'sd22bd01bdf28c548': `Ćũmũĺàţĩvē ĺĩćēńśē ēxƥĩŕŷ`, +'sd2c58d7c6dddc515': `ŚÀMĹ Mēţàďàţà`, +'sd3386a2ef42e80b9': `Ďōŵńĺōàď`, +'sd34be0d0fcb39971': `Ũśēŕ'ś ďĩśƥĺàŷ ńàmē.`, +'sd35ae4be63df1f9f': `Śēĺēćţĩōń ōƒ ƀàćķēńďś ţō ţēśţ ţĥē ƥàśśŵōŕď àĝàĩńśţ.`, +'sd39c5e998efecf93': `ŚÀMĹ Àţţŕĩƀũţē Ńàmē`, +'sd3a853f63f45dcb0': `Ƥàśśĩńĝ`, +'sd46fd9b647cfea10': `Àĺśō ķńōŵń àś Ćĺĩēńţ Śēćŕēţ.`, +'sd47f3d3c9741343d': `4: Vēŕŷ ũńĝũēśśàƀĺē: śţŕōńĝ ƥŕōţēćţĩōń ƒŕōm ōƒƒĺĩńē śĺōŵ-ĥàśĥ śćēńàŕĩō. (ĝũēśśēś &ĝţ;= 10^10)`, +'sd49099e9522635f4': `Ĺĩćēńśē(ś)`, +'sd4ac926e4ebb1cd7': `Ćōmmōń Ńàmē`, +'sd503fabef9691134': `Ŵĥēń ũśĩńĝ ƥŕōxŷ ōŕ ƒōŕŵàŕď àũţĥ (śĩńĝĺē àƥƥĺĩćàţĩōń) mōďē, ţĥē ŕēǫũēśţēď ŨŔĹ Ƥàţĥ ĩś ćĥēćķēď àĝàĩńśţ ţĥē ŕēĝũĺàŕ ēxƥŕēśśĩōńś. Ŵĥēń ũśĩńĝ ƒōŕŵàŕď àũţĥ (ďōmàĩń mōďē), ţĥē ƒũĺĺ ŕēǫũēśţēď ŨŔĹ ĩńćĺũďĩńĝ śćĥēmē àńď ĥōśţ ĩś màţćĥēď àĝàĩńśţ ţĥē ŕēĝũĺàŕ ēxƥŕēśśĩōńś.`, +'sd539548ca4c71619': `Àďďĩţĩōńàĺ śćōƥēś`, +'sd5903cc8de68b3fc': `Ńō ƒōŕm ƒōũńď`, +'sd5a4b41c6c883b03': `Àũďĩēńćē`, +'sd5ba2d61ee4796fe': `Ĩńvĩţàţĩōń(ś)`, +'sd600334ec2c39b74': `Ćŕēàţē ũśēŕ`, +'sd60415c7666859f0': `Ŵĥēń ćĥēćķēď, ţĥē ĩńĩţĩàĺ vàĺũē ŵĩĺĺ ƀē ēvàĺũàţēď ĩń ţĥē śàmē ŵàŷ à ƥŕōƥēŕţŷ màƥƥĩńĝ ĩś. + Ĩƒ ţĥē ēvàĺũàţĩōń ƒàĩĺś, ţĥē ĩńĩţĩàĺ vàĺũē ĩţśēĺƒ ĩś ŕēţũŕńēď.`, +'sd62cfc27ad4aa33b': `ßàśēď ōń ţĥē Ũśēŕ'ś Ēmàĩĺ`, +'sd6422f7004036cdd': `ŌĆĨ Ŕēĝĩśţŕŷ`, +'sd6a025d66f2637d1': `Ţŕàďĩţĩōńàĺ àũţĥēńţĩćàţōŕ`, +'sd6b8b4156f7df696': `Ĩćōń śĥōŵń ĩń śĩďēƀàŕ/ĥēàďēŕ àńď ƒĺōŵ ēxēćũţōŕ.`, +'sd6c3ddb62de0e8f7': `Ćēŕţĩƒĩćàţē ũśēď ţō śĩĝń ōũţĝōĩńĝ Ŕēśƥōńśēś ĝōĩńĝ ţō ţĥē Śēŕvĩćē Ƥŕōvĩďēŕ.`, +'sd6cd7ce2310a73a4': `Ćĥēćķś ţĥē vàĺũē ƒŕōm ţĥē ƥōĺĩćŷ ŕēǫũēśţ àĝàĩńśţ śēvēŕàĺ ŕũĺēś, mōśţĺŷ ũśēď ţō ēńśũŕē ƥàśśŵōŕď śţŕēńĝţĥ.`, +'sd71081c23d1cd38b': `Ćĥēćķ àććēśś`, +'sd73b202ec04eefd9': `Ũńķńōŵń ĩńţēńţ`, +'sd75a9a71309fb387': `Ćĥēćķ ĥàvēĩƀēēńƥŵńēď.ćōm`, +'sd766cdc29b25ff95': `Àũţĥēńţĩćàţĩńĝ ŵĩţĥ Àƥƥĺē...`, +'sd7728d2b6e1d25e9': `Ƥŕōƥēŕţŷ màƥƥĩńĝś ũśēď ƒōŕ ĝŕōũƥ ćŕēàţĩōń.`, +'sd7fa99e4d82b374a': `Ŕēćōvēŕŷ ĺĩńķ ćàńńōţ ƀē ēmàĩĺēď, ũśēŕ ĥàś ńō ēmàĩĺ àďďŕēśś śàvēď.`, +'sd8051c26e155f043': `Àśśĩĝń ƥēŕmĩśśĩōń ţō ũśēŕ`, +'sd80b0b8aeae3abe3': `Ũśēŕ ƥàśśŵōŕď ŵŕĩţēƀàćķ`, +'sd8417b41ca27bc8f': `Ńēŵ śţàĝē`, +'sd891d8463d0ebace': `Ŕēśţàŕţś ţĥē ƒĺōŵ ƒŕōm ţĥē ƀēĝĩńńĩńĝ`, +'sd8c5339b82b71507': `Ŵàĩţ (mĩń)`, +'sd8d9451f86502d1a': `Ďēvĩćē ćĺàśśēś ŵĥĩćĥ ćàń ƀē ũśēď ţō àũţĥēńţĩćàţē.`, +'sd8f220c999726151': `Ŕēďĩŕēćţ`, +'sd924045605feea63': `Ēxƥĩŕēś`, +'sd947d57c9a9b7108': `Ōƥēń ĩśśũē ōń ĜĩţĤũƀ...`, +'sd94db2b8c85d10a6': `ŚĹŌ ŨŔĹ`, +'sd94e99af8b41ff54': `0: Ţōō ĝũēśśàƀĺē: ŕĩśķŷ ƥàśśŵōŕď. (ĝũēśśēś &ĺţ; 10^3)`, +'sd97d8d0906e6cc47': `Ćàśē ĩńśēńśĩţĩvē màţćĥĩńĝ`, +'sd9b556a84ae25690': `Śũććēśśƒũĺĺŷ śēńţ ţēśţ-ŕēǫũēśţ.`, +'sd9f67fbf3f86efcf': `Àďď ĝŕōũƥ`, +'sda4e78c19f5b6f35': `Ţĥē ƥōĺĩćŷ ţàķēś à ŕàńďōm ţĩmē ţō ēxēćũţē. Ţĥĩś ćōńţŕōĺś ţĥē mĩńĩmũm ţĩmē ĩţ ŵĩĺĺ ţàķē.`, +'sda5e1499f93146ad': str`${0} ďàŷś àĝō`, +'sda796c87fa97ed4d': `Mōďēĺ Ńàmē`, +'sdaca9c2c0361ed3a': `Ŕēvĩēŵ ţĥē àƥƥĺĩćàţĩōń.`, +'sdae55084f6cb2662': `Ōƥţĩōńàĺĺŷ ēńţēŕ à ĝŕōũƥ ńàmē. Àƥƥĺĩćàţĩōńś ŵĩţĥ ĩďēńţĩćàĺ ĝŕōũƥś àŕē śĥōŵń ĝŕōũƥēď ţōĝēţĥēŕ.`, +'sdae649fae731e838': `Ćĥēćķƀōx`, +'sdb53ccdd6174e6e3': `Śũććēśśƒũĺĺŷ àďďēď ũśēŕ(ś).`, +'sdb7b2173869822bc': `Ũśēŕ vēŕĩƒĩćàţĩōń mũśţ ōććũŕ.`, +'sdb861d9906f18ac2': `Ţĥŕōŵ ēŕŕōŕ?`, +'sdbc08adee233f180': `Ũƥďàţē ŌÀũţĥ2 Ƥŕōvĩďēŕ`, +'sdbccb39a658f0e45': `Ńēŵ ƥōĺĩćŷ`, +'sdc1ef94016f0d855': `Śũććēśśƒũĺĺŷ ũƥďàţēď ĩńţēĝŕàţĩōń.`, +'sdc30bddeda2f0225': `Vàĺĩďàţē ţĥē ũśēŕ'ś ƥàśśŵōŕď àĝàĩńśţ ţĥē śēĺēćţēď ƀàćķēńď(ś).`, +'sdc323c6af4ae9f01': `Śũććēśśƒũĺĺŷ ćōƥĩēď ŢŌŢƤ Ćōńƒĩĝ.`, +'sdc5690be4a342985': `Ţĥē ţōķēń ĥàś ƀēēń ćōƥĩēď ţō ŷōũŕ ćĺĩƥƀōàŕď`, +'sdc673e73b5c13aea': `Ďēĺēţē`, +'sdc70195469e83e3f': `8 ďĩĝĩţś, ńōţ ćōmƥàţĩƀĺē ŵĩţĥ àƥƥś ĺĩķē Ĝōōĝĺē Àũţĥēńţĩćàţōŕ`, +'sdc9a6ad1af30572c': `Ƒōŕ ńĝĩńx'ś àũţĥ_ŕēǫũēśţ ōŕ ţŕàēƒĩķ'ś ƒōŕŵàŕďÀũţĥ`, +'sdc9e222be9612939': `Śōũŕćē ĺĩńķēď`, +'sdcc7b2c109ce9775': `Ţōķēńś àŕē ũśēď ţĥŕōũĝĥōũţ àũţĥēńţĩķ ƒōŕ Ēmàĩĺ vàĺĩďàţĩōń śţàĝēś, Ŕēćōvēŕŷ ķēŷś àńď ÀƤĨ àććēśś.`, +'sdce4680288083fe3': `Àĺŵàŷś ŕēţũŕńś ţĥē ĺàţēśţ ďàţà, ƀũţ śĺōŵēŕ ţĥàń ćàćĥēď ǫũēŕŷĩńĝ`, +'sdd1ff479d04ac140': `Ƥũƀĺĩć`, +'sdd4bd4224c4e943d': `àũţĥēńţĩķ: Ĺōćàĺē: Ďĩśƥĺàŷś à ĺĩśţ ōƒ ĺōćàĺēś àũţĥēńţĩķ śũƥƥōŕţś.`, +'sdd6b8b56a811080e': `Ćēŕţĩƒĩćàţē Ƒĩńĝēŕƥŕĩńţ (ŚĤÀ256)`, +'sddb040c47daae56b': `ßĩńď ēxĩśţĩńĝ ƥōĺĩćŷ`, +'sddb3b0176f437721': `Ōƥēń ÀƤĨ ßŕōŵśēŕ`, +'sddc8efe94cb8c210': `Śţàĝēś àŕē śĩńĝĺē śţēƥś ōƒ à Ƒĺōŵ ţĥàţ à ũśēŕ ĩś ĝũĩďēď ţĥŕōũĝĥ. À śţàĝē ćàń ōńĺŷ ƀē ēxēćũţēď ƒŕōm ŵĩţĥĩń à ƒĺōŵ.`, +'sddcfc6ab24e3a6ed': `Ēńŕōĺĺmēńţ`, +'sde0ad51b14f77cf6': `Ŕēďĩŕēćţ ŨŔĨś/Ōŕĩĝĩńś (ŔēĝĒx)`, +'sde1907073fd96017': `(Ćũŕŕēńţ śēśśĩōń)`, +'sde2bb5418562c5b2': `Ũńķńōŵń ďēśĩĝńàţĩōń`, +'sde47e4d8b9b21b59': `ŴēƀÀũţĥń Àũţĥēńţĩćàţōŕś`, +'sde56783222b527d6': `Ēàćĥ ƥŕōvĩďēŕ ĥàś à ďĩƒƒēŕēńţ ĩśśũēŕ, ƀàśēď ōń ţĥē àƥƥĺĩćàţĩōń śĺũĝ`, +'sde949d0ef44572eb': `Ŕēǫũĩŕēś ţĥē ũśēŕ ţō ĥàvē à 'ũƥń' àţţŕĩƀũţē śēţ, àńď ƒàĺĺś ƀàćķ ţō ĥàśĥēď ũśēŕ ĨĎ. Ũśē ţĥĩś mōďē ōńĺŷ ĩƒ ŷōũ ĥàvē ďĩƒƒēŕēńţ ŨƤŃ àńď Màĩĺ ďōmàĩńś.`, +'sde9a3f41977ec1f8': str`Ēśţĩmàţēď ũśēŕ ćōũńţ ōńē ŷēàŕ ƒŕōm ńōŵ ƀàśēď ōń ${0} ćũŕŕēńţ ĩńţēŕńàĺ ũśēŕś àńď ${1} ƒōŕēćàśţēď ĩńţēŕńàĺ ũśēŕś.`, +'sdeb6cee42435dd07': `Ũƥďàţē Ĺĩćēńśē`, +'sdeb90bfd8a80b86b': `Ƥēŕmĩśśĩōńś ţō àďď`, +'sdefec5401bf67eba': `Ũśē à śēćũŕĩţŷ ķēŷ ţō ƥŕōvē ŷōũŕ ĩďēńţĩţŷ.`, +'sdf1d8edef27236f0': `À "ŕōàmĩńĝ" àũţĥēńţĩćàţōŕ, ĺĩķē à ŶũƀĩĶēŷ`, +'sdf22dcf939c27cc7': `Śţàĝē Ćōńƒĩĝũŕàţĩōń`, +'sdf34a5599d66f85c': `ßàćķĝŕōũńď ĩmàĝē`, +'sdf4e1c6a2f072600': `Àĺĺōŵēď ćōũńţ`, +'sdf87c5661b31359e': `Śũććēśśƒũĺĺŷ ćŕēàţēď ŕōĺē.`, +'sdfd22a21660f6002': `Śũććēśśƒũĺĺŷ ũƥďàţēď ƥŕōvĩďēŕ.`, +'sdfdb58cd232b363d': `Ƥàśśŵōŕď śţŕēńĝţĥ ēśţĩmàţōŕ ćŕēàţēď ƀŷ Ďŕōƥƀōx, śēē:`, +'se085f35c8a9203a1': `ĹĎÀƤ Śōũŕćē`, +'se09ab93d69f7f45b': `Ńōţ ũśēď ƀŷ àńŷ ōţĥēŕ ōƀĴēćţ.`, +'se09d055771f3a11d': `Ĝēńēŕĩć ŌƥēńĨĎ Ćōńńēćţ`, +'se0adaf83627104fb': `Àĺŵàŷś ēxēćũţē ţĥē ćōńƒĩĝũŕēď ƀĩńď ƒĺōŵ ţō àũţĥēńţĩćàţē ţĥē ũśēŕ`, +'se0c660020d9cf5b7': `Ōƒƒśēţ àƒţēŕ ŵĥĩćĥ ćōńśēńţ ēxƥĩŕēś.`, +'se10bbf4cf861c81b': `Śĩĝńĩńĝ ķēŷƥàĩŕ`, +'se12969ade44cd2b6': `Ńēŵ śōũŕćē`, +'se16ac750b81fa93d': str`Àśśĩĝńēď ţō ${0} ōƀĴēćţ(ś).`, +'se17fcb1f159ee382': `Ũƥďàţē Ƥĺēx Śōũŕćē`, +'se19cc57dd8675498': `Ţĥŕēśĥōĺď`, +'se1c85959463f53df': `Ũśē ţĥĩś ţēńàńţ ƒōŕ ēàćĥ ďōmàĩń ţĥàţ ďōēśń'ţ ĥàvē à ďēďĩćàţēď ţēńàńţ.`, +'se1e040b55319a0e8': `Ţĩmēōũţ`, +'se28b5f3fcadaeeb1': `Ēńţēŕ à ńēŵ ƥàśśŵōŕď ƒōŕ ţĥĩś ũśēŕ`, +'se291dfd2a59d7842': `Ƥōĺĩćŷ ƀĩńďĩńĝ(ś)`, +'se2adaf0371ffcd65': `Màćĥĩńē-ţō-Màćĥĩńē àũţĥēńţĩćàţĩōń śēţţĩńĝś`, +'se2b29e6cfe59414c': `ŨĨ Śēţţĩńĝś`, +'se2b62f7e9017965e': `Ţŕàēƒĩķ (Ćōmƥōśē)`, +'se2c3cbf2ed1403f1': `Śţàĝē ßĩńďĩńĝś`, +'se2cc93bd2647baec': `Śţàţĩć ŕũĺēś`, +'se2d65e13768468e0': `Ĩńţēŕńàĺ`, +'se2e9f5a32c93e5f7': `Ĺàśţ vàĺĩďàţĩōń ţĥŕēśĥōĺď`, +'se2f258b996f7279c': `Śŷśţēm ţàśķ ēxćēƥţĩōń`, +'se31d92bea7f3a186': `Ũśēď ţō àććēśś ţĥē ÀƤĨ ƥŕōĝŕàmmàţĩćàĺĺŷ`, +'se33b158a1ec02a09': str`Śũććēśśƒũĺĺŷ ďēĺēţēď ${0} ${1}`, +'se36b55dfcf5dc80b': `Ēńàƀĺē ŚţàŕţŢĹŚ`, +'se3e6af2ce24d80e8': `Ćĥĩńēśē (ţŕàďĩţĩōńàĺ)`, +'se409d01b52c4e12f': `Ŕēţŕŷ àũţĥēńţĩćàţĩōń`, +'se47baf2fd16b9d2b': `Ţēmƥĺàţē`, +'se4a9da0295597e73': `ŚMŢƤ Ũśēŕńàmē`, +'se4cd073c125382af': `Ũńśŷńćēď / Ń/À`, +'se50a08ab71bb96ed': `Ŵĥēń à vàĺĩď ũśēŕńàmē/ēmàĩĺ ĥàś ƀēēń ēńţēŕēď, àńď ţĥĩś ōƥţĩōń ĩś ēńàƀĺēď, ţĥē ũśēŕ'ś ũśēŕńàmē àńď àvàţàŕ ŵĩĺĺ ƀē śĥōŵń. Ōţĥēŕŵĩśē, ţĥē ţēxţ ţĥàţ ţĥē ũśēŕ ēńţēŕēď ŵĩĺĺ ƀē śĥōŵń.`, +'se5498954255620b4': `Śũććēśśƒũĺĺŷ śēńţ ēmàĩĺ.`, +'se5973e7c8ba0fc71': `ßĩńď mōďē`, +'se5c795faf2c07514': `Ćŕēàţē Ŕēćōvēŕŷ Ĺĩńķ`, +'se5cb18408df3284e': `Ƒōŕ mōŕē ĩńƒō śēē:`, +'se5dc026819a32ff8': str`Ũśēŕ ${0}`, +'se5fd752dbbc3cd28': `Ũśē à śēćũŕĩţŷ ķēŷ`, +'se63f9d833700af49': `Śēśśĩōń(ś)`, +'se65beb94fffc3c4b': `Ŕēǫũĩŕēď ƒōŕ śēŕvēŕś ũśĩńĝ ŢĹŚ 1.3+`, +'se68398e3c2c760b2': `Ţōķēń`, +'se6a13beff646557b': str`Śũććēśśƒũĺĺŷ ũƥďàţēď ${0} ${1}`, +'se6d950402810c34f': `Ƥŕōƥēŕţŷ màƥƥĩńĝś`, +'se7430794fa89005a': `Àĺśō ķńōŵń àś Ēńţĩţŷ ĨĎ. Ďēƒàũĺţś ţĥē Mēţàďàţà ŨŔĹ.`, +'se74ce42d41e392ba': `Màţćĥĩńĝ ĩś ďōńē ƀàśēď ōń ďōmàĩń śũƒƒĩx, śō ĩƒ ŷōũ ēńţēŕ ďōmàĩń.ţĺď, ƒōō.ďōmàĩń.ţĺď ŵĩĺĺ śţĩĺĺ màţćĥ.`, +'se78364ee913ae2bd': `Ńēŵ ōũţƥōśţ ĩńţēĝŕàţĩōń`, +'se7e1ababbc4868b8': str`${0} śēćōńďś`, +'se80dd66f23b4fc39': `Ćŕēàţē à ńēŵ ũśēŕ ēvēń ĩƒ à ũśēŕ ĩś ĩń ţĥē ƒĺōŵ ćōńţēxţ.`, +'se8987bdfb35e46b2': `Ćōńśũmēŕ ķēŷ`, +'se8a81c75b6e30a33': `Ƒĩēĺď ķēŷ ţō ćĥēćķ, ƒĩēĺď ķēŷś ďēƒĩńēď ĩń Ƥŕōmƥţ śţàĝēś àŕē àvàĩĺàƀĺē.`, +'se8dca0132c66ae03': `Ƥēŕmĩśśĩōńś`, +'se99efc0873031976': `Ĩćōń śĥōŵń ĩń ţĥē ƀŕōŵśēŕ ţàƀ.`, +'se9b1fec72ffd8f48': `Ĺōćàĺ`, +'se9c07cf256774d81': `Ēďĩţĩńĝ ĩś ďĩśàƀĺēď ƒōŕ màńàĝēď ţōķēńś`, +'se9d0f12f95b14095': `Ōƥţĩōńàĺ, ćōmmà-śēƥàŕàţēď ŚũƀĴēćţÀĺţ Ńàmēś.`, +'se9e9e1d6799b86a5': `ŴēƀÀũţĥń ńōţ śũƥƥōŕţēď ƀŷ ƀŕōŵśēŕ.`, +'sea2f00b34b385a43': `Śũććēśśƒũĺĺŷ ũƥďàţēď ďēvĩćē.`, +'sea3bfc143ced73db': `ŃàmēĨĎ àţţŕĩƀũţē`, +'sea4f08110bb8f15d': `Ŕēmōvē`, +'sea91c57b3d3969fe': `Śŷśţēm śţàţũś`, +'sea9fc40dfd1d18b1': `Ćōńƒĩĝũŕē ŔÀĎĨŨŚ ƥŕōvĩďēŕ màńũàĺĺŷ`, +'seab35681cbf36755': `Ōƥţĩōńàĺĺŷ ƥŕē-ƒĩĺĺ ţĥē ĩńƥũţ ŵĩţĥ àń ĩńĩţĩàĺ vàĺũē. + Ŵĥēń ćŕēàţĩńĝ à ƒĩxēď ćĥōĩćē ƒĩēĺď, ēńàƀĺē ĩńţēŕƥŕēţĩńĝ àś ēxƥŕēśśĩōń àńď + ŕēţũŕń à ĺĩśţ ţō ŕēţũŕń mũĺţĩƥĺē ďēƒàũĺţ ćĥōĩćēś.`, +'seb0805249661d15b': `Ŕēţũŕńś ţĥē ēŕŕōŕ mēśśàĝē àńď à śĩmĩĺàŕ ćĥàĺĺēńĝē ţō ţĥē ēxēćũţōŕ`, +'seb0c08d9f233bbfe': `Ƥĺēàśē ēńţēŕ ţĥē ćōďē ŷōũ ŕēćēĩvēď vĩà ŚMŚ`, +'seb5ba88f21937c98': `Ćĥēćķ ōũţƥōśţś.`, +'sebda1d54a3f9f967': `Ţōķēń ŨŔĹ`, +'sebf44d2471b608ad': `Ƒĺōŵ ũśēď ƀŷ àń àũţĥēńţĩćàţēď ũśēŕ ţō ćōńƒĩĝũŕē ţĥĩś Śţàĝē. Ĩƒ ēmƥţŷ, ũśēŕ ŵĩĺĺ ńōţ ƀē àƀĺē ţō ćōńƒĩĝũŕē ţĥĩś śţàĝē.`, +'sec1808532fe107b9': `Àĺĺōŵ ũśēŕś ţō ũśē Àƥƥĺĩćàţĩōńś ƀàśēď ōń ƥŕōƥēŕţĩēś, ēńƒōŕćē Ƥàśśŵōŕď Ćŕĩţēŕĩà àńď śēĺēćţĩvēĺŷ àƥƥĺŷ Śţàĝēś.`, +'sec5cdfa358f9dbf7': `Ŵàŕńĩńĝ: Àďďĩńĝ ţĥē ũśēŕ ţō ţĥē śēĺēćţēď ĝŕōũƥ(ś) ŵĩĺĺ ĝĩvē ţĥēm śũƥēŕũśēŕ ƥēŕmĩśśĩōńś.`, +'sec7443a45fd141e5': `Ƥŕōmƥţ(ś)`, +'sec97cdaf7af8648b': `Śēţ ćũśţōm àţţŕĩƀũţēś ũśĩńĝ ŶÀMĹ ōŕ ĵŚŌŃ.`, +'secbfd13bdae95a59': `Ũśēŕ śēţţĩńĝś ƒĺōŵ`, +'secdb4b4c4e66aa38': `Ĝŕōũƥ Ĩńƒō`, +'sece294cd51a85745': `Ďēţēŕmĩńēś ĥōŵ ĺōńĝ à śēśśĩōń ĺàśţś. Ďēƒàũĺţ ōƒ 0 śēćōńďś mēàńś ţĥàţ ţĥē śēśśĩōńś ĺàśţś ũńţĩĺ ţĥē ƀŕōŵśēŕ ĩś ćĺōśēď.`, +'sed02f831e653deb3': `Ĺōĝĩńś ōvēŕ ţĥē ĺàśţ ŵēēķ (ƥēŕ 8 ĥōũŕś)`, +'sed3512fe4560c7f4': `Ćŕēàţē ũśēŕś àś ĩńàćţĩvē`, +'sed8d4c3fd5f60e1f': `Ēxƥĺōŕē ĩńţēĝŕàţĩōńś`, +'sede0abbf2b612812': `Ŵēƀĥōōķ (ĝēńēŕĩć)`, +'see2bcbc11bb91960': `Śũććēśśƒũĺĺŷ ũƥďàţēď ĩńśţàńćē.`, +'see3ff55262fd6500': `ŨŔĹ ţĥē ũśēŕ ĩś ŕēďĩŕēćţ ţō ţō ćōńśēńţ ţĥē àũţĥōŕĩźàţĩōń.`, +'sef3d102324bf8561': `Ćŕēàţē ßĺũēƥŕĩńţ Ĩńśţàńćē`, +'sef49aec68fd1dc66': `Ńàmē`, +'sef50d248448e0df1': str`Ŷēś (${0})`, +'seffdf887fed7f668': `Ćēŕţĩƒĩćàţē Ƒĩńĝēŕƥŕĩńţ (ŚĤÀ1)`, +'sf05c700a1250824e': `Ćōńƒĩŕmēď`, +'sf05e384059a0a7c1': `Ũƥśţŕēàm ĥōśţ ţĥàţ ţĥē ŕēǫũēśţś àŕē ƒōŕŵàŕďēď ţō.`, +'sf12d588a76ba7e51': `Àŕē ŷōũ śũŕē ŷōũ ŵàńţ ţō ćĺēàŕ ţĥē ƒĺōŵ ćàćĥē? + Ţĥĩś ŵĩĺĺ ćàũśē àĺĺ ƒĺōŵś ţō ƀē ŕē-ēvàĺũàţēď ōń ţĥēĩŕ ńēxţ ũśàĝē.`, +'sf1868dc19e3917bb': `Śƥàńĩśĥ`, +'sf1e9d421f35b51e5': `Àƥƥĺĩćàţĩōń`, +'sf1ec4acb8d744ed9': `Àĺēŕţ`, +'sf22a28f83cc45fcc': `Śţàĝē ũśēď ţō ćōńƒĩĝũŕē à ďũō-ƀàśēď àũţĥēńţĩćàţōŕ. Ţĥĩś śţàĝē śĥōũĺď ƀē ũśēď ƒōŕ ćōńƒĩĝũŕàţĩōń ƒĺōŵś.`, +'sf22f7f8a9309b4ed': `Ćĥēćķ Àƥƥĺĩćàţĩōń àććēśś`, +'sf232d42142eacc23': `Ŵĥēń ēńàƀĺēď, ţĥē ĩńvĩţàţĩōń ŵĩĺĺ ƀē ďēĺēţēď àƒţēŕ ũśàĝē.`, +'sf29883ac9ec43085': `Àƥƥ ƥàśśŵōŕď`, +'sf2ef885f7d0a101d': `Ďēmō Ŵĩźàŕď`, +'sf325a4adba4d6278': `Ĝŕōũƥ mēmƀēŕśĥĩƥ ƒĩēĺď`, +'sf339673f0f76a8bd': `Ƥũƀĺĩć ķēŷ, àćǫũĩŕēď ƒŕōm ĥţţƥś://ŵŵŵ.ĝōōĝĺē.ćōm/ŕēćàƥţćĥà/ĩńţŕō/v3.ĥţmĺ.`, +'sf34026321b35315c': `Ēĩţĥēŕ ńō àƥƥĺĩćàţĩōńś àŕē ďēƒĩńēď, ōŕ ŷōũ ďōń’ţ ĥàvē àććēśś ţō àńŷ.`, +'sf36170f71cea38c2': `Ćōńńēćţĩvĩţŷ`, +'sf3981f36525b0dbd': `ćōńńēćţĩōń ŵĩĺĺ ƀē ďēĺēţēď`, +'sf3f9a0feaf083207': `Śēńţ ţō ĝŕōũƥ`, +'sf3fec8353106ac2f': str`ŌÀũţĥ Śōũŕćē ${0}`, +'sf4122b220926be97': `Vēŕśĩōń`, +'sf417c13d7a0f7995': `Ćōƥŷ ďōŵńĺōàď ŨŔĹ`, +'sf45a0d2f00bcc6ff': `ńō ţàƀś ďēƒĩńēď`, +'sf466142da6a65052': `Ĩmƥēŕśōńàţē`, +'sf485014051ad0cf7': `Śũććēśśƒũĺĺŷ àśśĩĝńēď ƥēŕmĩśśĩōń.`, +'sf4de1644dcdb53d5': `Ũśēŕ/Ĝŕōũƥ Àţţŕĩƀũţē ũśēď ƒōŕ ţĥē ƥàśśŵōŕď ƥàŕţ ōƒ ţĥē ĤŢŢƤ-ßàśĩć Ĥēàďēŕ.`, +'sf52479d6daa0a4a8': str`Ēśţĩmàţēď ũśēŕ ćōũńţ ōńē ŷēàŕ ƒŕōm ńōŵ ƀàśēď ōń ${0} ćũŕŕēńţ ēxţēŕńàĺ ũśēŕś àńď ${1} ƒōŕēćàśţēď ēxţēŕńàĺ ũśēŕś.`, +'sf533f13321fee530': `Ēvàĺũàţē ƥōĺĩćĩēś ďũŕĩńĝ ţĥē Ƒĺōŵ ƥĺàńńĩńĝ ƥŕōćēśś.`, +'sf53a78d889b6c775': `Màńàĝēď ƀŷ àũţĥēńţĩķ (Ďĩśćōvēŕēď)`, +'sf54c562d8a10ce77': `Àĺśō ķńōŵń àś ĒńţĩţŷĨĎ.`, +'sf55c7c06dbc2c8c6': `Śũććēśśƒũĺĺŷ ćŕēàţēď ţēńàńţ.`, +'sf55d28d4dff0e41b': `Àń ēxàmƥĺē śēţũƥ ćàń ĺōōķ ĺĩķē ţĥĩś:`, +'sf56998949bdf6b33': `Ďēàćţĩvàţē`, +'sf58825457d61c429': `Ƒōŕēćàśţ ĩńţēŕńàĺ ũśēŕś`, +'sf5cbccdc6254c8dc': `Ćōńƒĩĝũŕē Ƥŕōxŷ Ƥŕōvĩďēŕ`, +'sf63c89c0604c288f': `Ĺōćàĺ ƥàţĥ`, +'sf66389b04fcc219c': `Ēxţēŕńàĺ ũśēŕś mĩĝĥţ ƀē ēxţēŕńàĺ ćōńśũĺţàńţś ōŕ ß2Ć ćũśţōmēŕś. Ţĥēśē ũśēŕś ďōń'ţ ĝēţ àććēśś ţō ēńţēŕƥŕĩśē ƒēàţũŕēś.`, +'sf679b7a62808287e': `Ēxƥĩŕŷ`, +'sf693300708a40d2c': `Ćŕēàţē à ńēŵ ƥōĺĩćŷ.`, +'sf6d46bb442b77e91': `ÀďďĩţĩōńàĺŚćōƥēś`, +'sf6e1665c7022a1f8': `Ƥàśśŵōŕď`, +'sf6eb148db23d19de': str`Ƒàĩĺēď ţō ďēĺēţē ${0}: ${1}`, +'sf71dba2c30283a54': `Ēxƥĩŕēś?`, +'sf76ead4c4708dd06': `Ōƥţĩōńàĺĺŷ ƥŕōvĩďē à śĥōŕţ ĥĩńţ ţĥàţ ďēśćŕĩƀēś ţĥē ēxƥēćţēď ĩńƥũţ vàĺũē. + Ŵĥēń ćŕēàţĩńĝ à ƒĩxēď ćĥōĩćē ƒĩēĺď, ēńàƀĺē ĩńţēŕƥŕēţĩńĝ àś ēxƥŕēśśĩōń àńď ŕēţũŕń à + ĺĩśţ ţō ŕēţũŕń mũĺţĩƥĺē ćĥōĩćēś.`, +'sf7949fbbab2eb566': `Ďĩƒƒēŕēńţ ƀŕōŵśēŕś ĥàńďĺē śēśśĩōń ćōōķĩēś ďĩƒƒēŕēńţĺŷ, àńď mĩĝĥţ ńōţ ŕēmōvē ţĥēm ēvēń ŵĥēń ţĥē ƀŕōŵśēŕ ĩś ćĺōśēď.`, +'sf79f8681e5ffaee2': `Àśśĩĝń ţō ńēŵ ũśēŕ`, +'sf8008d2d6b064b95': `Ƒōŕŵàŕď Àũţĥ (Ďōmàĩń Ĺēvēĺ)`, +'sf80e9547166117e6': `ßàśēď ōń ţĥē Ũśēŕ'ś ŨƤŃ`, +'sf813a72d8fadd765': `Ĩń ţĥĩś ćàśē, ŷōũ'ď śēţ ţĥē Àũţĥēńţĩćàţĩōń ŨŔĹ ţō àũţĥ.ēxàmƥĺē.ćōm àńď Ćōōķĩē ďōmàĩń ţō ēxàmƥĺē.ćōm.`, +'sf8c76d5fb408de7b': `Ŷōũ'ŕē àƀōũţ ţō ƀē ŕēďĩŕēćţ ţō ţĥē ƒōĺĺōŵĩńĝ ŨŔĹ.`, +'sf8f49cdbf0036343': `Ćōńƒĩĝũŕàţĩōń ēŕŕōŕ`, +'sf90be97cb08f3d5a': `Ƥĺàćēĥōĺďēŕ`, +'sf9aee319a006c9b4': `Àďď`, +'sf9b1c0661a02d9f9': `Ćōńƒĩĝũŕàţĩōń`, +'sf9bddaf910f4eea5': `Ĝēńēŕàţē Ćēŕţĩƒĩćàţē-Ķēŷ Ƥàĩŕ`, +'sf9e61f4f8e90f0f1': `Ćĥàńĝē śţàţũś`, +'sf9ebf11ac2645820': `Ńō ĺĩćēńśēś ƒōũńď.`, +'sf9f2c719a04066ec': `Àƥƥ`, +'sfa88f413e287bb0f': `Śţàĝē ţŷƥē`, +'sfa8a1ffa9fee07d3': `ŚÀMĹ (Śēćũŕĩţŷ Àśśēŕţĩōń Màŕķũƥ Ĺàńĝũàĝē)`, +'sfab527528ea64618': `Màţćĥēś Ēvēńţ'ś Ćĺĩēńţ ĨƤ (śţŕĩćţ màţćĥĩńĝ, ƒōŕ ńēţŵōŕķ màţćĥĩńĝ ũśē àń Ēxƥŕēśśĩōń Ƥōĺĩćŷ.`, +'sfac6f995c7670559': `Ńō Śţàĝēś ƀōũńď`, +'sfad8af8ce38104a3': `Màxĩmũm àĝē (ĩń ďàŷś)`, +'sfad9279cc42c6b61': `Ŕēǫũĩŕēď àũţĥēńţĩćàţĩōń ĺēvēĺ ƒōŕ ţĥĩś ƒĺōŵ.`, +'sfae395b94a5a0040': `ßĺũēƥŕĩńţ`, +'sfae9f4ea5749a36b': `Àďďĩţĩōńàĺ ĝŕōũƥ ĎŃ, ƥŕēƥēńďēď ţō ţĥē ßàśē ĎŃ.`, +'sfb852dd507c25c24': `Ďĩśćōũŕàĝēď: Ţĥē àũţĥēńţĩćàţōŕ śĥōũĺď ńōţ ćŕēàţē à ďēďĩćàţēď ćŕēďēńţĩàĺ`, +'sfbadb77fbc61efb8': `Ũśēŕś ćŕēàţēď ƥēŕ ďàŷ ĩń ţĥē ĺàśţ mōńţĥ`, +'sfbaeb0de54fbfdbb': `Ƒĺōŵ ũśēď ŵĥēń àũţĥōŕĩźĩńĝ ţĥĩś ƥŕōvĩďēŕ.`, +'sfbc59ff17a73503d': `Ũśēŕ ƥàţĥ`, +'sfc31264ef7ff86ef': `Ƒōŕ ńĝĩńx'ś àũţĥ_ŕēǫũēśţ ōŕ ţŕàēƒĩķ'ś ƒōŕŵàŕďÀũţĥ ƥēŕ ŕōōţ ďōmàĩń`, +'sfc400b2d71e49d28': `Śũććēśśƒũĺĺŷ ćŕēàţēď ƥōĺĩćŷ.`, +'sfc8bb104e2c05af8': `Ũśēŕ ƒĩĺţēŕĩńĝ`, +'sfcebd18506f1e535': `Ƒĺōŵ`, +'sfcfcf85a57eea78a': `ŢŌŢƤ Ďēvĩćē`, +'sfd13ca8ebd857c2e': `Ćŕēàţē à ńēŵ àƥƥĺĩćàţĩōń`, +'sfd1af96798dd8a5f': `Ƥũƀĺĩć Ķēŷ`, +'sfd44ce578f643145': `Ƒàĩĺēď ţō ƒēţćĥ ōƀĴēćţś.`, +'sfd586951c75eb291': `Àƥƥ ƥàśśŵōŕď.`, +'sfdedc3b0b2b7ce3d': `Àţţŕĩƀũţē màƥƥĩńĝ`, +'sfe199b2564b66054': str`Ēŕŕōŕ ŵĥēń vàĺĩďàţĩńĝ àśśēŕţĩōń ōń śēŕvēŕ: ${0}`, +'sfe1c86b42ba13376': `Ƥĺēàśē ēńţēŕ ŷōũŕ ŢŌŢƤ Ćōďē`, +'sfe211545fd02f73e': `Vēŕĩƒĩćàţĩōń`, +'sfe388f0313f52da2': `Ƥŕōţōćōĺ śēţţĩńĝś`, +'sfe629863ba1338c2': `Ćōńńēćţĩōń ēŕŕōŕ, ŕēćōńńēćţĩńĝ...`, +'sfe6977a3aea3ee6e': `Ƒĺōŵ ţō ũśē ŵĥēń àũţĥēńţĩćàţĩńĝ ēxĩśţĩńĝ ũśēŕś.`, +'sfe906cde5dddc041': `Ćōńƒĩĝũŕē ŚÀMĹ Ƥŕōvĩďēŕ`, +'sfe938c1585e0bf68': `Ţĥēśē ƀĩńďĩńĝś ćōńţŕōĺ ĩƒ ţĥĩś śţàĝē ŵĩĺĺ ƀē àƥƥĺĩēď ţō ţĥē ƒĺōŵ.`, +'sfe99a8caa70232ab': `Àũţĥēńţĩćàţĩōń Ţŷƥē`, +'sfeb779d4ccbc5a0e': `Ŕēćōvēŕŷ ƒĺōŵ`, +'sfeb82261bcf99edd': `Ĥēàĺţĥŷ ōũţƥōśţś`, +'sfee06600c15082a9': `Ŕēmōvē ţĥē ũśēŕ ƒŕōm ţĥē ćũŕŕēńţ śēśśĩōń.`, +'sfee91e08b8b47477': `Àĺĺōŵēď śēŕvēŕś`, +'sfefce784ec55868f': `Śēĺēćţ àń ōƀĴēćţ.`, +'sff0ac1ace2d90709': `Ũśē ţĥĩś ƥŕōvĩďēŕ ŵĩţĥ ńĝĩńx'ś àũţĥ_ŕēǫũēśţ ōŕ ţŕàēƒĩķ'ś ƒōŕŵàŕďÀũţĥ. Ēàćĥ àƥƥĺĩćàţĩōń/ďōmàĩń ńēēďś ĩţś ōŵń ƥŕōvĩďēŕ. Àďďĩţĩōńàĺĺŷ, ōń ēàćĥ ďōmàĩń, /ōũţƥōśţ.ĝōàũţĥēńţĩķ.ĩō mũśţ ƀē ŕōũţēď ţō ţĥē ōũţƥōśţ (ŵĥēń ũśĩńĝ à màńàĝēď ōũţƥōśţ, ţĥĩś ĩś ďōńē ƒōŕ ŷōũ).`, +'sff38031cf061e3ae': `Ŵĩĺĺ ƒōĺĺōŵ ţĥē ?ńēxţ ƥàŕàmēţēŕ ĩƒ śēţ, ōţĥēŕŵĩśē śĥōŵ à mēśśàĝē`, +'sff3b708e23bb96b2': `Ēvàĺũàţē ƥōĺĩćĩēś ƀēƒōŕē ţĥē Śţàĝē ĩś ƥŕēśēńţ ţō ţĥē ũśēŕ.`, +'sff50532a2d85e32e': `Ćĥàńĝē ƥàśśŵōŕď`, +'sff5bb7742c2896c8': `Ţàŕĝēţ`, +'sff69c1a637f899a6': `ßĩńď ƒĺōŵ`, +'sff930bf2834e2201': `Śēŕvĩćē àććōũńţ (ĩńţēŕńàĺ)`, +'sff945d3f59b93c5e': `MƑÀ Ďēvĩćēś`, +'sffa171e11d4ae513': `Ţŕàńśƥōŕţś`, +'sffa721bb6aa3128d': `Śēàŕćĥ...`, +'sffc14b8200a9f938': `Ďĩŕēćţ ǫũēŕŷĩńĝ`, +'sffd2e553143d1b0e': `Ĥōĺď ćōńţŕōĺ/ćōmmàńď ţō śēĺēćţ mũĺţĩƥĺē ĩţēmś.`, +'sffd5481034a1bd41': `Ƥŕōvĩďē àń ĹĎÀƤ ĩńţēŕƒàćē ƒōŕ àƥƥĺĩćàţĩōńś àńď ũśēŕś ţō àũţĥēńţĩćàţē àĝàĩńśţ.`, +'sffeef5b119d8625c': `Śũććēśśƒũĺĺŷ ćŕēàţēď màƥƥĩńĝ.`, +'sfffb0d0958bfbc42': `Màńàĝē ũśēŕś`, +'sfffba7b23d8fb40c': `Ţĥĩś śţàĝē ćĥēćķś ţĥē ũśēŕ'ś ćũŕŕēńţ śēśśĩōń àĝàĩńśţ ţĥē Ĝōōĝĺē ŕēĆàƥţćĥà (ōŕ ćōmƥàţĩƀĺē) śēŕvĩćē.`, +'s7513372fe60f6387': `Event volume`, +'s047a5f0211fedc72': `Require Outpost (flow can only be executed from an outpost).`, + }; + \ No newline at end of file diff --git a/web/packages/localization/src/locales/tr.js b/web/packages/localization/src/locales/tr.js new file mode 100644 index 000000000..19158e8d8 --- /dev/null +++ b/web/packages/localization/src/locales/tr.js @@ -0,0 +1,1714 @@ + + // Do not modify this file by hand! + // Re-generate this file by running lit-localize + + import {html} from 'lit'; + import {str} from '@lit/localize'; + + /* eslint-disable no-irregular-whitespace */ + /* eslint-disable @typescript-eslint/no-explicit-any */ + + export const templates = { + 's004e9a2c90f23900': `Kalıcı`, +'s00c8354318addfa0': `İlke / İlkeler`, +'s01088b6625d2443b': `Geri arama URL'si`, +'s01a3a7f48ee4edaf': `Sayfanın alt kısmında bağlanan isteğe bağlı kayıt akışı.`, +'s026555347e589f0e': `Nesne benzersizliği alanı`, +'s02839b01844d6ca8': `Oluşturma Tarihi`, +'s028be8989873f001': `URL'yi yetkilendirme`, +'s02b3fade1795d03f': `Bağlantı noktası 389 LDAP sunucusuna bağlanın:`, +'s02b632a9ac24a824': str`Son görüldü: + ${0}`, +'s030ac0829bb50a49': str`İlke + ${0}`, +'s037bc6d25a03c3c8': `Aktarıcı başarılı bir şekilde güncellendi.`, +'s0382d73823585617': str` + ${0}: + ${1}`, +'s03907d7a66c6164e': `Uygulamanın görünen Adı.`, +'s03970aa76a09982d': `Entegrasyon`, +'s039b6434e8a75560': str` + ${0}Sil`, +'s03f42eea72154959': `Kullanıcı Adı`, +'s03fb3fa232f0434a': `Müşteri Sırrı`, +'s03fd2c252ad7972a': `E-posta kurtarma bağlantısı`, +'s042baf59902a711f': `İlke`, +'s04440099d97c0bef': `Aşama Alanını Düzenle`, +'s045c3b86aae073c1': `Hesabı sil`, +'s04b7f8d6aaef3756': `Seçilen gruptaki kullanıcılar arama sorguları yapabilir. Hiçbir grup seçilmezse, LDAP Aramalarına izin verilmez.`, +'s04c1210202f48dc9': `Lütfen Telefon numaranızı girin.`, +'s04c5a637328c9b67': str` + ${0}içinden + ${1}- + ${2}`, +'s05e395ff60af047b': `Uyarı: Sağlayıcı herhangi bir Üs tarafından kullanılmaz.`, +'s0639662111324466': `İlke altyapısı modu`, +'s065604a41e9d1584': `OAuth Kaynağını Güncelle`, +'s068d4dd16d9106d0': `Simge`, +'s06c163334767a381': `Hizmet hesabı oluştur`, +'s06c92148da82be0d': `Parolanızı değiştirin`, +'s06df3c3b6a503da8': `Bu değerin yazıldığı kullanıcı nesnesinin alanı.`, +'s072c6d12d3d37501': `HTTP-Basic Kullanıcı Adı Anahtarı`, +'s079d388d3cbfa54f': `Günlükleri kontrol et`, +'s081d3c4b47a6ff83': `Ayarlanırsa, kullanıcılar bu akışı kullanarak kendi kayıtlarını kaldırabilir. Akış ayarlanmamışsa seçenek gösterilmez.`, +'s086e1bbe7c97ea16': `Arama tabanı`, +'s08a8716c214a0efb': `PEM kodlu Sertifika verileri.`, +'s08c91cb1a2cd3d97': `Seçildiğinde, ayrı bir sayfa yerine aynı sayfada bir parola alanı gösterilir. Bu, kullanıcı adı numaralandırma saldırılarını engeller.`, +'s091d3d07b5b3076f': `OK`, +'s09205907b5b56cda': `Hayır`, +'s09240e07b5b8d640': `ID`, +'s09242207b5b8f83c': `İP`, +'s09353907b5c79284': `Kime`, +'s09810653c832e935': `Değeri değiştirmek için tıklayın`, +'s098237f7ccb4dc4a': `Akış önbelleği başarıyla temizlendi`, +'s0a0ca63b967f1630': `Kaynak (lar)`, +'s0a11c2ffb8309d1a': `Bulunamadı`, +'s0a39e4f61ccafacb': `Kural başarıyla güncellendi.`, +'s0a5401d4419f9958': `Kaynak kullanma`, +'s0a63a8be0b2b422c': `İşçiler`, +'s0a72e65aef45b1e8': `Sunucu URI`, +'s0ae3395d8f48e624': `Kurtarma bağlantısı başarıyla oluşturuldu`, +'s0af6301e76e2a2a5': `Sakin başarıyla güncellendi.`, +'s0b15ff11a0049cfd': `Bağlama istekleri ve arama istekleri altında yapılabilen LDAP DN.`, +'s0b55a57f473ab8af': `Güncelleme Grubu`, +'s0c135eba6017d94f': `Etiket, istemin yanında veya üstünde gösterilir.`, +'s0c3ac7f9383a8cfd': `Geçici`, +'s0c8c4d2bb0a9162a': `Sayfanın alt kısmında bağlanan isteğe bağlı parolasız akış. Yapılandırıldığında, kullanıcılar herhangi bir ayrıntı girmeden WebAuthn kimlik doğrulayıcısı ile kimlik doğrulaması için bu akışı kullanabilir.`, +'s0d4268408182491d': `TLS Kullan`, +'s0d5d05bf3d122ced': `Twilio`, +'s0dfc6838c9d07677': `Yapılandırma akışı`, +'s0e03fe2dc5b9164b': `Auentik Örneğiniz kendinden imzalı bir sertifika kullanıyorsa, bu değeri ayarlayın.`, +'s0e15f678445dfc45': `Aşama, herhangi bir kimlik doğrulayıcıyı doğrulamak için kullanılır. Bu aşama kimlik doğrulama veya yetkilendirme akışları sırasında kullanılmalıdır.`, +'s0e516232f2ab4e04': `Belirteçler SMS ile gönderildi.`, +'s0eaf755fa88c8d97': `Aşama (lar)`, +'s0f2e070d38cd36df': `TLS Kimlik Doğrulama Sertifikası/SH Anahtar Eşi`, +'s0f4c6540c30bd8b4': `Tanımlama`, +'s10356fd921037fbf': `Varsayılan akışlar`, +'s107bf77afb93c9b8': `Belirli bir Olay oluşturulduğunda ve ilkelerle eşleştirildiğinde bildirim gönderin.`, +'s10922bd0ac765562': `nesne SILİNECEK`, +'s10929ca568ae10bc': `Sağlayıcı (lar)`, +'s10d2dbc4613397f0': `Güncellendi`, +'s11204eeb1e27ea8f': `ACS URL`, +'s11326fd2590f4e5e': `Varsayılan`, +'s113c05ef9996ca4b': `Gömülü üs düzgün yapılandırılmamış.`, +'s119498d4e4cf59a6': `Etkilenen model:`, +'s11bc220e8fa9d797': `Yetkilendirmeler`, +'s122f308b5f198ba7': `Sertifika anahtarı çifti başarıyla oluşturuldu.`, +'s124f93a61ee772d6': `Gelişmiş protokol ayarları`, +'s128e7f5f34bfa155': `Statik kimlik doğrulayıcısını (yani statik belirteçleri) yapılandırmak için kullanılan aşama. Bu aşama yapılandırma akışları için kullanılmalıdır.`, +'s1298e361e40ee1c5': `Taklitçiliği durdurun`, +'s12de1c06a1e18cc5': `Metin (salt okunur): Basit Metin girişi, ancak düzenlenemez.`, +'s13de04774ff0f210': `Docker URL'si`, +'s14401ff4a0cba208': str` + ${0}güncellenemedi: + ${1}`, +'s145483489b87a622': `Oturum Kapma URL'si`, +'s14622ee6de586485': str` + ${0}olarak oturum açmaya çalışıldı`, +'s14c552fb0a4c0186': `Uygulama aşağıdaki izinleri gerektirir:`, +'s14c8f36e180d6bbc': `Aşama aşaması başarıyla oluşturuldu.`, +'s1575a15cee001915': `Aktarıcı başarıyla oluşturuldu.`, +'s164be9a7537b99f6': `Farklı etki alanları için görsel ayarları ve varsayılanları yapılandırın.`, +'s1665454e31e14941': `X509 Konusu`, +'s16b9446e3a70e1f4': `Öznitellikler`, +'s16bc281dce5685e8': `Kimlik Doğrulayıcı`, +'s17a679298216aca9': `Kullanıcıların kimlik doğrulaması için belirli kaynaklar gösterilmelidir. Bu, LDAP'yi değil, yalnızca web tabanlı kaynakları etkiler.`, +'s17d1e337f6c11c1e': `İd_token'a hak taleplerini dahil et`, +'s17f3eaf3b07ece26': `Uyarı: Sağlayıcı bir Uygulama tarafından kullanılmaz.`, +'s1823625e6f831d73': `Özelleştirme`, +'s1828fbfc2c56379c': `IP'yi Kontrol Et`, +'s18b910437b73e8e8': `Aygıt seçiciye geri dön`, +'s197420b40df164f8': `Yönlendirmeyi takip et`, +'s1a2797874b7fe852': `NameID Özellik Eşlemesi`, +'s1a2f8f4b3861583b': `Üs Oluştur`, +'s1ac2653a6492b435': str` + ${0}, + ${1}olmalıdır`, +'s1b07757762cda372': `İlke önbelleği temizle`, +'s1b14062c44e5ef45': `Süresi Doluyor`, +'s1b448a4ea79d4eef': `Olaylar bulunamadı.`, +'s1b606acd76ba2c4c': `Sakini Güncelle`, +'s1b783856ab4aaaf3': `Ek kurulum gerekmez.`, +'s1b88fa3df4423292': `Son IP`, +'s1bf56ee106e9e711': `Bağlama başarılı bir şekilde oluşturuldu.`, +'s1c2a173db0e1ec61': `Bu filtreyle eşleşen nesneleri Kullanıcı olarak düşünün.`, +'s1c2fd8097e14a608': `Kurtarma akışı. Boş bırakılırsa, kısa isme göre sıralanan ilk uygulanabilir akış kullanılır.`, +'s1c33d22492029aba': `Nesne alanı`, +'s1c6ba8d100453392': `Gönderilen belirtecin dakika cinsinden geçerlilik süresi.`, +'s1c8916418c334935': `Kimlik Belirteci`, +'s1c8e9816dcae6d9c': `gidNumbers'ın başlangıcı, bu sayı group.Pk öğesinden oluşturulan bir sayıya eklenir ve sayıların POSIX grupları için çok düşük olmamasını sağlar. Yerel gruplar veya kullanıcıların birincil grupların gidNumber'ıyla çakışmaması için varsayılan 4000'dir`, +'s1cc0e66dbd2b5502': `Akış ayarları`, +'s1cd198d689c66e4b': `API Erişimi`, +'s1cd264012278c047': `Akış yürütme`, +'s1cd617e7bbe278d0': `Kullanıcının rızasını isteme. Onay kalıcı olabilir veya belirli bir süre içinde geçerlilik süresi dolabilir.`, +'s1cf2298d92c327a6': `Uygulamalarım`, +'s1d30ff9ba938e68d': `Bekleyin (maks.)`, +'s1d49ec5030447643': `Üs (ler)`, +'s1d6e16d86961c782': `Sertifika Anahtarı Çiftleri`, +'s1d9d6c5b424fdc1f': `İlk oturum açma isteğinin gönderildiği URL.`, +'s1e36813d3504ed48': `Ciltleme başarıyla güncellendi.`, +'s1e4c3de6e12cd87b': `Kullanıcı adı: Metin girişi ile aynı, ancak yinelenen kullanıcı adlarını denetler ve engeller.`, +'s1efbfc3937d565bd': `Arkaplan`, +'s1fc9c70610c4c67d': `Geçersiz`, +'s2035f889f576bca6': `Bağlantı ayarları`, +'s207e8b106806d7e4': `Bağlama aşaması`, +'s20a0ce62823bfa97': `Geçici kullanıcıları sonra sil`, +'s211b75e868072162': `Bunu kimlik doğrulamasının geçerli olmasını istediğiniz etki alanına ayarlayın. Yukarıdaki URL'nin bir üst etki alanı olmalıdır. Uygulamaları app1.domain.tld, app2.domain.tld olarak çalıştırıyorsanız, bunu 'domain.tld' olarak ayarlayın.`, +'s216eb300543edd91': `Bir kullanıcının kimlik doğrulamasına izin verilmesi için üye olması gereken sunucuyu seçin.`, +'s21b3058faf874368': `Eski üsler`, +'s21d0e290c51a8ef9': `Sembol karakter seti`, +'s21e3c227cc2c5873': `Ayırıcı: Statik Ayırıcı Hattı`, +'s2221fef80f4753a2': `TLS Doğrulama Sertifikası`, +'s2236dc563c2dbf76': `(Biçim: saat=-1; dakika=-2; ikincil=-3).`, +'s22b10ed263b96194': `Test için kullanılan kukla aşama. Basit bir devam düğmesi gösterir ve her zaman geçer.`, +'s23fd4411419fca06': `İstemcinin bu özelliklere erişmek için belirtebileceği kapsam.`, +'s240ff02ce3a53dee': `Entegrasyon anahtarı`, +'s24211f319e5b7e98': `Benzersiz bir Tanımlayıcı içeren alan.`, +'s2430e000b7cfefd0': `Yalnızca bir kez bildirim gönderin, örneğin bir sohbet kanalına web kancası gönderirken.`, +'s2474e7fb1aec9f05': `Test`, +'s24875d5475e82526': `Kaynak başarıyla güncellendi.`, +'s24f405197ede5ebb': `plex ile yeniden kimlik doğrulama`, +'s252a52330d32b900': `Meta veriler`, +'s2536ac8d32d2e63f': `Olayların veritabanından silineceği süre.`, +'s2543cffd6ebb6803': `Sistem görevi yürütme`, +'s256b8452664ccae4': `NameID değerinin nasıl oluşturulacağını yapılandırın. Boş bırakıldığında, gelen isteğin NameIDPolicy değerine saygı gösterilir.`, +'s25d0cd75377daf75': `İleri kimlik doğrulama (etki alanı düzeyi)`, +'s25ec2846f6b88214': `Web Kancası Haritalama`, +'s26513c9dd154f041': `Her zaman rıza gerektirir`, +'s2656433a3b1f7e86': `Uygulamalarım`, +'s26bf2730430efbea': `Konu modu`, +'s271a7e04ff9865b1': `Auentik'in bilgiyi nasıl açığa çıkardığını ve yorumlayacağını kontrol edin.`, +'s27586544c447d9e3': `Kullanıcı olayları`, +'s276d751eb7a186cc': `API Ana bilgisayar adı`, +'s27976e94b05c6970': `Etkinleştir`, +'s27ac7a47b390e3cb': `Sertifika Anahtarı Çiftleri`, +'s2801a48ceac691b3': `Kayıt akışı`, +'s289fce7e694b98ac': `SMTP Bağlantı Noktası`, +'s28f270859c5f4d51': `Docker ana bilgisayarının Ana Bilgisayar IP'si`, +'s29315e374008d0c5': `Bu gruba eklenen kullanıcılar süper kullanıcılar olacaktır.`, +'s293aa6a6446fb153': `İhracat`, +'s293ab4331c1dd387': `Bu, temel kimlik doğrulama veya taşıyıcı belirteci ile kullanıldığında kullanılacak kullanıcı adıdır`, +'s296fbffaaa7c910a': `Zorunlu.`, +'s297a2075bd7e40db': `NameID İlkesi`, +'s29ec5e7889f4787f': `İlke başarıyla güncelleştirildi.`, +'s2a0f60e74b478804': `Digest algoritması`, +'s2a12e0b5527ff99a': `Bu geçiş özelliğini etkinleştirmek, kullanıcının adını taşıyan ve kullanıcının üye olduğu bir grup oluşturur.`, +'s2a2d3e7c379e9518': `Sertifika Konusu`, +'s2a64d2dca3da9b0e': str`Grup + ${0}`, +'s2a957e843960b604': `Parola alanı`, +'s2af5754090898640': `Onaylama işlemi geçerli değil veya sonrasında`, +'s2b088ba65eb69b7e': `Değeri depolamak için de kullanılan form alanının adı.`, +'s2b1bc31276c4c477': `İlke / Grup / Kullanıcı Bağlamaları`, +'s2b7dbba348234a36': `SMS ile size bir kod gönderildi.`, +'s2b952e9dc99cbded': `Giriş parolası LDAP'den authentik'e otomatik olarak senkronize edilir. Bu seçeneği yalnızca oentik'te parola değişikliklerini LDAP'ye geri yazmak için etkinleştirin.`, +'s2ba5f4d8f3bd7c57': `Sıra`, +'s2bc8aa1740d3da34': `Aşama nesnesi`, +'s2be6121210e2a2f8': `İstemler`, +'s2c0de3d35a7bc784': `İlgili nesneler`, +'s2c8189544e3ea679': `Yeniden dene`, +'s2ceb11be2290bb1b': `İptal et`, +'s2d34c87f67f66c6a': `Windows`, +'s2d46e3a9ee8e0e7e': `LDAP Sağlayıcısını Güncelle`, +'s2d5f69929bb7221d': str` + ${0}(“ + ${1}”, + ${2}türünde)`, +'s2e3ef41a0edd8608': `Kapsamlar`, +'s2ec94a7c7f5bcd1b': `Grup nesnesi filtresi`, +'s2f1bcfcc5cae94c3': `Akış Oluştur`, +'s2f58bb9905d2b76f': `Kimlik doğrulama için kullanılan sertifika/anahtar. Kimlik doğrulama olmadan boş bırakılabilir.`, +'s2f995efbb1e46b18': `Otomatik algıla (tarayıcınıza göre)`, +'s2fc3eb68c7ced3af': `Userinfo URL'si`, +'s303b5e552246e613': `Bir olayı ölçütler kümesine göre eşleştirir. Yapılandırılan değerlerden herhangi biri eşleşirse, ilke geçer.`, +'s3079ca1184e77573': `Grup başarıyla oluşturuldu.`, +'s30d1f50f476c3f48': `Akışa Genel Bakış`, +'s310d8757ce319673': `Oturum Açma`, +'s31a2d43bc1cf1790': `Henüz senkronize edilmedi.`, +'s31d15c6f16951464': `Kimlik Doğrulama URL'si`, +'s31d7f3ba04d306a5': `SSO URL`, +'s31ebc5431d677f5d': `SMTP Ana Bilgisayarı`, +'s31fba571065f2c87': `Bu belirteçleri güvenli bir yerde tuttuğunuzdan emin olun.`, +'s322e34cfcba47155': `Mevcut değil`, +'s32a3efa23718e713': `API İstekleri`, +'s32f04d33924ce8ad': `İlke yürütme`, +'s332a5235948c1a1d': `Onaylı`, +'s3330adb3f0922f7b': `Kullanıcı veritabanı+uygulama parolaları`, +'s33683c3b1dbaf264': `Bunun yerine SSL kullanmak için 'ldaps: //' kullanın ve bu seçeneği devre dışı bırakın.`, +'s3380d7cbcebe50f6': `Parola aşaması`, +'s33aa05f435c29753': `Sertifika Anahtarı Çiftini Güncelleştir`, +'s33d48fb745f4d4ae': `Minimum Büyük Harf Karakter Miktarı`, +'s33f85f24c0f5f008': `Kaydet`, +'s341ab68d4130de20': `İşçi bağlantısı yok. Arka plan görevleri çalışmaz.`, +'s342eccabf83c9bde': `Plan geçmişi`, +'s344c4a2a48997e18': `.yaml dosyaları, goauthentik.io'da bulunabilir ve authentik tarafından ihraç edilebilir.`, +'s34b23ebbac9f6ab9': `Kullanıcı doğrulaması`, +'s34be76c6b1eadbef': `Uyarı`, +'s351246c52548086a': `Sertifikayı İndirin`, +'s3576aead3e68c5c9': `Akışı aktar`, +'s35e6e60e83a8c003': `Geçersizleştirme akışı`, +'s35f9df7668d5fa79': `Dağıtım belgelerini görüntüleme`, +'s35fac2e5677d55cd': `Bu kullanıcının etkin olarak değerlendirilmesi gerekip gerekmediğini belirtir. Hesapları silmek yerine bunun seçimini kaldırın.`, +'s3616cc78631f5893': str`Uyarı: Oturum açtığınız kullanıcıyı ( + ${0}) silmek üzeresiniz. Kendi sorumluluğunuzdadır.`, +'s3626433940124897': `Favicon`, +'s3643189d1abbb7f4': `Kodu`, +'s3687049d1af562c4': `Kopya`, +'s36cb242ac90353bc': `Alanlar`, +'s374abf1a54d87b67': `Yürütme sırasında arka plan gösterilir.`, +'s3794c596ee7964ad': `Parolayı güncelle`, +'s37cbecaec58e2192': `Mod`, +'s37d9155b9f4cc7bd': `Kimlik Belirtecinin yayımcı alanının nasıl doldurulacağını yapılandırın.`, +'s37eb2f1b6e3c19c2': `Protokol Ayarları`, +'s382a2aa3984474dd': `Oluştur`, +'s38887b94b3320533': `E-posta adresi`, +'s388ee787bbf2271b': `Görev uyarılarla tamamlandı`, +'s38c72e1cf120b8d8': `Davet Oluştur`, +'s38f774cd7e9b9dad': `Kaydolun.`, +'s3914cb410fca44d4': `İçe Aktar`, +'s3926da5b20cdf3b6': `İlk belirteci istemek için kullanılan URL. Bu URL yalnızca OAuth 1 için gereklidir.`, +'s399cc2d67d92e957': `Gizli`, +'s39c8c0bf4d927c9f': `IDP tarafından başlatılan oturumlara izin ver`, +'s3a135682bd30bdbb': `Uygulama parolası oluştur`, +'s3a3fae99373ce56b': `İstemci tarafından hangi kapsamların kullanılabileceğini seçin. İstemci yine de verilere erişmek için kapsamı belirtmelidir.`, +'s3a5fec3d73ac9edc': `Sertifika Anahtarı Çifti Oluştur`, +'s3ab772345f78aee0': `Akış denetçisi`, +'s3b34d9930e33bd46': `Sistem Görevleri`, +'s3b58f8d2155ae90c': `Alan Anahtarı`, +'s3b68883dda2682ed': `İddeler boş`, +'s3b7b519444181264': `Doğrulama İlkeleri`, +'s3baf512851453712': `Twilio Hesabı SID`, +'s3bb51cabb02b997e': `Biçim: “hafta=3; gün = 2; saat=3, ikincil=2".`, +'s3bfa0258999fb629': `Bağlamanın sonucunu susturur. Mesajlar etkilenmez.`, +'s3c6de3f257e0c912': `Talep`, +'s3d197283cb019b5a': `Genel Bakış`, +'s3d34068a31cab30b': `Dahili ana bilgisayar SSL Doğrulaması`, +'s3de6db803012016a': `LDAP Öznitelik eşlemesi`, +'s3e211d29fa10f843': `referans boş bir değere ayarlanacaktır`, +'s3e3bb9e7cb1de4fd': `Eklenecek kullanıcıları seçin`, +'s3e59b8b2debf0209': `Bu aşama, davetleri kabul etmek için kayıt akışlarına dahil edilebilir.`, +'s3e87ce98ba3c4d80': `Belirteçlerin ne kadar geçerli olduğunu yapılandırın.`, +'s3ed5607ad78d4224': `Önbelleği temizle`, +'s3ef3c252ada78076': `Başarısız Oturum Açma`, +'s3ffa320128991a45': `Atanan uygulamalara SAML ve OAuth gibi protokoller için destek sağlayın.`, +'s40b034801fcb843b': `Kullanıcıların ve/veya IP'lerin itibarına göre isteklere izin ver/reddeder.`, +'s40b80eb4cc1f0e0c': `Bağlamayı Düzenle`, +'s40bf151b56a64f51': `Sunucu ve istemci arasında 5 saniyeden daha uzaktır.`, +'s40e2c72dae905a50': `Statik: Statik değer, olduğu gibi görüntülenir.`, +'s4165cd175bc4c0c4': `Geçerlilik süresi`, +'s416a540b16275f2e': `Grup Oluştur`, +'s41706a202b6c40f1': `Alan Adı`, +'s41b105819b67ee7a': `Aşamalar`, +'s41e035c4bb8d15f2': `Genel sistem durumu`, +'s4207178ba0b99418': `Ön yüzün daha yeni bir sürümü mevcuttur.`, +'s420d2cdedcaf8cd0': `Plex ile kimlik doğrulaması...`, +'s427f788ff333f45b': `URL Başlat`, +'s42a1ebe17efda727': `Alan`, +'s42cbd8dca939a9c7': `Kontrol`, +'s42fc6f4b64eff5d9': `İstemi Aşamaları için kullanılabilecek Tek İstemler.`, +'s43be3ce2439ffe9c': `Minimum Rakam sayısı`, +'s4409ada9c5c2a7f8': `Etkin değil`, +'s4414164d120de61a': str`Aşağıdaki nesneler + ${0}`, +'s44536d20bb5c8257': `Bu ayar, süre sonu olay başına kaydedildiğinden, yalnızca yeni Olayları etkiler.`, +'s44c90273f08fb718': `Bu sağlayıcıyı nginx'in auth_request veya traefik'in forwardAuth ile kullanın. Kök etki alanı başına yalnızca tek bir sağlayıcı gereklidir. Uygulama başına yetkilendirme yapamazsınız, ancak her uygulama için bir sağlayıcı oluşturmanız gerekmez.`, +'s44ea4e9a81ce730d': `E-posta aşaması`, +'s455de2f740b073fd': `Olay bilgileri`, +'s457c639088c547c5': `Sağlayıcı başarıyla oluşturuldu.`, +'s45935843b1b5b496': `Form göndermek için bir söz vermedi`, +'s45960273852a61b2': `Tarih Saat`, +'s45cb501abd43ba52': `Oluştur`, +'s45f9e7ce0897f9e5': `Sakin`, +'s473f0143efa3f706': `Bu ilkeler hangi kullanıcıların bu uygulamaya erişebileceğini denetler.`, +'s47490298c17b753a': `Cihazınızda anında iletme bildirimi alın.`, +'s4751df77cfd8a5f9': `Kullanıcı Adını Kontrol Et`, +'s476ffc07e6d66f18': `Belirteç başarıyla güncellendi.`, +'s47a4983a2c6bb749': `Model güncellendi`, +'s47bd537a3bcebf19': `Indir Özel anahtar`, +'s4802636d55022ed3': `Varsayılan?`, +'s480c6c40a248f7d2': `SSL kullan`, +'s482ae78809a6822b': `Kimliği doğrulanmış bir kullanıcı tarafından parolasını yapılandırmak için kullanılan akış. Boşsa, kullanıcı parolasını değiştirmeyi yapılandıramaz.`, +'s485c05d34eb00415': `Şu anda ayarlanan simgeyi sil.`, +'s48cf8fd56b1237ed': `Akış başarıyla güncellendi.`, +'s494e1ed913d9351a': `Grubu Düzenle`, +'s49730f3d5751a433': `Yükleniyor...`, +'s4a1e774ab25aa232': `Dahili Ana Bilgisayar`, +'s4a26798e1c3c37dd': `Yayın yukarı akış sunucularının SSL Sertifikalarını doğrulayın.`, +'s4a87445f3108db7c': `Giriş yapmak için aşağıdaki kaynaklardan birini seçin.`, +'s4aee34a672e5cfc0': `Tarafından yaratıldı`, +'s4af8a3ce5a600855': `Kullanıcının kullanıcı adı veya E-posta adresi ile kendilerini tanımlamasına izin verin.`, +'s4b5af7736aedd6c1': `Özel anahtar mevcut mu?`, +'s4c24b2baa377e870': `Sertifika anahtarı çifti başarıyla güncelleştirildi.`, +'s4c4c504a48c3b7bd': `Traefik (Bağımsız)`, +'s4caed5b7a7e5d89b': `İngilizce`, +'s4cdae7635e757555': `Kullanıcının kendilerini tanımlayabileceği alanlar. Herhangi bir alan seçilmezse, kullanıcı yalnızca kaynakları kullanabilir.`, +'s4d00e5de1c8213b7': `Müşteri Kimliği`, +'s4d00f1de1c82281b': `İstemci IP`, +'s4d182bae8a578010': `SMS Tabanlı Kimlik Doğrulayıcıları`, +'s4d31797d81e9cea3': `Açık Onayı`, +'s4dcb9288f7e9e4d7': `Kullanıcıları birlikte gruplandırın ve üyeliğe bağlı olarak izinler verin.`, +'s4e28e2899e08a5f8': `authentik'in yanıtı Servis Sağlayıcıya nasıl geri göndereceğini belirler.`, +'s4e474b9e2e737dd1': `Proxy Sağlayıcıyı Güncelle`, +'s4eb514ebcb80553d': `Ebeveyn`, +'s4f1ad6b48a5df506': `Günlükler`, +'s4f1af2b48a5e249a': `Logo`, +'s4ff2c202b4e5bdc5': `Dahili`, +'s502884e1977b2c06': `Sonraki aşama`, +'s506beb486fa41241': `Uygulama yetkilendirmeleri`, +'s50719dda8f90abf4': `URL'de görünür.`, +'s50911ec1c8aee99a': `Eşleşen olay bulunamadı.`, +'s50c312bea93b6925': `İlkeyi Düzenle`, +'s50ebe627b4bc7d02': `Ciltleme`, +'s5116b89f7db1fbec': `İzin Verilen Yeniden Yönlendirme URI'leri`, +'s512957aa09384646': `Eriş`, +'s5140d157642d7362': `Hiçbiri (kural devre dışı)`, +'s5170f9ef331949c0': `Kullanıcıya rastgele giriş alanlarını göster, örneğin kayıt sırasında. Veriler akış bağlamında 'prompt_data' değişkeni altında kaydedilir.`, +'s51da4de00984fe51': `API Auth Kullanıcı Adı`, +'s51ea3a244c781b1f': `Oluşturulan nesneler`, +'s51f92b6fa76656ca': `Sağlıksız üsler`, +'s52b500138a2d2b8a': `LDAP Kaynağını Güncelle`, +'s53ad3455d9523b54': `Kullanıcı Oluştur`, +'s544142ce35050751': `Test İlkesi`, +'s545d99afa61e4095': `Sembol olarak kabul edilen karakterler.`, +'s5462c7f56ed65e6c': `E-posta: E-posta türü ile metin alanı.`, +'s54cd35e6224ba65d': `Varsayılan olarak, kaynaklar için yalnızca simgeler gösterilir. Tam adlarını göstermek için bunu etkinleştirin.`, +'s54e7a23a95d99649': `Metin: Basit Metin girişi`, +'s5515a897ae98bed9': `Sertifikalar`, +'s554ce268e9727e79': `Yalnızca üssün türüne uyan sağlayıcıları seçebilirsiniz.`, +'s5572ac4d2208f5ec': `Başarıyla komut istemi oluşturuldu.`, +'s55787f4dfcdce52b': `İmzalama Anahtarı`, +'s5590dbf7e425789d': `Etiket`, +'s5599c62bb78c631f': `Yönetici arayüzü`, +'s55d731be1ef66efe': `Taban DN`, +'s55fa598b754cc3cc': str` + ${0}( + ${1})`, +'s5615bb595ad6ded6': `Bağlama Tipi`, +'s56806e9f63efa298': `URI'leri yeniden yönlendirme`, +'s5694f9421c428227': `Parola Bağla`, +'s56fd9ed596c724fa': `Gizli anahtar`, +'s57072ffb92b6c9c8': `E-posta veya Webhook gibi kullanıcılara bildirimlerin nasıl gönderileceğini tanımlayın.`, +'s57448f10eb973100': `Kullanıcıları kaydetmek için Davet Bağlantıları oluşturun ve isteğe bağlı olarak hesaplarının belirli özniteliklerini zorlayın.`, +'s584d1c38ad20d560': `Herhangi bir HTML kullanılabilir.`, +'s586d6bd2eca2da93': `Kullanıcılar`, +'s587ba266269297ab': `İlke Bağlamaları`, +'s588796ee929a2e4c': `Kullanıcı ayrıntıları`, +'s58888ef1ee9b5bb8': `Kullanıcı durumu`, +'s58c867aac77b9158': `Son giriş`, +'s58cd9c2fe836d9c6': `Eve dön`, +'s58fd2aafa4261c55': `Uygulama başarıyla güncellendi.`, +'s592425143c4f5834': `Konu-alt adı`, +'s592ab7d2bc1b8973': `Kullanıcı alanları`, +'s593db2c00d6516a2': `SMTP Parolası`, +'s5944355d69db1fb8': `Toplama Grubu DN`, +'s59572c1be31a812e': `Akış önbelleği silinemedi`, +'s59691290a232c687': `Seçilen ilkeler, verileri doğrulamak için aşama gönderildiğinde yürütülür.`, +'s59b6028f19d15cda': `Entegrasyon etkin`, +'s59dc0eda07f9e2b6': `Özellik Eşleme (ler)`, +'s5a13f4bbe004503f': `İsteğin kullanıcı parolasının son x gün içinde değiştirilip değiştirilmediğini kontrol eder ve ayarlara göre reddedilir.`, +'s5a15a8f39c699273': `Seçilen uygulama tarafından oluşturulan olayları eşleştir. Boş bırakıldığında, tüm uygulamalar eşleştirilir.`, +'s5a48d5171e1a1522': `Uyarı: İlke atanmamış.`, +'s5acb607b40356974': `GID başlangıç numarası`, +'s5b1fb0d4c0daeba8': `Bağlama Oluştur`, +'s5be3b0567172e415': `Doğrulama Sertifikası`, +'s5be3c6d61cd9182f': `Bildirimler`, +'s5c18cae48b93138c': `Oturumlar`, +'s5cd31f4a88adf180': `Kullanıcı Düzenle`, +'s5d0a14d29ebad561': `Yeni kullanıcıları kaydettirirken kullanmak için akış.`, +'s5d6af4c100ad321b': str`Oluştur + ${0}`, +'s5d9f93f1fe1c19d3': `Traefik (Giriş)`, +'s5e169e1bac20b4a6': `Üsler`, +'s5e8250fb85d64c23': `Kapat`, +'s5e830ae7688d1219': `Aşama, SMS tabanlı bir TOTP kimlik doğrulayıcısını yapılandırmak için kullanılır.`, +'s5f343a43e7ea9f91': `Hata`, +'s5f496533610103f2': `Başvuru yetkili`, +'s5fc4269c2addee61': `Belirteç tarafından başvurulan benzersiz tanımlayıcı.`, +'s60d891ed3ee9ebc5': `Kaynak başarıyla oluşturuldu.`, +'s60edbcfac8ed1f90': `UidNumbers'ın başlangıcında, bu sayı, POSIX kullanıcıları için sayıların çok düşük olmadığından emin olmak için user.Pk öğesine eklenir. Varsayılan 2000 yerel kullanıcılarla çarpışmadığımızdan emin olmak için uidNumber`, +'s6152026c364ad974': `Auentik'in veritabanına senkronize edilebilen ya da kullanıcılar tarafından kimlik doğrulaması ve kayıt yaptırmak için kullanılabilen kimliklerin kaynakları.`, +'s618d4e53f455c834': `Genel ayarları kullan`, +'s61b6f3e6bc59c6dd': `İstemi Oluştur`, +'s61ccefd661ac2296': `Bu bayrak ayarlanırsa, Davet verilmediğinde bu Aşama bir sonraki Aşama'ya atlanır. Varsayılan olarak bu Aşama , davet verilmediğinde Akışı iptal eder.`, +'s61e48919db20538a': `UPN`, +'s6238f519db67980d': `UID`, +'s62ddcbaaa91d120d': `İtibar puanları`, +'s62f7c59b0606a8d6': `Yetkilendirme akışı`, +'s62f93cfcb45d5a06': `Süper kullanıcı ayrıcalıkları mı?`, +'s634d041fd954ab20': `API Auth parolası`, +'s63cb05541b294335': `Süper kullanıcı`, +'s63d894b1ddb06289': `Açıklama`, +'s63d89a6ae0969c30': `Kullanıcının parolasını doğrudan sıfırlamasına izin vermek için, etkin olan sakin üzerinde bir kurtarma akışı yapılandırın.`, +'s63e03c70f67ebf9c': `Bağlam`, +'s643d8f2e5e5e930d': `Eşleme başarıyla güncellendi.`, +'s64a33dcdaf90af26': `Kullanıcı Bilgileri`, +'s64ef2a6c2dd1d3d1': `Düzenle`, +'s65d507f1513c2f03': `IdP tarafından başlatılan kimlik doğrulama akışlarına izin verir. İstek kimliğinin doğrulanması yapılmadığından, bu bir güvenlik riski olabilir.`, +'s65d67612999165e9': str`Olay + ${0}`, +'s662fcb3761ad9df7': `Kullanıcı Yazma aşaması ile birlikte kullanıldığında, öznitelikleri yazmak için attributes.foo kullanın.`, +'s66722bc2ea775e05': `Devre Dışı`, +'s66ffc06300964849': `Kullanıcı nesne filtresi`, +'s670ad066cc0e50a3': str` + ${0}adresine devam etmek için giriş yapın.`, +'s67560d7e37d984c3': `İlke / Kullanıcı / Grup`, +'s67664f8ee9aea98d': `Lütfen Kodunuzu girin`, +'s67749057edb2586b': `Oturumu Kapa`, +'s677f1b675fc21bb1': `Sır:`, +'s67e20cd8018d7e3c': `Şu anda şu şekilde ayarlanmış:`, +'s681074b6c1f19c08': `Yapılandırılmamış eylem`, +'s6873bdbfa24615fb': `Web Kancası URL'si`, +'s68a50b1ee6efee7b': str` + ${0}kullanılabilir!`, +'s68f935c9ca792016': `app1 üzerinde çalışan app1.example.com`, +'s693d975d38ff0214': `İmza algoritması`, +'s69a56a3022c4be7f': `Sakin(ler)`, +'s69bd313dd12fc2f3': `Profil URL'si`, +'s6a406aecb2c0e5c5': `Kaydolun`, +'s6a89bb10338369b4': `Önceki sayfaya git`, +'s6ab73c998850c5ab': `İfade`, +'s6abff64e7ff7fde9': `Avatar resmi`, +'s6ac670086eb137c6': `Kurtarma`, +'s6ae0d087036e6d6d': `Bir kimlik doğrulama yöntemi seçin.`, +'s6b5002c605b39d6d': `Bildirim Aktarıcı Oluştur`, +'s6b6e6eb037aef7da': `Kimlik doğrulaması için aşağıdaki kullanıcı adı ve parolayı kullanın. Parola daha sonra Belirteçler sayfasından alınabilir.`, +'s6b79e73ca77148a0': `Üs Entegrasyonları`, +'s6b85380416964890': `Negate sonucu`, +'s6ba50bb0842ba1e2': `Uygulamalar`, +'s6c3daaac4eed12f9': `Değişiklikler`, +'s6c410fedda2a575f': `Güncelleme mevcut`, +'s6c70a73265e14521': `Aynı e-posta adresine sahip bir kullanıcıya bağlantı verin. Bir kaynak e-posta adreslerini doğrulamadığında güvenlik etkileri olabilir`, +'s6c8f05e3be04f62a': `Aygıtı kaydet`, +'s6d3b4d0561ba1cff': `Yayıncı`, +'s6d5bce4321f57cda': `Kayıttan Çıkarma`, +'s6df42b3072a2d7e9': `Nginx (Giriş)`, +'s6dfb7283452f78fe': `Yetkilendirme`, +'s6dfd15978586d05f': str`Hoş geldiniz, + ${0}.`, +'s6e09a19aa3952509': `En çok kullanıma sahip uygulamalar`, +'s6e612e5a6a359bbb': `İsteğe Bağlı Özel Anahtar. Bu ayarlanırsa, şifreleme için bu anahtar çiftini kullanabilirsiniz.`, +'s6e6e737601f44b2c': `Bildirimler başarıyla silindi`, +'s6f270e1668c036e9': `İleri üssü başarıyla güncelledi.`, +'s6f328f2d8382d998': `Onayın süresi`, +'s6f857299d5db1ecf': `Akış (ler)`, +'s6fe64b4625517333': `Auentik tarafından desteklenmektedir`, +'s7031e6928c44cedd': `Kullanıcı arayüzü`, +'s706af57c1af42c6d': `Gizli: Gizli alan, form içine veri eklemek için kullanılabilir.`, +'s708d9a4a0db0be8f': `Durumu kontrol et`, +'s70f6471de355b98c': `HTTP-Temel Parola Anahtarı`, +'s713d147e1761d0f0': `Güncel!`, +'s71dcd9cf808449aa': `Belirteç(ler)`, +'s721d94ae700b5dfd': `İkili aktivasyon`, +'s72559845d38bf688': `Erişim belirteçlerinin ne kadar süreyle geçerli olduğunu yapılandırın.`, +'s72c1c17a9bdc76ad': `Yardım metni`, +'s72e102414fec81a4': `Kural başarıyla oluşturuldu.`, +'s730182ad28374cda': `Nesne`, +'s7301a7069b7bc83e': `İptal mi edildi?`, +'s733f83ff9d50da30': `Bir onaylama işlemi için izin verilen maksimum zaman kaymasını yapılandırın.`, +'s73c13e5a6f5e38a3': `Cihaz sınıfları`, +'s7468e87263dfff7e': `Tanımlayıcı`, +'s7489f76224f8120d': `İleri kimlik doğrulaması (tek uygulama)`, +'s74f809a69e030351': `OpenID Yapılandırması Yayımlayıcı`, +'s7520286c8419a266': `Akışın 'prompt_data' bağlam değişkenine yüklenen isteğe bağlı veriler. YAML veya JSON.`, +'s75a27f43413e02c5': `Fransızca`, +'s75d5ff5dd8d3c6d2': `Grup başarıyla güncellendi.`, +'s7609ee54e8a7b05a': `Geçerlilik günleri`, +'s764bccb30868bf62': `Uygulamaya erişeceğiniz harici URL. Standart olmayan herhangi bir bağlantı noktasını dahil edin.`, +'s76768bebabb7d543': `Bir grubun üyelerini içeren alan. “memberUid” alanını kullanıyorsanız, değerin göreli bir ayırt edici ad içerdiği varsayılır. örn. 'memberUid=cn=some-user yerine 'memberUid=some-user, ou=groups,...'`, +'s7683363cdf78cf31': `Kullanıcı doğrulaması varsa tercih edilir, ancak gerekli değildir.`, +'s76881c01b6a3a8c7': `Rıza(lar)`, +'s76da2c978dcc5ef4': `İlke önbelleği başarıyla temizlendi`, +'s76f5dca6404a1210': `Webhook (Kayak/Uyuşmazlık)`, +'s773aa6621d7e37b7': `Sakin Oluştur`, +'s7754f0e34f27fb6e': `Açıklama, izin verirken kullanıcıya gösterilir. Boş bırakılırsa kullanıcı bilgilendirilmez.`, +'s77994108c886b965': `İptal edilmeden önce başarısız denemeler`, +'s77f572257f69a8db': `Özellik Eşleme hatası`, +'s78c08391ffbfb8c0': `Bu bağlamalar hangi kullanıcıların bu akışa erişebileceğini denetler.`, +'s78fd8c03f8c967f3': `Belirteçler`, +'s7968dbed9b106c29': `Hizmet yok.`, +'s7989db5f4819af89': `Çıkış yapmak için kullanılan akış. Boş bırakılırsa, kısa isme göre sıralanan ilk uygulanabilir akış kullanılır.`, +'s79ad406777feab1f': `Davetsiz akışa devam edin`, +'s79aed8154d7c472c': `Üs başarıyla oluşturdu.`, +'s79e8cc71a5975b04': `Mesaj`, +'s7a141f1b61074fbe': `Basic-Auth`, +'s7a322c89298dd27c': `Davet başarıyla güncellendi.`, +'s7a4f059aaa029719': `Bağlan`, +'s7abc9d08b0f70fd6': `Statik belirteç`, +'s7b18721be331241e': `Kullanıcıyı bilgilendirmek için hangi aktarıcıların kullanılması gerektiğini seçin. Hiçbiri seçilmemişse, bildirim yalnızca authentik kullanıcı arabiriminde gösterilir.`, +'s7b1fba26d245cb1c': `Arşivleme için harici bir günlük çözümü kullanırken, bu “Dakika = 5" olarak ayarlanabilir.`, +'s7b576aa71acb36a6': `Diyagram`, +'s7b7163270e57e8b4': `Yenile`, +'s7bc8c327f1f7c82c': `Nesne bulunamadı.`, +'s7bda44013984fc48': `Parola seti`, +'s7c05ee41d634aa45': `Kullanıcı oluşturma için kullanılan özellik eşlemeleri.`, +'s7c10976de6411844': `Belirteç geçerliliği`, +'s7c27e113f90a89e0': `Seçildiğinde, gelen onaylama öğesinin İmzaları bu sertifikaya göre doğrulanır. İmzasız İsteklere izin vermek için varsayılan olarak bırakın.`, +'s7c5774fad9d050ce': `Grup oluştur`, +'s7cb9aa9ee1783f00': `Grup Özellik Eşlemeleri`, +'s7d499be3b781a3ca': `Kullanıcı (lar)`, +'s7d684b6257284e55': `Skor`, +'s7def067ed3ad3ad9': `Çerez alan adı`, +'s7e537ad68d7c16e1': `Kullanıcı yazıldı`, +'s7e87ab366c199345': `Ciltlemeyi Güncelle`, +'s7eb3d239e0b491ab': `Kullanıcı eklemek için grupları seçin`, +'s7ec7036b249f4f22': `Düzenli kullanıcı`, +'s7edad99c6b7bfe88': `Sonraki sayfaya git`, +'s7f4e4054fbe132e1': `Diğer genel ayarlar`, +'s7f5869b3d14d7cbc': `Sağlayıcı`, +'s7f9e79189a3d19e2': `Sakinler`, +'s7f9eb9c8bd26e8fd': `Başarılı bir yetkilendirme akışından sonra geçerli yeniden yönlendirme URL'leri. Ayrıca Kapalı akışlar için burada tüm kökenleri belirtin.`, +'s7fa236d26b798301': `Bağlantıyı gönder`, +'s7fa4e5e409d43573': str`Kimlik bilgisi oluşturulurken hata oluştu: + ${0}`, +'s802826db4e2c852e': `Uyarı: Hiçbir davetiye aşaması herhangi bir akışa bağlı değildir. Davetiyeler beklendiği gibi çalışmaz.`, +'s803b0621006085be': `SAML Sağlayıcısını Güncelle`, +'s80e6d6fe5ad458d3': `Simgeyi temizle`, +'s819509c33a7534ac': `Bildirim Aktarıcıları`, +'s81a87652ade099e4': `Kullanıcı eşleştirme modu`, +'s81ecf2d4386b8e84': `Devam Et`, +'s81eff3409d572a21': `Genel sistem hatası`, +'s82188c9542510212': `Sayfanın alt kısmında bağlı olan isteğe bağlı kurtarma akışı.`, +'s8226f48cb1a80997': `Davetiyeler`, +'s832282d415294df4': `Akışı İçe Aktar`, +'s835da49b4dc83a51': `Geçtiğimiz ay içinde günlük başarısız oturum açma`, +'s836aa192b30c21da': `Kayıt dışı akış`, +'s838418d1a0815157': `Geçiş ilkesi?`, +'s838ed611b533b19e': `Giden istekleri imzalamak için kullanılan anahtar çifti. İmzalamayı devre dışı bırakmak için boş bırakın.`, +'s839cb09cb2193da9': `Daveti kullanmak için bağlantı.`, +'s83d0f62ad1731a03': `Özel Anahtar`, +'s84c5a011acd608c9': `Etkinliği saklama`, +'s84d7d6ebbedcb586': `Sağlık ve Versiyon`, +'s850a58c683682809': `Yayımcı kipi`, +'s851c108679653d2a': `Kapsam adı`, +'s85366fac18679f28': `Parolanı mi unuttun?`, +'s858e7ac4b3cf955f': `Statik belirteçler`, +'s872d0e88ab34ed83': `Yetkilendirme URL'si`, +'s8763a33c3d46aaf5': `Üs durumu`, +'s87b7e3bc944c728c': `Bekleyen kullanıcıyı başarı durumunda etkinleştir`, +'s8802553bc57617ee': `Outposts, ters proxy'ler gibi farklı ortamları ve protokolleri desteklemek için authentik bileşenlerinin dağıtımlarıdır.`, +'s883b544e2b4aa3b5': `Minimum Küçük Harf Karakter Miktarı`, +'s8849ece8c65e3a18': `Gösterge Panoları`, +'s88b8a2892635a2fc': `Auentik tarafından belirteçleri almak için kullanılan URL.`, +'s890810efbe103cbc': `Oluşturulan olayları bu eylem türüyle eşleştirin. Boş bırakıldığında tüm eylem türleri eşleştirilir.`, +'s890e983a7be64da4': `Sonuç`, +'s892d2731a6f22e59': `https://www.google.com/recaptcha/intro/v3.html adresinden edinilen özel anahtar.`, +'s8939f574b096054a': `Sen değil mi?`, +'s8a1d9403ca90989b': `Kullanılan davetiye`, +'s8aaad223e954f9ca': `Etkinleştirildiğinde, kullanıcı alanları muhafazası ne olursa olsun eşleştirilir.`, +'s8af61807443f32a4': `Eylemler`, +'s8af7239354f7e7b6': `Kullanıcıları senkronize et`, +'s8aff572e64b7936b': `E-postayı tekrar gönder.`, +'s8b0432eecbd8b034': `Güncelleme`, +'s8b2b2a43fcf688a3': `İstemi başarıyla güncellendi.`, +'s8b33660e2ed7212c': `SSH üzerinden bağlanırken, bu anahtar çifti kimlik doğrulama için kullanılır.`, +'s8b87df5664de7eb8': `Üssün çekirdek authentik sunucusunun kullanıcılarını nasıl sorgulayacağını yapılandırın.`, +'s8be4abc7ca71da6c': `UI ayarları`, +'s8ca0dbaec5d48563': `Kurtarma akışı yapılandırılmamış.`, +'s8cb7bb82e96d5d77': `İlkeler`, +'s8cc920e6a8430a0d': `Şu anda bekleyen kullanıcıya oturum açın.`, +'s8cda828dac449ea5': `Hepsini temizle`, +'s8ce8bdc9cc9c8604': `Süresiz olarak verilen izin`, +'s8d08843f397d9e81': `Tüm değişkenlerin listesi için belgelere bakın.`, +'s8d32d7b9e8ca60b1': `Aynı tanımlayıcı tüm sağlayıcılar için kullanılır`, +'s8d7ecd944ebe834b': `Token authentik tarafından yönetilir.`, +'s8d857061510fe794': `Duo push-bildirimleri`, +'s8da88a8a5750bce1': `Duo Kimlik Doğrulayıcıları`, +'s8e01a852c1db8d29': `Nginx (Proxy Yöneticisi)`, +'s8ecdbff1a7329b64': `müfettiş ile`, +'s8f12575f694e85a2': `Proxy'ye iletilen ek kapsam eşlemeleri.`, +'s900b0d85b872d134': `Kullanıcıları benzersiz tanımlayıcıya bağlama`, +'s909e876731a8febb': `Tüm satırları seç`, +'s90c3b62194fe8508': `Üs Dağıtım Bilgileri`, +'s9117fb5195e75151': `Uyarı`, +'s916b32ac64ea2b05': `Aşama başarıyla güncellendi.`, +'s9193ef1a39a6c872': `Yeni oluşturulan kullanıcıları etkin değil olarak işaretleyin.`, +'s91e3a47599412f51': `Kaynaklar`, +'s91f389c796720a81': `Sunucuları yükle`, +'s91f70424f5d5d23e': `Kısa İsim`, +'s9222ca30ae7786e4': `Uygulama başarıyla oluşturuldu.`, +'s925936f647ae52cc': `Akış sayfalarında Başlık olarak gösterilir.`, +'s926e0ecf124fb01a': `Erişim kodu geçerliliği`, +'s92ca679592a36b35': `Sırrı döndürüldü`, +'s92e241c9f3c101a2': `bağlantılı nesne silinecek`, +'s93574c03953f25dd': `Bu sağlayıcı saydam bir ters vekil sunucu gibi davranır, ancak isteklerin kimliğinin doğrulanması gerekir. Yön uygulamanızda HTTPS kullanıyorsa üsse de HTTPS kullanarak bağlandığınızdan emin olun.`, +'s93c1e5fbe8184895': `Belirteç başarıyla oluşturuldu.`, +'s93cea6ca1f93349d': `Kimliği Doğrulanmamış URL'ler`, +'s93cf77a59db53395': `referans varsayılan değere sıfırlanır`, +'s94333971a07803b9': `Ek ayarlar`, +'s949826fad0fe0909': `Görev hatalarla tamamlandı`, +'s955c1fec1c6fb970': `Hiçbir aşama şu anda bu akışa bağlı değildir.`, +'s95a032ae86881bf5': `Akışı kullanma`, +'s965c503c3e42fdfe': `Etkin`, +'s968c90258dcf7562': `Post ciltleme`, +'s96b2fefc550e4b1c': `Sağlayıcı Türü`, +'s96b3cddf33e1c853': str`Şu anda + ${0}kimliğine bürünüyorsunuz. Durdurmak için tıklayın.`, +'s97d1b0070f50c07f': `Statik Belirteçler`, +'s97f2dc19fa556a6a': `SMS`, +'s97f5e0c138eae172': `Uyarı: Sağlayıcı herhangi bir uygulamaya atanmamış.`, +'s980270d0fab7ecb3': `Aşama bağlamasını Güncelle`, +'s98b1cb8fb62909ec': `Grup`, +'s98c3bdf4fd5cdf65': `Bildirim Kuralları`, +'s991b750e2d5c4234': `Servis Sağlayıcı Bağlama`, +'s992f8d1a776e763c': `Boş bırakılırsa, authentik seçili sağlayıcıya göre başlatma URL'sini ayıklamaya çalışacaktır.`, +'s99f110d27e30b289': `Başlık`, +'s9a34d1520e320465': `Aşama alanına özgü ayarlar`, +'s9a393a04eaf1eb0e': `Aşama bağlama oluştur`, +'s9ae089fd248e72db': `Ek kullanıcı DN, temel DN'ye eklenmiş.`, +'s9bd59e0ea70a3e4a': `Üssü Güncelle`, +'s9bd9ba84819493d4': `Bir şeyler ters gitti! Lütfen daha sonra tekrar deneyin.`, +'s9bf48a89367282cd': `Uyarı: authentik Domain yapılandırılmamış, kimlik doğrulama çalışmaz.`, +'s9c29565c5ae1cc92': `Bir entegrasyon seçilmesi, oentik tarafından üssün yönetimini sağlar.`, +'s9c3c272944dcfca3': `Kullanıcı başarıyla oluşturuldu.`, +'s9c6f61dc47bc4f0a': `Model oluşturuldu`, +'s9c73bd29b279d26b': `Taklit sona erdi`, +'s9d18948d25c68d66': `Sertifika-anahtar çifti başarıyla oluşturuldu.`, +'s9d2d00982edafabb': `Türkçe`, +'s9d8ad4b85287131f': `Rakamlar`, +'s9d95f09deb601f34': str`Kimlik bilgisi sunucu doğrulaması başarısız oldu: + ${0}`, +'s9d96eb5ca93e6473': `OpenID Yapılandırma URL`, +'s9e568afec3810bfe': `Kurtarma tuşları`, +'s9e830cbc0b42a514': `Akışı Güncelle`, +'s9e9c8d99f4c26baf': `Bir kullanıcı e-postadan başarıyla döndüğünde, hesabı etkinleştirilir.`, +'s9ee20003cb116abf': `Parolasız akış`, +'s9f23ed1799b4d49a': `Hangi verilerin benzersiz Kullanıcı Tanımlayıcısı olarak kullanılması gerektiğini yapılandırın. Çoğu durumda, varsayılan seçim yeterlidir.`, +'s9f26843287bb592d': `Gruplar`, +'s9f5a5f23312798f0': `Üyeler`, +'s9f8aac89fe318acc': `İsteğe bağlı olarak onaylama özniteliğinin 'FriendlyName' değerini ayarlayın.`, +'s9f91cc8bcfabb40f': `Onaylama işlemi daha önce geçerli değil`, +'s9fb28be12e2c6317': `Süper kullanıcı`, +'s9fdda7ea4642306c': `Grup (ler)`, +'s9ff3121d30f88d52': `Normal`, +'s9ffa1ac03ce6fd20': `Yürütme günlüğü`, +'sa00cf67b54c44c71': `Kubernetes hizmetinin IP'lerini kontrol edin veya`, +'sa03aa46068460c95': `Kullanıcı adı veya parolayı mı unuttunuz?`, +'sa03fe48e892df2d8': `Kimlik doğrulayacağınız harici URL. Auentik çekirdek sunucusuna bu URL altında erişilebilir olmalıdır.`, +'sa0b01f479f40c52d': `Aygıt (ler)`, +'sa0e0bdd7e244416b': `Şüpheli istek`, +'sa11e92683c5860c7': `İstek reddedildi.`, +'sa13e6c8310000e30': `Oturum Kimliği`, +'sa1b41e334ad89d94': `Sır görüldü`, +'sa248e1021d2c27b5': `Kullanıcının e-posta adresini bir kerelik bağlantı göndererek doğrulayın. Kullanıcının orijinalliğini doğrulamak için kurtarma için de kullanılabilir.`, +'sa266303caf1bd27f': `E-posta gönderildi`, +'sa29b5680cfafacc8': `Harici ana bilgisayar`, +'sa2b727168b090d34': `Akış önbelleğini temizleme`, +'sa2c29dc5ed47b26d': `Kullanıcıyı bir kimlik doğrulayıcı yapılandırmaya zorla`, +'sa2e4d6830226d3ec': `Yeniden yönlendirme bağlama`, +'sa30c58514a3dc0fb': `Kullanıcı erişimini engelle`, +'sa319e3bf44c85963': `Grup oluşturma için kullanılan özellik eşlemeleri.`, +'sa33d061d2ade20aa': `İtibar`, +'sa3438c7bb4e9cce8': str` + ${0}okunmamış`, +'sa347e31efbb60be2': `Uygulamayı Güncelle`, +'sa3599457b9418bc5': `Kullanıcının avatarı`, +'sa3660d505e7011e0': `Yetkili başvuru:`, +'sa3c1f6ac5e63a70f': `Kimlik doğrulamadan önce kullanılan akış.`, +'sa41aee3ae04c9216': `Kaynakların etiketlerini göster`, +'sa442044b586ec8bf': `Eylem`, +'sa45a194b58837e4f': `Etkin`, +'sa48f81f001b893d2': `Kullanıcı`, +'sa4a8086275475714': `Bir kayıt akışı seçme`, +'sa50a6326530d8a0d': `Daha az göster`, +'sa578033f134a83b6': `Erişim kodlarının ne kadar süreyle geçerli olduğunu yapılandırın.`, +'sa57c393736e2732c': `Sınama Özellik Eşlemesi`, +'sa599dbe5776897ad': `Birden çok sunucu URI'lerini virgülle ayırarak belirtin.`, +'sa668bd79645c3e06': `Kubeconfig`, +'sa6905be242387f36': `Hata`, +'sa6ab5184d6315895': `itibaren`, +'sa717841a602fe7d8': `İlke önbelleği silinemedi`, +'sa738ce390bc24875': `Bu değeri https://console.twilio.com adresinden alın`, +'sa7b56a80ab1801f0': `Twilio Auth Belirteci`, +'sa7fcf026bd25f231': `SSH üzerinden bağlanmak için 'ssh: //' veya uzak bir sisteme bağlanırken 'https://:2376' kullanarak yerel bir docker daemonuna bağlanırken 'unix: //' biçiminde olabilir.`, +'sa81e2cdaf6921adc': `Sistem`, +'sa879d5ce584875cf': `İlke özel ayarlar`, +'sa8c45b6b92a8ba1f': `Uygulama Oluştur`, +'sa8d83cd8023e8e4d': `Kullanıcı bilgilerini almak için authentik tarafından kullanılan URL.`, +'sa8e255492bb6ae0d': `Üs entegrasyonu`, +'sa9020b93c3bd7235': `Akış iptal edilmeden önce bir kullanıcının kaç denemesi vardır. Kullanıcıyı kilitlemek için itibar ilkesi ve user_write aşamasını kullanın.`, +'sa90b7809586c35ce': `Ya tam bir URL, göreli bir yol girin ya da 'fa://fa-test' Yazı Tipi Awesome simgesini “fa-test” kullanmak için kullanın.`, +'sa95a538bfbb86111': str` + ${0}“ + ${1}” güncellemesini istediğinizden emin misiniz?`, +'sa9b2a245441557dc': `Son çalıştırma`, +'sa9dbe2fb284e26fe': `Kullanıcıya kurtarma bağlantısını gönder`, +'saa0e2675da69651b': str`“ + ${0}” URL'si bulunamadı.`, +'saa10777250a6deca': `SAML Kaynağını Güncelle`, +'saa855c61e0403fe6': `Uyarı: Uygulama herhangi bir Üs tarafından kullanılmıyor.`, +'saaa3abe03c7260f9': `authentik'in arka planda yürüttüğü uzun süreli işlemler.`, +'saae1c70e168b45b4': `Yönetici`, +'sab6bad52985c6676': `Markalama sayfa başlığında ve başka yerlerde gösterilir.`, +'sab6d24c5ec8dc361': `Dostça İsim`, +'sab85321d3b0840b7': `API isteği başarısız`, +'sababff57115130a0': str`Hata: desteklenmeyen kaynak ayarları: + ${0}`, +'sabaf0061f7e41b0b': `Tüketici sırrı`, +'sabb56f74492e7e96': `Cihazı Güncelle`, +'sabd1bc9fb7da71e7': `Python kullanarak ifade.`, +'sabebdc7fa6a5bddb': `Nginx (bağımsız)`, +'sabf67834e35dede5': `Belirteç sayısı`, +'sac1332e6f421526e': `Bildirim Aktarıcısını Güncelle`, +'sac43cb9690260b86': `UID başlangıç numarası`, +'sac8252732f2edb19': `Tarih`, +'sad09c62cb4ebae68': `Belirteci kopyalamak için tıklayın`, +'sad130c2d925fb7bf': `Kullanıcı Güncelle`, +'sad3e3c8146fc920f': `Durum`, +'sad8550b8731518d8': `Oturum geçerli değil veya sonrasında`, +'sae1e1a59d22609c4': `Etkinleştirildiğinde, genel E-posta bağlantısı ayarları kullanılır ve aşağıdaki bağlantı ayarları yoksayılır.`, +'sae239213b7c70376': `Eyalet`, +'sae486938be80729c': `Her şey yolunda.`, +'sae5d87e99fe081e0': `Zorunlu`, +'sae5da213b7f896ed': `Aşama`, +'saeff3596e1ac31b6': `Kurulum`, +'saf1d289e3137c2ea': `Uç noktanın Sertifikası karşı doğrulanan CA. Doğrulama yapılmadan boş bırakılabilir.`, +'saf24e253b3b006d4': `Nasıl bağlanır`, +'saf31b3c610036ed6': `Bu seçenek etkinleştirildiğinde, bu ilkenin tüm yürütmeleri günlüğe kaydedilir. Varsayılan olarak, yalnızca yürütme hataları günlüğe kaydedilir.`, +'saf5eb7596b3a355b': `Bu filtreyle eşleşen nesneleri Gruplar olarak düşünün.`, +'saf63a04c86018698': `-`, +'saf63d34c8601dd41': str` + ${0} + `, +'saf794c74c9ea731e': `Kullanıcı Özellik Eşlemeleri`, +'saf7ce4165a1025f6': `Grupları eşle`, +'safc0e0656d572f4e': `Test için kullanılan bir ilke. Her zaman rastgele bir süre bekledikten sonra aşağıda belirtilen sonucu döndürür.`, +'safcc54b2aedb1a17': `Bu seçilirse, belirteç süresi dolacaktır. Süresi dolduktan sonra, belirteç döndürülür.`, +'safd0363143a46a91': `Temel Auth`, +'sb0669da3df95837c': `Son ay içinde günlük oturum açma`, +'sb07bf992e3d00664': `Ek veri yok.`, +'sb0b86b8ca6ab13bd': `Sağlayıcılar`, +'sb157267c85fdff30': `Sertifika`, +'sb15e8daacf26bdfc': `Belirteç Oluştur`, +'sb1751a1411d6874f': `Harici API URL'si`, +'sb17e8c70f9a05c77': `Başka bir yönteme erişemiyorsanız.`, +'sb1c91762ae3a9bee': `Kimliğe bürünme başladı`, +'sb1fe947f9ad27b9d': `Belirteç son kullanma tarihi`, +'sb24755ea94bef31d': `Şu anda ayarlanmış arka plan görüntüsünü sil.`, +'sb25d9afe10941425': `Bu Akış'ın ne için kullanıldığına karar verir. Örneğin, kimliği doğrulanmamış bir kullanıcı authentik ziyaret ettiğinde kimlik doğrulama akışı yönlendirir.`, +'sb25e689e00c61829': `Kod tabanlı kimlik doğrulayıcı kullanın.`, +'sb2b3b281954752c4': `Uygulamaya atanmış`, +'sb2bb6f93773a4594': `HTTP-Basic Üstbilgisinin kullanıcı bölümü için kullanılan Kullanıcı/Grup Özniteliği. Ayarlanmazsa, kullanıcının E-posta adresi kullanılır.`, +'sb2c57b2d347203dd': `Daha fazla göster`, +'sb2f307e79d20bb56': `Mevcut plan bağlamı`, +'sb32e9c1faa0b8673': `Ön kimlik doğrulama akışı`, +'sb357ea19a722d827': `Post`, +'sb3651834cca86735': `Minimum Semboller Karakter Miktarı`, +'sb3fa80ccfa97ee54': `Aşama adı`, +'sb4564c127ab8b921': `Başarısız oturum açma`, +'sb4a1d1c19438e929': `auth.example.com üzerinde çalışan authentik`, +'sb546eb04425e07fa': `Ayrıntıları güncelle`, +'sb564f81eb057342e': `Uygulama Simgesi`, +'sb59d68ed12d46377': `Yükleniyor`, +'sb635ad3c2e357d3c': `Bu, temel kimlik doğrulama ile kullanılacak paroladır`, +'sb69119c9f0547bed': `Kurtarma bağlantısı kopyalama`, +'sb69a4b0acd0895f2': `Akışlar`, +'sb6cbd4f92ebaf5d8': `İlgili`, +'sb6d5146d5efb3058': `Erişim Anahtarı`, +'sb6d7128df5978cee': `İlke hatası`, +'sb6d7d58cb0a1544e': `Uyumluluk modu`, +'sb72ebab438cb2983': `Harici sağlayıcıların sertifikalarını içe aktarın veya istekleri imzalamak için sertifikalar oluşturun.`, +'sb7684e2910a33a1f': `Bağlama CN`, +'sb7794c2910b1a9ec': `Bağlama DN`, +'sb7a30abc1dcf6c36': `Yayımcı`, +'sb8168ae309c66abc': `TOTP Kimlik Doğrulayıcıları`, +'sb85ffe141d7c229d': `Oturum süresi`, +'sb8795b799c70776a': `Tek kullanımlık`, +'sb8bc2b8376c96a6b': `Niyet`, +'sb8c13bd58191cea2': `TLS ile bir LDAP Sunucusuna bağlanırken, sertifikalar varsayılan olarak denetlenmez. Uzak sertifikayı doğrulamak için bir anahtar çifti belirtin.`, +'sb8d4f44a1d5b9a14': `Arka uçlar`, +'sb8dd788adf7b907b': `Vekil Sunucu`, +'sb904f23f17b60c3a': `Akış başarıyla aktarıldı.`, +'sb932dead79567c7b': `Erişim belirteci URL'si`, +'sb96629f50f2e7fab': `Sağlıksız`, +'sb986f15fa9b17805': `Onayın süresi doluyor.`, +'sba42248f3f27955c': `Kullanıcı veritabanı+standart parola`, +'sba65ae54d6585c1a': `Okunmamış bildirimler`, +'sbab723b98dcfe23f': `Eşleşen kullanıcıyı göster`, +'sbad5b96fb855ef36': `Hiçbir ilke bağlı.`, +'sbadde673052efc02': `Web Sertifikası`, +'sbb3243352661428f': `Kimlik doğrulama akışı`, +'sbb57cd8a3ed12915': `360 gün boyunca geçerlidir, bundan sonra parola otomatik olarak dönecektir. Parolayı Token Listesi'nden kopyalayabilirsiniz.`, +'sbbb2180b6aed196e': `Numarasından`, +'sbbb7318812d64e51': str`Kimlik bilgisi oluşturulurken hata oluştu: + ${0}`, +'sbbb97b1c63507dc0': `Numara`, +'sbbc1de43ab6c1f76': `Bildirim Kuralı Oluştur`, +'sbbc53e0e54d7946f': `Konu`, +'sbc80eab557fbf782': `Arama grubu`, +'sbcae51a6f06e53d4': `Arama modu`, +'sbd19064fc3f405c1': `Doğrulama e-postası için Gelen Kutunuzu kontrol edin.`, +'sbdc1176ff9f93da2': `Bu, POST istekleri göndermek için tam bitiş noktasıdır.`, +'sbdeedc1c60306b35': `İletiler`, +'sbe3b416a356f1c91': `Aktif`, +'sbe47a5bdeec19ab0': `Aşama bağlama (ler)`, +'sbe9a51f29a4a2c5b': `Başarılı`, +'sbea3c1e4f2fd623d': `Aşama türü`, +'sbec40ef4e6f139b7': `(Biçim: saat=1; dakika=2; saniye= 3).`, +'sbecf8dc03c978d15': `Eşzamanlamayı tekrar çalıştır`, +'sbedb77365a066648': str`Son senkronizasyon: + ${0}`, +'sbf41e0db12834133': `Userinfo uç noktasına erişmeyen uygulamalar için, id_token'daki kapsamlardan Kullanıcı taleplerini dahil edin.`, +'sbf5f4c5ba679e847': str` + ${0}üzerinden giriş yapın.`, +'sc04e92d753742189': `6 basamaklı, yaygın olarak uyumlu`, +'sc0829ee663ced008': `Rehber`, +'sc0a0c87d5c556c38': `Telefon numarası`, +'sc10db51c9bb77d5c': `Kullanıcı veritabanı+LDAP parolası`, +'sc1231049879b8d33': `Etkinleştirilirse, yerel bağlantıyı kullanın. Gerekli Docker soketi/Kubernetes Entegrasyonu.`, +'sc15d60377cc8aaac': `Hiçbir ilke şu anda bu nesneye bağlı değildir.`, +'sc19838ca8c135c1b': `Markalama ayarları`, +'sc1a1ff47c058bb09': `Olay Günlüğü`, +'sc1cb0eef9ed94e6a': `Bir grup seçiliyse, yeni oluşturulan kullanıcılar bu gruba eklenir.`, +'sc1ce2f758935ff48': `Auentik tarafından yönetiliyor`, +'sc1cfce89ebcf1bf9': `İmzalama sertifikasını indirme`, +'sc1feadd25659c94d': `Gönderen adres`, +'sc21032b0d37882a0': `Auentik_host ayarınız oturum açmak istediğiniz URL'yle eşleşmiyorsa, bu ayarı ekleyin.`, +'sc25edca57df81461': `Kimlik Doğrulama`, +'sc265a3e29e1206e4': `Olaylar`, +'sc297b2e13c28ecf9': `Herhangi bir sunucu paylaşmasan bile arkadaşlarının Plex aracılığıyla kimlik doğrulamasına izin ver`, +'sc2a1a40a1b4b0170': `Entegrasyon başarıyla oluşturuldu.`, +'sc2f116c0ea77d58a': `Hata mesajı`, +'sc2f1e5dd74c1b7df': `Başarılı Oturum Açma`, +'sc3259eb55cf91e8c': `LDAP`, +'sc35581d9c1cd67ff': str` + ${0}adına`, +'sc381422c585b867f': `Hızlı eylemler`, +'sc39fb3ff3753d5ab': `Yönetilen eşlemeleri gizle`, +'sc3c74f5273df459a': `Jenerik`, +'sc3e0c240b159fbce': `Akış başarıyla oluşturuldu.`, +'sc3e1c4f1fff8e1ca': `Bu akış tamamlandı.`, +'sc4508175bf6b09dd': `Kimliği Doğrulanmamış Yollar`, +'sc4eedb434536bdb4': `Bir hesaba mı ihtiyacınız var?`, +'sc54aafeea9c9bab0': `Bağlı hizmetler`, +'sc554339ffc7b04e7': `Davet başarıyla oluşturuldu.`, +'sc5668cb23167e9bb': `Alternatif olarak, mevcut cihazınızda Duo yüklüyse, şu bağlantıya tıklayın:`, +'sc592307ea80f16b9': `bilinmeyen`, +'sc5a4711395ffb043': `Bir TOTP kimlik doğrulayıcısını (Authy/Google Authenticator) yapılandırmak için kullanılan aşama.`, +'sc647dcb91f6958dd': `Numara SMS gönderilecektir.`, +'sc6b4ebd37b7a91c7': `Belirteçler ve Uygulama parolaları`, +'sc6c57419ad3a01a8': `Anahtar belirteçleri imzalamak için kullanılır.`, +'sc6e8a34361c7c272': `İleri kimlik doğrulama (alan düzeyi)`, +'sc741d9ebe07ad103': `İmzalama Serfikası`, +'sc741dfb09d3395f0': `Kullanılabilir Uygulama yok.`, +'sc744f3691efe310d': `Hizmet hesaplarını gizle`, +'sc764ddf60b5149de': `IDP Tek Oturumu Kapat'ı destekliyorsa isteğe bağlı URL.`, +'sc7707b3ba3a2a7ca': `Belirteç URL'sini iste`, +'sc7be80a7f8ec597e': `Son kullanma tarihi`, +'sc816360d6f5a1eeb': `Akışlar, bir kullanıcının kimliğini doğrulamak, kaydetmek veya kurtarmak için Aşama zincirini tanımlar. Aşamalar, bunlara uygulanan ilkelere göre seçilir.`, +'sc8da3cc71de63832': `Giriş`, +'sc8de93a7dc0d78ba': `İstemci türü`, +'sc8f286ac783c385d': `Dağıtım Bilgilerini Görüntüle`, +'sc9175cb129fdc306': str`Güncelleme + ${0}`, +'sc92d7cfb6ee1fec6': `Parola başarıyla güncellendi.`, +'sc92ed9d5e01d3f24': `Bildirim kuralları`, +'sc96dd9d2e7b05fc5': `Minimum uzunluk`, +'sc9c3578cce3cf7a8': `Harici Ana Bilgisayar`, +'sc9f69360b58706c7': `Model silindi`, +'sc9fc206433f67588': `Kimlik doğrulamasının gerekli olmadığı düzenli ifadeler. Her yeni satır yeni bir ifade olarak yorumlanır.`, +'sca2879d96f58a39c': `Bir kez gönder`, +'scab2900019953050': `Kullanıcı başarıyla güncellendi.`, +'scb317851cbcc6b12': `Dahili ana bilgisayar`, +'scb43f5faeb6a7ca9': `Kullanıcı doğrulaması gerçekleşmemelidir.`, +'scb489a1a173ac3f0': `Evet`, +'scb5c9a7cc4ccd68d': `E-posta bilgileri:`, +'scb6620fcd5bff04c': `Gelişmiş ayarlar`, +'scc286303aa9c6cb0': `Durumu senkronize et`, +'scc733ba98740038a': `Güncelleme İstemi`, +'sccbfc4dec0c8d80c': `Uygulamaya atanmış`, +'scd0cfe87af6f2ff2': `Önem derecesi`, +'scd8062ff5e1326d8': `HIBP veritabanında N oluşumuna kadar izin ver.`, +'sce106606ae84d46f': `Özellik Eşleştirmeleri`, +'sce8d867ca5f35304': `Parola ayarla`, +'scea1f16238093e35': `Bir isteğe izin verip reddedilmeyeceğini belirlemek için python parçacığını çalıştırır.`, +'scf2790cf3ad89283': `SAML Onaylamaları için kullanılan öznitelik adı. URN OID, şema referansı veya başka bir dize olabilir. Bu özellik eşlemesi NameID özelliği için kullanılıyorsa, bu alan atılır.`, +'scf5ce91bfba10a61': `Lütfen parolanızı girin`, +'sd04376c4216c921f': `URL ayarları`, +'sd06b47084fec0ec5': `Bearer Belirteci`, +'sd07866d9f38b2c50': `Akışı yürüt`, +'sd080b2370aa82967': `IP ve kullanıcı tanımlayıcıları için itibar. Başarısız olan her giriş için puan azaltılır ve her başarılı oturum açma için artırılır.`, +'sd0bc94e11935ee5a': `HTTPS doğru algılanmadı`, +'sd1031bddc66dc495': `Geleneksel kimlik bilgileri yerine hizmeti kullanarak oturum açmanıza izin vermek için kullanıcı hesabınızı aşağıda listelenen hizmetlere bağlayın.`, +'sd1146418b344f81f': `Bildirim Kuralını Güncelle`, +'sd1288ca57e221cf9': `Belirteç Güncelle`, +'sd14a19a19d507f9e': `LDAP'den alınan tüm gruplar için ebeveyn grubu.`, +'sd18170637295bace': `Ekleme Kullanıcı DN`, +'sd1a5560fde6f2271': `Sağlayıcı başarıyla içe aktarıldı.`, +'sd1f44f1a8bc20e67': `E-posta`, +'sd20f6cd02c90867f': `Uygulama (lar)`, +'sd216b08bafb297ee': `Kullanıcıların kimliğini doğrulamak için kullanılan akış. Boş bırakılırsa, kısa isme göre sıralanan ilk uygulanabilir akış kullanılır.`, +'sd2208cd1a767644b': `Bağlantıyı kes`, +'sd2223afb7d6b100d': `Tipi`, +'sd2c58d7c6dddc515': `SAML Meta Verileri`, +'sd3386a2ef42e80b9': `Indir`, +'sd34be0d0fcb39971': `Kullanıcının görünen adı.`, +'sd35ae4be63df1f9f': `Parolayı test etmek için arka uçların seçimi.`, +'sd39c5e998efecf93': `SAML Öznitelik Adı`, +'sd3a853f63f45dcb0': `Geçiyor`, +'sd4ac926e4ebb1cd7': `Ortak İsim`, +'sd503fabef9691134': `Proxy veya ileri auth (tek uygulama) modunu kullanırken, istenen URL Yolu düzenli ifadelere karşı denetlenir. İleriye yönlendirme (etki alanı modu) kullanıldığında, şema ve ana bilgisayar da dahil olmak üzere istenen tam URL normal ifadelerle eşleştirilir.`, +'sd5903cc8de68b3fc': `Form bulunamadı`, +'sd5a4b41c6c883b03': `İzleyici`, +'sd5ba2d61ee4796fe': `Davetiye (ler)`, +'sd6a025d66f2637d1': `Geleneksel kimlik doğrulayıcı`, +'sd6b8b4156f7df696': `Simge kenar çubuğu/başlık ve akış yürütücüde gösterilir.`, +'sd6c3ddb62de0e8f7': `Sertifika Hizmet Sağlayıcıya giden giden Yanıtları imzalamak için kullanılır.`, +'sd6cd7ce2310a73a4': `İlke isteğindeki değeri, çoğunlukla parola gücünü sağlamak için kullanılan çeşitli kurallara göre denetler.`, +'sd71081c23d1cd38b': `Erişimi kontrol`, +'sd766cdc29b25ff95': `Apple ile kimlik doğrulaması...`, +'sd7fa99e4d82b374a': `Kurtarma bağlantısı e-posta ile gönderilemez, kullanıcının e-posta adresi kaydedilmez.`, +'sd80b0b8aeae3abe3': `Kullanıcı parolasını geri yazma`, +'sd8c5339b82b71507': `Bekle (dk)`, +'sd8d9451f86502d1a': `Kimlik doğrulaması için kullanılabilecek aygıt sınıfları.`, +'sd8f220c999726151': `Yönlendirme`, +'sd924045605feea63': `Süresi Doluyor`, +'sd947d57c9a9b7108': `GitHub'da açık sorun...`, +'sd94db2b8c85d10a6': `SLO URL`, +'sd97d8d0906e6cc47': `Harf büyüklüğüne duyarsız eşleştirme`, +'sd9b556a84ae25690': `Test isteği başarıyla gönderildi.`, +'sda4e78c19f5b6f35': `İlke yürütmesi rastgele bir zaman alır. Bu, alacağı minimum süreyi belirler.`, +'sda5e1499f93146ad': str` + ${0}gün önce`, +'sda796c87fa97ed4d': `Model Adı`, +'sdae649fae731e838': `Onay Kutusu`, +'sdb7b2173869822bc': `Kullanıcı doğrulaması gerçekleşmelidir.`, +'sdbc08adee233f180': `OAuth2 Sağlayıcısını Güncelleştirme`, +'sdc1ef94016f0d855': `Entegrasyon başarıyla güncellendi.`, +'sdc30bddeda2f0225': `Kullanıcının parolasını seçili arka uç(lara) göre doğrulayın.`, +'sdc323c6af4ae9f01': `TOTP Yapılandırması başarıyla kopyalandı.`, +'sdc673e73b5c13aea': `Sil`, +'sdc70195469e83e3f': `Google Authenticator gibi uygulamalarla uyumlu olmayan 8 haneli`, +'sdc9e222be9612939': `Kaynak bağlantılı`, +'sdcc7b2c109ce9775': `Belirteçler, E-posta doğrulama aşamaları, Kurtarma anahtarları ve API erişimi için authentik boyunca kullanılır.`, +'sdd1ff479d04ac140': `Kamu`, +'sdd6b8b56a811080e': `Sertifika Parmak İzi (SHA256)`, +'sddb3b0176f437721': `API Tarayıcısını aç`, +'sddc8efe94cb8c210': `Aşamalar, bir Akış'ın kullanıcının yönlendirildiği tek adımlardır. Bir aşama yalnızca bir akış içinden yürütülebilir.`, +'sddcfc6ab24e3a6ed': `Kayıt`, +'sde47e4d8b9b21b59': `WebAuthn Kimlik Doğrulayıcıları`, +'sdefec5401bf67eba': `Kimliğinizi kanıtlamak için bir güvenlik anahtarı kullanın.`, +'sdf22dcf939c27cc7': `Aşama Konfigürasyonu`, +'sdf34a5599d66f85c': `Arkaplan resmi`, +'sdf4e1c6a2f072600': `İzin verilen sayısı`, +'sdfd22a21660f6002': `Sağlayıcı başarıyla güncellendi.`, +'se085f35c8a9203a1': `LDAP Kaynağı`, +'se09ab93d69f7f45b': `Başka bir nesne tarafından kullanılmaz.`, +'se09d055771f3a11d': `Genel OpenID Connect`, +'se10bbf4cf861c81b': `Anahtar çifti imzalama`, +'se16ac750b81fa93d': str` + ${0}nesneye atanır.`, +'se17fcb1f159ee382': `Plex Kaynağını Güncelle`, +'se19cc57dd8675498': `Eşik`, +'se1c85959463f53df': `Bu sakini, ayrılmış bir sakine sahip olmayan her etki alanı için kullanın.`, +'se1e040b55319a0e8': `Zaman aşımı`, +'se291dfd2a59d7842': `İlke bağlama (ler)`, +'se2b62f7e9017965e': `Traefik (Beste)`, +'se2c3cbf2ed1403f1': `Aşama Bağlamaları`, +'se2f258b996f7279c': `Sistem görevi hatası`, +'se36b55dfcf5dc80b': `StartTLS'yi Etkinleştir`, +'se409d01b52c4e12f': `Kimlik doğrulamayı yeniden deneyin`, +'se47baf2fd16b9d2b': `Şablon`, +'se4a9da0295597e73': `SMTP Kullanıcı Adı`, +'se50a08ab71bb96ed': `Geçerli bir kullanıcı adı/e-posta girildiğinde ve bu seçenek etkinleştirildiğinde, kullanıcının kullanıcı adı ve avatarı gösterilir. Aksi takdirde, kullanıcının girdiği metin gösterilir.`, +'se5498954255620b4': `Başarıyla e-posta gönderildi.`, +'se5dc026819a32ff8': str`Kullanıcı + ${0}`, +'se5fd752dbbc3cd28': `Güvenlik anahtarı kullan`, +'se63f9d833700af49': `Oturum (lar)`, +'se68398e3c2c760b2': `Belirteç`, +'se6d950402810c34f': `Özellik eşlemeleri`, +'se7430794fa89005a': `Entity ID olarak da bilinir. Metadata URL'sine varsayılan olarak ayarlanır.`, +'se74ce42d41e392ba': `Eşleştirme, etki alanı sonekine göre yapılır, bu nedenle domain.tld girerseniz foo.domain.tld yine de eşleşir.`, +'se8987bdfb35e46b2': `Tüketici anahtarı`, +'se8a81c75b6e30a33': `Alan tuşu kontrol etmek için, İstem aşamalarında tanımlanan alan tuşları mevcuttur.`, +'se99efc0873031976': `Tarayıcı sekmesinde gösterilen simge.`, +'se9b1fec72ffd8f48': `Yerel`, +'se9d0f12f95b14095': `İsteğe bağlı, virgülle ayrılmış SubjectAlt Adları.`, +'sea2f00b34b385a43': `Cihaz başarıyla güncellendi.`, +'sea91c57b3d3969fe': `Sistem durumu`, +'seb5ba88f21937c98': `İleri üsleri kontrol edin.`, +'sebda1d54a3f9f967': `Belirteç URL'si`, +'sebf44d2471b608ad': `Bu Aşama'yı yapılandırmak için kimliği doğrulanmış bir kullanıcı tarafından kullanılan akış. Boşsa, kullanıcı bu aşamayı yapılandıramaz.`, +'sec1808532fe107b9': `Kullanıcıların özelliklere göre Uygulamaları kullanmasına, Parola Ölçütlerini uygulamasına ve Aşama Alanları'nı seçerek uygulamasına izin verin.`, +'sec7443a45fd141e5': `İstemi (ler)`, +'sec97cdaf7af8648b': `YAML veya JSON kullanarak özel nitelikleri ayarlayın.`, +'sece294cd51a85745': `Oturumun ne kadar süreceğini belirler. Varsayılan 0 saniye, oturumların tarayıcı kapanana kadar sürdüğü anlamına gelir.`, +'sed3512fe4560c7f4': `Kullanıcıları etkin olmayan olarak oluşturma`, +'sed8d4c3fd5f60e1f': `Entegrasyonları keşfedin`, +'sede0abbf2b612812': `Webhook (genel)`, +'see3ff55262fd6500': `Kullanıcının yetkilendirmeyi onaylamak için yönlendirdiği URL.`, +'sef49aec68fd1dc66': `İsim`, +'sef50d248448e0df1': str`Evet ( + ${0})`, +'seffdf887fed7f668': `Sertifika Parmak İzi (SHA1)`, +'sf05e384059a0a7c1': `İsteklerin iletildiği yukarı ana bilgisayar.`, +'sf1e9d421f35b51e5': `Uygulama`, +'sf1ec4acb8d744ed9': `Alarm`, +'sf22a28f83cc45fcc': `Aşama ikili tabanlı kimlik doğrulayıcısını yapılandırmak için kullanılır. Bu aşama yapılandırma akışları için kullanılmalıdır.`, +'sf22f7f8a9309b4ed': `Uygulama erişimini denetle`, +'sf232d42142eacc23': `Etkinleştirildiğinde, davetiye kullanımdan sonra silinir.`, +'sf29883ac9ec43085': `Uygulama parolası`, +'sf325a4adba4d6278': `Grup üyelik alanı`, +'sf339673f0f76a8bd': `https://www.google.com/recaptcha/intro/v3.html adresinden edinilen genel anahtar.`, +'sf3981f36525b0dbd': `bağlantı silinecek`, +'sf3f9a0feaf083207': `Gruba gönderildi`, +'sf4122b220926be97': `Sürüm`, +'sf417c13d7a0f7995': `İndirme URL'sini`, +'sf45a0d2f00bcc6ff': `tanımlanmış sekme yok`, +'sf466142da6a65052': `Taklit et`, +'sf4de1644dcdb53d5': `HTTP-Basic Üstbilgisinin parola kısmı için kullanılan Kullanıcı/Grup Özniteliği.`, +'sf53a78d889b6c775': `Auentik tarafından yönetilen (Keşfedildi)`, +'sf55c7c06dbc2c8c6': `Sakin başarıyla oluşturuldu.`, +'sf55d28d4dff0e41b': `Bir örnek kurulum şu şekilde görünebilir:`, +'sf56998949bdf6b33': `Devre dışı bırak`, +'sf679b7a62808287e': `Son kullanma tarihi`, +'sf6e1665c7022a1f8': `Parola`, +'sf6eb148db23d19de': str` + ${0}silinemedi: + ${1}`, +'sf71dba2c30283a54': `Son kullanma tarihi mi?`, +'sf813a72d8fadd765': `Bu durumda, Kimlik Doğrulama URL'sini auth.example.com ve Çerez etki alanı olarak example.com olarak ayarlamalısınız.`, +'sf8c76d5fb408de7b': `Aşağıdaki URL'ye yönlendirmek üzeresiniz.`, +'sf8f49cdbf0036343': `Yapılandırma hatası`, +'sf90be97cb08f3d5a': `Yer tutucu`, +'sf9aee319a006c9b4': `Ekle`, +'sf9b1c0661a02d9f9': `yapılandırma`, +'sf9bddaf910f4eea5': `Sertifika Anahtarı Çifti Oluştur`, +'sf9e61f4f8e90f0f1': `Durumu değiştir`, +'sf9f2c719a04066ec': `Uygulama`, +'sfa88f413e287bb0f': `Aşama türü`, +'sfab527528ea64618': `Olayın İstemci IP'siyle eşleşir (katı eşleştirme, ağ eşleştirme için bir İfade İlkesi kullanın.`, +'sfac6f995c7670559': `Hiçbir Aşama Bağlı`, +'sfad8af8ce38104a3': `Maksimum yaş (gün olarak)`, +'sfae9f4ea5749a36b': `Ek grup DN, Base DN için eklenmiş.`, +'sfbadb77fbc61efb8': `Son ay içinde günlük oluşturulan kullanıcılar`, +'sfbaeb0de54fbfdbb': `Bu sağlayıcıyı yetkilendirirken kullanılan akış.`, +'sfc400b2d71e49d28': `İlke başarıyla oluşturuldu.`, +'sfcebd18506f1e535': `Akış`, +'sfcfcf85a57eea78a': `TOTP Cihazı`, +'sfd13ca8ebd857c2e': `Yeni bir uygulama oluştur`, +'sfd1af96798dd8a5f': `Genel Anahtar`, +'sfe199b2564b66054': str`Sunucuda onaylama işlemi doğrulanırken hata oluştu: + ${0}`, +'sfe1c86b42ba13376': `Lütfen TOTP Kodunuzu girin`, +'sfe211545fd02f73e': `Doğrulama`, +'sfe388f0313f52da2': `Protokol ayarları`, +'sfe629863ba1338c2': `Bağlantı hatası, yeniden bağlanıyor...`, +'sfe6977a3aea3ee6e': `Mevcut kullanıcıların kimliğini doğrularken kullanmak için akış.`, +'sfe938c1585e0bf68': `Bu bağlamalar, bu aşama akışa uygulanacak olup olmadığını denetler.`, +'sfe99a8caa70232ab': `Kimlik Doğrulama Türü`, +'sfeb779d4ccbc5a0e': `Kurtarma akışı`, +'sfeb82261bcf99edd': `Sağlıklı üsler`, +'sfee06600c15082a9': `Kullanıcıyı geçerli oturumdan kaldırın.`, +'sfee91e08b8b47477': `İzin verilen sunucular`, +'sff3b708e23bb96b2': `Aşama kullanıcıya sunulmadan önce ilkeleri değerlendirin.`, +'sff50532a2d85e32e': `Parolayı değiştir`, +'sff5bb7742c2896c8': `Hedef`, +'sff69c1a637f899a6': `Bağlama akışı`, +'sff945d3f59b93c5e': `MFA Cihazları`, +'sffa171e11d4ae513': `Aktarıcılar`, +'sffa721bb6aa3128d': `Ara...`, +'sffd2e553143d1b0e': `Birden fazla öğe seçmek için control/command tuşunu basılı tut.`, +'sffeef5b119d8625c': `Eşleme başarıyla oluşturuldu.`, +'s0410779cb47de312': `Path template for users created. Use placeholders like \`%(slug)s\` to insert the source slug.`, +'sd73b202ec04eefd9': `Unknown intent`, +'s02240309358f557c': `Unknown severity`, +'se2d65e13768468e0': `Internal`, +'s84fcddede27b8e2a': `External`, +'s1a635369edaf4dc3': `Service account`, +'sff930bf2834e2201': `Service account (internal)`, +'s4ba4473f3d4ec896': `New version available`, +'s364c4f177a2f8322': `Open API drawer`, +'s9ba989e69344ff29': `Open Notification drawer`, +'sca7cfe2bef51b2a5': `Root`, +'s9d8b8aa2b404c2c8': `Settings`, +'s7cfe12cd14df9950': `Sign out`, +'sb4d7bae2440d9781': `User Statistics`, +'saab79cd956ee56a9': `Blueprints`, +'s1a65ee08832fbfe2': `Flows and Stages`, +'s6b2beba7ab637e9e': `Roles`, +'sb1a4e9b288e2f005': `Federation and Social login`, +'s7be2df39f727faa2': `Enterprise`, +'s2e109263b73c12d5': `Licenses`, +'sfffb0d0958bfbc42': `Manage users`, +'s66313b45b69cfc88': `Check the release notes`, +'sbdc4a833de9ca502': `Logins and authorizations over the last week (per 8 hours)`, +'s4a34a6be4c68ec87': `Users created`, +'s275c956687e2e656': `Failed logins`, +'s5deac600e329de1b': `Log messages`, +'s3feea7b49673bef2': `No log messages.`, +'s1a0e95458b44d7f8': `Any policy must match to grant access`, +'s7fc1ace65486dc25': `All policies must match to grant access`, +'s1cffe58249b04669': `Internal application name used in URLs.`, +'sdae55084f6cb2662': `Optionally enter a group name. Applications with identical groups are shown grouped together.`, +'s350a616ff5e145ec': `Select a provider that this application should use.`, +'sc92ea8fbf9ba06a7': `Backchannel Providers`, +'s4c6534a118f52fdd': `Select backchannel providers which augment the functionality of the main provider.`, +'s19409e8712ddd369': `Add provider`, +'s2348f46ebf436671': `Open in new tab`, +'s8655c52824caac63': `If checked, the launch URL will open in a new browser tab or window from the user's application library.`, +'s070fdfb03034ca9b': `One hint, 'New Application Wizard', is currently hidden`, +'s61bd841e66966325': `External applications that use authentik as an identity provider via protocols like OAuth2 and SAML. All applications are shown here, even ones you cannot access.`, +'s1f7698c061c208c9': `Open`, +'sed02f831e653deb3': `Logins over the last week (per 8 hours)`, +'se8dca0132c66ae03': `Permissions`, +'s398f6ba74ba8943a': `Select providers to add to application`, +'see2bcbc11bb91960': `Successfully updated instance.`, +'s9e51d6de369f320b': `Successfully created instance.`, +'s92e91071c6a45eb4': `Disabled blueprints are never applied.`, +'sf63c89c0604c288f': `Local path`, +'sd6422f7004036cdd': `OCI Registry`, +'s2e532e19ed477a56': `Path`, +'s61eacb19db252f5e': `URL`, +'scbb7d3154da629f3': `OCI URL, in the format of oci://registry.domain.tld/path/to/manifest.`, +'s0195c0df7294228a': `See more about OCI support here:`, +'s74cb3d66f6a668e1': `Documentation`, +'sfae395b94a5a0040': `Blueprint`, +'s7e1342d37124b65b': `Configure the blueprint context, used for templating.`, +'s6ec8c9d11310300a': `Orphaned`, +'s6835db03209b4f94': `Automate and template configuration within authentik.`, +'s23de62f931f7d754': `Last applied`, +'s2708cac1f4942708': `Blueprint(s)`, +'s880b8b70b22f9977': `Update Blueprint`, +'sb8f855b49234b81b': `Apply`, +'sef3d102324bf8561': `Create Blueprint Instance`, +'s0e427111d750cc02': `Successfully updated license.`, +'s06ae64e621f302eb': `Successfully created license.`, +'s2905c425adae99bd': `Install ID`, +'sb18ec434a8a3aafb': `License key`, +'s9ce7cc01fb9b5b53': `Manage enterprise licenses`, +'sf9ebf11ac2645820': `No licenses found.`, +'sd49099e9522635f4': `License(s)`, +'s3be1d90ffa46b7f1': `Enterprise is in preview.`, +'sa1db89262360550b': `Send us feedback!`, +'s4015746f55a8d89f': `Get a license`, +'sb2cbd06f8e25b47e': `Go to Customer Portal`, +'sf58825457d61c429': `Forecast internal users`, +'sde9a3f41977ec1f8': str`Estimated user count one year from now based on ${0} current internal users and ${1} forecasted internal users.`, +'s4557b6b9da258643': `Forecast external users`, +'sf52479d6daa0a4a8': str`Estimated user count one year from now based on ${0} current external users and ${1} forecasted external users.`, +'sd22bd01bdf28c548': `Cumulative license expiry`, +'s0dd031b58ed4017c': str`Internal: ${0}`, +'s57b07e524f8f5c2a': str`External: ${0}`, +'sdeb6cee42435dd07': `Update License`, +'s6196153c4b0c1ea0': `Install`, +'s0285b4bd69130fa3': `Install License`, +'s3b3c333481944862': `Show details`, +'sb41b2cfbbc52565b': `Created`, +'s7513372fe60f6387': `Event volume`, +'sa55ee64c5c51df0f': `Select the group of users which the alerts are sent to. If no group is selected the rule is disabled.`, +'s5795b310ab271d20': `These bindings control upon which events this rule triggers. +Bindings to groups/users are checked against the user of the event.`, +'s4acf840bc792c3ae': `Local (notifications will be created within authentik)`, +'s624256f8a4bb4c89': `Notification transport(s)`, +'s6f367f5604d5056d': `Create and bind Stage`, +'scc2e420c54dc8089': `Bind existing stage`, +'sb36e4c05244278c1': `No requirement`, +'s7b105164d209f670': `Require authentication`, +'s239c2a351cde6d39': `Require no authentication.`, +'s98beadfeeb3acb66': `Require superuser.`, +'s047a5f0211fedc72': `Require Outpost (flow can only be executed from an outpost).`, +'sfad9279cc42c6b61': `Required authentication level for this flow.`, +'sb56674c9ea4f0588': `Behavior settings`, +'s14ace18ccf4fb86d': `Increases compatibility with password managers and mobile devices.`, +'scfbc2f1396ee8550': `Denied action`, +'sff38031cf061e3ae': `Will follow the ?next parameter if set, otherwise show a message`, +'s936bf4342b182ad4': `Will either follow the ?next parameter or redirect to the default interface`, +'s22b0e8c5277dd5a9': `Will notify the user the flow isn't applicable`, +'s2eeca5cfc99ef19b': `Decides the response when a policy denies access to this flow for a user.`, +'sbaf20067de176c90': `Appearance settings`, +'s2e4818861000b13f': `Layout`, +'s3ebf4c166058afce': `Clear background`, +'sc4fdeccf14be5378': `Execute`, +'sf12d588a76ba7e51': `Are you sure you want to clear the flow cache? + This will cause all flows to be re-evaluated on their next usage.`, +'s01794c0ee3629c1b': `Flow Info`, +'s77099d752f1ab773': `Related actions`, +'s6e4c997a101b6abf': `with current user`, +'s0a61796c1956d32c': `Evaluate when flow is planned`, +'sf533f13321fee530': `Evaluate policies during the Flow planning process.`, +'s6336fa345e96dde9': `Evaluate when stage is run`, +'s0dc46deb8f181baf': `Invalid response behavior`, +'seb0805249661d15b': `Returns the error message and a similar challenge to the executor`, +'sd891d8463d0ebace': `Restarts the flow from the beginning`, +'s6b9a1dd402750a8a': `Restarts the flow from the beginning, while keeping the flow context`, +'sbc88fb27a4c3b894': `Configure how the flow executor should handle an invalid response to a challenge given by this bound stage.`, +'sde2bb5418562c5b2': `Unknown designation`, +'sb9834316ffd4ae3e': `Stacked`, +'s12146091b2b539a3': `Content left`, +'sa800871782eba1ac': `Content right`, +'sb4e50ca3cffdbc10': `Sidebar left`, +'s745a55f9abf9f2e5': `Sidebar right`, +'sb3182a87ded1bc91': `Unknown layout`, +'s96d2bb4be3f5e8aa': `Select roles to grant this groups' users' permissions from the selected roles.`, +'secdb4b4c4e66aa38': `Group Info`, +'s005053d82b712e0a': `Notes`, +'s634448e4942cf452': `Edit the notes attribute of this group to add notes here.`, +'sa982875b258fea07': `Successfully added user to group(s).`, +'s1bd5920d8adf2bd5': `Groups to add`, +'sd9f67fbf3f86efcf': `Add group`, +'s5f71fa3c53828e30': `Remove from Group(s)`, +'sb4c9ed2a487b238f': str`Are you sure you want to remove user ${0} from the following groups?`, +'sea4f08110bb8f15d': `Remove`, +'s964f6725aeb7662f': `Add Group`, +'s65ca2f256ea09c11': `Add to existing group`, +'s505fbbdcbc6aa921': `Add new group`, +'sdb53ccdd6174e6e3': `Successfully added user(s).`, +'s306a35df5d0d38bb': `Users to add`, +'s424f57afae0caac4': `Add users`, +'s7220fcf4fec4e0df': `Remove Users(s)`, +'s5d7748b1d2363478': str`Are you sure you want to remove the selected users from the group ${0}?`, +'s720594461542943f': `Add User`, +'s4c41f3f4c23e8eaa': `Warning: This group is configured with superuser access. Added users will have superuser access.`, +'scee721983b1c28d0': `Add existing user`, +'sd600334ec2c39b74': `Create user`, +'s824e0943a7104668': str`This user will be added to the group "${0}".`, +'s8afc8c5aafb392d3': `Radius`, +'s3abecf1e778c9625': `See more here:`, +'saa8939ac88a76f98': `Last seen`, +'s1e176e35c828318c': `Hostname`, +'sa43153d53ae65063': `Unknown type`, +'s9ee92717d7f63247': `Detailed health (one instance per column, data is cached so may be out of date)`, +'sa85cfb884c17d85d': `Verify Kubernetes API SSL Certificate`, +'s74475586afc1fb0f': `Select type`, +'se78364ee913ae2bd': `New outpost integration`, +'s68d69ad0271c8ef6': `Create a new outpost integration.`, +'s911a27022aba349f': `Create and bind Policy`, +'sddb040c47daae56b': `Bind existing policy`, +'s5f5bf4ef2bd93c04': `Group mappings can only be checked if a user is already logged in when trying to access this source.`, +'s6c607d74bdfe9f36': `User mappings can only be checked if a user is already logged in when trying to access this source.`, +'s6b1ed7507f26cb4a': `Failure result`, +'s2e422519ed38f7d8': `Pass`, +'s81a45c4fd11e8e1a': `Don't pass`, +'s95b73e0f4e47eb9a': `Result used when policy execution fails.`, +'s15b46b78edebb20a': `Are you sure you want to clear the policy cache? This will cause all policies to be re-evaluated on their next usage.`, +'sdbccb39a658f0e45': `New policy`, +'sf693300708a40d2c': `Create a new policy.`, +'sb6c3bf5489d7556e': `Example context data`, +'s4a697f0b36c4fe83': `Active Directory User`, +'s9277b90db38e1983': `Active Directory Group`, +'sc2e03590269d5a10': `New property mapping`, +'s713e8666ed70f8b3': `Create a new property mapping.`, +'sa6c0ba4910c7ad7f': `Assigned to application (backchannel) `, +'s0b3bf19b31dd6bac': `Try the new application wizard`, +'sa18e1c6e0e6f16cc': `The new application wizard greatly simplifies the steps required to create applications and providers.`, +'s01ef54f5d7c6ed47': `Try it now`, +'s58d1eb482059da12': `New provider`, +'sa661ea7d7a50f2e9': `Create a new provider.`, +'s9103a949a3963aa9': `Successfully updated role.`, +'sdf87c5661b31359e': `Successfully created role.`, +'s3484b1e6d0b5335f': `Manage roles which grant permissions to objects within authentik.`, +'s259de999919316db': `Role(s)`, +'sc615309d10a9228c': `RBAC is in preview.`, +'s2ffad156e8332f04': `Update Role`, +'sc5f923729564fbf3': `Create Role`, +'sf485014051ad0cf7': `Successfully assigned permission.`, +'sdeb90bfd8a80b86b': `Permissions to add`, +'s36247910d67421e1': `Select permissions`, +'sc92c1a54034e21cc': `Assign`, +'scd84d10ee9137070': `Assign permission to role`, +'s67e136af8fc1107b': `Assign permission`, +'sb923723d27df40ba': `Permission(s)`, +'sc5fb00b25c7f5a02': `Permission`, +'s14bfa8fd1bec8889': `Role doesn't have view permission so description cannot be retrieved.`, +'s7e796fe83982863f': str`Role ${0}`, +'s526e2c66bd51ff5f': `Role Info`, +'s9cc631505c17b028': `Assigned global permissions`, +'s8f85a0e678846080': `Assigned object permissions`, +'se12969ade44cd2b6': `New source`, +'s19b09f4fc72175d1': `Create a new source.`, +'s8a67b33a0d70d322': `Import Duo device`, +'s254a9a23dc1635df': `Import devices`, +'sd8417b41ca27bc8f': `New stage`, +'s293801033f9fc0d0': `Create a new stage.`, +'s92921878e886e36d': `Duration`, +'se7e1ababbc4868b8': str`${0} seconds`, +'s14bf17e2a1a2c381': `Restart task`, +'secbfd13bdae95a59': `User settings flow`, +'s523160b433311521': `If set, users are able to configure details of their profile.`, +'s134177568525dbc8': `Device code flow`, +'s7b298427bdea81ae': `If set, the OAuth Device Code profile can be used, and the selected flow will be used to enter the code.`, +'s04bfd02201db5ab8': `Set custom attributes using YAML or JSON. Any attributes set here will be inherited by users, if the request is handled by this tenant.`, +'sbd34d118bcb1aaf2': `API Token`, +'se31d92bea7f3a186': `Used to access the API programmatically`, +'sfd586951c75eb291': `App password.`, +'s59bf194136d0d13a': `Used to login using a flow executor`, +'se9c07cf256774d81': `Editing is disabled for managed tokens`, +'scc3487e74c5a3e89': `Copy token`, +'sec5cdfa358f9dbf7': `Warning: Adding the user to the selected group(s) will give them superuser permissions.`, +'s3d2a8b86a4f5a810': str`Successfully created user and added to group ${0}`, +'s5a802e46a033c8af': `User's primary identifier. 150 characters or fewer.`, +'se6a13beff646557b': str`Successfully updated ${0} ${1}`, +'sd8051c26e155f043': `Assign permission to user`, +'s1455753daa00f1bc': `User doesn't have view permission so description cannot be retrieved.`, +'sf05c700a1250824e': `Confirmed`, +'s9f9492d30a96b9c6': `User type`, +'scef2eb6a2bfe3110': `Internal users might be users such as company employees, which will get access to the full Enterprise feature set.`, +'sf66389b04fcc219c': `External users might be external consultants or B2C customers. These users don't get access to enterprise features.`, +'s77e8668a27dbc402': `Service accounts should be used for machine-to-machine authentication or other automations.`, +'saf6097bfa25205b8': `A copy of this recovery link has been placed in your clipboard`, +'s5b8ee296ed258568': `The current tenant must have a recovery flow configured to use a recovery link`, +'s510c7add9e24c306': `Hide deactivated user`, +'s0924f51b028233a3': `<No name set>`, +'s895514dda9cb9c94': `Create recovery link`, +'s94055b4eb957dc8f': `User folders`, +'s028d385389b5aac0': `Lock the user out of this system`, +'sd2122c514f0778b5': `Allow the user to log in and use this system`, +'s43fe853bf219a9b8': `Temporarily assume the identity of this user`, +'se28b5f3fcadaeeb1': `Enter a new password for this user`, +'s6f5bb31e2733ecd5': `Create a link for this user to reset their password`, +'se5c795faf2c07514': `Create Recovery Link`, +'sc44bae5cde0083fa': `Actions over the last week (per 8 hours)`, +'sb57dbcda1929c642': `Edit the notes attribute of this user to add notes here.`, +'sb6770fa90be6d8b3': `OAuth Refresh Tokens`, +'s28b3de1561da72b3': `MFA Authenticators`, +'sa3a3e09b88ed9791': `Assigned permissions`, +'s67ac11d47f1ce794': `WebAuthn requires this page to be accessed via HTTPS.`, +'se9e9e1d6799b86a5': `WebAuthn not supported by browser.`, +'s71c5d51d5a357dbd': `Don't show this message again.`, +'s0fbf6dc6a1966408': `Next`, +'sc16e00a7a8b2fde2': `Back`, +'sb3d4f79d9d8b71e5': `Submit`, +'s2da4aa7a9abeb653': `Pseudolocale (for testing)`, +'sf1868dc19e3917bb': `Spanish`, +'s63e71d20d1eaca93': `German`, +'s03f49e598ffb11cc': `Polish`, +'se3e6af2ce24d80e8': `Chinese (traditional)`, +'s4660da32fb311ac0': `Taiwanese Mandarin`, +'s354e0a9f146d2869': `Chinese (simplified)`, +'s2ed8eb02525a920a': str`${0} hour(s) ago`, +'s98327528f00365a7': `Failed to fetch data.`, +'s08df8d0a773a3ea0': `Remove item`, +'s7df5b92a3f93544f': `Warning: The current user count has exceeded the configured licenses.`, +'s0141f42936495787': `Click here for more info.`, +'se33b158a1ec02a09': str`Successfully deleted ${0} ${1}`, +'s5819a49638f6d7cb': str`Are you sure you want to delete ${0} ${1}?`, +'sfefce784ec55868f': `Select an object.`, +'s04ceadb276bbe149': `Loading options...`, +'s90760e5e02e95dfe': `Refresh Tokens(s)`, +'sb37880a2a7288ef0': `Update Permissions`, +'saabeb4cab074b0b9': `User Object Permissions`, +'s8489d5559dda260c': `Role Object Permissions`, +'s5da52af9b083c29a': `Model`, +'s78ab26da7f067de8': `Select permissions to grant`, +'sca7fed2bef53cb99': `Role`, +'s5ee6f1b84e9ebc69': `Assign to new role`, +'s4afb26a8fae257e9': `Directly assigned`, +'sf79f8681e5ffaee2': `Assign to new user`, +'sfd44ce578f643145': `Failed to fetch objects.`, +'s5f4586bc1e2740e6': `Clear search`, +'sde1907073fd96017': `(Current session)`, +'sbb8ad22c83d375b1': `The following keywords are supported:`, +'s7181a5504472e856': `Apply changes`, +'sad59707375956ad2': `Finish`, +'s4090dd0c0e45988b': `Request ID`, +'s4d7fe7be1c49896c': `You may close this page now.`, +'s28cbd874ba450b4e': `Less details`, +'s8fa26f65aed77c96': `More details`, +'s3fb39fc45e840f78': `Refer to documentation`, +'sf34026321b35315c': `Either no applications are defined, or you don’t have access to any.`, +'s3e99ea082ca5ade9': `Failed to fetch`, +'s2152f3482784705f': `Recent events`, +'scefe482c547fb3f3': str`Based on ${0}`, +'s1f1c857c0c4250e4': str`${0} day(s) ago`, +'s477de089b505a6ea': `SCIM Provider`, +'s8a75e83497a183a2': `Healthy`, +'sbf9c5c5a8e5efad4': `Failed`, +'se4cd073c125382af': `Unsynced / N/A`, +'se2b29e6cfe59414c': `UI Settings`, +'s4498e890d47a8066': `OAuth2/OIDC (Open Authorization/OpenID Connect)`, +'sc2cedfb22488ccb2': `Modern applications, APIs and Single-page applications.`, +'s4f2e195d09e2868c': `LDAP (Lightweight Directory Access Protocol)`, +'sffd5481034a1bd41': `Provide an LDAP interface for applications and users to authenticate against.`, +'s836148f721d8913b': `Transparent Reverse Proxy`, +'s945a6b94361ee45b': `For transparent reverse proxies with required authentication`, +'s7f5bb0c9923315ed': `Forward Auth (Single Application)`, +'sdc9a6ad1af30572c': `For nginx's auth_request or traefik's forwardAuth`, +'sf8008d2d6b064b95': `Forward Auth (Domain Level)`, +'sfc31264ef7ff86ef': `For nginx's auth_request or traefik's forwardAuth per root domain`, +'sfa8a1ffa9fee07d3': `SAML (Security Assertion Markup Language)`, +'s40830ec037f34626': `Configure SAML provider manually`, +'s848a23972e388662': `RADIUS (Remote Authentication Dial-In User Service)`, +'sea9fc40dfd1d18b1': `Configure RADIUS provider manually`, +'s3e902999ddf7b50e': `SCIM (System for Cross-domain Identity Management)`, +'sa1b0052ae095b9b3': `Configure SCIM provider manually`, +'s15831fa50a116545': `Saving Application...`, +'s823abdb61543a826': `Authentik was unable to save this application:`, +'s848288f8c2265aad': `Your application has been saved`, +'scda8dc24b561e205': `There was an error in the application.`, +'sdaca9c2c0361ed3a': `Review the application.`, +'sb50000a8fada5672': `There was an error in the provider.`, +'s21f95eaf151d4ce3': `Review the provider.`, +'s9fd39a5cb20b4e61': `There was an error`, +'s7a6b3453209e1066': `There was an error creating the application, but no error message was sent. Please review the server logs.`, +'s8915e64b8b999bfe': `Cached binding`, +'s842d690eb3c11762': `Flow is executed and session is cached in memory. Flow is executed when session expires`, +'s6a66759749bf31ed': `Direct binding`, +'se0adaf83627104fb': `Always execute the configured bind flow to authenticate the user`, +'s9065fcccd837a679': `Cached querying`, +'s30d0d0e6c626a234': `The outpost holds all users and groups in-memory and will refresh every 5 Minutes`, +'sffc14b8200a9f938': `Direct querying`, +'sdce4680288083fe3': `Always returns the latest data, but slower than cached querying`, +'s1889ba2eaeec2f1e': `When enabled, code-based multi-factor authentication can be used by appending a semicolon and the TOTP code to the password. This should only be enabled if all users that will bind to this provider have a TOTP device configured, as otherwise a password may incorrectly be rejected if it contains a semicolon.`, +'s4647b2c92638d6fd': `The certificate for the above configured Base DN. As a fallback, the provider uses a self-signed certificate.`, +'s2acef4f6ba39bf11': `DNS name for which the above configured certificate should be used. The certificate cannot be detected based on the base DN, as the SSL/TLS negotiation happens before such data is exchanged.`, +'s1a711c19cda48375': `Configure LDAP Provider`, +'s67d858051b34c38b': `Method's display Name.`, +'s319040353f479853': `Flow used for users to authenticate.`, +'se5973e7c8ba0fc71': `Bind mode`, +'scef3f4ad80abbd22': `Configure how the outpost authenticates requests.`, +'s254d527e3a53dbb7': `Code-based MFA Support`, +'scd247ffad6e04ac0': `TLS Server name`, +'s9368e965b5c292ab': `Configure OAuth2/OpenId Provider`, +'sa72a3bd1e7e89926': `Flow used when a user access this provider and is not authenticated.`, +'sde0ad51b14f77cf6': `Redirect URIs/Origins (RegEx)`, +'sbea3db12fd799210': `Access Token validity`, +'s821f6014c1a435b9': `Refresh Token validity`, +'s00c2db16ea9bc263': `Configure how long refresh tokens are valid for.`, +'se2adaf0371ffcd65': `Machine-to-Machine authentication settings`, +'s33318837e6c54a9b': `Trusted OIDC Sources`, +'s22e566052f7bec81': `JWTs signed by certificates configured in the selected sources can be used to authenticate to this provider.`, +'sf5cbccdc6254c8dc': `Configure Proxy Provider`, +'sf6d46bb442b77e91': `AdditionalScopes`, +'sb488dee0be434f7e': `Authentication settings`, +'s23cee624c735f266': `Intercept header authentication`, +'sc007cca5af67eae0': `When enabled, authentik will intercept the Authorization header to authenticate the request.`, +'s36e630ba56617556': `Send HTTP-Basic Authentication`, +'s9d5796a4b9b7560e': `Send a custom HTTP-Basic Authentication header based on values from authentik.`, +'h10ef80d434185070': html`Use this provider with nginx's auth_request or traefik's + forwardAuth. Each application/domain needs its own provider. + Additionally, on each domain, /outpost.goauthentik.io must be + routed to the outpost (when using a managed outpost, this is done for you).`, +'s2c8c6f89089b31d4': `Configure Radius Provider`, +'sb95baab425322600': `Shared secret`, +'s9e9316a6b0c16231': `Client Networks`, +'s7f2dcf01f7a8c0b7': `List of CIDRs (comma-seperated) that clients can connect from. A more specific + CIDR will match before a looser one. Clients connecting from a non-specified CIDR + will be dropped.`, +'sfe906cde5dddc041': `Configure SAML Provider`, +'sf54c562d8a10ce77': `Also known as EntityID.`, +'sb3defbacd01ad972': `Property mappings used for user mapping.`, +'s43c1f927936f0a02': `Assertion not valid on or after current time + this value.`, +'s0dd00fbaba08748a': `Session not valid on or after current time + this value.`, +'s7ccce0ec8d228db6': `Configure SCIM Provider`, +'sb21f33b039c86322': `SCIM base url, usually ends in /v2.`, +'s33ed903c210a6209': `Token to authenticate with. Currently only bearer authentication is supported.`, +'sfc8bb104e2c05af8': `User filtering`, +'sc0d0890fbd46ef62': `Exclude service accounts`, +'s23ab136ad85f0ad2': `Only sync users within the selected group.`, +'sfdedc3b0b2b7ce3d': `Attribute mapping`, +'sd7728d2b6e1d25e9': `Property mappings used for group creation.`, +'s4bd386db7302bb22': `Create With Wizard`, +'s0c9670f429e74283': `New application`, +'s3ba9b8aeb686d9f7': `Match events created by selected model. When left empty, all models are matched.`, +'s9307f3dbb07a73b5': `Only fail the policy, don't invalidate user's password`, +'se2cc93bd2647baec': `Static rules`, +'s1293ad87acc7a609': `HaveIBeenPwned settings`, +'s3fd219b045193507': `zxcvbn settings`, +'s28d84abfbaf555ea': `Score threshold`, +'s7b3148ffba9f4527': `If the password's score is less than or equal this value, the policy will fail.`, +'sd94e99af8b41ff54': `0: Too guessable: risky password. (guesses &lt; 10^3)`, +'sc926385d1a624c3a': `1: Very guessable: protection from throttled online attacks. (guesses &lt; 10^6)`, +'s8aae61c41319602c': `2: Somewhat guessable: protection from unthrottled online attacks. (guesses &lt; 10^8)`, +'sc1f4b57e722a89d6': `3: Safely unguessable: moderate protection from offline slow-hash scenario. (guesses &lt; 10^10)`, +'sd47f3d3c9741343d': `4: Very unguessable: strong protection from offline slow-hash scenario. (guesses &gt;= 10^10)`, +'s2f8c4cf12350a36c': `Check static rules`, +'sd75a9a71309fb387': `Check haveibeenpwned.com`, +'se5cb18408df3284e': `For more info see:`, +'scef7abb8456b06d6': `Check zxcvbn`, +'sdfdb58cd232b363d': `Password strength estimator created by Dropbox, see:`, +'scf4afecb0f1e69b2': `Invalid login attempts will decrease the score for the client's IP, and the +username they are attempting to login as, by one.`, +'s8323a9af28e10502': `The policy passes when the reputation score is below the threshold, and +doesn't pass when either or both of the selected options are equal or above the threshold.`, +'s95f09b229a0a0bb0': `Confidential clients are capable of maintaining the confidentiality of their credentials such as client secrets`, +'s51c6b8403c2dc5d9': `Public clients are incapable of maintaining the confidentiality and should use methods like PKCE. `, +'sccc47f82044453f9': `Based on the User's hashed ID`, +'sbd5be4fb7442a34c': `Based on the User's ID`, +'sc9cf9ecaf9e5d67e': `Based on the User's UUID`, +'s4291727352c4f295': `Based on the User's username`, +'sd62cfc27ad4aa33b': `Based on the User's Email`, +'s55eb75bedf96be0f': `This is recommended over the UPN mode.`, +'sf80e9547166117e6': `Based on the User's UPN`, +'sde949d0ef44572eb': `Requires the user to have a 'upn' attribute set, and falls back to hashed user ID. Use this mode only if you have different UPN and Mail domains.`, +'sde56783222b527d6': `Each provider has a different issuer, based on the application slug`, +'s2a369bc2febb5d55': `If no explicit redirect URIs are specified, the first successfully used redirect URI will be saved.`, +'sa8384c9c26731f83': `To allow any redirect URI, set this value to ".*". Be aware of the possible security implications this can have.`, +'s417b90913e05bc17': `Preview`, +'s59f5eda30a904b75': `JWKS URL`, +'s453b0c150a7ca58e': `Example JWT payload (for currently authenticated user)`, +'sff0ac1ace2d90709': `Use this provider with nginx's auth_request or traefik's forwardAuth. Each application/domain needs its own provider. Additionally, on each domain, /outpost.goauthentik.io must be routed to the outpost (when using a managed outpost, this is done for you).`, +'s2345170f7e272668': `Unknown proxy mode`, +'sd539548ca4c71619': `Additional scopes`, +'s7ba9677d069e5f02': `Caddy (Standalone)`, +'s09b671b120443043': `Update Radius Provider`, +'scb58b8a60cad8762': `Default relay state`, +'s6827a456c9dfc6ee': `When using IDP-initiated logins, the relay state will be set to this value.`, +'s44b1f042790cd1a2': `SAML Configuration`, +'sba999428083abce3': `EntityID/Issuer`, +'scd2984ee5552643a': `SSO URL (Post)`, +'saa79b47f60c66458': `SSO URL (Redirect)`, +'s2da51a6287118ba8': `SSO URL (IdP-initiated Login)`, +'s0a57e911e457302b': `SLO URL (Post)`, +'s1e7308bb1ca323e1': `SLO URL (Redirect)`, +'s382b702673776873': `Example SAML attributes`, +'sea3bfc143ced73db': `NameID attribute`, +'s019555b5a442aa00': `Property mappings used to user mapping.`, +'sadadfe9dfa06d7dd': `No sync status.`, +'s2b1c81130a65a55b': `Sync currently running.`, +'s2f0f6691de0b0388': `Warning: Provider is not assigned to an application as backchannel provider.`, +'sc6c575c5ff64cdb1': `Update SCIM Provider`, +'s4476e9c50cfd13f4': `Global status`, +'sd21a971eea208533': `Vendor`, +'s1024166475850a65': `Use Server URI for SNI verification`, +'se65beb94fffc3c4b': `Required for servers using TLS 1.3+`, +'s000ee3e634868b3c': `TLS Client authentication certificate`, +'s5506b35a1bceb141': `Client certificate keypair to authenticate against the LDAP Server's Certificate.`, +'sfbc59ff17a73503d': `User path`, +'sf36170f71cea38c2': `Connectivity`, +'sf3fec8353106ac2f': str`OAuth Source ${0}`, +'s199b55513a739f43': `OIDC Well-known URL`, +'s8b149b30b5b523ef': `OIDC well-known configuration URL. Can be used to automatically configure the URLs above.`, +'s9db2c836ade1339c': `OIDC JWKS URL`, +'s4b2a1b657c160f5b': `JSON Web Key URL. Keys from the URL will be used to validate JWTs from this source.`, +'s2df0b65125600de9': `OIDC JWKS`, +'s02de8d9e8583b480': `Raw JWKS data.`, +'sb35c08e3a541188f': `Also known as Client ID.`, +'sd46fd9b647cfea10': `Also known as Client Secret.`, +'sa61966cd83b4924c': `Additional scopes to be passed to the OAuth Provider, separated by space. To replace existing scopes, prefix with *.`, +'s5c1dc164c89ac13e': `Unknown provider type`, +'s355b21b89ce5d9c5': `Details`, +'s2feae323f46479f8': `These bindings control which users can access this source. + You can only use policies here as access is checked before the user is authenticated.`, +'s995535e7af30d754': `Use the user's email address, but deny enrollment when the email address already exists`, +'s542ecb4130f6cea5': `Link to a user with identical username. Can have security implications when a username is used with another source`, +'s2a1debf34e5aeba4': `Use the user's username, but deny enrollment when the username already exists`, +'s81ce0d54727f42d2': `Unknown user matching mode`, +'s6f96a78d81ef277c': `Post-auto binding`, +'sc2c70fd56f5d0b48': `Post binding but the request is automatically sent and the user doesn't have to confirm.`, +'s3198c384c2f68b08': `Time offset when temporary users should be deleted. This only applies if your IDP uses the NameID Format 'transient', and the user doesn't log out manually.`, +'s5adafce329aaa853': `Authenticator type name`, +'s23e6a57201fba25e': `Display name of this authenticator, used by users when they enroll an authenticator.`, +'s5b6b6e2cb884d59f': `Duo Auth API`, +'s88870d7e499e848b': `Duo Admin API (optional)`, +'s7f13f4a2d0370cf6': `When using a Duo MFA, Access or Beyond plan, an Admin API application can be created. + This will allow authentik to import devices automatically.`, +'s71633a67e0d7c0e4': `Successfully imported device.`, +'s7d61705dfb120d7b': `The user in authentik this device will be assigned to.`, +'s5eaf1d304e03ed4b': `Duo User ID`, +'s003847d8bc01c676': `The user ID in Duo, can be found in the URL after clicking on a user.`, +'sbbc806ea3987c781': `Automatic import`, +'s77299a9d3dd932cd': str`Successfully imported ${0} devices.`, +'s6a615f6165ef01c9': `Start automatic import`, +'s9f83d7768aea548a': `Or manually import`, +'sa92398dba8b12d85': `Mapping`, +'s38162f615710c7b4': `Modify the payload sent to the custom provider.`, +'s0ae0072614320ae2': `Hash phone number`, +'s9ca3310e1999fd5b': `If enabled, only a hash of the phone number will be saved. This can be done for data-protection reasons. Devices created from a stage with this enabled cannot be used with the authenticator validation stage.`, +'s7caa8f7edb920909': `The number of tokens generated whenever this stage is used. Every token generated per stage execution will be attached to a single static device.`, +'s4aacc4e0277c1042': `Token length`, +'s6931695c4f563bc4': `The length of the individual generated tokens. Can be increased to improve security.`, +'se2e9f5a32c93e5f7': `Last validation threshold`, +'s951281efc92b03fc': `If any of the devices user of the types selected above have been used within this duration, this stage will be skipped.`, +'s1e0de9c4f66dc371': `WebAuthn User verification`, +'scae166352a31032c': `Configuration stages`, +'s6941a67f0038ba4c': `Stages used to configure Authenticator when user doesn't have any compatible devices. After this configuration Stage passes, the user is not prompted again.`, +'s7e5af9c6ba6f5cc6': `When multiple stages are selected, the user can choose which one they want to enroll.`, +'s24bce955914b1f0a': `Stage used to configure a WebAuthn authenticator (i.e. Yubikey, FaceID/Windows Hello).`, +'s6a3cf855140b9511': `Required: User verification must occur.`, +'sc498a3b05cfe2b08': `Preferred: User verification is preferred if available, but not required.`, +'s9d2239d2b0402795': `Discouraged: User verification should not occur.`, +'s9ea472b555374771': `Resident key requirement`, +'s428b7859907f6db2': `Required: The authenticator MUST create a dedicated credential. If it cannot, the RP is prepared for an error to occur`, +'s33e3766d4a02b042': `Preferred: The authenticator can create and store a dedicated credential, but if it doesn't that's alright too`, +'sfb852dd507c25c24': `Discouraged: The authenticator should not create a dedicated credential`, +'s5fbaeb14f42815e5': `Authenticator Attachment`, +'s502d2473587032e1': `No preference is sent`, +'s60cc554fde2676cb': `A non-removable authenticator, like TouchID or Windows Hello`, +'sdf1d8edef27236f0': `A "roaming" authenticator, like a YubiKey`, +'sfffba7b23d8fb40c': `This stage checks the user's current session against the Google reCaptcha (or compatible) service.`, +'s39e436de1dc4df4f': `JS URL`, +'s170b705c55ecb2ae': `URL to fetch JavaScript from, defaults to recaptcha. Can be replaced with any compatible alternative.`, +'s275021658614ce9e': `API URL`, +'sc8a79fddea3ab4a9': `URL used to validate captcha response, defaults to recaptcha. Can be replaced with any compatible alternative.`, +'se0c660020d9cf5b7': `Offset after which consent expires.`, +'s7f68101a50f526ee': `Statically deny the flow. To use this stage effectively, disable *Evaluate when flow is planned* on the respective binding.`, +'s1cc306d8e28c4464': `Deny message`, +'s6985c401e1100122': `Message shown when this stage is run.`, +'sdb861d9906f18ac2': `Throw error?`, +'s62e7f6ed7d9cb3ca': `Pretend user exists`, +'s52bdc80690a9a8dc': `When enabled, the stage will always accept the given user identifier and continue.`, +'s0295ce5d6f635d75': `Source settings`, +'sa84a7fd11ba85e88': `When selected, the invite will only be usable with the flow. By default the invite is accepted on all flows with invitation stages.`, +'sd18b18f91b804c3f': `Custom attributes`, +'s96dcf7ec8342c335': `Invitation not limited to any flow, and can be used with any enrollment flow.`, +'s1b42b49e7b392013': `Update Invitation`, +'s63e54b86e2a2cc43': `Text Area: Multiline text input`, +'s4e5646b23e41231f': `Text Area (read-only): Multiline text input, but cannot be edited.`, +'s1c5574968b29ab1c': `Password: Masked input, multiple inputs of this type on the same prompt need to be identical.`, +'s34edeb18f887161d': `Radio Button Group (fixed choice)`, +'s57730b6870e8916c': `Dropdown (fixed choice)`, +'sd1f81284eeb7b503': `File`, +'sdd4bd4224c4e943d': `authentik: Locale: Displays a list of locales authentik supports.`, +'saf84e7732a9e1336': `Preview errors`, +'sb71ace8e9b35c749': `Data preview`, +'s4d53f4b7ff33bedd': `Unique name of this field, used for selecting fields in prompt stages.`, +'s37dbfe2133b74d2d': `Interpret placeholder as expression`, +'s4a953e6234cb4808': `When checked, the placeholder will be evaluated in the same way a property mapping is. + If the evaluation fails, the placeholder itself is returned.`, +'sf76ead4c4708dd06': `Optionally provide a short hint that describes the expected input value. + When creating a fixed choice field, enable interpreting as expression and return a + list to return multiple choices.`, +'saa7ba2057bd524a1': `Interpret initial value as expression`, +'sd60415c7666859f0': `When checked, the initial value will be evaluated in the same way a property mapping is. + If the evaluation fails, the initial value itself is returned.`, +'sa9c7044d9fd1f3e6': `Initial value`, +'seab35681cbf36755': `Optionally pre-fill the input with an initial value. + When creating a fixed choice field, enable interpreting as expression and + return a list to return multiple default choices.`, +'sbf4ef82e04772a4e': `Delete the currently pending user. CAUTION, this stage does not ask for confirmation. Use a consent stage to ensure the user is aware of their actions.`, +'sf7949fbbab2eb566': `Different browsers handle session cookies differently, and might not remove them even when the browser is closed.`, +'s53bbc3ae4b5fa1d0': `See here.`, +'s2512334108f06a5a': `Stay signed in offset`, +'s1608b2f94fa0dbd4': `If set to a duration above 0, the user will have the option to choose to "stay signed in", which will extend their session by the time specified here.`, +'s542a71bb8f41e057': `Terminate other sessions`, +'sa920231366378c90': `When enabled, all previous sessions of the user will be terminated.`, +'s927398c400970760': `Write any data from the flow's context's 'prompt_data' to the currently pending user. If no user + is pending, a new user is created, and data is written to them.`, +'sb379d861cbed0b47': `Never create users`, +'s81d673755a86a4f0': `When no user is present in the flow context, the stage will fail.`, +'s9940e3f073fbdbd4': `Create users when required`, +'s5414356cc10e80fe': `When no user is present in the the flow context, a new user is created.`, +'s57337099d96ce6d2': `Always create new users`, +'se80dd66f23b4fc39': `Create a new user even if a user is in the flow context.`, +'s89d1847b5e4ad225': `User path template`, +'s32babfed740fd3c1': `User type used for newly created users.`, +'s18269e3889d6fa54': `Path new users will be created under. If left blank, the default path will be used.`, +'s09f0c100d0ad2fec': `Open Wizard`, +'sf2ef885f7d0a101d': `Demo Wizard`, +'s77505ee5d2e45e53': `Run the demo wizard`, +'sdc5690be4a342985': `The token has been copied to your clipboard`, +'s7f3edfee24690c9f': `The token was displayed because authentik does not have permission to write to the clipboard`, +'sc1589121ae2f5f92': `Enter the code shown on your device.`, +'s455a8fc21077e7f9': `You've successfully authenticated your device.`, +'s2ddbebcb8a49b005': `Waiting for authentication...`, +'sb15fe7b9d09bb419': `If no Plex popup opens, click the button below.`, +'sbc625b4c669b9ce8': `Open login`, +'sc2ec367e3108fe65': `Duo activation QR code`, +'seb0c08d9f233bbfe': `Please enter the code you received via SMS`, +'sa84adff85b5e505c': `Open your two-factor authenticator app to view your authentication code.`, +'s844fea0bfb10a72a': `Authentication code`, +'s3cd84e82e83e35ad': `Please enter your code`, +'sbcf8604929b6a27a': `Sending Duo push notification`, +'s7073489bb01b3c24': `Application already has access to the following permissions:`, +'s98dc556f8bf707dc': `Application requires following new permissions:`, +'s091d5407b5b32e84': `Or`, +'sac17f177f884e238': `Stay signed in?`, +'s859b2e00391da380': `Select Yes to reduce the number of times you're asked to sign in.`, +'s4a6aa26413287069': `Successfully updated details`, +'s6fcd9b5a87ceccd6': `Open settings`, +'s8c05cccd470f6b5f': `No settings flow configured.`, +'s30205d424e710818': `Successfully disconnected source`, +'s67dedada007d4067': str`Failed to disconnected source: ${0}`, + }; + \ No newline at end of file diff --git a/web/packages/localization/src/locales/zh-Hans.js b/web/packages/localization/src/locales/zh-Hans.js new file mode 100644 index 000000000..981d69758 --- /dev/null +++ b/web/packages/localization/src/locales/zh-Hans.js @@ -0,0 +1,1721 @@ + + // Do not modify this file by hand! + // Re-generate this file by running lit-localize + + import {html} from 'lit'; + import {str} from '@lit/localize'; + + /* eslint-disable no-irregular-whitespace */ + /* eslint-disable @typescript-eslint/no-explicit-any */ + + export const templates = { + 'h10ef80d434185070': html`此提供程序需要与 nginx 的 auth_request 或 traefik 的 forwardAuth + 一起使用。每个应用/域名需要独立的提供程序。 + 此外,在每个域名上,/outpost.goauthentik.io 必须被路由到 + 前哨(如果使用托管前哨,则已自动帮您完成)。`, +'s000ee3e634868b3c': `TLS 客户端身份验证证书`, +'s003847d8bc01c676': `Duo 中的用户 ID,可以点击用户之后,在 URL 中找到。`, +'s004e9a2c90f23900': `持久的`, +'s005053d82b712e0a': `备注`, +'s00c2db16ea9bc263': `配置刷新令牌的有效期限。`, +'s00c8354318addfa0': `策略`, +'s01088b6625d2443b': `回调 URL`, +'s0141f42936495787': `点击这里了解更多。`, +'s01794c0ee3629c1b': `流程信息`, +'s019555b5a442aa00': `用于用户映射的属性映射。`, +'s0195c0df7294228a': `在这里了解更多 OCI 支持:`, +'s01a3a7f48ee4edaf': `可选注册流程,链接在页面底部。`, +'s01ef54f5d7c6ed47': `现在尝试`, +'s02240309358f557c': `未知严重程度`, +'s026555347e589f0e': `对象唯一性字段`, +'s02839b01844d6ca8': `创建日期`, +'s0285b4bd69130fa3': `安装许可证`, +'s028be8989873f001': `授权 URL`, +'s028d385389b5aac0': `在此系统中锁定用户`, +'s0295ce5d6f635d75': `源设置`, +'s02b3fade1795d03f': `通过端口 389 连接到 LDAP 服务器:`, +'s02b632a9ac24a824': str`上次出现: + ${0}`, +'s02de8d9e8583b480': `原始 JWKS 数据。`, +'s030ac0829bb50a49': str`策略 + ${0}`, +'s037bc6d25a03c3c8': `已成功更新传输。`, +'s0382d73823585617': str` + ${0}: + ${1}`, +'s03907d7a66c6164e': `应用的显示名称。`, +'s03970aa76a09982d': `集成`, +'s039b6434e8a75560': str`删除 + ${0}`, +'s03f42eea72154959': `用户名`, +'s03f49e598ffb11cc': `波兰语`, +'s03fb3fa232f0434a': `客户端 Secret`, +'s03fd2c252ad7972a': `电子邮件恢复链接`, +'s0410779cb47de312': `创建用户的路径模板。使用占位符如 \`%(slug)s\` 插入源 Slug。`, +'s042baf59902a711f': `策略`, +'s04440099d97c0bef': `编辑阶段`, +'s045c3b86aae073c1': `删除账户`, +'s047a5f0211fedc72': `需要前哨(流程只能从前哨执行)。`, +'s04b7f8d6aaef3756': `所选组中的用户可以执行搜索查询。如果未选择任何组,则不允许 LDAP 搜索。`, +'s04bfd02201db5ab8': `使用 YAML 或 JSON 格式设置自定义属性。如果请求由此租户处理,则用户会继承此处设置的任何自定义属性。`, +'s04c1210202f48dc9': `请输入您的电话号码。`, +'s04c5a637328c9b67': str` + ${0}- + ${1}/ + ${2}`, +'s04ceadb276bbe149': `正在加载选项…`, +'s05e395ff60af047b': `警告:提供程序未被任何前哨使用。`, +'s0639662111324466': `策略引擎模式`, +'s065604a41e9d1584': `更新 OAuth 源`, +'s068d4dd16d9106d0': `图标`, +'s06ae64e621f302eb': `已成功创建许可证。`, +'s06c163334767a381': `创建服务账户`, +'s06c92148da82be0d': `更改您的密码`, +'s06df3c3b6a503da8': `写入此值的用户对象的字段。`, +'s070fdfb03034ca9b': `“新应用程序向导”提示目前已隐藏`, +'s072c6d12d3d37501': `HTTP-Basic 用户名键`, +'s079d388d3cbfa54f': `检查日志`, +'s081d3c4b47a6ff83': `如果已设置,则用户可以使用此流程自行删除账户。如果未设置流程,则不显示选项。`, +'s086e1bbe7c97ea16': `搜索 Base`, +'s08a8716c214a0efb': `PEM 编码的证书数据。`, +'s08c91cb1a2cd3d97': `选中后,密码字段将显示在同一页面,而不是单独的页面上。这样可以防止用户名枚举攻击。`, +'s08df8d0a773a3ea0': `删除项目`, +'s091d3d07b5b3076f': `好的`, +'s091d5407b5b32e84': `或者`, +'s09205907b5b56cda': `否`, +'s09240e07b5b8d640': `ID`, +'s09242207b5b8f83c': `IP`, +'s0924f51b028233a3': `<未设置名称>`, +'s09353907b5c79284': `至`, +'s09810653c832e935': `点击以更改值`, +'s098237f7ccb4dc4a': `已成功清除流程缓存`, +'s09b671b120443043': `更新 Radius 提供程序`, +'s09f0c100d0ad2fec': `打开向导`, +'s0a0ca63b967f1630': `源`, +'s0a11c2ffb8309d1a': `未找到`, +'s0a39e4f61ccafacb': `已成功更新规则。`, +'s0a5401d4419f9958': `使用源`, +'s0a57e911e457302b': `SLO URL(Post)`, +'s0a61796c1956d32c': `流程被规划时评估`, +'s0a63a8be0b2b422c': `Worker`, +'s0a72e65aef45b1e8': `服务器 URI`, +'s0ae0072614320ae2': `哈希电话号码`, +'s0ae3395d8f48e624': `已成功生成恢复链接`, +'s0af6301e76e2a2a5': `已成功更新租户。`, +'s0b15ff11a0049cfd': `可以发出绑定请求和搜索请求的 LDAP DN。`, +'s0b3bf19b31dd6bac': `尝试新应用程序向导`, +'s0b55a57f473ab8af': `更新组`, +'s0c135eba6017d94f': `标签会显示在输入侧方/上方。`, +'s0c3ac7f9383a8cfd': `暂时的`, +'s0c8c4d2bb0a9162a': `可选的无密码流程,链接在页面底部。配置后,用户可以使用此流程通过 WebAuthn 身份验证器进行验证,无需输入任何详细信息。`, +'s0c9670f429e74283': `新应用程序`, +'s0d4268408182491d': `使用 TLS`, +'s0d5d05bf3d122ced': `Twilio`, +'s0dc46deb8f181baf': `无效响应行为`, +'s0dd00fbaba08748a': `从当前时间经过多久时或之后,会话无效。`, +'s0dd031b58ed4017c': str`内部:${0}`, +'s0dfc6838c9d07677': `配置流程`, +'s0e03fe2dc5b9164b': `如果您的 authentik 实例正在使用自签名证书,请设置此值。`, +'s0e15f678445dfc45': `用来验证任何身份验证器的阶段。此阶段应在身份验证或授权流程中使用。`, +'s0e427111d750cc02': `已成功更新许可证。`, +'s0e516232f2ab4e04': `通过短信发送的令牌。`, +'s0eaf755fa88c8d97': `阶段`, +'s0f2e070d38cd36df': `TLS 身份验证证书/SSH 密钥对`, +'s0f4c6540c30bd8b4': `指定`, +'s0fbf6dc6a1966408': `下一步`, +'s1024166475850a65': `SNI 验证时使用服务器 URI`, +'s10356fd921037fbf': `默认流程`, +'s107bf77afb93c9b8': `每当特定事件被创建并匹配策略时,都会发送通知。`, +'s10922bd0ac765562': `对象将被删除`, +'s10929ca568ae10bc': `提供程序`, +'s10d2dbc4613397f0': `已更新`, +'s11204eeb1e27ea8f': `ACS URL`, +'s11326fd2590f4e5e': `默认`, +'s113c05ef9996ca4b': `嵌入式前哨配置不正确。`, +'s119498d4e4cf59a6': `受影响的模型:`, +'s11bc220e8fa9d797': `授权`, +'s12146091b2b539a3': `内容左侧`, +'s122f308b5f198ba7': `已成功创建证书密钥对。`, +'s124f93a61ee772d6': `高级协议设置`, +'s128e7f5f34bfa155': `用来配置静态身份验证器(即静态令牌)的阶段。此阶段应该用于配置流程。`, +'s1293ad87acc7a609': `HaveIBeenPwned 设置`, +'s1298e361e40ee1c5': `停止模拟身份`, +'s12de1c06a1e18cc5': `文本(只读):简单文本输入,但无法编辑。`, +'s134177568525dbc8': `设备代码流程`, +'s13de04774ff0f210': `Docker URL`, +'s14401ff4a0cba208': str`更新 + ${0}失败: + ${1}`, +'s145483489b87a622': `登出 URL`, +'s1455753daa00f1bc': `用户不具有查看权限,所以无法获取描述。`, +'s14622ee6de586485': str`已尝试以 + ${0}身份登录`, +'s14ace18ccf4fb86d': `增强与移动设备与密码管理器的兼容性。`, +'s14bf17e2a1a2c381': `重新开始任务`, +'s14bfa8fd1bec8889': `角色不具有查看权限,所以无法获取描述。`, +'s14c552fb0a4c0186': `应用程序需要以下权限:`, +'s14c8f36e180d6bbc': `已成功创建阶段。`, +'s1575a15cee001915': `已成功创建传输。`, +'s15831fa50a116545': `正在保存应用程序…`, +'s15b46b78edebb20a': `确实要清除策略缓存吗?这将导致所有策略在下次使用时重新评估。`, +'s1608b2f94fa0dbd4': `如果设置时长大于 0,用户可以选择“保持登录”选项,这将使用户的会话延长此处设置的时间。`, +'s164be9a7537b99f6': `配置不同域名的可视化设置和默认值。`, +'s1665454e31e14941': `X509 主题`, +'s16b9446e3a70e1f4': `属性`, +'s16bc281dce5685e8': `身份验证器`, +'s170b705c55ecb2ae': `拉取 JavaScript 的 URL,默认为 recaptcha。可以替换为任何兼容替代。`, +'s17a679298216aca9': `选择的源应显示给用户进行身份验证。这只会影响基于 Web 的源,而不影响 LDAP。`, +'s17d1e337f6c11c1e': `在 id_token 中包含声明`, +'s17f3eaf3b07ece26': `警告:提供程序未被任何应用程序使用。`, +'s1823625e6f831d73': `自定义`, +'s18269e3889d6fa54': `新用户将会在此路径下创建。如果留空,则使用默认路径。`, +'s1828fbfc2c56379c': `检查 IP`, +'s1889ba2eaeec2f1e': `启用时,可以通过在密码后添加分号和 TOTP 代码来使用基于代码的多因素身份验证。仅在所有绑定到此提供程序的用户都已配置 TOTP 设备的情况下才应该启用,否则密码可能会因为包含分号而被错误地拒绝。`, +'s18b910437b73e8e8': `返回设备选择器`, +'s19409e8712ddd369': `添加提供程序`, +'s197420b40df164f8': `跟随重定向`, +'s199b55513a739f43': `OIDC Well-known URL`, +'s19b09f4fc72175d1': `创建一个新身份来源。`, +'s1a0e95458b44d7f8': `必须匹配任意策略才能授予访问权限。`, +'s1a2797874b7fe852': `NameID 属性映射`, +'s1a2f8f4b3861583b': `创建前哨`, +'s1a635369edaf4dc3': `服务账户`, +'s1a65ee08832fbfe2': `流程与阶段`, +'s1a711c19cda48375': `配置 LDAP 提供程序`, +'s1ac2653a6492b435': str` + ${0},应该是 + ${1}`, +'s1b07757762cda372': `清除策略缓存`, +'s1b14062c44e5ef45': `即将过期`, +'s1b42b49e7b392013': `更新邀请`, +'s1b448a4ea79d4eef': `未找到事件。`, +'s1b606acd76ba2c4c': `更新租户`, +'s1b783856ab4aaaf3': `无需进行额外设置。`, +'s1b88fa3df4423292': `上次 IP`, +'s1bd5920d8adf2bd5': `要添加的组`, +'s1bf56ee106e9e711': `已成功创建绑定。`, +'s1c2a173db0e1ec61': `将与此筛选器匹配的对象视为用户。`, +'s1c2fd8097e14a608': `恢复流程。如果留空,则使用按 Slug 排序的第一个适用流程。`, +'s1c33d22492029aba': `对象字段`, +'s1c5574968b29ab1c': `密码:屏蔽显示输入内容,多个此类型的输入如果在同一个输入项下,则内容需要相同。`, +'s1c6ba8d100453392': `发出令牌的有效时间(单位为分钟)。`, +'s1c8916418c334935': `ID 令牌`, +'s1c8e9816dcae6d9c': `起始 gidNumbers,这个数字会被添加到从 group.Pk 生成的数字中,以确保对于 POSIX 用户来说,这个数字不会太低。默认值为 4000,以确保我们不会与本地群组或用户主组的 gidNumber 发生冲突`, +'s1cc0e66dbd2b5502': `流程设置`, +'s1cc306d8e28c4464': `拒绝消息`, +'s1cd198d689c66e4b': `API 访问权限`, +'s1cd264012278c047': `流程执行`, +'s1cd617e7bbe278d0': `请求用户同意授权。同意授权可以是永久性的,也可以在规定的时间后过期。`, +'s1cf2298d92c327a6': `我的应用`, +'s1cffe58249b04669': `在 URL 中使用的应用内部名称。`, +'s1d30ff9ba938e68d': `等待(最长)`, +'s1d49ec5030447643': `前哨`, +'s1d6e16d86961c782': `证书密钥对`, +'s1d9d6c5b424fdc1f': `初始登录请求发送到的 URL。`, +'s1e0de9c4f66dc371': `WebAuthn 用户验证`, +'s1e176e35c828318c': `主机名`, +'s1e36813d3504ed48': `已成功更新绑定。`, +'s1e4c3de6e12cd87b': `用户名:与文本输入相同,但检查并防止用户名重复。`, +'s1e7308bb1ca323e1': `SLO URL(重定向)`, +'s1efbfc3937d565bd': `背景`, +'s1f1c857c0c4250e4': str` + ${0}天前`, +'s1f7698c061c208c9': `打开`, +'s1fc9c70610c4c67d': `失效`, +'s2035f889f576bca6': `连接设置`, +'s207e8b106806d7e4': `绑定阶段`, +'s20a0ce62823bfa97': `多久后删除临时用户`, +'s211b75e868072162': `将此设置为您希望身份验证有效的域名。必须是上述 URL 的父域名。如果您的应用部署在 app1.domain.tld、app2.domain.tld,请将其设置为 'domain.tld'。`, +'s2152f3482784705f': `近期事件`, +'s216eb300543edd91': `选择用户必须是哪个服务器的成员才能进行身份验证。`, +'s21b3058faf874368': `过时的前哨`, +'s21d0e290c51a8ef9': `符号字符集`, +'s21e3c227cc2c5873': `分隔符:静态分隔线`, +'s21f95eaf151d4ce3': `检查此提供程序。`, +'s2221fef80f4753a2': `TLS 验证证书`, +'s2236dc563c2dbf76': `(格式:hours=-1;minutes=-2;seconds=-3)。`, +'s22b0e8c5277dd5a9': `将会通知用户此流程不适用`, +'s22b10ed263b96194': `用于测试的虚拟阶段。显示一个简单的“继续”按钮,并且始终通过。`, +'s22e566052f7bec81': `在选定源中配置的证书签名的 JWT 可以用于此提供程序的身份验证。`, +'s2345170f7e272668': `未知代理模式`, +'s2348f46ebf436671': `在新标签页中打开`, +'s239c2a351cde6d39': `需要无身份验证。`, +'s23ab136ad85f0ad2': `只同步选定组中的用户。`, +'s23cee624c735f266': `拦截身份验证标头`, +'s23de62f931f7d754': `上次应用`, +'s23e6a57201fba25e': `此验证器的显示名称,在用户注册验证器时使用。`, +'s23fd4411419fca06': `客户端可以指定的访问这些属性的范围。`, +'s240ff02ce3a53dee': `集成密钥`, +'s24211f319e5b7e98': `包含唯一标识符的字段。`, +'s2430e000b7cfefd0': `仅发送一次通知,例如在向聊天频道发送 Webhook 时。`, +'s2474e7fb1aec9f05': `测试`, +'s24875d5475e82526': `已成功更新源。`, +'s24bce955914b1f0a': `用来配置 WebAuthn 身份验证器(即 Yubikey、FaceID/Windows Hello)的阶段。`, +'s24f405197ede5ebb': `使用 Plex 重新验证身份`, +'s2512334108f06a5a': `保持登录偏移量`, +'s252a52330d32b900': `元数据`, +'s2536ac8d32d2e63f': `事件从数据库中删除的时间,超过这个时间就会被删除。`, +'s2543cffd6ebb6803': `系统任务执行`, +'s254a9a23dc1635df': `导入设备`, +'s254d527e3a53dbb7': `基于代码的 MFA 支持`, +'s256b8452664ccae4': `配置如何创建 NameID 值。如果留空,将遵守传入请求的 NameIDPolicy。`, +'s259de999919316db': `角色`, +'s25d0cd75377daf75': `Forward Auth(域名级)`, +'s25ec2846f6b88214': `Webhook 映射`, +'s26513c9dd154f041': `始终需要征得同意授权`, +'s2656433a3b1f7e86': `我的应用`, +'s26bf2730430efbea': `Subject 模式`, +'s2708cac1f4942708': `蓝图`, +'s271a7e04ff9865b1': `控制 authentik 如何公开和处理信息。`, +'s275021658614ce9e': `API URL`, +'s27586544c447d9e3': `用户事件`, +'s275c956687e2e656': `失败登录`, +'s276d751eb7a186cc': `API 主机名`, +'s27976e94b05c6970': `激活`, +'s27ac7a47b390e3cb': `证书密钥对`, +'s2801a48ceac691b3': `注册流程`, +'s289fce7e694b98ac': `SMTP 端口`, +'s28b3de1561da72b3': `MFA 身份验证器`, +'s28cbd874ba450b4e': `显示更少`, +'s28d84abfbaf555ea': `分数阈值`, +'s28f270859c5f4d51': `Docker 宿主机的主机 IP`, +'s2905c425adae99bd': `安装 ID`, +'s29315e374008d0c5': `添加到该组的用户均为超级用户。`, +'s293801033f9fc0d0': `创建一个新阶段。`, +'s293aa6a6446fb153': `导出`, +'s293ab4331c1dd387': `这是用于 Basic 身份验证的用户名,或是使用 Bearer 令牌时的令牌`, +'s296fbffaaa7c910a': `必需。`, +'s297a2075bd7e40db': `NameID 策略`, +'s29ec5e7889f4787f': `已成功更新策略。`, +'s2a0f60e74b478804': `摘要算法`, +'s2a12e0b5527ff99a': `启用此开关将创建一个以用户命名的组,用户为成员。`, +'s2a1debf34e5aeba4': `使用用户的用户名,但在用户名已存在时拒绝注册`, +'s2a2d3e7c379e9518': `证书主题`, +'s2a369bc2febb5d55': `如果未指定显式重定向 URI,则将保存第一个成功使用的重定向 URI。`, +'s2a64d2dca3da9b0e': str`组 + ${0}`, +'s2a957e843960b604': `密码字段`, +'s2acef4f6ba39bf11': `上方配置证书应该使用的 DNS 名称。无法基于 Base DN 检测证书,因为 SSL/TLS 协商发生在此类数据交换之前。`, +'s2af5754090898640': `不在此刻或之后,断言有效`, +'s2b088ba65eb69b7e': `表单域的名称,也用于存储值。`, +'s2b1bc31276c4c477': `策略 / 组 / 用户绑定`, +'s2b1c81130a65a55b': `当前正在同步。`, +'s2b7dbba348234a36': `验证码已通过短信发送给您。`, +'s2b952e9dc99cbded': `登录密码会自动从 LDAP 同步到 authentik。启用此选项可将 authentik 中的密码更改写回至 LDAP。`, +'s2ba5f4d8f3bd7c57': `顺序`, +'s2bc8aa1740d3da34': `阶段对象`, +'s2be6121210e2a2f8': `输入`, +'s2c0de3d35a7bc784': `相关对象`, +'s2c8189544e3ea679': `重试`, +'s2c8c6f89089b31d4': `配置 Radius 提供程序`, +'s2ceb11be2290bb1b': `取消`, +'s2d34c87f67f66c6a': `Windows`, +'s2d46e3a9ee8e0e7e': `更新 LDAP 提供程序`, +'s2d5f69929bb7221d': str` + ${0}(" + ${1}",类型为 + ${2})`, +'s2da4aa7a9abeb653': `伪区域(测试用)`, +'s2da51a6287118ba8': `SSO URL(IDP 发起的登录)`, +'s2ddbebcb8a49b005': `正在等待身份验证…`, +'s2df0b65125600de9': `OIDC JWKS`, +'s2e109263b73c12d5': `许可证`, +'s2e3ef41a0edd8608': `作用域`, +'s2e422519ed38f7d8': `通过`, +'s2e4818861000b13f': `布局`, +'s2e532e19ed477a56': `路径`, +'s2ec94a7c7f5bcd1b': `组对象过滤器`, +'s2ed8eb02525a920a': str` + ${0}小时前`, +'s2eeca5cfc99ef19b': `当一条策略拒绝用户访问此流程时决定响应。`, +'s2f0f6691de0b0388': `警告:提供程序未作为反向通道分配给应用程序。`, +'s2f1bcfcc5cae94c3': `创建流程`, +'s2f58bb9905d2b76f': `用于身份验证的证书/密钥。可以留空表示不验证。`, +'s2f8c4cf12350a36c': `检查静态规则`, +'s2f995efbb1e46b18': `自动检测(基于您的浏览器)`, +'s2fc3eb68c7ced3af': `用户信息 URL`, +'s2feae323f46479f8': `这些绑定控制哪些用户可以访问此源。 +您只能在此处使用策略,因为访问权限会在验证用户身份之前检查。`, +'s2ffad156e8332f04': `更新角色`, +'s30205d424e710818': `解绑成功`, +'s303b5e552246e613': `根据一组条件匹配事件。如果任何配置的值匹配,则策略将通过。`, +'s306a35df5d0d38bb': `要添加的用户`, +'s3079ca1184e77573': `已成功创建组。`, +'s30d0d0e6c626a234': `前哨将所有用户和组保存在内存中,并每 5 分钟刷新一次`, +'s30d1f50f476c3f48': `流程总览`, +'s310d8757ce319673': `登录`, +'s319040353f479853': `用于验证用户身份的流程。`, +'s3198c384c2f68b08': `删除临时用户的时间偏移。这仅适用于您的 IDP 使用 NameID 格式 'transient' 且用户未手动登出的情况。`, +'s31a2d43bc1cf1790': `尚未同步。`, +'s31d15c6f16951464': `身份验证 URL`, +'s31d7f3ba04d306a5': `SSO URL`, +'s31ebc5431d677f5d': `SMTP 主机`, +'s31fba571065f2c87': `确保将这些令牌保存在安全的地方。`, +'s322e34cfcba47155': `不可用`, +'s32a3efa23718e713': `API 请求`, +'s32babfed740fd3c1': `新创建用户使用的用户类型。`, +'s32f04d33924ce8ad': `策略执行`, +'s332a5235948c1a1d': `同意授权`, +'s3330adb3f0922f7b': `用户数据库 + 应用程序密码`, +'s33318837e6c54a9b': `信任的 OIDC 来源`, +'s33683c3b1dbaf264': `要改用 SSL,请使用 'ldaps: //' 并禁用此选项。`, +'s3380d7cbcebe50f6': `密码阶段`, +'s33aa05f435c29753': `更新证书密钥对`, +'s33d48fb745f4d4ae': `最低大写字符数`, +'s33e3766d4a02b042': `首选:身份验证器可以创建和存储专用凭据,但不创建也可以`, +'s33ed903c210a6209': `用于验证身份的令牌。当前仅支持 Bearer 身份验证。`, +'s33f85f24c0f5f008': `保存`, +'s341ab68d4130de20': `没有 Workers 连接,后台任务将无法运行。`, +'s342eccabf83c9bde': `规划历史记录`, +'s344c4a2a48997e18': `.yaml 文件,可以在 goauthentik.io 上找到,也可以通过 authentik 导出。`, +'s3484b1e6d0b5335f': `管理向 authentik 中的对象授予权限的角色。`, +'s34b23ebbac9f6ab9': `用户验证`, +'s34be76c6b1eadbef': `警告`, +'s34edeb18f887161d': `单选按钮组(固定选项)`, +'s350a616ff5e145ec': `选择此应用应该使用的提供程序。`, +'s351246c52548086a': `下载证书`, +'s354e0a9f146d2869': `简体中文`, +'s355b21b89ce5d9c5': `详情`, +'s3576aead3e68c5c9': `导出流程`, +'s35e6e60e83a8c003': `失效流程`, +'s35f9df7668d5fa79': `查看部署文档`, +'s35fac2e5677d55cd': `指定是否应将此用户视为活动用户。取消选择此选项,而不是删除帐户。`, +'s3616cc78631f5893': str`警告:您即将删除当前登录的用户( + ${0})。如果继续,请自担风险。`, +'s36247910d67421e1': `选择权限`, +'s3626433940124897': `网站图标`, +'s3643189d1abbb7f4': `代码`, +'s364c4f177a2f8322': `打开 API 抽屉`, +'s3687049d1af562c4': `复制`, +'s36cb242ac90353bc': `字段`, +'s36e630ba56617556': `发送 HTTP-Basic 身份验证`, +'s374abf1a54d87b67': `执行过程中显示的背景。`, +'s3794c596ee7964ad': `更新密码`, +'s37cbecaec58e2192': `模式`, +'s37d9155b9f4cc7bd': `配置如何填写 ID 令牌的颁发者字段。`, +'s37dbfe2133b74d2d': `将占位符解释为表达式`, +'s37eb2f1b6e3c19c2': `协议设置`, +'s38162f615710c7b4': `修改发送到自定义提供程序的载荷。`, +'s382a2aa3984474dd': `创建`, +'s382b702673776873': `示例 SAML 属性`, +'s38887b94b3320533': `电子邮箱地址`, +'s388ee787bbf2271b': `任务已完成但有警告`, +'s38c72e1cf120b8d8': `创建邀请`, +'s38f774cd7e9b9dad': `注册。`, +'s3914cb410fca44d4': `导入`, +'s3926da5b20cdf3b6': `用于请求初始令牌的 URL。只有 OAuth 1 才需要此网址。`, +'s398f6ba74ba8943a': `选择要添加到应用的提供程序`, +'s399cc2d67d92e957': `机密`, +'s39c8c0bf4d927c9f': `允许 IDP 发起的登录`, +'s39e436de1dc4df4f': `JS URL`, +'s3a135682bd30bdbb': `创建应用密码`, +'s3a3fae99373ce56b': `选择客户端可以使用哪些作用域。客户端仍然需要指定访问数据的范围。`, +'s3a5fec3d73ac9edc': `创建证书密钥对`, +'s3ab772345f78aee0': `流程检视器`, +'s3abecf1e778c9625': `了解更多:`, +'s3b34d9930e33bd46': `系统任务`, +'s3b3c333481944862': `显示详情`, +'s3b58f8d2155ae90c': `字段键`, +'s3b68883dda2682ed': `断言为空`, +'s3b7b519444181264': `验证策略`, +'s3ba9b8aeb686d9f7': `匹配选定模型创建的事件。如果留空,则匹配所有模型。`, +'s3baf512851453712': `Twilio 账户 SID`, +'s3bb51cabb02b997e': `格式:"weeks=3;days=2;hours=3,seconds=2"。`, +'s3be1d90ffa46b7f1': `企业版目前处于预览状态。`, +'s3bfa0258999fb629': `反转绑定的结果。消息不受影响。`, +'s3c6de3f257e0c912': `请求`, +'s3cd84e82e83e35ad': `请输入您的代码`, +'s3d197283cb019b5a': `总览`, +'s3d2a8b86a4f5a810': str`成功创建用户并添加到组 ${0}`, +'s3d34068a31cab30b': `内部主机 SSL 验证`, +'s3de6db803012016a': `LDAP 属性映射`, +'s3e211d29fa10f843': `引用将被设置为空值`, +'s3e3bb9e7cb1de4fd': `选择要添加的用户`, +'s3e59b8b2debf0209': `此阶段可以包含在注册流程中以接受邀请。`, +'s3e87ce98ba3c4d80': `配置令牌的有效期限。`, +'s3e902999ddf7b50e': `SCIM(跨域标识管理系统)`, +'s3e99ea082ca5ade9': `拉取失败`, +'s3ebf4c166058afce': `清除背景`, +'s3ed5607ad78d4224': `清除缓存`, +'s3ef3c252ada78076': `失败登录`, +'s3fb39fc45e840f78': `查阅文档`, +'s3fd219b045193507': `zxcvbn 设置`, +'s3feea7b49673bef2': `没有日志消息。`, +'s3ffa320128991a45': `为分配的应用程序提供对 SAML 和 OAuth 等协议的支持。`, +'s4015746f55a8d89f': `获取许可证`, +'s40830ec037f34626': `手动配置 SAML 提供程序`, +'s4090dd0c0e45988b': `请求 ID`, +'s40b034801fcb843b': `根据用户和/或 IP 信誉允许/拒绝请求。`, +'s40b80eb4cc1f0e0c': `编辑绑定`, +'s40bf151b56a64f51': `服务器和客户端的时间相差超过 5 秒。`, +'s40e2c72dae905a50': `静态:静态值,按原样显示。`, +'s4165cd175bc4c0c4': `过期时间`, +'s416a540b16275f2e': `创建组`, +'s41706a202b6c40f1': `域名`, +'s417b90913e05bc17': `预览`, +'s41b105819b67ee7a': `阶段`, +'s41e035c4bb8d15f2': `常规系统状态`, +'s4207178ba0b99418': `有较新版本的前端可用。`, +'s420d2cdedcaf8cd0': `正在使用 Plex 进行身份验证...`, +'s424f57afae0caac4': `添加用户`, +'s427f788ff333f45b': `启动 URL`, +'s428b7859907f6db2': `必需:身份验证器必须创建专用凭据。如果不能,RP 预期会发生错误`, +'s4291727352c4f295': `基于用户名`, +'s42a1ebe17efda727': `字段`, +'s42cbd8dca939a9c7': `检查`, +'s42fc6f4b64eff5d9': `可用于输入阶段的单个输入项。`, +'s43be3ce2439ffe9c': `最低数字字符数`, +'s43c1f927936f0a02': `从当前时间经过多久时或之后,断言无效。`, +'s43fe853bf219a9b8': `临时假定此用户的身份`, +'s4409ada9c5c2a7f8': `未激活`, +'s4414164d120de61a': str`以下对象使用 + ${0}`, +'s44536d20bb5c8257': `此设置仅影响新事件,因为过期时间是分事件保存的。`, +'s4476e9c50cfd13f4': `全局状态`, +'s4498e890d47a8066': `OAuth2/OIDC(Open Authorization/OpenID Connect)`, +'s44b1f042790cd1a2': `SAML 配置`, +'s44c90273f08fb718': `与 nginx 的 auth_request 或 traefik 的 ForwardAuth 一起使用此提供程序。每个根域名只需要一个提供程序。您无法管理每个应用程序的授权,但不必为每个应用程序分别创建提供程序。`, +'s44ea4e9a81ce730d': `电子邮件阶段`, +'s453b0c150a7ca58e': `示例 JWT 载荷(当前经过身份验证的用户)`, +'s4557b6b9da258643': `预测外部用户`, +'s455a8fc21077e7f9': `您成功验证了此设备的身份。`, +'s455de2f740b073fd': `事件信息`, +'s457c639088c547c5': `已成功创建提供程序。`, +'s45935843b1b5b496': `表单提交未返回 Promise`, +'s45960273852a61b2': `日期时间`, +'s45cb501abd43ba52': `生成`, +'s45f9e7ce0897f9e5': `租户`, +'s4647b2c92638d6fd': `为上方配置 Base DN 提供的证书。作为回退,提供程序使用一个自签名证书。`, +'s4660da32fb311ac0': `台湾华语`, +'s473f0143efa3f706': `这些策略控制哪些用户可以访问此应用程序。`, +'s47490298c17b753a': `在您的设备上接收推送通知。`, +'s4751df77cfd8a5f9': `检查用户名`, +'s476ffc07e6d66f18': `已成功更新令牌。`, +'s477de089b505a6ea': `SCIM 提供程序`, +'s47a4983a2c6bb749': `模型已更新`, +'s47bd537a3bcebf19': `下载私钥`, +'s4802636d55022ed3': `默认?`, +'s480c6c40a248f7d2': `使用 SSL`, +'s482ae78809a6822b': `经过身份验证的用户用来配置其密码的流程。如果为空,用户将无法配置更改其密码。`, +'s485c05d34eb00415': `删除当前设置的图标。`, +'s48cf8fd56b1237ed': `已成功更新流程。`, +'s494e1ed913d9351a': `编辑组`, +'s49730f3d5751a433': `正在加载……`, +'s4a1e774ab25aa232': `内部主机`, +'s4a26798e1c3c37dd': `验证上游服务器的 SSL 证书。`, +'s4a34a6be4c68ec87': `已创建用户`, +'s4a697f0b36c4fe83': `Active Directory 用户`, +'s4a6aa26413287069': `已成功更新详情`, +'s4a87445f3108db7c': `选择以下源之一进行登录。`, +'s4a953e6234cb4808': `勾选时,占位符将以与属性映射相同的方式评估。 +如果评估失败,则返回占位符本身。`, +'s4aacc4e0277c1042': `令牌长度`, +'s4acf840bc792c3ae': `本地(通知在 authentik 内创建)`, +'s4aee34a672e5cfc0': `创建者`, +'s4af8a3ce5a600855': `让用户使用用户名或电子邮件地址来标识自己。`, +'s4afb26a8fae257e9': `直接分配`, +'s4b2a1b657c160f5b': `JSON Web Key URL。来自此 URL 的 Key 将被用于验证此身份来源的 JWT。`, +'s4b5af7736aedd6c1': `私钥可用吗?`, +'s4ba4473f3d4ec896': `新版本可用`, +'s4bd386db7302bb22': `通过向导创建`, +'s4c24b2baa377e870': `已成功更新证书密钥对。`, +'s4c41f3f4c23e8eaa': `警告:此组已配置为超级用户权限。加入的用户将会拥有超级用户权限。`, +'s4c4c504a48c3b7bd': `Traefik(独立)`, +'s4c6534a118f52fdd': `选择可为主要提供程序增强功能的反向通道提供程序。`, +'s4caed5b7a7e5d89b': `英语`, +'s4cdae7635e757555': `用户可以用来标识自己的字段。如果未选择任何字段,则用户将只能使用源。`, +'s4d00e5de1c8213b7': `客户端 ID`, +'s4d00f1de1c82281b': `客户端 IP`, +'s4d182bae8a578010': `基于短信的身份验证器`, +'s4d31797d81e9cea3': `明确同意授权`, +'s4d53f4b7ff33bedd': `此字段的唯一名称,用于选择输入阶段的字段。`, +'s4d7fe7be1c49896c': `您可以关闭此页面了。`, +'s4dcb9288f7e9e4d7': `将用户分组在一起,并根据成员资格为他们授予权限。`, +'s4e28e2899e08a5f8': `确定 authentik 如何将响应发送回服务提供程序。`, +'s4e474b9e2e737dd1': `更新代理提供程序`, +'s4e5646b23e41231f': `文本框(只读):多行文本输入,但无法编辑。`, +'s4eb514ebcb80553d': `父级`, +'s4f1ad6b48a5df506': `日志`, +'s4f1af2b48a5e249a': `Logo`, +'s4f2e195d09e2868c': `LDAP(轻型目录访问协议)`, +'s4ff2c202b4e5bdc5': `内置`, +'s502884e1977b2c06': `下一阶段`, +'s502d2473587032e1': `不发送偏好`, +'s505fbbdcbc6aa921': `添加新组`, +'s506beb486fa41241': `应用程序授权`, +'s50719dda8f90abf4': `在 URL 中可见。`, +'s50911ec1c8aee99a': `未找到匹配的事件`, +'s50c312bea93b6925': `编辑策略`, +'s50ebe627b4bc7d02': `绑定`, +'s510c7add9e24c306': `隐藏未激活的用户`, +'s5116b89f7db1fbec': `允许的重定向 URI`, +'s512957aa09384646': `启动`, +'s5140d157642d7362': `无(规则已禁用)`, +'s5170f9ef331949c0': `向用户显示任意输入字段,例如在注册期间。数据保存在流程上下文中的 'prompt_data' 变量下。`, +'s51c6b8403c2dc5d9': `公开客户端没有能力维护其凭据的机密性,应该使用 PKCE 等方法。`, +'s51da4de00984fe51': `API 身份验证用户名`, +'s51ea3a244c781b1f': `已创建对象`, +'s51f92b6fa76656ca': `不健康的前哨`, +'s523160b433311521': `设置后,用户可以配置他们个人资料的详细信息。`, +'s526e2c66bd51ff5f': `角色信息`, +'s52b500138a2d2b8a': `更新 LDAP 源`, +'s52bdc80690a9a8dc': `启用时,此阶段总是会接受指定的用户 ID 并继续。`, +'s53ad3455d9523b54': `创建用户`, +'s53bbc3ae4b5fa1d0': `详见这里。`, +'s5414356cc10e80fe': `如果流程上下文中没有出现用户,则创建新用户。`, +'s542a71bb8f41e057': `终止其他会话`, +'s542ecb4130f6cea5': `链接到用户名相同的用户。当其他源使用相同用户名时,可能会有安全隐患`, +'s544142ce35050751': `测试策略`, +'s545d99afa61e4095': `被视为符号的字符。`, +'s5462c7f56ed65e6c': `电子邮箱:电子邮箱类型的文本字段。`, +'s54cd35e6224ba65d': `默认情况下,只为源显示图标。启用此选项可显示它们的全名。`, +'s54e7a23a95d99649': `文本:简单文本输入`, +'s5506b35a1bceb141': `基于 LDAP 服务端证书进行身份验证的客户端证书密钥对。`, +'s5515a897ae98bed9': `证书`, +'s554ce268e9727e79': `您只能选择与前哨类型匹配的提供程序。`, +'s5572ac4d2208f5ec': `已成功创建输入项。`, +'s55787f4dfcdce52b': `签名密钥`, +'s5590dbf7e425789d': `标签`, +'s5599c62bb78c631f': `管理员界面`, +'s55d731be1ef66efe': `Base DN`, +'s55eb75bedf96be0f': `相比于 UPN,更推荐此模式。`, +'s55fa598b754cc3cc': str` + ${0}( + ${1})`, +'s5615bb595ad6ded6': `绑定类型`, +'s56806e9f63efa298': `重定向 URI`, +'s5694f9421c428227': `Bind 密码`, +'s56fd9ed596c724fa': `Secret 密钥`, +'s57072ffb92b6c9c8': `定义如何向用户发送通知,例如电子邮件或 Webhook。`, +'s57337099d96ce6d2': `总是创建新用户`, +'s57448f10eb973100': `创建邀请链接以注册用户,并可选地强制设置其账户的特定属性。`, +'s57730b6870e8916c': `下拉框(固定选项)`, +'s5795b310ab271d20': `这些绑定控制此规则触发的事件。 +针对组/用户的绑定会检查与事件相关的用户。`, +'s57b07e524f8f5c2a': str`外部:${0}`, +'s5819a49638f6d7cb': str`您确定要删除 ${0} ${1} 吗?`, +'s584d1c38ad20d560': `可以使用任何 HTML。`, +'s586d6bd2eca2da93': `用户`, +'s587ba266269297ab': `策略绑定`, +'s588796ee929a2e4c': `用户详情`, +'s58888ef1ee9b5bb8': `用户状态`, +'s58c867aac77b9158': `上次登录`, +'s58cd9c2fe836d9c6': `返回主页`, +'s58d1eb482059da12': `新建提供程序`, +'s58fd2aafa4261c55': `已成功更新应用程序。`, +'s592425143c4f5834': `替代名称`, +'s592ab7d2bc1b8973': `用户字段`, +'s593db2c00d6516a2': `SMTP 密码`, +'s5944355d69db1fb8': `额外的组 DN`, +'s59572c1be31a812e': `删除流程缓存失败`, +'s59691290a232c687': `当阶段被提交以验证数据时,执行选定的策略。`, +'s59b6028f19d15cda': `没有激活的集成`, +'s59bf194136d0d13a': `使用流程执行器登录`, +'s59dc0eda07f9e2b6': `属性映射`, +'s59f5eda30a904b75': `JWKS URL`, +'s5a13f4bbe004503f': `检查过去 x 天内请求的用户密码是否已更改,并根据设置拒绝。`, +'s5a15a8f39c699273': `匹配选定应用程序创建的事件。如果留空,则匹配所有应用程序。`, +'s5a48d5171e1a1522': `警告:策略未分配。`, +'s5a802e46a033c8af': `用户主标识符。不超过 150 个字符。`, +'s5acb607b40356974': `GID 起始编号`, +'s5adafce329aaa853': `身份验证类型名称`, +'s5b1fb0d4c0daeba8': `创建绑定`, +'s5b6b6e2cb884d59f': `Duo Auth API`, +'s5b8ee296ed258568': `当前租户必须配置恢复流程才能使用恢复链接`, +'s5be3b0567172e415': `验证证书`, +'s5be3c6d61cd9182f': `通知`, +'s5c18cae48b93138c': `会话`, +'s5c1dc164c89ac13e': `未知提供程序类型`, +'s5cd31f4a88adf180': `编辑用户`, +'s5d0a14d29ebad561': `新用户注册的流程。`, +'s5d6af4c100ad321b': str`创建 + ${0}`, +'s5d7748b1d2363478': str`您确定要从组 + ${0}中删除选定的用户吗?`, +'s5d9f93f1fe1c19d3': `Traefik(Ingress)`, +'s5da52af9b083c29a': `模型`, +'s5deac600e329de1b': `日志消息`, +'s5e169e1bac20b4a6': `前哨`, +'s5e8250fb85d64c23': `关闭`, +'s5e830ae7688d1219': `用来配置基于短信的 TOTP 身份验证器的阶段。`, +'s5eaf1d304e03ed4b': `Duo 用户 ID`, +'s5ee6f1b84e9ebc69': `分配到新角色`, +'s5f343a43e7ea9f91': `错误`, +'s5f4586bc1e2740e6': `清除搜索`, +'s5f496533610103f2': `应用程序已授权`, +'s5f5bf4ef2bd93c04': `组绑定仅会在已登录用户访问此源时检查。`, +'s5f71fa3c53828e30': `从组中删除`, +'s5fbaeb14f42815e5': `身份验证器附件`, +'s5fc4269c2addee61': `引用令牌的唯一标识符。`, +'s60cc554fde2676cb': `不可移除的身份验证器,例如 TouchID 或 Windows Hello`, +'s60d891ed3ee9ebc5': `已成功创建源。`, +'s60edbcfac8ed1f90': `起始 uidNumbers,这个数字会被添加到 user.Pk 中,以确保对于 POSIX 用户来说,这个数字不会太低。默认值为 2000,以确保我们不会与本地用户的 uidNumber 发生冲突`, +'s6152026c364ad974': `身份来源,既可以同步到 authentik 的数据库中,也可以被用户用来进行身份验证和注册。`, +'s618d4e53f455c834': `使用全局设置`, +'s6196153c4b0c1ea0': `安装`, +'s61b6f3e6bc59c6dd': `创建输入`, +'s61bd841e66966325': `通过 OAuth2 和 SAML 等协议,使用 authentik 作为身份提供程序的外部应用程序。此处显示了所有应用程序,即使您无法访问的也包括在内。`, +'s61ccefd661ac2296': `如果设置了此标志,则当没有发出邀请时,此阶段将跳转到下一个阶段。默认情况下,当没有发出邀请时,此阶段将取消流程。`, +'s61e48919db20538a': `UPN`, +'s61eacb19db252f5e': `URL`, +'s6238f519db67980d': `UID`, +'s624256f8a4bb4c89': `通知传输`, +'s62ddcbaaa91d120d': `信誉分数`, +'s62e7f6ed7d9cb3ca': `假作用户存在`, +'s62f7c59b0606a8d6': `授权流程`, +'s62f93cfcb45d5a06': `超级用户权限?`, +'s6336fa345e96dde9': `阶段被运行时评估`, +'s634448e4942cf452': `编辑该组的备注属性以在此处添加备注。`, +'s634d041fd954ab20': `API 身份验证密码`, +'s63cb05541b294335': `是超级用户`, +'s63d894b1ddb06289': `描述`, +'s63d89a6ae0969c30': `要让用户直接重置密码,请在当前活动的租户上配置恢复流程。`, +'s63e03c70f67ebf9c': `上下文`, +'s63e54b86e2a2cc43': `文本框:多行文本输入。`, +'s63e71d20d1eaca93': `德语`, +'s643d8f2e5e5e930d': `已成功更新映射。`, +'s64a33dcdaf90af26': `用户信息`, +'s64ef2a6c2dd1d3d1': `编辑`, +'s65ca2f256ea09c11': `添加到已有组`, +'s65d507f1513c2f03': `允许由 IdP 启动的身份验证流程。这可能存在安全风险,因为未对请求 ID 进行验证。`, +'s65d67612999165e9': str`事件 + ${0}`, +'s662fcb3761ad9df7': `当与用户写入阶段结合使用时,请使用 attributes.foo 来编写属性。`, +'s66313b45b69cfc88': `查看发行日志`, +'s66722bc2ea775e05': `已禁用`, +'s66ffc06300964849': `用户对象筛选器`, +'s670ad066cc0e50a3': str`登录以继续前往 + ${0}。`, +'s67560d7e37d984c3': `策略 / 用户 / 组`, +'s67664f8ee9aea98d': `请输入您的验证码`, +'s67749057edb2586b': `登出`, +'s677f1b675fc21bb1': `Secret:`, +'s67ac11d47f1ce794': `WebAuthn 需要此页面通过 HTTPS 访问。`, +'s67d858051b34c38b': `方法的显示名称。`, +'s67dedada007d4067': str`解绑失败: + ${0}`, +'s67e136af8fc1107b': `分配权限`, +'s67e20cd8018d7e3c': `当前设置为:`, +'s681074b6c1f19c08': `未配置操作`, +'s6827a456c9dfc6ee': `当使用 IDP 发起的登录时,中继状态会被设置为此值。`, +'s6835db03209b4f94': `在 authentik 内的自动化与模板配置。`, +'s6873bdbfa24615fb': `Webhook URL`, +'s68a50b1ee6efee7b': str` + ${0}可用!`, +'s68d69ad0271c8ef6': `创建一个新前哨集成。`, +'s68f935c9ca792016': `app1.example.com 上运行的 app1`, +'s6931695c4f563bc4': `每个生成令牌的长度。可以增加以增强安全性。`, +'s693d975d38ff0214': `签名算法`, +'s6941a67f0038ba4c': `当用户没有任何兼容的设备时,用来配置身份验证器的阶段。此阶段通过后,将不再请求此用户。`, +'s6985c401e1100122': `此阶段运行时显示的消息。`, +'s69a56a3022c4be7f': `租户`, +'s69bd313dd12fc2f3': `个人资料 URL`, +'s6a3cf855140b9511': `必需:必须进行用户验证。`, +'s6a406aecb2c0e5c5': `注册`, +'s6a615f6165ef01c9': `开始自动导入`, +'s6a66759749bf31ed': `直接绑定`, +'s6a89bb10338369b4': `前往上一页`, +'s6ab73c998850c5ab': `表达式`, +'s6abff64e7ff7fde9': `头像图片`, +'s6ac670086eb137c6': `恢复`, +'s6ae0d087036e6d6d': `选择一种身份验证方法。`, +'s6b1ed7507f26cb4a': `失败结果`, +'s6b2beba7ab637e9e': `角色`, +'s6b5002c605b39d6d': `创建通知传输`, +'s6b6e6eb037aef7da': `使用下面的用户名和密码进行身份验证。密码可以稍后在令牌页面上获取。`, +'s6b79e73ca77148a0': `前哨集成`, +'s6b85380416964890': `反转结果`, +'s6b9a1dd402750a8a': `从头开始重新启动流程,同时保留流程上下文`, +'s6ba50bb0842ba1e2': `应用程序`, +'s6c3daaac4eed12f9': `更新日志`, +'s6c410fedda2a575f': `更新可用`, +'s6c607d74bdfe9f36': `用户绑定仅会在已登录用户访问此源时检查。`, +'s6c70a73265e14521': `链接到电子邮件地址相同的用户。当源不验证电子邮件地址时,可能会有安全隐患`, +'s6c8f05e3be04f62a': `注册设备`, +'s6d3b4d0561ba1cff': `发布者`, +'s6d5bce4321f57cda': `删除账户`, +'s6df42b3072a2d7e9': `Nginx(Ingress)`, +'s6dfb7283452f78fe': `授权`, +'s6dfd15978586d05f': str`欢迎, + ${0}。`, +'s6e09a19aa3952509': `使用率最高的应用`, +'s6e4c997a101b6abf': `以当前用户`, +'s6e612e5a6a359bbb': `可选私钥。如果设置,则可以使用此密钥对来加密。`, +'s6e6e737601f44b2c': `已成功清除通知`, +'s6ec8c9d11310300a': `孤立`, +'s6f270e1668c036e9': `已成功更新前哨。`, +'s6f328f2d8382d998': `同意授权过期时间`, +'s6f367f5604d5056d': `创建与绑定阶段`, +'s6f5bb31e2733ecd5': `为此用户创建一个重置密码链接`, +'s6f857299d5db1ecf': `流程`, +'s6f96a78d81ef277c': `自动 Post 绑定`, +'s6fcd9b5a87ceccd6': `打开设置`, +'s6fe64b4625517333': `由 authentik 强力驱动`, +'s7031e6928c44cedd': `用户界面`, +'s706af57c1af42c6d': `隐藏:隐藏字段,可用于将数据插入表单。`, +'s7073489bb01b3c24': `应用程序已经获得以下权限:`, +'s708d9a4a0db0be8f': `检查状态`, +'s70f6471de355b98c': `HTTP-Basic 密码键`, +'s713d147e1761d0f0': `最新!`, +'s713e8666ed70f8b3': `创建一个新属性映射。`, +'s71633a67e0d7c0e4': `已成功导入设备。`, +'s7181a5504472e856': `应用更改`, +'s71c5d51d5a357dbd': `不要再显示此消息。`, +'s71dcd9cf808449aa': `令牌`, +'s720594461542943f': `添加用户`, +'s721d94ae700b5dfd': `Duo 激活`, +'s7220fcf4fec4e0df': `删除用户`, +'s72559845d38bf688': `配置访问令牌的有效期限。`, +'s72c1c17a9bdc76ad': `帮助文本`, +'s72e102414fec81a4': `已成功创建规则。`, +'s730182ad28374cda': `对象`, +'s7301a7069b7bc83e': `已吊销?`, +'s733f83ff9d50da30': `为断言配置允许的最大时间漂移。`, +'s73c13e5a6f5e38a3': `设备类型`, +'s74475586afc1fb0f': `选择类型`, +'s745a55f9abf9f2e5': `边栏右侧`, +'s7468e87263dfff7e': `标识符`, +'s7489f76224f8120d': `Forward Auth(单应用)`, +'s74cb3d66f6a668e1': `文档`, +'s74f809a69e030351': `OpenID 配置颁发者`, +'s7513372fe60f6387': `事件容量`, +'s7520286c8419a266': `加载到流程的 'prompt_data' 上下文变量中的可选数据。YAML 或 JSON。`, +'s75a27f43413e02c5': `法语`, +'s75d5ff5dd8d3c6d2': `已成功更新组。`, +'s7609ee54e8a7b05a': `有效天数`, +'s764bccb30868bf62': `您将通过此外部 URL 访问应用程序。请包括任何非标准端口。`, +'s76768bebabb7d543': `包含组成员的字段。请注意,如果使用 "memberUid" 字段,则假定该值包含相对可分辨名称。例如,'memberUid=some-user' 而不是 'memberUid=cn=some-user,ou=groups,...'`, +'s7683363cdf78cf31': `如果可用,则首选用户验证,但不是必需的。`, +'s76881c01b6a3a8c7': `同意授权`, +'s76da2c978dcc5ef4': `已成功清除策略缓存`, +'s76f5dca6404a1210': `Webhook(Slack/Discord)`, +'s77099d752f1ab773': `相关操作`, +'s77299a9d3dd932cd': str`已成功导入 + ${0}个设备。`, +'s773aa6621d7e37b7': `创建租户`, +'s77505ee5d2e45e53': `运行演示向导`, +'s7754f0e34f27fb6e': `同意授权时向用户显示的描述。如果留空,则不会告知用户。`, +'s77994108c886b965': `取消前的的尝试失败`, +'s77e8668a27dbc402': `服务账户应该用于机器到机器(M2M)身份验证或其他自动化操作。`, +'s77f572257f69a8db': `属性映射异常`, +'s78ab26da7f067de8': `选择权限以授予`, +'s78c08391ffbfb8c0': `这些绑定控制哪些用户可以访问此流程。`, +'s78fd8c03f8c967f3': `令牌`, +'s7968dbed9b106c29': `没有可用的服务。`, +'s7989db5f4819af89': `用于登出的流程。如果留空,则使用按 Slug 排序的第一个适用流程。`, +'s79ad406777feab1f': `在没有邀请的情况下继续流程`, +'s79aed8154d7c472c': `已成功创建前哨。`, +'s79e8cc71a5975b04': `消息`, +'s7a141f1b61074fbe': `基本身份验证`, +'s7a322c89298dd27c': `已成功更新邀请。`, +'s7a4f059aaa029719': `连接`, +'s7a6b3453209e1066': `创建应用程序时存在一个错误,但未发送错误消息。请检查服务器日志。`, +'s7abc9d08b0f70fd6': `静态令牌`, +'s7b105164d209f670': `需要身份验证`, +'s7b18721be331241e': `选择应使用哪些传输方式来通知用户。如果未选择任何内容,则通知将仅显示在 authentik UI 中。`, +'s7b1fba26d245cb1c': `使用外部日志记录解决方案进行存档时,可以将其设置为 "minutes=5"。`, +'s7b298427bdea81ae': `如果设置,则 OAuth 设备代码用户资料可用,并且选定的流程将会用于输入代码。`, +'s7b3148ffba9f4527': `如果密码分数小于等于此值,则策略失败。`, +'s7b576aa71acb36a6': `流程图`, +'s7b7163270e57e8b4': `刷新`, +'s7ba9677d069e5f02': `Caddy(独立)`, +'s7bc8c327f1f7c82c': `未找到对象。`, +'s7bda44013984fc48': `密码已设置`, +'s7be2df39f727faa2': `企业版`, +'s7c05ee41d634aa45': `用于创建用户的属性映射。`, +'s7c10976de6411844': `令牌有效性`, +'s7c27e113f90a89e0': `选中后,传入断言的签名将根据此证书进行验证。要允许未签名的请求,请保留默认值。`, +'s7c5774fad9d050ce': `创建组`, +'s7caa8f7edb920909': `使用此阶段时生成的令牌数量。每次阶段执行中生成的每个令牌都会被附加到单个静态设备上。`, +'s7cb9aa9ee1783f00': `组属性映射`, +'s7ccce0ec8d228db6': `配置 SCIM 提供程序`, +'s7cfe12cd14df9950': `登出`, +'s7d499be3b781a3ca': `用户`, +'s7d61705dfb120d7b': `此设备要绑定的 authentik 用户。`, +'s7d684b6257284e55': `分数`, +'s7def067ed3ad3ad9': `Cookie 域名`, +'s7df5b92a3f93544f': `警告:当前用户数超过了配置的许可证限制`, +'s7e1342d37124b65b': `配置蓝图上下文,用于模板操作。`, +'s7e537ad68d7c16e1': `用户被写入`, +'s7e5af9c6ba6f5cc6': `选中多个阶段时,用户可以选择要注册哪个。`, +'s7e796fe83982863f': str`角色 ${0}`, +'s7e87ab366c199345': `更新绑定`, +'s7eb3d239e0b491ab': `选择要添加用户的组`, +'s7ec7036b249f4f22': `普通用户`, +'s7edad99c6b7bfe88': `前往下一页`, +'s7f13f4a2d0370cf6': `使用 Duo MFA 的 Access 或 Beyond 计划时,可以创建 Admin API 应用程序。 +这允许 authentik 自动导入设备。`, +'s7f2dcf01f7a8c0b7': `允许客户端连接的 CIDR 列表(逗号分隔)。严格的 CIDR 会在宽松的之前匹配。 +来自 CIDR 范围外的客户端连接将会被丢弃。`, +'s7f3edfee24690c9f': `令牌已被显示,因为 authentik 缺少写入剪贴板的权限`, +'s7f4e4054fbe132e1': `其他全局设置`, +'s7f5869b3d14d7cbc': `提供程序`, +'s7f5bb0c9923315ed': `Forward Auth(单应用)`, +'s7f68101a50f526ee': `静态拒绝流。要有效地使用此阶段,请在相应的绑定上禁用*规划时进行评估*。`, +'s7f9e79189a3d19e2': `租户`, +'s7f9eb9c8bd26e8fd': `授权流程成功后有效的重定向 URL。还可以在此处为隐式流程指定任何来源。`, +'s7fa236d26b798301': `发送链接`, +'s7fa4e5e409d43573': str`创建凭据时出错: + ${0}`, +'s7fc1ace65486dc25': `必须匹配所有策略才能授予访问权限`, +'s802826db4e2c852e': `警告:没有邀请阶段绑定到任何流程。邀请将无法按预期工作。`, +'s803b0621006085be': `更新 SAML 提供程序`, +'s80e6d6fe5ad458d3': `清除图标`, +'s819509c33a7534ac': `通知传输`, +'s81a45c4fd11e8e1a': `不通过`, +'s81a87652ade099e4': `用户匹配模式`, +'s81ce0d54727f42d2': `未知用户匹配模式`, +'s81d673755a86a4f0': `如果流程上下文中没有出现用户,此阶段失败。`, +'s81ecf2d4386b8e84': `继续`, +'s81eff3409d572a21': `一般系统异常`, +'s82188c9542510212': `可选的恢复流程,链接在页面底部。`, +'s821f6014c1a435b9': `刷新令牌有效性`, +'s8226f48cb1a80997': `邀请`, +'s823abdb61543a826': `Authentik 无法保存此应用程序:`, +'s824e0943a7104668': str`此用户将会被添加到组 &quot;${0}&quot;。`, +'s832282d415294df4': `导入流程`, +'s8323a9af28e10502': `当信誉分数低于阈值时策略通过,而当其中一个或两个选定选项 +大于等于阈值时策略不通过。`, +'s835da49b4dc83a51': `上个月中每天的失败登录次数`, +'s836148f721d8913b': `透明反向代理`, +'s836aa192b30c21da': `删除账户流程`, +'s838418d1a0815157': `通过策略?`, +'s838ed611b533b19e': `用于签名传出请求的密钥对。留空则禁用签名。`, +'s839cb09cb2193da9': `使用邀请的链接。`, +'s83d0f62ad1731a03': `私钥`, +'s842d690eb3c11762': `流程与会话会在内存中执行与缓存。会话过期时执行流程`, +'s844fea0bfb10a72a': `身份验证代码`, +'s848288f8c2265aad': `您的应用程序已保存`, +'s8489d5559dda260c': `角色对象权限`, +'s848a23972e388662': `RADIUS(远程身份验证拨入用户服务)`, +'s84c5a011acd608c9': `事件保留`, +'s84d7d6ebbedcb586': `健康状态与版本`, +'s84fcddede27b8e2a': `外部`, +'s850a58c683682809': `Issuer 模式`, +'s851c108679653d2a': `作用域名称`, +'s85366fac18679f28': `忘记密码了吗?`, +'s858e7ac4b3cf955f': `静态令牌`, +'s859b2e00391da380': `选择“是”以减少您被要求登录的次数。`, +'s8655c52824caac63': `如果勾选,在用户的应用程序库中时,启动 URL 将会在新浏览器标签页或窗口中打开。`, +'s872d0e88ab34ed83': `授权 URL`, +'s8763a33c3d46aaf5': `前哨状态`, +'s87b7e3bc944c728c': `成功时激活待处理用户`, +'s8802553bc57617ee': `前哨是对 authentik 组件的部署,用于支持不同的环境和协议,例如反向代理。`, +'s880b8b70b22f9977': `更新蓝图`, +'s883b544e2b4aa3b5': `最低小写字符数`, +'s8849ece8c65e3a18': `仪表板`, +'s88870d7e499e848b': `Duo Admin API(可选)`, +'s88b8a2892635a2fc': `authentik 用来获取令牌的 URL。`, +'s890810efbe103cbc': `将创建的事件与此操作类型匹配。留空时,所有操作类型都将匹配。`, +'s890e983a7be64da4': `结果`, +'s8915e64b8b999bfe': `缓存绑定`, +'s892d2731a6f22e59': `私钥,从 https://www.google.com/recaptcha/intro/v3.html 获取。`, +'s8939f574b096054a': `不是您?`, +'s895514dda9cb9c94': `创建恢复链接`, +'s89d1847b5e4ad225': `用户路径模板`, +'s8a1d9403ca90989b': `已使用邀请`, +'s8a67b33a0d70d322': `导入 Duo 设备`, +'s8a75e83497a183a2': `健康`, +'s8aaad223e954f9ca': `启用后,无论大小写如何,都将匹配用户字段。`, +'s8aae61c41319602c': `2:有些易猜测:可以防范不受限的在线攻击。(猜测次数 &lt; 10^8)`, +'s8af61807443f32a4': `操作`, +'s8af7239354f7e7b6': `同步用户`, +'s8afc8c5aafb392d3': `Radius`, +'s8aff572e64b7936b': `再次发送电子邮件。`, +'s8b0432eecbd8b034': `更新`, +'s8b149b30b5b523ef': `OIDC Well-known 配置 URL。可用于自动配置上述 URL。`, +'s8b2b2a43fcf688a3': `已成功更新输入项。`, +'s8b33660e2ed7212c': `通过 SSH 连接时,此密钥对用于身份验证。`, +'s8b87df5664de7eb8': `配置前哨如何查询核心 authentik 服务器的用户。`, +'s8be4abc7ca71da6c': `用户界面设置`, +'s8c05cccd470f6b5f': `未配置设置流程`, +'s8ca0dbaec5d48563': `未配置恢复流程。`, +'s8cb7bb82e96d5d77': `策略`, +'s8cc920e6a8430a0d': `登录当前待处理的用户。`, +'s8cda828dac449ea5': `全部清除`, +'s8ce8bdc9cc9c8604': `无限期同意授权`, +'s8d08843f397d9e81': `请阅读文档了解完整变量列表。`, +'s8d32d7b9e8ca60b1': `所有提供程序都使用相同的标识符`, +'s8d7ecd944ebe834b': `令牌由 authentik 管理。`, +'s8d857061510fe794': `Duo 推送通知`, +'s8da88a8a5750bce1': `Duo 身份验证器`, +'s8e01a852c1db8d29': `Nginx(Proxy Manager)`, +'s8ecdbff1a7329b64': `附加检视器`, +'s8f12575f694e85a2': `传递给代理的额外作用域映射。`, +'s8f85a0e678846080': `分配的对象权限`, +'s8fa26f65aed77c96': `显示更多`, +'s900b0d85b872d134': `使用唯一标识符链接用户`, +'s9065fcccd837a679': `缓存查询`, +'s90760e5e02e95dfe': `刷新令牌`, +'s909e876731a8febb': `选择所有行`, +'s90c3b62194fe8508': `前哨部署信息`, +'s9103a949a3963aa9': `已成功更新角色。`, +'s9117fb5195e75151': `通知`, +'s911a27022aba349f': `创建与绑定策略`, +'s916b32ac64ea2b05': `已成功更新阶段。`, +'s9193ef1a39a6c872': `将新创建的用户标记为未激活。`, +'s91e3a47599412f51': `源`, +'s91f389c796720a81': `加载服务器`, +'s91f70424f5d5d23e': `Slug`, +'s9222ca30ae7786e4': `已成功创建应用程序。`, +'s925936f647ae52cc': `显示为流程页面中的标题。`, +'s926e0ecf124fb01a': `访问代码有效性`, +'s927398c400970760': `将流程上下文的 'prompt_data' 中的任何数据写入当前待处理的用户。 +如果没有用户处于待处理状态,则会创建新用户并向其写入数据。`, +'s9277b90db38e1983': `Active Directory 组`, +'s92921878e886e36d': `时长`, +'s92ca679592a36b35': `Secret 已轮换`, +'s92e241c9f3c101a2': `连接对象将被删除`, +'s92e91071c6a45eb4': `禁用的蓝图永远不会应用。`, +'s9307f3dbb07a73b5': `仅使策略失败,不使用户的密码失效`, +'s93574c03953f25dd': `除了请求必须经过身份验证外,此提供程序的行为类似于透明反向代理。如果您的上游应用程序使用 HTTPS,请确保连接到前哨时也使用 HTTPS。`, +'s9368e965b5c292ab': `配置 OAuth2/OpenID 提供程序`, +'s936bf4342b182ad4': `将会遵循 ?next 参数或者重定向到默认接口`, +'s93c1e5fbe8184895': `已成功创建令牌。`, +'s93cea6ca1f93349d': `不验证身份的 URL`, +'s93cf77a59db53395': `引用将被重置为默认值`, +'s94055b4eb957dc8f': `用户目录`, +'s94333971a07803b9': `其他设置`, +'s945a6b94361ee45b': `适用于需要验证身份的透明反向代理`, +'s949826fad0fe0909': `任务已完成但有错误`, +'s951281efc92b03fc': `如果上面所选类型的任意设备在此期限内被使用,此阶段会被跳过。`, +'s955c1fec1c6fb970': `目前没有阶段绑定到此流程。`, +'s95a032ae86881bf5': `使用流程`, +'s95b73e0f4e47eb9a': `策略执行失败时的结果。`, +'s95f09b229a0a0bb0': `机密客户端有能力维护其凭据例如客户端密钥的机密性。`, +'s964f6725aeb7662f': `添加组`, +'s965c503c3e42fdfe': `已启用`, +'s968c90258dcf7562': `Post 绑定`, +'s96b2fefc550e4b1c': `提供程序类型`, +'s96b3cddf33e1c853': str`您目前正在模拟 + ${0}的身份。点击以停止。`, +'s96d2bb4be3f5e8aa': `选择角色,为该组内用户授予所选角色的权限。`, +'s96dcf7ec8342c335': `邀请没有限制到任何流程,可以用于任何注册流程。`, +'s97d1b0070f50c07f': `静态令牌`, +'s97f2dc19fa556a6a': `短信`, +'s97f5e0c138eae172': `警告:提供程序未分配给任何应用程序。`, +'s980270d0fab7ecb3': `更新阶段绑定`, +'s98327528f00365a7': `拉取数据失败。`, +'s98b1cb8fb62909ec': `组`, +'s98beadfeeb3acb66': `需要管理员用户。`, +'s98c3bdf4fd5cdf65': `通知规则`, +'s98dc556f8bf707dc': `应用程序需要以下新权限:`, +'s991b750e2d5c4234': `服务提供程序绑定`, +'s992f8d1a776e763c': `如果留空,authentik 将尝试根据选定的提供程序提取启动 URL。`, +'s9940e3f073fbdbd4': `如果需要则创建用户`, +'s995535e7af30d754': `使用用户的电子邮件地址,但在电子邮件地址已存在时拒绝注册`, +'s99f110d27e30b289': `标题`, +'s9a34d1520e320465': `阶段特定设置`, +'s9a393a04eaf1eb0e': `创建阶段绑定`, +'s9ae089fd248e72db': `额外的用户 DN,添加到 Base DN 起始处。`, +'s9ba989e69344ff29': `打开通知抽屉`, +'s9bd59e0ea70a3e4a': `更新前哨`, +'s9bd9ba84819493d4': `发生了某些错误!请稍后重试。`, +'s9bf48a89367282cd': `警告:未配置 authentik 域名,身份验证将不起作用。`, +'s9c29565c5ae1cc92': `选择集成使 authentik 能够管理前哨。`, +'s9c3c272944dcfca3': `已成功创建用户。`, +'s9c6f61dc47bc4f0a': `模型已创建`, +'s9c73bd29b279d26b': `已结束模拟身份`, +'s9ca3310e1999fd5b': `如果启用,仅保存电话号码的哈希。这是出于数据保护的原因。如果设备创建自启用此选项的阶段,则无法在验证阶段使用身份验证器。`, +'s9cc631505c17b028': `分配的全局权限`, +'s9ce7cc01fb9b5b53': `管理企业版许可证`, +'s9d18948d25c68d66': `已成功生成证书密钥对。`, +'s9d2239d2b0402795': `避免:不应该进行用户验证。`, +'s9d2d00982edafabb': `土耳其语`, +'s9d5796a4b9b7560e': `根据来自 authentik 的值发送自定义 HTTP-Basic 身份验证标头。`, +'s9d8ad4b85287131f': `数字`, +'s9d8b8aa2b404c2c8': `设置`, +'s9d95f09deb601f34': str`服务器验证凭据失败: + ${0}`, +'s9d96eb5ca93e6473': `OpenID 配置 URL`, +'s9db2c836ade1339c': `OIDC JWKS URL`, +'s9e51d6de369f320b': `已成功创建实例。`, +'s9e568afec3810bfe': `恢复密钥`, +'s9e830cbc0b42a514': `更新流程`, +'s9e9316a6b0c16231': `客户端网络`, +'s9e9c8d99f4c26baf': `当用户成功自电子邮件中返回时,其账户将被激活。`, +'s9ea472b555374771': `常驻钥匙要求`, +'s9ee20003cb116abf': `无密码流程`, +'s9ee92717d7f63247': `详细健康状况(每列一个实例,数据经过缓存,因此可能会过时)`, +'s9f23ed1799b4d49a': `配置应将哪些数据用作唯一用户标识符。在大多数情况下保持默认值即可。`, +'s9f26843287bb592d': `组`, +'s9f5a5f23312798f0': `成员`, +'s9f83d7768aea548a': `或者手动导入`, +'s9f8aac89fe318acc': `可选,设置断言属性的 'FriendlyName' 值。`, +'s9f91cc8bcfabb40f': `不在此刻之前,断言有效`, +'s9f9492d30a96b9c6': `用户类型`, +'s9fb28be12e2c6317': `超级用户`, +'s9fd39a5cb20b4e61': `存在一个错误`, +'s9fdda7ea4642306c': `组`, +'s9ff3121d30f88d52': `正常`, +'s9ffa1ac03ce6fd20': `记录执行日志`, +'sa00cf67b54c44c71': `检查 Kubernetes 服务的 IP,或者`, +'sa03aa46068460c95': `忘记用户名或密码?`, +'sa03fe48e892df2d8': `您将在此外部 URL 进行身份验证。通过此 URL 应该可以访问到 authentik 核心服务器。`, +'sa0b01f479f40c52d': `设备`, +'sa0e0bdd7e244416b': `可疑请求`, +'sa11e92683c5860c7': `请求被拒绝。`, +'sa13e6c8310000e30': `会话 ID`, +'sa18e1c6e0e6f16cc': `新应用程序向导大幅度简化了创建应用程序和提供程序所需的操作步骤。`, +'sa1b0052ae095b9b3': `手动配置 SCIM 提供程序`, +'sa1b41e334ad89d94': `Secret 已查看`, +'sa1db89262360550b': `给我们发送反馈!`, +'sa248e1021d2c27b5': `通过向用户发送一次性链接来验证用户的电子邮件地址。也可用于在恢复时验证用户的真实性。`, +'sa266303caf1bd27f': `已发送电子邮件`, +'sa29b5680cfafacc8': `外部主机`, +'sa2b727168b090d34': `清除流程缓存`, +'sa2c29dc5ed47b26d': `强制用户配置身份验证器`, +'sa2e4d6830226d3ec': `重定向绑定`, +'sa30c58514a3dc0fb': `拒绝用户访问`, +'sa319e3bf44c85963': `用于创建组的属性映射。`, +'sa33d061d2ade20aa': `信誉`, +'sa3438c7bb4e9cce8': str` + ${0}未读`, +'sa347e31efbb60be2': `更新应用程序`, +'sa3599457b9418bc5': `用户的头像`, +'sa3660d505e7011e0': `已授权应用程序:`, +'sa3a3e09b88ed9791': `分配的权限`, +'sa3c1f6ac5e63a70f': `身份验证之前使用的流程。`, +'sa41aee3ae04c9216': `显示源的标签`, +'sa43153d53ae65063': `未知类型`, +'sa442044b586ec8bf': `操作`, +'sa45a194b58837e4f': `激活`, +'sa48f81f001b893d2': `用户`, +'sa4a8086275475714': `选择注册流程`, +'sa50a6326530d8a0d': `显示更少`, +'sa55ee64c5c51df0f': `选择一组用于发送警告的用户。如果未选择组,则此规则被禁用。`, +'sa578033f134a83b6': `配置访问代码的有效期限。`, +'sa57c393736e2732c': `测试属性映射`, +'sa599dbe5776897ad': `通过用逗号分隔多个服务器 URI 来指定它们。`, +'sa61966cd83b4924c': `要传递给 OAuth 提供程序的其他作用域,用空格分隔。要替换已存在的作用域,请添加前缀 *。`, +'sa661ea7d7a50f2e9': `创建一个新提供程序。`, +'sa668bd79645c3e06': `Kubeconfig`, +'sa6905be242387f36': `异常`, +'sa6ab5184d6315895': `来自`, +'sa6c0ba4910c7ad7f': `绑定到应用(反向通道)`, +'sa717841a602fe7d8': `删除策略缓存失败`, +'sa72a3bd1e7e89926': `当用户访问此提供程序并且尚未验证身份时使用的流程。`, +'sa738ce390bc24875': `从 https://console.twilio.com 获取此值`, +'sa7b56a80ab1801f0': `Twilio 身份验证令牌`, +'sa7fcf026bd25f231': `连接到本地 Docker 守护进程时可以采用 'unix://' 格式,通过 SSH 连接时采用 'ssh://' 格式,或者在连接到远程系统时采用 'https://:2376' 格式。`, +'sa800871782eba1ac': `内容右侧`, +'sa81e2cdaf6921adc': `系统`, +'sa8384c9c26731f83': `要允许任何重定向 URI,请将此值设置为 ".*"。请注意这可能带来的安全影响。`, +'sa84a7fd11ba85e88': `选中时,此邀请仅可在对应流程中使用。默认情况下,此邀请接受所有流程的邀请阶段。`, +'sa84adff85b5e505c': `打开您的两步验证应用查看身份验证代码。`, +'sa85cfb884c17d85d': `验证 Kubernetes API SSL 证书`, +'sa879d5ce584875cf': `特定策略设置`, +'sa8c45b6b92a8ba1f': `创建应用程序`, +'sa8d83cd8023e8e4d': `authentik 用来获取用户信息的 URL。`, +'sa8e255492bb6ae0d': `前哨集成`, +'sa9020b93c3bd7235': `在取消流程之前,用户可以尝试多少次。要锁定用户,请使用信誉策略和 user_write 阶段。`, +'sa90b7809586c35ce': `输入完整 URL、相对路径,或者使用 'fa://fa-test' 来使用 Font Awesome 图标 "fa-test"。`, +'sa920231366378c90': `启用时,此用户的所有过往会话将会被终止。`, +'sa92398dba8b12d85': `映射`, +'sa95a538bfbb86111': str`您确定要更新 + ${0}" + ${1}" 吗?`, +'sa982875b258fea07': `成功添加用户到组。`, +'sa9b2a245441557dc': `上次运行`, +'sa9c7044d9fd1f3e6': `初始值`, +'sa9dbe2fb284e26fe': `向用户发送恢复链接`, +'saa0e2675da69651b': str`未找到 URL " + ${0}"。`, +'saa10777250a6deca': `更新 SAML 源`, +'saa79b47f60c66458': `SSO URL(重定向)`, +'saa7ba2057bd524a1': `将初始值解释为表达式`, +'saa855c61e0403fe6': `警告:应用程序未被任何前哨使用。`, +'saa8939ac88a76f98': `上次出现`, +'saaa3abe03c7260f9': `authentik 在后台执行的长时间运行的操作。`, +'saab79cd956ee56a9': `蓝图`, +'saabeb4cab074b0b9': `用户对象权限`, +'saae1c70e168b45b4': `管理员`, +'sab6bad52985c6676': `品牌信息显示在页面标题和其他几个地方。`, +'sab6d24c5ec8dc361': `显示名称`, +'sab85321d3b0840b7': `API 请求失败`, +'sababff57115130a0': str`错误:不支持的源设置: + ${0}`, +'sabaf0061f7e41b0b': `消费者 Secret`, +'sabb56f74492e7e96': `更新设备`, +'sabd1bc9fb7da71e7': `使用 Python 的表达式。`, +'sabebdc7fa6a5bddb': `Nginx(独立)`, +'sabf67834e35dede5': `令牌计数`, +'sac1332e6f421526e': `更新通知传输`, +'sac17f177f884e238': `保持登录?`, +'sac43cb9690260b86': `UID 起始编号`, +'sac8252732f2edb19': `日期`, +'sad09c62cb4ebae68': `点击复制令牌`, +'sad130c2d925fb7bf': `更新用户`, +'sad3e3c8146fc920f': `状态`, +'sad59707375956ad2': `完成`, +'sad8550b8731518d8': `不在此刻或之后,会话有效`, +'sadadfe9dfa06d7dd': `无同步状态。`, +'sae1e1a59d22609c4': `启用后,将使用全局电子邮件连接设置,下面的连接设置将被忽略。`, +'sae239213b7c70376': `状态`, +'sae486938be80729c': `一切正常。`, +'sae5d87e99fe081e0': `必需`, +'sae5da213b7f896ed': `阶段`, +'saeff3596e1ac31b6': `设置`, +'saf1d289e3137c2ea': `验证端点证书所依据的 CA。可以留空,表示不进行验证。`, +'saf24e253b3b006d4': `如何连接`, +'saf31b3c610036ed6': `启用此选项后,将记录此策略的所有执行日志。默认情况下,只记录执行错误。`, +'saf5eb7596b3a355b': `将与此过滤器匹配的对象视为组。`, +'saf6097bfa25205b8': `一份恢复链接拷贝已被写入剪贴板`, +'saf63a04c86018698': `-`, +'saf63d34c8601dd41': str` + ${0} + `, +'saf794c74c9ea731e': `用户属性映射`, +'saf7ce4165a1025f6': `同步组`, +'saf84e7732a9e1336': `预览错误`, +'safc0e0656d572f4e': `用于测试的策略。等待随机时长后,始终返回下面指定的结果。`, +'safcc54b2aedb1a17': `如果选择此选项,令牌将能够过期。过期时,令牌将被轮换。`, +'safd0363143a46a91': `基本身份验证`, +'sb0669da3df95837c': `上个月中每天的登录次数`, +'sb07bf992e3d00664': `没有可用的额外数据。`, +'sb0b86b8ca6ab13bd': `提供程序`, +'sb157267c85fdff30': `证书`, +'sb15e8daacf26bdfc': `创建令牌`, +'sb15fe7b9d09bb419': `如果 Plex 没有弹出窗口,则点击下面的按钮。`, +'sb1751a1411d6874f': `外部 API URL`, +'sb17e8c70f9a05c77': `以防万一您无法使用任何其他方法。`, +'sb18ec434a8a3aafb': `许可证密钥`, +'sb1a4e9b288e2f005': `联结与社交登录`, +'sb1c91762ae3a9bee': `已开始模拟身份`, +'sb1fe947f9ad27b9d': `令牌过期`, +'sb21f33b039c86322': `SCIM 基础 URL,通常以 /v2 结尾。`, +'sb24755ea94bef31d': `删除当前设置的背景图片。`, +'sb25d9afe10941425': `决定此流程的用途。例如,当未经身份验证的用户访问 authentik 时,会重定向到身份验证流程。`, +'sb25e689e00c61829': `使用基于代码的身份验证器。`, +'sb2b3b281954752c4': `分配给应用程序`, +'sb2bb6f93773a4594': `用于 HTTP-Basic 标头用户名部分的用户/组属性。如果未设置,则使用用户的电子邮件地址。`, +'sb2c57b2d347203dd': `显示更多`, +'sb2cbd06f8e25b47e': `前往客户中心`, +'sb2f307e79d20bb56': `当前计划上下文`, +'sb3182a87ded1bc91': `未知布局`, +'sb32e9c1faa0b8673': `身份验证前流程`, +'sb357ea19a722d827': `Post`, +'sb35c08e3a541188f': `也称为客户端 ID。`, +'sb3651834cca86735': `最低符号字符数`, +'sb36e4c05244278c1': `无要求`, +'sb37880a2a7288ef0': `更新权限`, +'sb379d861cbed0b47': `从不创建用户`, +'sb3d4f79d9d8b71e5': `提交`, +'sb3defbacd01ad972': `用于用户映射的属性映射。`, +'sb3fa80ccfa97ee54': `阶段名称`, +'sb41b2cfbbc52565b': `创建时间`, +'sb4564c127ab8b921': `登录失败`, +'sb488dee0be434f7e': `身份验证设置`, +'sb4a1d1c19438e929': `auth.example.com 上运行的 authentik`, +'sb4c9ed2a487b238f': str`您确定要从以下组中删除用户 + ${0}吗?`, +'sb4d7bae2440d9781': `用户统计`, +'sb4e50ca3cffdbc10': `边栏左侧`, +'sb50000a8fada5672': `提供程序中存在一个错误。`, +'sb546eb04425e07fa': `更新详情`, +'sb564f81eb057342e': `应用程序图标`, +'sb56674c9ea4f0588': `行为设置`, +'sb57dbcda1929c642': `编辑该用户的备注属性以在此处添加备注。`, +'sb59d68ed12d46377': `正在加载`, +'sb635ad3c2e357d3c': `这是用于 Basic 身份验证的密码`, +'sb6770fa90be6d8b3': `OAuth 刷新令牌`, +'sb69119c9f0547bed': `复制恢复链接`, +'sb69a4b0acd0895f2': `流程`, +'sb6c3bf5489d7556e': `示例上下文数据`, +'sb6cbd4f92ebaf5d8': `相关`, +'sb6d5146d5efb3058': `访问密钥`, +'sb6d7128df5978cee': `策略异常`, +'sb6d7d58cb0a1544e': `兼容模式`, +'sb71ace8e9b35c749': `数据预览`, +'sb72ebab438cb2983': `导入外部提供商的证书或创建用于签名请求的证书。`, +'sb7684e2910a33a1f': `Bind CN`, +'sb7794c2910b1a9ec': `Bind DN`, +'sb7a30abc1dcf6c36': `颁发者`, +'sb8168ae309c66abc': `TOTP 身份验证器`, +'sb85ffe141d7c229d': `会话持续时间`, +'sb8795b799c70776a': `一次性使用`, +'sb8bc2b8376c96a6b': `意图`, +'sb8c13bd58191cea2': `使用 TLS 连接到 LDAP 服务器时,默认情况下不检查证书。指定密钥对以验证远程证书。`, +'sb8d4f44a1d5b9a14': `后端`, +'sb8dd788adf7b907b': `代理`, +'sb8f855b49234b81b': `应用`, +'sb904f23f17b60c3a': `已成功导入流程。`, +'sb923723d27df40ba': `权限`, +'sb932dead79567c7b': `访问令牌 URL`, +'sb95baab425322600': `共享密钥`, +'sb96629f50f2e7fab': `不健康`, +'sb9834316ffd4ae3e': `叠放`, +'sb986f15fa9b17805': `同意授权会过期。`, +'sba42248f3f27955c': `用户数据库 + 标准密码`, +'sba65ae54d6585c1a': `未读通知`, +'sba999428083abce3': `EntityID/签发者`, +'sbab723b98dcfe23f': `显示匹配的用户`, +'sbad5b96fb855ef36': `未绑定策略。`, +'sbadde673052efc02': `Web 证书`, +'sbaf20067de176c90': `外观设置`, +'sbb3243352661428f': `身份验证流程`, +'sbb57cd8a3ed12915': `有效期为 360 天,之后密码将自动轮换。您可以从令牌列表中复制密码。`, +'sbb8ad22c83d375b1': `支持以下关键字:`, +'sbbb2180b6aed196e': `发信人号码`, +'sbbb7318812d64e51': str`创建凭据时出错: + ${0}`, +'sbbb97b1c63507dc0': `数字`, +'sbbc1de43ab6c1f76': `创建通知规则`, +'sbbc53e0e54d7946f': `主题`, +'sbbc806ea3987c781': `自动导入`, +'sbc625b4c669b9ce8': `打开登录`, +'sbc80eab557fbf782': `搜索组`, +'sbc88fb27a4c3b894': `针对由此绑定阶段提供的质询,配置流程执行器应如何处理对此质询的无效响应。`, +'sbcae51a6f06e53d4': `搜索模式`, +'sbcf8604929b6a27a': `发送 Duo 推送通知`, +'sbd19064fc3f405c1': `检查您的收件箱是否有验证电子邮件。`, +'sbd34d118bcb1aaf2': `API Token`, +'sbd5be4fb7442a34c': `基于用户 ID`, +'sbdc1176ff9f93da2': `这是向其发送 POST 请求的完整终端节点。`, +'sbdc4a833de9ca502': `过去一周的登录与身份验证次数(每 8 小时)`, +'sbdeedc1c60306b35': `消息`, +'sbe3b416a356f1c91': `已激活`, +'sbe47a5bdeec19ab0': `阶段绑定`, +'sbe9a51f29a4a2c5b': `成功`, +'sbea3c1e4f2fd623d': `阶段种类`, +'sbea3db12fd799210': `访问令牌有效性`, +'sbec40ef4e6f139b7': `(格式:hours=1;minutes=2;seconds=3)。`, +'sbecf8dc03c978d15': `再次运行同步`, +'sbedb77365a066648': str`上次同步: + ${0}`, +'sbf41e0db12834133': `对于不访问 userinfo 端点的应用程序,将来自作用域的用户声明包含在 id_token 中。`, +'sbf4ef82e04772a4e': `删除当前待处理的用户。注意,这个阶段不要求确认。使用同意授权阶段来确保用户知道自己的行为。`, +'sbf5f4c5ba679e847': str`通过 + ${0}登录。`, +'sbf9c5c5a8e5efad4': `已失败`, +'sc007cca5af67eae0': `启用时,authentik 将会拦截 Authorization 标头以认证请求。`, +'sc04e92d753742189': `6 位数字,广泛兼容`, +'sc0829ee663ced008': `目录`, +'sc0a0c87d5c556c38': `电话号码`, +'sc0d0890fbd46ef62': `排除服务账户`, +'sc10db51c9bb77d5c': `用户数据库 + LDAP 密码`, +'sc1231049879b8d33': `如果启用,请使用本地连接。需要 Docker Socket/Kubernetes 集成。`, +'sc1589121ae2f5f92': `请输入您设备上显示的代码。`, +'sc15d60377cc8aaac': `当前没有策略绑定到此对象。`, +'sc16e00a7a8b2fde2': `返回`, +'sc19838ca8c135c1b': `品牌设置`, +'sc1a1ff47c058bb09': `事件日志`, +'sc1cb0eef9ed94e6a': `如果选择了组,则会将新创建的用户添加到该组。`, +'sc1ce2f758935ff48': `由 authentik 管理`, +'sc1cfce89ebcf1bf9': `下载签名证书`, +'sc1f4b57e722a89d6': `3:难以猜测:适度防范离线慢速哈希场景。(猜测次数 &lt; 10^10)`, +'sc1feadd25659c94d': `发件人地址`, +'sc21032b0d37882a0': `如果您的 authentik_host 设置与您要登录时使用的网址不匹配,请添加此设置。`, +'sc25edca57df81461': `身份验证`, +'sc265a3e29e1206e4': `事件`, +'sc297b2e13c28ecf9': `允许好友通过 Plex 进行身份验证,即使您不共享任何服务器。`, +'sc2a1a40a1b4b0170': `已成功创建集成。`, +'sc2c70fd56f5d0b48': `Post 绑定,但请求会被自动发送,不需要用户确认。`, +'sc2cedfb22488ccb2': `现代应用程序、API 与单页应用程序。`, +'sc2e03590269d5a10': `新建属性映射`, +'sc2ec367e3108fe65': `Duo 激活二维码`, +'sc2f116c0ea77d58a': `错误消息`, +'sc2f1e5dd74c1b7df': `成功登录`, +'sc3259eb55cf91e8c': `LDAP`, +'sc35581d9c1cd67ff': str`代表 + ${0}`, +'sc381422c585b867f': `快速操作`, +'sc39fb3ff3753d5ab': `隐藏管理映射`, +'sc3c74f5273df459a': `通用`, +'sc3e0c240b159fbce': `已成功创建流程。`, +'sc3e1c4f1fff8e1ca': `此流程已完成。`, +'sc44bae5cde0083fa': `过去一周的操作(每 8 小时)`, +'sc4508175bf6b09dd': `不验证身份的路径`, +'sc498a3b05cfe2b08': `首选:尽可能进行用户验证,但不是必须。`, +'sc4eedb434536bdb4': `需要一个账户?`, +'sc4fdeccf14be5378': `执行`, +'sc54aafeea9c9bab0': `已连接服务`, +'sc554339ffc7b04e7': `已成功创建邀请。`, +'sc5668cb23167e9bb': `或者,如果您当前的设备已安装 Duo,请点击此链接:`, +'sc592307ea80f16b9': `未知`, +'sc5a4711395ffb043': `用来配置 TOTP 身份验证器(即 Authy/Google 身份验证器)的阶段。`, +'sc5f923729564fbf3': `创建角色`, +'sc5fb00b25c7f5a02': `权限`, +'sc615309d10a9228c': `RBAC 目前处于预览状态。`, +'sc647dcb91f6958dd': `短信的发信人号码。`, +'sc6b4ebd37b7a91c7': `令牌和应用程序密码`, +'sc6c57419ad3a01a8': `用于签名令牌的密钥。`, +'sc6c575c5ff64cdb1': `更新 SCIM 提供程序`, +'sc6e8a34361c7c272': `Forward Auth(域名级)`, +'sc741d9ebe07ad103': `签名证书`, +'sc741dfb09d3395f0': `没有可用的应用程序。`, +'sc744f3691efe310d': `隐藏服务账户`, +'sc764ddf60b5149de': `如果 IDP 支持单点登出,则为可选 URL。`, +'sc7707b3ba3a2a7ca': `请求令牌 URL`, +'sc7be80a7f8ec597e': `过期日期`, +'sc816360d6f5a1eeb': `流程描述了一系列用于对用户进行身份验证、注册或恢复的阶段。阶段是根据应用于它们的策略来选择的。`, +'sc8a79fddea3ab4a9': `用于校验验证码响应的 URL,默认为 recaptcha。可以替换为任何兼容替代。`, +'sc8da3cc71de63832': `登录`, +'sc8de93a7dc0d78ba': `客户端类型`, +'sc8f286ac783c385d': `查看部署信息`, +'sc9175cb129fdc306': str`更新 + ${0}`, +'sc926385d1a624c3a': `1:非常易猜测:可以防范受限的在线攻击。(猜测次数 &lt; 10^6)`, +'sc92c1a54034e21cc': `分配`, +'sc92d7cfb6ee1fec6': `已成功更新密码。`, +'sc92ea8fbf9ba06a7': `反向通道提供程序`, +'sc92ed9d5e01d3f24': `通知规则`, +'sc96dd9d2e7b05fc5': `最小长度`, +'sc9c3578cce3cf7a8': `外部主机`, +'sc9cf9ecaf9e5d67e': `基于用户 UUID`, +'sc9f69360b58706c7': `模型已删除`, +'sc9fc206433f67588': `用于描述何处不需要身份验证的正则表达式。每个新行都被解释为一个新的表达式。`, +'sca2879d96f58a39c': `发送一次`, +'sca7cfe2bef51b2a5': `根`, +'sca7fed2bef53cb99': `角色`, +'scab2900019953050': `已成功更新用户。`, +'scae166352a31032c': `配置阶段`, +'scb317851cbcc6b12': `内部主机`, +'scb43f5faeb6a7ca9': `不应进行用户验证。`, +'scb489a1a173ac3f0': `是`, +'scb58b8a60cad8762': `默认中继状态`, +'scb5c9a7cc4ccd68d': `电子邮件信息:`, +'scb6620fcd5bff04c': `高级设置`, +'scbb7d3154da629f3': `OCI URL,格式为 oci://registry.domain.tld/path/to/manifest。`, +'scc286303aa9c6cb0': `同步状态`, +'scc2e420c54dc8089': `绑定已有阶段`, +'scc3487e74c5a3e89': `复制令牌`, +'scc733ba98740038a': `更新输入项`, +'sccbfc4dec0c8d80c': `分配给应用程序`, +'sccc47f82044453f9': `基于哈希过的用户 ID`, +'scd0cfe87af6f2ff2': `严重程度`, +'scd247ffad6e04ac0': `TLS 服务器名称`, +'scd2984ee5552643a': `SSO URL(Post)`, +'scd8062ff5e1326d8': `HIBP 数据库中最多允许 N 次出现。`, +'scd84d10ee9137070': `为角色分配权限`, +'scda8dc24b561e205': `应用程序中存在一个错误。`, +'sce106606ae84d46f': `属性映射`, +'sce8d867ca5f35304': `设置密码`, +'scea1f16238093e35': `执行 Python 代码段以确定是允许还是拒绝请求。`, +'scee721983b1c28d0': `添加已有用户`, +'scef2eb6a2bfe3110': `内部用户可能是企业员工等,有权访问完整的企业版功能。`, +'scef3f4ad80abbd22': `配置前哨如何验证请求的身份。`, +'scef7abb8456b06d6': `检查 zxcvbn`, +'scefe482c547fb3f3': str`基于 + ${0}`, +'scf2790cf3ad89283': `用于 SAML 断言的属性名称。可以是 URN OID、Schema Reference 或任何其他字符串。如果此属性映射用于 NameID 属性,则会丢弃此字段。`, +'scf4afecb0f1e69b2': `无效的登录尝试将降低客户端 IP 及其尝试登录的用户名的分数。`, +'scf5ce91bfba10a61': `请输入您的密码`, +'scfbc2f1396ee8550': `拒绝操作`, +'sd04376c4216c921f': `URL 设置`, +'sd06b47084fec0ec5': `Bearer 令牌`, +'sd07866d9f38b2c50': `执行流程`, +'sd080b2370aa82967': `IP 和用户标识符的信誉。每次登录失败分数都会降低,每次登录成功分数都会增加。`, +'sd0bc94e11935ee5a': `未正确检测到 HTTPS`, +'sd1031bddc66dc495': `将您的用户账户连接到下面列出的服务,以允许您使用该服务而不是传统凭据登录。`, +'sd1146418b344f81f': `更新通知规则`, +'sd1288ca57e221cf9': `更新令牌`, +'sd14a19a19d507f9e': `从 LDAP 导入的所有组的父组。`, +'sd18170637295bace': `额外的用户 DN`, +'sd18b18f91b804c3f': `自定义属性`, +'sd1a5560fde6f2271': `已成功导入提供程序。`, +'sd1f44f1a8bc20e67': `电子邮箱`, +'sd1f81284eeb7b503': `文件`, +'sd20f6cd02c90867f': `应用程序`, +'sd2122c514f0778b5': `允许用户登录并使用此系统`, +'sd216b08bafb297ee': `用于对用户进行身份验证的流程。如果留空,则使用按 Slug 排序的第一个适用流程。`, +'sd21a971eea208533': `供应商`, +'sd2208cd1a767644b': `断开连接`, +'sd2223afb7d6b100d': `类型`, +'sd22bd01bdf28c548': `累计许可证过期时间`, +'sd2c58d7c6dddc515': `SAML 元数据`, +'sd3386a2ef42e80b9': `下载`, +'sd34be0d0fcb39971': `用户的显示名称`, +'sd35ae4be63df1f9f': `选择用于测试密码的后端。`, +'sd39c5e998efecf93': `SAML 属性名称`, +'sd3a853f63f45dcb0': `通过`, +'sd46fd9b647cfea10': `也称为客户端密钥。`, +'sd47f3d3c9741343d': `4:非常难以猜测:高度防范离线慢速哈希场景。(猜测次数 &gt;= 10^10)`, +'sd49099e9522635f4': `许可证`, +'sd4ac926e4ebb1cd7': `常用名`, +'sd503fabef9691134': `使用代理或 Forward Auth(单应用)模式时,将根据正则表达式检查请求的 URL 路径。使用 Forward Auth(域名模式)时,将根据正则表达式检查请求的完整 URL(包括协议和主机名)。`, +'sd539548ca4c71619': `额外的作用域`, +'sd5903cc8de68b3fc': `未找到表单`, +'sd5a4b41c6c883b03': `Audience`, +'sd5ba2d61ee4796fe': `邀请`, +'sd600334ec2c39b74': `创建用户`, +'sd60415c7666859f0': `勾选时,初始值将以与属性映射相同的方式评估。 +如果评估失败,则返回初始值本身。`, +'sd62cfc27ad4aa33b': `基于用户电子邮箱`, +'sd6422f7004036cdd': `OCI Registry`, +'sd6a025d66f2637d1': `传统身份验证器`, +'sd6b8b4156f7df696': `在侧边栏/标题和流程执行器中显示的图标。`, +'sd6c3ddb62de0e8f7': `证书,用于签署发送给服务提供程序的传出响应。`, +'sd6cd7ce2310a73a4': `根据多条规则检查策略请求中的值,这些规则主要用于确保密码强度。`, +'sd71081c23d1cd38b': `检查访问权限`, +'sd73b202ec04eefd9': `未知意图`, +'sd75a9a71309fb387': `检查 haveibeenpwned.com`, +'sd766cdc29b25ff95': `正在使用 Apple 进行身份验证...`, +'sd7728d2b6e1d25e9': `用于创建组的属性映射。`, +'sd7fa99e4d82b374a': `无法通过电子邮件发送恢复链接,用户没有保存电子邮件地址。`, +'sd8051c26e155f043': `为用户分配权限`, +'sd80b0b8aeae3abe3': `用户密码写回`, +'sd8417b41ca27bc8f': `新建阶段`, +'sd891d8463d0ebace': `从头开始重新启动流程`, +'sd8c5339b82b71507': `等待(最短)`, +'sd8d9451f86502d1a': `可用于进行身份验证的设备类型。`, +'sd8f220c999726151': `重定向`, +'sd924045605feea63': `过期`, +'sd947d57c9a9b7108': `在 GitHub 上提出议题...`, +'sd94db2b8c85d10a6': `SLO URL`, +'sd94e99af8b41ff54': `0:过于易猜测:密码有风险。(猜测次数 &lt; 10^3)`, +'sd97d8d0906e6cc47': `不区分大小写的匹配`, +'sd9b556a84ae25690': `已成功发送测试请求。`, +'sd9f67fbf3f86efcf': `添加组`, +'sda4e78c19f5b6f35': `策略需要一段随机时间来执行。这将控制所需的最短时间。`, +'sda5e1499f93146ad': str` + ${0}天前`, +'sda796c87fa97ed4d': `模型名称`, +'sdaca9c2c0361ed3a': `检查此应用程序。`, +'sdae55084f6cb2662': `输入可选的分组名称。分组相同的应用程序会显示在一起。`, +'sdae649fae731e838': `复选框`, +'sdb53ccdd6174e6e3': `成功添加用户。`, +'sdb7b2173869822bc': `必须进行用户验证。`, +'sdb861d9906f18ac2': `抛出错误?`, +'sdbc08adee233f180': `更新 OAuth2 提供程序`, +'sdbccb39a658f0e45': `新建策略`, +'sdc1ef94016f0d855': `已成功更新集成。`, +'sdc30bddeda2f0225': `根据选定的后端验证用户的密码。`, +'sdc323c6af4ae9f01': `已成功复制 TOTP 配置。`, +'sdc5690be4a342985': `令牌已被复制到剪贴板`, +'sdc673e73b5c13aea': `删除`, +'sdc70195469e83e3f': `8 位数字,与 Google 身份验证器等应用不兼容`, +'sdc9a6ad1af30572c': `适用于 nginx 的 auth_request 或 traefik 的 forwardAuth`, +'sdc9e222be9612939': `源已链接`, +'sdcc7b2c109ce9775': `令牌在整个 authentik 中用于电子邮件验证阶段、恢复密钥和 API 访问。`, +'sdce4680288083fe3': `总是返回最新数据,但比缓存查询慢。`, +'sdd1ff479d04ac140': `公开`, +'sdd4bd4224c4e943d': `authentik:语言:显示 authentik 支持的语言设置。`, +'sdd6b8b56a811080e': `证书指纹(SHA256)`, +'sddb040c47daae56b': `绑定已有策略`, +'sddb3b0176f437721': `打开 API 浏览器`, +'sddc8efe94cb8c210': `阶段是引导用户完成流程的单个步骤。阶段只能在流程内部执行。`, +'sddcfc6ab24e3a6ed': `注册`, +'sde0ad51b14f77cf6': `重定向 URI/Origin(正则)`, +'sde1907073fd96017': `(当前会话)`, +'sde2bb5418562c5b2': `未知用途`, +'sde47e4d8b9b21b59': `WebAuthn 身份验证器`, +'sde56783222b527d6': `根据应用程序 Slug,每个提供程序都有不同的颁发者`, +'sde949d0ef44572eb': `需要用户设置过“upn”属性,否则回退到哈希过的用户 ID。仅应在您拥有不同 UPN 和邮件域时使用此模式。`, +'sde9a3f41977ec1f8': str`根据当前 ${0} 名内部用户和 ${1} 名预测的内部用户,估算从此时起一年后的用户数。`, +'sdeb6cee42435dd07': `更新许可证`, +'sdeb90bfd8a80b86b': `要添加的权限`, +'sdefec5401bf67eba': `使用安全密钥证明您的身份。`, +'sdf1d8edef27236f0': `像 YubiKey 这样的“漫游”身份验证器`, +'sdf22dcf939c27cc7': `阶段配置`, +'sdf34a5599d66f85c': `背景图片`, +'sdf4e1c6a2f072600': `允许的计数`, +'sdf87c5661b31359e': `已成功创建角色。`, +'sdfd22a21660f6002': `已成功更新提供程序。`, +'sdfdb58cd232b363d': `Dropbox 制作的密码强度估算器,详见:`, +'se085f35c8a9203a1': `LDAP 源`, +'se09ab93d69f7f45b': `不被任何其他对象使用。`, +'se09d055771f3a11d': `通用 OpenID 连接`, +'se0adaf83627104fb': `总是执行配置的绑定流程,以验证用户的身份。`, +'se0c660020d9cf5b7': `同意过期后的偏移。`, +'se10bbf4cf861c81b': `签名密钥对`, +'se12969ade44cd2b6': `新建身份来源`, +'se16ac750b81fa93d': str`已分配给 + ${0}个对象。`, +'se17fcb1f159ee382': `更新 Plex 源`, +'se19cc57dd8675498': `阈值`, +'se1c85959463f53df': `所有未设置专用租户的域名都将使用此租户。`, +'se1e040b55319a0e8': `超时`, +'se28b5f3fcadaeeb1': `为此用户输入新密码`, +'se291dfd2a59d7842': `策略绑定`, +'se2adaf0371ffcd65': `M2M(机器到机器)身份验证设置`, +'se2b29e6cfe59414c': `用户界面设置`, +'se2b62f7e9017965e': `Traefik(Compose)`, +'se2c3cbf2ed1403f1': `阶段绑定`, +'se2cc93bd2647baec': `静态规则`, +'se2d65e13768468e0': `内部`, +'se2e9f5a32c93e5f7': `上次验证阈值`, +'se2f258b996f7279c': `系统任务异常`, +'se31d92bea7f3a186': `用于编程方式访问 API`, +'se33b158a1ec02a09': str`成功删除 ${0} ${1}`, +'se36b55dfcf5dc80b': `启用 StartTLS`, +'se3e6af2ce24d80e8': `繁体中文`, +'se409d01b52c4e12f': `重试身份验证`, +'se47baf2fd16b9d2b': `模板`, +'se4a9da0295597e73': `SMTP 用户名`, +'se4cd073c125382af': `未同步 / N/A`, +'se50a08ab71bb96ed': `如果输入了有效的用户名/电子邮箱,并且启用了此选项,则会显示用户的用户名和头像。否则,将显示用户输入的文本。`, +'se5498954255620b4': `已成功发送电子邮件。`, +'se5973e7c8ba0fc71': `绑定模式`, +'se5c795faf2c07514': `创建恢复链接`, +'se5cb18408df3284e': `更多信息请看:`, +'se5dc026819a32ff8': str`用户 + ${0}`, +'se5fd752dbbc3cd28': `使用安全密钥`, +'se63f9d833700af49': `会话`, +'se65beb94fffc3c4b': `使用 TLS 1.3+ 的服务器必需`, +'se68398e3c2c760b2': `令牌`, +'se6a13beff646557b': str`成功更新 ${0} ${1}`, +'se6d950402810c34f': `属性映射`, +'se7430794fa89005a': `也称为 Entity ID。 默认为元数据 URL。`, +'se74ce42d41e392ba': `根据域名后缀完成匹配,因此,如果您输入 domain.tld,foo.domain.tld 仍将匹配。`, +'se78364ee913ae2bd': `新建前哨集成`, +'se7e1ababbc4868b8': str` + ${0}秒`, +'se80dd66f23b4fc39': `即使用户在流程上下文中,仍然创建新用户。`, +'se8987bdfb35e46b2': `消费者 Key`, +'se8a81c75b6e30a33': `要检查的字段键,可以使用输入阶段中定义的字段键。`, +'se8dca0132c66ae03': `权限`, +'se99efc0873031976': `浏览器选项卡中显示的图标。`, +'se9b1fec72ffd8f48': `本地`, +'se9c07cf256774d81': `托管令牌的编辑已被禁用`, +'se9d0f12f95b14095': `可选,逗号分隔的替代名称。`, +'se9e9e1d6799b86a5': `浏览器不支持 WebAuthn。`, +'sea2f00b34b385a43': `已成功更新设备。`, +'sea3bfc143ced73db': `NameID 属性`, +'sea4f08110bb8f15d': `删除`, +'sea91c57b3d3969fe': `系统状态`, +'sea9fc40dfd1d18b1': `手动配置 RADIUS 提供程序`, +'seab35681cbf36755': `可选的预设输入初始值。 +在创建固定选项字段时,启用以表达式解释, +并返回多个默认选项的列表。`, +'seb0805249661d15b': `向执行器返回错误消息和类似的质询`, +'seb0c08d9f233bbfe': `请输入您通过短信收到的验证码`, +'seb5ba88f21937c98': `检查前哨。`, +'sebda1d54a3f9f967': `令牌 URL`, +'sebf44d2471b608ad': `经过身份验证的用户用来配置此阶段的流程。如果为空,用户将无法配置此阶段。`, +'sec1808532fe107b9': `允许用户根据属性使用应用程序、强制使用密码标准以及选择性地应用阶段。`, +'sec5cdfa358f9dbf7': `警告:将用户添加到所选的组会使其获得超级用户权限。`, +'sec7443a45fd141e5': `输入`, +'sec97cdaf7af8648b': `使用 YAML 或 JSON 设置自定义属性。`, +'secbfd13bdae95a59': `用户设置流程`, +'secdb4b4c4e66aa38': `组信息`, +'sece294cd51a85745': `确定会话持续多长时间。默认为 0 秒意味着会话持续到浏览器关闭为止。`, +'sed02f831e653deb3': `过去一周的登录次数(每 8 小时)`, +'sed3512fe4560c7f4': `创建未激活用户`, +'sed8d4c3fd5f60e1f': `探索集成`, +'sede0abbf2b612812': `Webhook(通用)`, +'see2bcbc11bb91960': `已成功更新实例。`, +'see3ff55262fd6500': `用户被重定向到以同意授权的 URL。`, +'sef3d102324bf8561': `创建蓝图实例`, +'sef49aec68fd1dc66': `名称`, +'sef50d248448e0df1': str`是( + ${0})`, +'seffdf887fed7f668': `证书指纹(SHA1)`, +'sf05c700a1250824e': `已确认`, +'sf05e384059a0a7c1': `请求被转发到的上游主机。`, +'sf12d588a76ba7e51': `确实要清除流程缓存吗? +这将导致所有流程在下次使用时重新评估。`, +'sf1868dc19e3917bb': `西班牙语`, +'sf1e9d421f35b51e5': `应用程序`, +'sf1ec4acb8d744ed9': `注意`, +'sf22a28f83cc45fcc': `用来配置基于 Duo 的身份验证器的阶段。此阶段应该用于配置流程。`, +'sf22f7f8a9309b4ed': `检查应用程序访问权限`, +'sf232d42142eacc23': `启用后,邀请将在使用后被删除。`, +'sf29883ac9ec43085': `应用密码`, +'sf2ef885f7d0a101d': `演示向导`, +'sf325a4adba4d6278': `组成员资格字段`, +'sf339673f0f76a8bd': `公钥,从 https://www.google.com/recaptcha/intro/v3.html 获取。`, +'sf34026321b35315c': `没有定义应用程序,或者您无权访问任何应用程序。`, +'sf36170f71cea38c2': `连接性`, +'sf3981f36525b0dbd': `连接将被删除`, +'sf3f9a0feaf083207': `已发送到组`, +'sf3fec8353106ac2f': str`OAuth 源 + ${0}`, +'sf4122b220926be97': `版本`, +'sf417c13d7a0f7995': `复制下载 URL`, +'sf45a0d2f00bcc6ff': `未定义选项卡`, +'sf466142da6a65052': `模拟身份`, +'sf485014051ad0cf7': `已成功分配权限。`, +'sf4de1644dcdb53d5': `用于 HTTP-Basic 标头的密码部分的用户/组属性。`, +'sf52479d6daa0a4a8': str`根据当前 ${0} 名外部用户和 ${1} 名预测的外部用户,估算从此时起一年后的用户数。`, +'sf533f13321fee530': `在流程规划过程中评估策略。`, +'sf53a78d889b6c775': `由 authentik 管理(已发现)`, +'sf54c562d8a10ce77': `也称为 EntityID。`, +'sf55c7c06dbc2c8c6': `已成功创建租户。`, +'sf55d28d4dff0e41b': `设置示例如下所示:`, +'sf56998949bdf6b33': `停用`, +'sf58825457d61c429': `预测内部用户`, +'sf5cbccdc6254c8dc': `配置代理提供程序`, +'sf63c89c0604c288f': `本地路径`, +'sf66389b04fcc219c': `外部用户可能是外部顾问或 B2C 客户等。这些用户无权访问企业版功能。`, +'sf679b7a62808287e': `过期`, +'sf693300708a40d2c': `创建一个新策略。`, +'sf6d46bb442b77e91': `额外的作用域`, +'sf6e1665c7022a1f8': `密码`, +'sf6eb148db23d19de': str`删除 + ${0}失败: + ${1}`, +'sf71dba2c30283a54': `过期?`, +'sf76ead4c4708dd06': `可选的简短提示,用来描述期望的输入值。 +在创建固定选项字段时,启用以表达式解释, +并返回多个选项的列表。`, +'sf7949fbbab2eb566': `不同浏览器处理会话 Cookie 的方式不同,即使关闭浏览器,也不能保证它们会被删除。`, +'sf79f8681e5ffaee2': `分配到新用户`, +'sf8008d2d6b064b95': `Forward Auth(域名级)`, +'sf80e9547166117e6': `基于用户 UPN`, +'sf813a72d8fadd765': `在这种情况下,您需要将身份验证 URL 设置为 auth.example.com,并将 Cookie 域名设置为 example.com。`, +'sf8c76d5fb408de7b': `您将被重定向到以下 URL。`, +'sf8f49cdbf0036343': `配置错误`, +'sf90be97cb08f3d5a': `占位符`, +'sf9aee319a006c9b4': `添加`, +'sf9b1c0661a02d9f9': `配置`, +'sf9bddaf910f4eea5': `生成证书密钥对`, +'sf9e61f4f8e90f0f1': `更改状态`, +'sf9ebf11ac2645820': `未找到许可证。`, +'sf9f2c719a04066ec': `应用`, +'sfa88f413e287bb0f': `阶段类型`, +'sfa8a1ffa9fee07d3': `SAML(安全断言标记语言)`, +'sfab527528ea64618': `匹配事件的客户端 IP(严格匹配,要网络匹配请使用表达式策略)。`, +'sfac6f995c7670559': `未绑定阶段`, +'sfad8af8ce38104a3': `最长使用期限(单位为天)`, +'sfad9279cc42c6b61': `此流程需要身份验证等级。`, +'sfae395b94a5a0040': `蓝图`, +'sfae9f4ea5749a36b': `额外的组 DN,添加到 Base DN 起始处。`, +'sfb852dd507c25c24': `避免:身份验证器不应该创建专用凭据`, +'sfbadb77fbc61efb8': `上个月中每天创建的用户`, +'sfbaeb0de54fbfdbb': `授权此提供程序时使用的流程。`, +'sfbc59ff17a73503d': `用户路径`, +'sfc31264ef7ff86ef': `适用于按根域名配置的 nginx 的 auth_request 或 traefik 的 forwardAuth`, +'sfc400b2d71e49d28': `已成功创建策略。`, +'sfc8bb104e2c05af8': `用户过滤`, +'sfcebd18506f1e535': `流程`, +'sfcfcf85a57eea78a': `TOTP 设备`, +'sfd13ca8ebd857c2e': `创建新应用程序`, +'sfd1af96798dd8a5f': `公钥`, +'sfd44ce578f643145': `拉取对象失败。`, +'sfd586951c75eb291': `应用密码。`, +'sfdedc3b0b2b7ce3d': `属性映射`, +'sfe199b2564b66054': str`在服务器上验证断言时出错: + ${0}`, +'sfe1c86b42ba13376': `请输入您的 TOTP 代码`, +'sfe211545fd02f73e': `验证`, +'sfe388f0313f52da2': `协议设置`, +'sfe629863ba1338c2': `连接错误,正在重新连接……`, +'sfe6977a3aea3ee6e': `认证已存在用户时所使用的流程。`, +'sfe906cde5dddc041': `配置 SAML 提供程序`, +'sfe938c1585e0bf68': `这些绑定控制是否将此阶段应用于流程。`, +'sfe99a8caa70232ab': `身份验证类型`, +'sfeb779d4ccbc5a0e': `恢复流程`, +'sfeb82261bcf99edd': `健康的前哨`, +'sfee06600c15082a9': `从当前会话中移除用户。`, +'sfee91e08b8b47477': `允许的服务器`, +'sfefce784ec55868f': `选择一个对象。`, +'sff0ac1ace2d90709': `与 nginx 的 auth_request 或 traefik 的 ForwardAuth 一起使用此提供程序。每个应用程序/域名都需要自己的提供程序。此外,在每个域名上,/outpost.goauthentik.io 必须路由到前哨(在使用托管的 Outpost 时,这已经为您处理好了)。`, +'sff38031cf061e3ae': `将会首先遵循 ?next 参数,如果不存在则显示一条消息`, +'sff3b708e23bb96b2': `在阶段即将呈现给用户时评估策略。`, +'sff50532a2d85e32e': `更改密码`, +'sff5bb7742c2896c8': `目标`, +'sff69c1a637f899a6': `Bind 流程`, +'sff930bf2834e2201': `服务账户(内部)`, +'sff945d3f59b93c5e': `MFA 设备`, +'sffa171e11d4ae513': `传输`, +'sffa721bb6aa3128d': `搜索...`, +'sffc14b8200a9f938': `直接查询`, +'sffd2e553143d1b0e': `按住 ctrl/command 键可选择多个项目。`, +'sffd5481034a1bd41': `为应用程序和用户提供 LDAP 接口以进行身份​​验证。`, +'sffeef5b119d8625c': `已成功创建映射。`, +'sfffb0d0958bfbc42': `管理用户`, +'sfffba7b23d8fb40c': `此阶段会根据 Google reCaptcha(或兼容的)服务检查用户的当前会话。`, + }; + \ No newline at end of file diff --git a/web/packages/localization/src/locales/zh-Hant.js b/web/packages/localization/src/locales/zh-Hant.js new file mode 100644 index 000000000..31389ce85 --- /dev/null +++ b/web/packages/localization/src/locales/zh-Hant.js @@ -0,0 +1,1714 @@ + + // Do not modify this file by hand! + // Re-generate this file by running lit-localize + + import {html} from 'lit'; + import {str} from '@lit/localize'; + + /* eslint-disable no-irregular-whitespace */ + /* eslint-disable @typescript-eslint/no-explicit-any */ + + export const templates = { + 's004e9a2c90f23900': `持久`, +'s00c8354318addfa0': `政策/策略`, +'s01088b6625d2443b': `回调 URL`, +'s01a3a7f48ee4edaf': `可选注册流程,链接在页面底部。`, +'s026555347e589f0e': `对象唯一性字段`, +'s02839b01844d6ca8': `创建日期`, +'s028be8989873f001': `授权 URL`, +'s02b3fade1795d03f': `通过端口 389 连接到 LDAP 服务器:`, +'s02b632a9ac24a824': str`最后显示: + ${0}`, +'s030ac0829bb50a49': str`策略 + ${0}`, +'s037bc6d25a03c3c8': `已成功更新传输。`, +'s0382d73823585617': str` + ${0}: + ${1}`, +'s03907d7a66c6164e': `应用的显示名称。`, +'s03970aa76a09982d': `整合`, +'s039b6434e8a75560': str`删除 + ${0}`, +'s03f42eea72154959': `用户名`, +'s03f49e598ffb11cc': `波兰语`, +'s03fb3fa232f0434a': `客户端密钥`, +'s03fd2c252ad7972a': `电子邮件恢复链接`, +'s042baf59902a711f': `策略`, +'s04440099d97c0bef': `编辑 Stage`, +'s045c3b86aae073c1': `删除账户`, +'s04b7f8d6aaef3756': `所选组中的用户可以执行搜索查询。如果未选择任何组,则不允许 LDAP 搜索。`, +'s04c1210202f48dc9': `请输入您的电话号码。`, +'s04c5a637328c9b67': str` + ${0}- + ${1}of + ${2}`, +'s05e395ff60af047b': `警告:提供者未被任何 Outpos 使用。`, +'s0639662111324466': `策略引擎模式`, +'s065604a41e9d1584': `更新 OAuth 源`, +'s068d4dd16d9106d0': `图标`, +'s06c163334767a381': `创建服务账户`, +'s06c92148da82be0d': `更改你的密码`, +'s06df3c3b6a503da8': `写入此值的用户对象的字段。`, +'s072c6d12d3d37501': `HTTP-Basic 用户名密钥`, +'s079d388d3cbfa54f': `检查日志`, +'s081d3c4b47a6ff83': `如果已设置,则用户可以使用此流程自行取消注册。如果未设置流量,则不显示选项。`, +'s086e1bbe7c97ea16': `搜索基础`, +'s08a8716c214a0efb': `PEM 编码的证书数据。`, +'s08c91cb1a2cd3d97': `选中后,密码字段将显示在同一页面上,而不是单独的页面上。这样可以防止用户名枚举攻击。`, +'s091d3d07b5b3076f': `OK`, +'s09205907b5b56cda': `No`, +'s09240e07b5b8d640': `ID`, +'s09242207b5b8f83c': `IP`, +'s09353907b5c79284': `To`, +'s09810653c832e935': `单击以更改值`, +'s098237f7ccb4dc4a': `已成功清除流程缓存`, +'s0a0ca63b967f1630': `源`, +'s0a11c2ffb8309d1a': `未找到`, +'s0a39e4f61ccafacb': `已成功更新规则。`, +'s0a5401d4419f9958': `使用源`, +'s0a63a8be0b2b422c': `Workers`, +'s0a72e65aef45b1e8': `服务器 URI`, +'s0ae3395d8f48e624': `成功生成恢复链接`, +'s0af6301e76e2a2a5': `已成功更新租户。`, +'s0b15ff11a0049cfd': `可以发出绑定请求和搜索请求的 LDAP DN。`, +'s0b55a57f473ab8af': `更新组`, +'s0c135eba6017d94f': `标签显示在提示符旁边/上方。`, +'s0c3ac7f9383a8cfd': `暂时的`, +'s0c8c4d2bb0a9162a': `可选的无密码流程,链接在页面底部。配置后,用户可以使用此流程向 WebAuthn 身份验证器进行身份验证,而无需输入任何详细信息。`, +'s0d4268408182491d': `使用 TLS`, +'s0d5d05bf3d122ced': `Twilio`, +'s0dfc6838c9d07677': `配置流程`, +'s0e03fe2dc5b9164b': `如果您的 authentik 实例正在使用自签名证书,请设置此值。`, +'s0e15f678445dfc45': `Stage 用于验证任何身份验证器。此阶段应在身份验证或授权流程中使用。`, +'s0e516232f2ab4e04': `通过短信发送的令牌。`, +'s0eaf755fa88c8d97': `阶段`, +'s0f2e070d38cd36df': `TLS 身份验证证书/SSH 密钥对`, +'s0f4c6540c30bd8b4': `指定`, +'s0fbf6dc6a1966408': `下一步`, +'s10356fd921037fbf': `默认流程`, +'s107bf77afb93c9b8': `每当策略创建并匹配特定事件时,都会发送通知。`, +'s10922bd0ac765562': `对象将被删除`, +'s10929ca568ae10bc': `提供商`, +'s10d2dbc4613397f0': `已更新`, +'s11204eeb1e27ea8f': `ACS URL`, +'s11326fd2590f4e5e': `默认`, +'s113c05ef9996ca4b': `嵌入式 outpost 配置不正确。`, +'s119498d4e4cf59a6': `受影响的模型:`, +'s11bc220e8fa9d797': `授权`, +'s122f308b5f198ba7': `已成功创建证书密钥对。`, +'s124f93a61ee772d6': `高级协议设置`, +'s128e7f5f34bfa155': `Stage 用于配置静态身份验证器(即静态令牌)。此阶段应该用于配置流程。`, +'s1298e361e40ee1c5': `停止模拟`, +'s12de1c06a1e18cc5': `文本(只读):简单文本输入,但无法编辑。`, +'s13de04774ff0f210': `Docker URL`, +'s14401ff4a0cba208': str`更新失败 + ${0}: + ${1}`, +'s145483489b87a622': `退出 URL`, +'s14622ee6de586485': str`已尝试以 + ${0}身份登入`, +'s14c552fb0a4c0186': `应用程序需要以下权限:`, +'s14c8f36e180d6bbc': `已成功创建阶段。`, +'s1575a15cee001915': `已成功创建传输。`, +'s164be9a7537b99f6': `配置不同域的可视化设置和默认值。`, +'s1665454e31e14941': `X509 Subject`, +'s16b9446e3a70e1f4': `属性`, +'s16bc281dce5685e8': `身份验证器`, +'s17a679298216aca9': `应显示选择的源以供用户进行身份验证。这只会影响基于 Web 的源,而不影响 LDAP。`, +'s17d1e337f6c11c1e': `在 id_token 中包含声明`, +'s17f3eaf3b07ece26': `警告:应用程序不使用提供程序。`, +'s1823625e6f831d73': `定制`, +'s1828fbfc2c56379c': `检查 IP`, +'s18b910437b73e8e8': `返回设备选择器`, +'s197420b40df164f8': `跟随重定向`, +'s19b09f4fc72175d1': `创建一个新身份来源。`, +'s1a2797874b7fe852': `nameID 属性映射`, +'s1a2f8f4b3861583b': `创建 Outpost`, +'s1ac2653a6492b435': str` + ${0},应该是 + ${1}`, +'s1b07757762cda372': `清除策略缓存`, +'s1b14062c44e5ef45': `即将到期`, +'s1b42b49e7b392013': `更新邀请`, +'s1b448a4ea79d4eef': `未找到任何事件。`, +'s1b606acd76ba2c4c': `更新租户`, +'s1b783856ab4aaaf3': `无需进行其他设置。`, +'s1b88fa3df4423292': `最后的 IP`, +'s1bf56ee106e9e711': `成功创建绑定。`, +'s1c2a173db0e1ec61': `将与此筛选器匹配的对象视为用户。`, +'s1c2fd8097e14a608': `恢复流程。如果留空,则使用按辅助信息块排序的第一个适用流程。`, +'s1c33d22492029aba': `对象字段`, +'s1c6ba8d100453392': `发送的令牌的有效时间(以分钟为单位)。`, +'s1c8916418c334935': `ID 令牌`, +'s1c8e9816dcae6d9c': `对于 GIDNumbers 来说,这个数字被添加到从 group.pk 生成的数字中,以确保对于 POSIX 组来说,这个数字不会太低。默认值为 4000,以确保我们不会与本地组或用户主组 GIDNumber 发生冲突`, +'s1cc0e66dbd2b5502': `流程设置`, +'s1cd198d689c66e4b': `API 访问权限`, +'s1cd264012278c047': `流程执行`, +'s1cd617e7bbe278d0': `提示用户同意。同意可以是永久性的,也可以在规定的时间内过期。`, +'s1cf2298d92c327a6': `我的应用`, +'s1d30ff9ba938e68d': `等待 (最多)`, +'s1d49ec5030447643': `Outpost(s)`, +'s1d6e16d86961c782': `证书密钥对`, +'s1d9d6c5b424fdc1f': `初始登录请求发送到的URL。`, +'s1e36813d3504ed48': `已成功更新绑定。`, +'s1e4c3de6e12cd87b': `用户名:与文本输入相同,但检查并防止用户名重复。`, +'s1efbfc3937d565bd': `背景`, +'s1fc9c70610c4c67d': `失效`, +'s2035f889f576bca6': `连接设置`, +'s207e8b106806d7e4': `Bind 阶段`, +'s20a0ce62823bfa97': `之后删除临时用户`, +'s211b75e868072162': `将此设置为您希望身份验证有效的域。必须是上述 URL 的父域名。如果你以 app1.domain.tld、app2.domain.tld 的身份运行应用程序,请将其设置为 “domain.tld”。`, +'s216eb300543edd91': `选择用户必须是哪个服务器的成员才能进行身份验证。`, +'s21b3058faf874368': `过时的 Outposts`, +'s21d0e290c51a8ef9': `符号字符集`, +'s21e3c227cc2c5873': `分隔符:静态分隔线`, +'s2221fef80f4753a2': `TLS 验证证书`, +'s2236dc563c2dbf76': `(格式: hours=-1;minutes=-2;seconds=-3).`, +'s22b10ed263b96194': `用于测试的虚拟阶段。显示一个简单的 “继续” 按钮,并且始终通过。`, +'s23fd4411419fca06': `客户端可以指定的访问这些属性的范围。`, +'s240ff02ce3a53dee': `集成密钥`, +'s24211f319e5b7e98': `包含唯一标识符的字段。`, +'s2430e000b7cfefd0': `仅发送一次通知,例如在向聊天频道发送 Webhook 时。`, +'s2474e7fb1aec9f05': `测试`, +'s24875d5475e82526': `已成功更新源。`, +'s24f405197ede5ebb': `使用 plex 重新进行身份验证`, +'s252a52330d32b900': `元数据`, +'s2536ac8d32d2e63f': `事件将从数据库中删除的持续时间。`, +'s2543cffd6ebb6803': `系统任务执行`, +'s256b8452664ccae4': `配置如何创建 NameID 值。如果留空,将遵守传入请求的 NameIdPolicy。`, +'s25d0cd75377daf75': `转发身份验证(域级别)`, +'s25ec2846f6b88214': `Webhook 映射`, +'s26513c9dd154f041': `始终需要征得同意`, +'s2656433a3b1f7e86': `我的应用`, +'s26bf2730430efbea': `Subject 模式`, +'s271a7e04ff9865b1': `控制 authentik 如何公开和解释信息。`, +'s27586544c447d9e3': `用户事件`, +'s276d751eb7a186cc': `API 主机名`, +'s27976e94b05c6970': `启用`, +'s27ac7a47b390e3cb': `证书密钥对`, +'s2801a48ceac691b3': `注册流程`, +'s289fce7e694b98ac': `SMTP 端口`, +'s28f270859c5f4d51': `docker 主机的主机 IP`, +'s29315e374008d0c5': `添加到该组的用户均为超级用户。`, +'s293801033f9fc0d0': `创建一个新阶段。`, +'s293aa6a6446fb153': `出口`, +'s293ab4331c1dd387': `这是用于基本身份验证的用户名,或者与不记名令牌一起使用时的令牌`, +'s296fbffaaa7c910a': `必需。`, +'s297a2075bd7e40db': `NameID 政策`, +'s29ec5e7889f4787f': `已成功更新策略。`, +'s2a0f60e74b478804': `摘要算法`, +'s2a12e0b5527ff99a': `启用此开关将创建一个以用户命名的组,用户为成员。`, +'s2a2d3e7c379e9518': `证书主题`, +'s2a369bc2febb5d55': `如果未指定显式重定向 URI,则将保存第一个成功使用的重定向 URI。`, +'s2a64d2dca3da9b0e': str`组 + ${0}`, +'s2a957e843960b604': `“密码” 字段`, +'s2af5754090898640': `断言不在当天或之后有效`, +'s2b088ba65eb69b7e': `表单域的名称,也用于存储值。`, +'s2b1bc31276c4c477': `策略/组/用户绑定`, +'s2b7dbba348234a36': `验证码已通过短信发送给您。`, +'s2b952e9dc99cbded': `登入密码会自动从 LDAP 同步到 authentik。启用此选项可将 authentik 中的密码更改回写至 LDAP。`, +'s2ba5f4d8f3bd7c57': `订购`, +'s2bc8aa1740d3da34': `阶段对象`, +'s2be6121210e2a2f8': `提示`, +'s2c0de3d35a7bc784': `相关对象`, +'s2c8189544e3ea679': `重试`, +'s2ceb11be2290bb1b': `取消`, +'s2d34c87f67f66c6a': `Windows`, +'s2d46e3a9ee8e0e7e': `更新 LDAP 提供程序`, +'s2d5f69929bb7221d': str` + ${0}(“ + ${1}”, 类型为 + ${2})`, +'s2e3ef41a0edd8608': `范围`, +'s2ec94a7c7f5bcd1b': `分组对象过滤器`, +'s2f1bcfcc5cae94c3': `创建流程`, +'s2f58bb9905d2b76f': `用于身份验证的证书/密钥。可以留空,留空表示不进行身份验证。`, +'s2f995efbb1e46b18': `自动检测(基于您的浏览器)`, +'s2fc3eb68c7ced3af': `用户信息网址`, +'s303b5e552246e613': `根据一组条件匹配事件。如果任何配置的值匹配,则策略将通过。`, +'s3079ca1184e77573': `已成功创建组。`, +'s30d1f50f476c3f48': `流程概述`, +'s310d8757ce319673': `登入`, +'s31a2d43bc1cf1790': `尚未同步。`, +'s31d15c6f16951464': `身份验证 URL`, +'s31d7f3ba04d306a5': `SSO 网址`, +'s31ebc5431d677f5d': `SMTP 主机`, +'s31fba571065f2c87': `确保将这些令牌保存在安全的地方。`, +'s322e34cfcba47155': `不可用`, +'s32a3efa23718e713': `API 请求`, +'s32f04d33924ce8ad': `策略执行`, +'s332a5235948c1a1d': `同意`, +'s3330adb3f0922f7b': `用户数据库+应用程序密码`, +'s33683c3b1dbaf264': `要改用 SSL,请使用 'ldaps: //' 并禁用此选项。`, +'s3380d7cbcebe50f6': `密码阶段`, +'s33aa05f435c29753': `更新证书密钥对`, +'s33d48fb745f4d4ae': `大写字符的最小数量`, +'s33f85f24c0f5f008': `保存`, +'s341ab68d4130de20': `没有 workers 连接。后台任务将无法运行。`, +'s342eccabf83c9bde': `计划历史记录`, +'s344c4a2a48997e18': `.yaml 文件,这些文件可以在 goauthentik.io 上找到,也可以通过 authentik 导出。`, +'s34b23ebbac9f6ab9': `用户验证`, +'s34be76c6b1eadbef': `警告`, +'s351246c52548086a': `下载证书`, +'s354e0a9f146d2869': `简体中文`, +'s3576aead3e68c5c9': `出口流程`, +'s35e6e60e83a8c003': `失效流程`, +'s35f9df7668d5fa79': `查看部署文档`, +'s35fac2e5677d55cd': `指定是否应将此用户视为活动用户。取消选择此选项,而不是删除帐户。`, +'s3616cc78631f5893': str`警告:你即将删除登录的用户 ( + ${0})。继续,风险自负。`, +'s3626433940124897': `网站图标`, +'s3643189d1abbb7f4': `代码`, +'s3687049d1af562c4': `复制`, +'s36cb242ac90353bc': `字段`, +'s374abf1a54d87b67': `执行过程中显示背景。`, +'s3794c596ee7964ad': `更新密码`, +'s37cbecaec58e2192': `模式`, +'s37d9155b9f4cc7bd': `配置如何填写 ID 令牌的颁发者字段。`, +'s37dbfe2133b74d2d': `将占位符解释为表达式`, +'s37eb2f1b6e3c19c2': `协议设置`, +'s382a2aa3984474dd': `创建`, +'s38887b94b3320533': `邮箱地址`, +'s388ee787bbf2271b': `任务已完成,但出现警告`, +'s38c72e1cf120b8d8': `创建邀请`, +'s38f774cd7e9b9dad': `注册。`, +'s3914cb410fca44d4': `导入`, +'s3926da5b20cdf3b6': `用于请求初始令牌的 URL。只有 OAuth 1 才需要此网址。`, +'s399cc2d67d92e957': `机密`, +'s39c8c0bf4d927c9f': `允许 IDP 发起的登入`, +'s3a135682bd30bdbb': `创建应用程序密码`, +'s3a3fae99373ce56b': `选择客户端可以使用哪些作用域。客户端仍然需要指定访问数据的范围。`, +'s3a5fec3d73ac9edc': `创建证书密钥对`, +'s3ab772345f78aee0': `流程检查器`, +'s3b34d9930e33bd46': `系统任务`, +'s3b58f8d2155ae90c': `字段键`, +'s3b68883dda2682ed': `断言为空`, +'s3b7b519444181264': `验证策略`, +'s3baf512851453712': `Twilio 账户 SID`, +'s3bb51cabb02b997e': `格式:"weeks=3;days=2;hours=3,seconds=2"。`, +'s3bfa0258999fb629': `否定绑定的结果。消息不受影响。`, +'s3c6de3f257e0c912': `请求`, +'s3d197283cb019b5a': `概述`, +'s3d34068a31cab30b': `内部主机 SSL 验证`, +'s3de6db803012016a': `LDAP 属性映射`, +'s3e211d29fa10f843': `引用将被设置为空值`, +'s3e3bb9e7cb1de4fd': `选择要添加的用户`, +'s3e59b8b2debf0209': `此阶段可以包含在注册流程中以接受邀请。`, +'s3e87ce98ba3c4d80': `配置令牌的有效期限。`, +'s3ed5607ad78d4224': `清除缓存`, +'s3ef3c252ada78076': `登入失败`, +'s3feea7b49673bef2': `没有日志消息。`, +'s3ffa320128991a45': `为分配的应用程序提供对 SAML 和 OAuth 等协议的支持。`, +'s40b034801fcb843b': `根据用户和/或 IP 信誉允许/拒绝请求。`, +'s40b80eb4cc1f0e0c': `编辑绑定`, +'s40bf151b56a64f51': `服务器和客户端之间的距离超过5秒。`, +'s40e2c72dae905a50': `静态:静态值,按原样显示。`, +'s4165cd175bc4c0c4': `过期时间`, +'s416a540b16275f2e': `创建组`, +'s41706a202b6c40f1': `域`, +'s41b105819b67ee7a': `阶段`, +'s41e035c4bb8d15f2': `常规系统状态`, +'s4207178ba0b99418': `有较新版本的前端可用。`, +'s420d2cdedcaf8cd0': `正在使用 Plex 进行身份验证...`, +'s427f788ff333f45b': `启动 URL`, +'s42a1ebe17efda727': `字段`, +'s42cbd8dca939a9c7': `查看`, +'s42fc6f4b64eff5d9': `可用于提示阶段的单个提示符。`, +'s43be3ce2439ffe9c': `最低位数`, +'s4409ada9c5c2a7f8': `不活跃`, +'s4414164d120de61a': str`以下对象使用 + ${0}`, +'s44536d20bb5c8257': `此设置仅影响新事件,因为过期时间是按事件保存的。`, +'s44c90273f08fb718': `将此提供程序与 nginx 的 auth_request 或 traefik 的 ForwardAuth 一起使用。每个根域只需要一个提供程序。您无法执行每个应用程序的授权,但不必为每个应用程序创建提供程序。`, +'s44ea4e9a81ce730d': `电子邮件阶段`, +'s455de2f740b073fd': `事件信息`, +'s457c639088c547c5': `已成功创建提供商。`, +'s45935843b1b5b496': `表单未返回提交承诺`, +'s45960273852a61b2': `日期时间`, +'s45cb501abd43ba52': `生成`, +'s45f9e7ce0897f9e5': `租户`, +'s4660da32fb311ac0': `Taiwanese Mandarin`, +'s473f0143efa3f706': `这些策略控制哪些用户可以访问此应用程序。`, +'s47490298c17b753a': `在您的设备上接收推送通知。`, +'s4751df77cfd8a5f9': `检查用户名`, +'s476ffc07e6d66f18': `已成功更新令牌。`, +'s47a4983a2c6bb749': `模型已更新`, +'s47bd537a3bcebf19': `下载私钥`, +'s4802636d55022ed3': `默认?`, +'s480c6c40a248f7d2': `使用 SSL`, +'s482ae78809a6822b': `经过身份验证的用户用来配置其密码的流程。如果为空,用户将无法配置更改其密码。`, +'s485c05d34eb00415': `删除当前设置的图标。`, +'s48cf8fd56b1237ed': `已成功更新流程。`, +'s494e1ed913d9351a': `编辑组`, +'s49730f3d5751a433': `载入中……`, +'s4a1e774ab25aa232': `内部主机`, +'s4a26798e1c3c37dd': `验证上游服务器的 SSL 证书。`, +'s4a6aa26413287069': `已成功更新详情`, +'s4a87445f3108db7c': `选择以下源之一进行登入。`, +'s4aee34a672e5cfc0': `由... 创建`, +'s4af8a3ce5a600855': `让用户使用其用户名或电子邮件地址来标识自己。`, +'s4b5af7736aedd6c1': `私钥可用吗?`, +'s4c24b2baa377e870': `已成功更新证书密钥对。`, +'s4c4c504a48c3b7bd': `Traefik (Standalone)`, +'s4caed5b7a7e5d89b': `英语`, +'s4cdae7635e757555': `用户可以用来标识自己的字段。如果未选择任何字段,则用户将只能使用源。`, +'s4d00e5de1c8213b7': `客户端 ID`, +'s4d00f1de1c82281b': `客户端 IP`, +'s4d182bae8a578010': `基于短信的身份验证器`, +'s4d31797d81e9cea3': `明确同意`, +'s4dcb9288f7e9e4d7': `将用户分组在一起,并根据成员资格为他们授予权限。`, +'s4e28e2899e08a5f8': `确定 authentik 如何将响应发送回服务提供商。`, +'s4e474b9e2e737dd1': `更新代理提供程序`, +'s4eb514ebcb80553d': `家长`, +'s4f1ad6b48a5df506': `日志`, +'s4f1af2b48a5e249a': `Logo`, +'s4ff2c202b4e5bdc5': `内置`, +'s502884e1977b2c06': `下一阶段`, +'s502d2473587032e1': `不发送首选项`, +'s506beb486fa41241': `应用程序授权`, +'s50719dda8f90abf4': `在 URL 中可见。`, +'s50911ec1c8aee99a': `找不到匹配的事件。`, +'s50c312bea93b6925': `编辑策略`, +'s50ebe627b4bc7d02': `绑定`, +'s5116b89f7db1fbec': `允许的重定向 URI`, +'s512957aa09384646': `启动`, +'s5140d157642d7362': `无(规则已禁用)`, +'s5170f9ef331949c0': `向用户显示任意输入字段,例如在注册期间。数据保存在流程上下文中的 “prompt_data” 变量下。`, +'s51da4de00984fe51': `API 身份验证用户名`, +'s51ea3a244c781b1f': `已创建对象`, +'s51f92b6fa76656ca': `不健康的 Outposts`, +'s523160b433311521': `设置后,用户可以配置他们个人资料的详细信息。`, +'s52b500138a2d2b8a': `更新 LDAP 源`, +'s53ad3455d9523b54': `创建用户`, +'s544142ce35050751': `测试策略`, +'s545d99afa61e4095': `被视为符号的字符。`, +'s5462c7f56ed65e6c': `电子邮件:具有电子邮件类型的文本字段。`, +'s54cd35e6224ba65d': `默认情况下,只为源显示图标。启用此选项可显示他们的全名。`, +'s54e7a23a95d99649': `文本:简单文本输入`, +'s5515a897ae98bed9': `证书`, +'s554ce268e9727e79': `您只能选择与 Outpost 类型匹配的提供商。`, +'s5572ac4d2208f5ec': `已成功创建提示。`, +'s55787f4dfcdce52b': `签名密钥`, +'s5590dbf7e425789d': `标签`, +'s5599c62bb78c631f': `管理员界面`, +'s55d731be1ef66efe': `Base DN`, +'s55fa598b754cc3cc': str` + ${0}( + ${1})`, +'s5615bb595ad6ded6': `绑定类型`, +'s56806e9f63efa298': `重定向 URI`, +'s5694f9421c428227': `Bind 密码`, +'s56fd9ed596c724fa': `密钥`, +'s57072ffb92b6c9c8': `定义如何向用户发送通知,例如电子邮件或 Webhook。`, +'s57448f10eb973100': `创建邀请链接以注册用户,并可选择强制使用其帐户的特定属性。`, +'s584d1c38ad20d560': `任何HTML都可以使用。`, +'s586d6bd2eca2da93': `用户`, +'s587ba266269297ab': `策略绑定`, +'s588796ee929a2e4c': `用户详细信息`, +'s58888ef1ee9b5bb8': `用户状态`, +'s58c867aac77b9158': `上次登录`, +'s58cd9c2fe836d9c6': `返回主页`, +'s58d1eb482059da12': `新建提供程序`, +'s58fd2aafa4261c55': `已成功更新应用程序。`, +'s592425143c4f5834': `替代名称`, +'s592ab7d2bc1b8973': `用户字段`, +'s593db2c00d6516a2': `SMTP 密码`, +'s5944355d69db1fb8': `额外的 Group DN`, +'s59572c1be31a812e': `无法删除流程缓存`, +'s59691290a232c687': `在提交阶段以验证数据时,将执行选定的策略。`, +'s59b6028f19d15cda': `没有激活的集成`, +'s59dc0eda07f9e2b6': `属性映射`, +'s5a13f4bbe004503f': `检查过去 x 天内请求的用户密码是否已更改,并根据设置拒绝。`, +'s5a15a8f39c699273': `匹配选定应用程序创建的事件。如果留空,则匹配所有应用程序。`, +'s5a48d5171e1a1522': `警告:策略未分配。`, +'s5acb607b40356974': `GID 起始编号`, +'s5b1fb0d4c0daeba8': `创建绑定`, +'s5be3b0567172e415': `验证证书`, +'s5be3c6d61cd9182f': `通知`, +'s5c18cae48b93138c': `会话`, +'s5cd31f4a88adf180': `编辑用户`, +'s5d0a14d29ebad561': `新用户注册时所使用的流程。`, +'s5d6af4c100ad321b': str`创建 + ${0}`, +'s5d9f93f1fe1c19d3': `Traefik (Ingress)`, +'s5deac600e329de1b': `日志消息`, +'s5e169e1bac20b4a6': `Outposts`, +'s5e8250fb85d64c23': `关闭`, +'s5e830ae7688d1219': `用于配置基于短信的 TOTP 身份验证器的阶段。`, +'s5f343a43e7ea9f91': `错误`, +'s5f496533610103f2': `应用程序已授权`, +'s5f5bf4ef2bd93c04': `组绑定仅会在已登录用户访问此源时检查。`, +'s5fbaeb14f42815e5': `身份验证器附件`, +'s5fc4269c2addee61': `引用令牌的唯一标识符。`, +'s60cc554fde2676cb': `不可移除的身份验证器,例如 TouchID 或 Windows Hello`, +'s60d891ed3ee9ebc5': `已成功创建源。`, +'s60edbcfac8ed1f90': `对于UIDNumbers来说,这个数字被添加到User.pk中,以确保对于POSIX用户来说,这个数字不会太低。默认值为 2000,以确保我们不会与本地用户 uidNumber 发生冲突`, +'s6152026c364ad974': `身份来源,既可以同步到authentik的数据库中,也可以被用户用来进行身份验证和注册。`, +'s618d4e53f455c834': `使用全局设置`, +'s61b6f3e6bc59c6dd': `创建提示`, +'s61ccefd661ac2296': `如果设置了此标志,则当没有发出邀请时,此舞台将跳转到下一个阶段。默认情况下,当没有发出邀请时,此阶段将取消流程。`, +'s61e48919db20538a': `UPN`, +'s6238f519db67980d': `UID`, +'s624256f8a4bb4c89': `通知传输`, +'s62ddcbaaa91d120d': `声誉得分`, +'s62f7c59b0606a8d6': `授权流程`, +'s62f93cfcb45d5a06': `超级用户权限?`, +'s634d041fd954ab20': `API 身份验证密码`, +'s63cb05541b294335': `是超级用户`, +'s63d894b1ddb06289': `描述`, +'s63d89a6ae0969c30': `要让用户直接重置密码,请在当前活动的租户上配置恢复流程。`, +'s63e03c70f67ebf9c': `上下文`, +'s63e71d20d1eaca93': `德语`, +'s643d8f2e5e5e930d': `已成功更新映射。`, +'s64a33dcdaf90af26': `用户信息`, +'s64ef2a6c2dd1d3d1': `编辑`, +'s65d507f1513c2f03': `允许由 IdP 启动的身份验证流。这可能存在安全风险,因为未对请求 ID 进行验证。`, +'s65d67612999165e9': str`事件 + ${0}`, +'s662fcb3761ad9df7': `当与用户写入阶段结合使用时,请使用 attributes.foo 来编写属性。`, +'s66722bc2ea775e05': `已禁用`, +'s66ffc06300964849': `用户对象筛选器`, +'s670ad066cc0e50a3': str`登入以继续 + ${0}。`, +'s67560d7e37d984c3': `策略/用户/组`, +'s67664f8ee9aea98d': `请输入您的验证码`, +'s67749057edb2586b': `退出`, +'s677f1b675fc21bb1': `Secret:`, +'s67e20cd8018d7e3c': `当前设置为:`, +'s681074b6c1f19c08': `未配置操作`, +'s6873bdbfa24615fb': `Webhook URL`, +'s68a50b1ee6efee7b': str` + ${0}可用!`, +'s68d69ad0271c8ef6': `创建一个新前哨集成。`, +'s68f935c9ca792016': `app1 在 app1.example.com 上运行`, +'s693d975d38ff0214': `签名算法`, +'s6941a67f0038ba4c': `当用户没有任何兼容的设备时,用来配置身份验证器的阶段。此阶段通过后,将不再请求此用户。`, +'s69a56a3022c4be7f': `租户`, +'s69bd313dd12fc2f3': `个人资料网址`, +'s6a406aecb2c0e5c5': `注册`, +'s6a89bb10338369b4': `转到上一页`, +'s6ab73c998850c5ab': `表情`, +'s6abff64e7ff7fde9': `Avatar image`, +'s6ac670086eb137c6': `恢复`, +'s6ae0d087036e6d6d': `选择一种身份验证方法。`, +'s6b5002c605b39d6d': `创建通知传输`, +'s6b6e6eb037aef7da': `使用下面的用户名和密码进行身份验证。稍后可以在令牌页面上检索密码。`, +'s6b79e73ca77148a0': `Outpost 集成`, +'s6b85380416964890': `否定结果`, +'s6ba50bb0842ba1e2': `应用程序`, +'s6c3daaac4eed12f9': `更新日志`, +'s6c410fedda2a575f': `更新可用`, +'s6c607d74bdfe9f36': `用户绑定仅会在已登录用户访问此源时检查。`, +'s6c70a73265e14521': `链接到具有相同电子邮件地址的用户。当源不验证电子邮件地址时,可能会产生安全隐患`, +'s6c8f05e3be04f62a': `注册设备`, +'s6d3b4d0561ba1cff': `发行人`, +'s6d5bce4321f57cda': `取消注册`, +'s6df42b3072a2d7e9': `Nginx (Ingress)`, +'s6dfb7283452f78fe': `授权`, +'s6dfd15978586d05f': str`欢迎, + ${0}。`, +'s6e09a19aa3952509': `使用率最高的应用`, +'s6e4c997a101b6abf': `以当前用户`, +'s6e612e5a6a359bbb': `可选私钥。如果设置了此设置,则可以使用此密钥对进行加密。`, +'s6e6e737601f44b2c': `已成功清除通知`, +'s6f270e1668c036e9': `已成功更新 Outpost。`, +'s6f328f2d8382d998': `同意到期时间`, +'s6f857299d5db1ecf': `流程`, +'s6fcd9b5a87ceccd6': `打开设置`, +'s6fe64b4625517333': `由 authentik 强力驱动`, +'s7031e6928c44cedd': `用户界面`, +'s706af57c1af42c6d': `隐藏:隐藏字段,可用于将数据插入表单。`, +'s708d9a4a0db0be8f': `检查状态`, +'s70f6471de355b98c': `HTTP-Basic 密码密钥`, +'s713d147e1761d0f0': `最新!`, +'s713e8666ed70f8b3': `创建一个新属性映射。`, +'s71dcd9cf808449aa': `令牌`, +'s721d94ae700b5dfd': `Duo 激活`, +'s72559845d38bf688': `配置访问令牌的有效时间。`, +'s72c1c17a9bdc76ad': `帮助文本`, +'s72e102414fec81a4': `已成功创建规则。`, +'s730182ad28374cda': `对象`, +'s7301a7069b7bc83e': `已吊销?`, +'s733f83ff9d50da30': `为断言配置允许的最大时间漂移。`, +'s73c13e5a6f5e38a3': `设备类别`, +'s74475586afc1fb0f': `选择类型`, +'s7468e87263dfff7e': `标识符`, +'s7489f76224f8120d': `转发身份验证(单个应用程序)`, +'s74f809a69e030351': `OpenID 配置发行者`, +'s7520286c8419a266': `加载到流程的 “prompt_data” 上下文变量中的可选数据。YAML 或 JSON。`, +'s75a27f43413e02c5': `法语`, +'s75d5ff5dd8d3c6d2': `已成功更新组。`, +'s7609ee54e8a7b05a': `有效天数`, +'s764bccb30868bf62': `您将通过其访问应用程序的外部 URL。包括任何非标准端口。`, +'s76768bebabb7d543': `包含组成员的字段。请注意,如果使用 “memberUID” 字段,则假定该值包含相对可分辨名称。例如,'memberUID=some-user' 而不是 'memberuid=cn=some-user、ou=groups、... '`, +'s7683363cdf78cf31': `如果可用,则首选用户验证,但不是必需的。`, +'s76881c01b6a3a8c7': `同意`, +'s76da2c978dcc5ef4': `已成功清除策略缓存`, +'s76f5dca6404a1210': `Webhook(Slack/Discord)`, +'s773aa6621d7e37b7': `创建租户`, +'s7754f0e34f27fb6e': `同意时向用户显示的描述。如果留空,则不会通知用户。`, +'s77994108c886b965': `取消前尝试失败`, +'s77f572257f69a8db': `属性映射异常`, +'s78c08391ffbfb8c0': `这些绑定控制哪些用户可以访问此流程。`, +'s78fd8c03f8c967f3': `令牌`, +'s7968dbed9b106c29': `没有可用的服务。`, +'s7989db5f4819af89': `用于注销的流程。如果留空,则使用按辅助信息块排序的第一个适用流程。`, +'s79ad406777feab1f': `在没有邀请的情况下继续流动`, +'s79aed8154d7c472c': `已成功创建 Outpost。`, +'s79e8cc71a5975b04': `信息`, +'s7a141f1b61074fbe': `基本身份验证`, +'s7a322c89298dd27c': `已成功更新邀请。`, +'s7a4f059aaa029719': `连接`, +'s7abc9d08b0f70fd6': `静态令牌`, +'s7b18721be331241e': `选择应使用哪些传输来通知用户。如果未选择任何内容,则通知将仅显示在 authentik UI 中。`, +'s7b1fba26d245cb1c': `使用外部日志记录解决方案进行存档时,可以将其设置为 “minutes=5”。`, +'s7b576aa71acb36a6': `示意图`, +'s7b7163270e57e8b4': `刷新`, +'s7bc8c327f1f7c82c': `未找到任何对象。`, +'s7bda44013984fc48': `密码已设置`, +'s7c05ee41d634aa45': `用于创建用户的属性映射。`, +'s7c10976de6411844': `令牌有效性`, +'s7c27e113f90a89e0': `选中后,传入声明的签名将根据此证书进行验证。要允许未签名的请求,请保留默认值。`, +'s7c5774fad9d050ce': `创建组`, +'s7cb9aa9ee1783f00': `组属性映射`, +'s7d499be3b781a3ca': `用户`, +'s7d684b6257284e55': `得分`, +'s7def067ed3ad3ad9': `Cookie 域名`, +'s7e537ad68d7c16e1': `用户被写入`, +'s7e5af9c6ba6f5cc6': `选中多个阶段时,用户可以选择要注册哪个。`, +'s7e87ab366c199345': `更新绑定`, +'s7eb3d239e0b491ab': `选择要向其添加用户的组`, +'s7ec7036b249f4f22': `普通用户`, +'s7edad99c6b7bfe88': `转到下一页`, +'s7f4e4054fbe132e1': `其他全局设置`, +'s7f5869b3d14d7cbc': `提供商`, +'s7f9e79189a3d19e2': `租户`, +'s7f9eb9c8bd26e8fd': `授权流成功后有效的重定向 URL。还可以在此处为隐式流指定任何来源。`, +'s7fa236d26b798301': `发送链接`, +'s7fa4e5e409d43573': str`创建凭证时出错: + ${0}`, +'s802826db4e2c852e': `警告:没有邀请阶段绑定到任何流程。邀请将无法按预期工作。`, +'s803b0621006085be': `更新 SAML 提供程序`, +'s80e6d6fe5ad458d3': `清除图标`, +'s819509c33a7534ac': `通知传输`, +'s81a87652ade099e4': `用户匹配模式`, +'s81ecf2d4386b8e84': `继续`, +'s81eff3409d572a21': `一般系统异常`, +'s82188c9542510212': `可选的恢复流程,链接在页面底部。`, +'s8226f48cb1a80997': `邀请`, +'s832282d415294df4': `导入流程`, +'s835da49b4dc83a51': `上个月每天的失败登入次数`, +'s836aa192b30c21da': `取消注册流程`, +'s838418d1a0815157': `通行证政策?`, +'s838ed611b533b19e': `用于签署传出请求的密钥对。留空则禁用签名。`, +'s839cb09cb2193da9': `使用邀请的链接。`, +'s83d0f62ad1731a03': `私钥`, +'s84c5a011acd608c9': `事件保留`, +'s84d7d6ebbedcb586': `运行状况和版本`, +'s850a58c683682809': `Issuer mode`, +'s851c108679653d2a': `作用域名称`, +'s85366fac18679f28': `忘记密码了吗?`, +'s858e7ac4b3cf955f': `静态令牌`, +'s872d0e88ab34ed83': `授权网址`, +'s8763a33c3d46aaf5': `Outpost 状态`, +'s87b7e3bc944c728c': `成功时启用待处理用户`, +'s8802553bc57617ee': `Outpost 是对 authentik 组件的部署,以支持不同的环境和协议,例如反向代理。`, +'s883b544e2b4aa3b5': `小写字符的最小数量`, +'s8849ece8c65e3a18': `仪表板`, +'s88b8a2892635a2fc': `authentik 用来检索令牌的 URL。`, +'s890810efbe103cbc': `将创建的事件与此操作类型匹配。留空时,所有操作类型都将匹配。`, +'s890e983a7be64da4': `结果`, +'s892d2731a6f22e59': `私钥,从 https://www.google.com/recaptcha/intro/v3.html 获取。`, +'s8939f574b096054a': `不是你?`, +'s8a1d9403ca90989b': `已使用邀请`, +'s8aaad223e954f9ca': `启用后,无论用户字段大小写如何,都将匹配用户字段。`, +'s8af61807443f32a4': `操作`, +'s8af7239354f7e7b6': `同步用户`, +'s8aff572e64b7936b': `再次发送电子邮件。`, +'s8b0432eecbd8b034': `更新`, +'s8b2b2a43fcf688a3': `已成功更新提示。`, +'s8b33660e2ed7212c': `通过 SSH 连接时,此密钥对用于身份验证。`, +'s8b87df5664de7eb8': `配置前哨如何查询核心 authentik 服务器的用户。`, +'s8be4abc7ca71da6c': `用户界面设置`, +'s8c05cccd470f6b5f': `未配置设置流程`, +'s8ca0dbaec5d48563': `未配置任何恢复流程。`, +'s8cb7bb82e96d5d77': `策略`, +'s8cc920e6a8430a0d': `将当前待处理的用户登录。`, +'s8cda828dac449ea5': `全部清除`, +'s8ce8bdc9cc9c8604': `无限期地给予同意`, +'s8d08843f397d9e81': `有关所有变量的列表,请参阅文档。`, +'s8d32d7b9e8ca60b1': `所有提供商都使用相同的标识符`, +'s8d7ecd944ebe834b': `令牌由 authentik 管理。`, +'s8d857061510fe794': `二重奏推送通知`, +'s8da88a8a5750bce1': `Duo 身份验证器`, +'s8e01a852c1db8d29': `Nginx(代理管理器)`, +'s8ecdbff1a7329b64': `和检查员一起`, +'s8f12575f694e85a2': `传递给代理的其他作用域映射。`, +'s900b0d85b872d134': `使用唯一标识符链接用户`, +'s909e876731a8febb': `选择所有行`, +'s90c3b62194fe8508': `Outpost 部署信息`, +'s9117fb5195e75151': `注意`, +'s916b32ac64ea2b05': `已成功更新阶段。`, +'s9193ef1a39a6c872': `将新创建的用户标记为非活动用户。`, +'s91e3a47599412f51': `源`, +'s91f389c796720a81': `加载服务器`, +'s91f70424f5d5d23e': `Slug`, +'s9222ca30ae7786e4': `已成功创建应用程序。`, +'s925936f647ae52cc': `显示为 “Flow” 页面中的标题。`, +'s926e0ecf124fb01a': `访问代码有效性`, +'s92ca679592a36b35': `秘密被轮换了`, +'s92e241c9f3c101a2': `连接对象将被删除`, +'s93574c03953f25dd': `除了请求必须经过身份验证外,此提供程序的行为类似于透明的反向代理。如果您的上游应用程序使用 HTTPS,请确保也使用 HTTPS 连接到 Outpost。`, +'s93c1e5fbe8184895': `已成功创建令牌。`, +'s93cea6ca1f93349d': `未经身份验证的 URL`, +'s93cf77a59db53395': `引用将被重置为默认值`, +'s94333971a07803b9': `其他设置`, +'s949826fad0fe0909': `任务已完成,但出现错误`, +'s955c1fec1c6fb970': `目前没有阶段绑定到此流程。`, +'s95a032ae86881bf5': `使用 Flow`, +'s965c503c3e42fdfe': `已启用`, +'s968c90258dcf7562': `Post binding`, +'s96b2fefc550e4b1c': `提供商类型`, +'s96b3cddf33e1c853': str`你目前正在模拟 + ${0}。单击停止。`, +'s97d1b0070f50c07f': `静态令牌`, +'s97f2dc19fa556a6a': `短信`, +'s97f5e0c138eae172': `警告:提供程序未分配给任何应用程序。`, +'s980270d0fab7ecb3': `更新阶段绑定`, +'s98b1cb8fb62909ec': `组`, +'s98c3bdf4fd5cdf65': `通知规则`, +'s991b750e2d5c4234': `服务提供商绑定`, +'s992f8d1a776e763c': `如果留空,authentik 将尝试根据选定的提供商提取启动网址。`, +'s99f110d27e30b289': `标题`, +'s9a34d1520e320465': `阶段特定的设置`, +'s9a393a04eaf1eb0e': `创建 Stage 绑定`, +'s9ae089fd248e72db': `额外的User DN,优先于Base DN。`, +'s9bd59e0ea70a3e4a': `更新 Outpost`, +'s9bd9ba84819493d4': `发生错误,请稍后重试。`, +'s9bf48a89367282cd': `警告:未配置 authentik 域,身份验证将不起作用。`, +'s9c29565c5ae1cc92': `选择集成可以使authentik对 Outpost 进行管理。`, +'s9c3c272944dcfca3': `已成功创建用户。`, +'s9c6f61dc47bc4f0a': `模型已创建`, +'s9c73bd29b279d26b': `模拟已结束`, +'s9d18948d25c68d66': `成功生成证书密钥对。`, +'s9d2d00982edafabb': `土耳其语`, +'s9d8ad4b85287131f': `数字`, +'s9d95f09deb601f34': str`服务器验证凭据失败: + ${0}`, +'s9d96eb5ca93e6473': `OpenID 配置网址`, +'s9e568afec3810bfe': `恢复密钥`, +'s9e830cbc0b42a514': `更新流程`, +'s9e9c8d99f4c26baf': `当用户成功从电子邮件中返回时,其帐户将被激活。`, +'s9ea472b555374771': `常驻钥匙要求`, +'s9ee20003cb116abf': `无密码流`, +'s9f23ed1799b4d49a': `配置应将哪些数据用作唯一用户标识符。在大多数情况下,默认值应该没问题。`, +'s9f26843287bb592d': `组`, +'s9f5a5f23312798f0': `成员`, +'s9f8aac89fe318acc': `(可选)设置 “断言” 属性的'友好名称'值。`, +'s9f91cc8bcfabb40f': `断言之前无效`, +'s9fb28be12e2c6317': `超级用户`, +'s9fdda7ea4642306c': `组`, +'s9ff3121d30f88d52': `正常`, +'s9ffa1ac03ce6fd20': `执行日志记录`, +'sa00cf67b54c44c71': `检查 Kubernetes 服务的 IP,或者`, +'sa03aa46068460c95': `忘记用户名或密码?`, +'sa03fe48e892df2d8': `您将在其中进行身份验证的外部 URL。在此 URL 下应该可以访问身份验证核心服务器。`, +'sa0b01f479f40c52d': `设备`, +'sa0e0bdd7e244416b': `可疑请求`, +'sa11e92683c5860c7': `请求被拒绝。`, +'sa13e6c8310000e30': `会话 ID`, +'sa1b41e334ad89d94': `已查看 Secret`, +'sa248e1021d2c27b5': `通过向用户发送一次性链接来验证用户的电子邮件地址。也可用于恢复,以验证用户的真实性。`, +'sa266303caf1bd27f': `电子邮件已发送`, +'sa29b5680cfafacc8': `外部主机`, +'sa2b727168b090d34': `清除流程缓存`, +'sa2c29dc5ed47b26d': `强制用户配置身份验证器`, +'sa2e4d6830226d3ec': `重定向绑定`, +'sa30c58514a3dc0fb': `拒绝用户访问`, +'sa319e3bf44c85963': `用于组创建的属性映射。`, +'sa33d061d2ade20aa': `声誉`, +'sa3438c7bb4e9cce8': str` + ${0}未读`, +'sa347e31efbb60be2': `更新应用程序`, +'sa3599457b9418bc5': `用户的头像`, +'sa3660d505e7011e0': `授权应用程序:`, +'sa3c1f6ac5e63a70f': `身份验证之前使用的流程。`, +'sa41aee3ae04c9216': `显示源的标签`, +'sa442044b586ec8bf': `操作`, +'sa45a194b58837e4f': `激活`, +'sa48f81f001b893d2': `用户`, +'sa4a8086275475714': `选择注册流程`, +'sa50a6326530d8a0d': `显示更少`, +'sa578033f134a83b6': `配置访问代码的有效期限。`, +'sa57c393736e2732c': `测试属性映射`, +'sa599dbe5776897ad': `通过用逗号分隔多个服务器 URI 来指定它们。`, +'sa661ea7d7a50f2e9': `创建一个新提供程序`, +'sa668bd79645c3e06': `Kubeconfig`, +'sa6905be242387f36': `例外`, +'sa6ab5184d6315895': `来自`, +'sa717841a602fe7d8': `未能删除策略缓存`, +'sa738ce390bc24875': `从 https://console.twilio.com 获取此值`, +'sa7b56a80ab1801f0': `Twilio 身份验证令牌`, +'sa7fcf026bd25f231': `连接到本地 docker 守护进程时可以采用 'unix: //' 的格式,通过 SSH 连接时使用 'ssh: //',或者在连接到远程系统时使用 'https://:2376' 的格式。`, +'sa81e2cdaf6921adc': `系统`, +'sa879d5ce584875cf': `特定于策略的设置`, +'sa8c45b6b92a8ba1f': `创建应用程序`, +'sa8d83cd8023e8e4d': `authentik 用来获取用户信息的 URL。`, +'sa8e255492bb6ae0d': `Outpost 集成`, +'sa9020b93c3bd7235': `在取消流程之前,用户有多少次尝试。要锁定用户,请使用信誉策略和 user_write 阶段。`, +'sa90b7809586c35ce': `输入完整的网址、相对路径,或者使用 'fa://fa-test' 来使用 Font Awesome 图标 “fa-test”。`, +'sa95a538bfbb86111': str`你确定要更新 + ${0}" + ${1}" 吗?`, +'sa9b2a245441557dc': `上次运行`, +'sa9dbe2fb284e26fe': `向用户发送恢复链接`, +'saa0e2675da69651b': str`找不到网址 “ + ${0}”。`, +'saa10777250a6deca': `更新 SAML 源`, +'saa855c61e0403fe6': `警告:应用程序未被任何 Outpost 使用。`, +'saaa3abe03c7260f9': `authentik 在后台执行的长时间运行的操作。`, +'saae1c70e168b45b4': `管理员`, +'sab6bad52985c6676': `品牌信息显示在页面标题和其他几个地方。`, +'sab6d24c5ec8dc361': `友好显示名称`, +'sab85321d3b0840b7': `API 请求失败`, +'sababff57115130a0': str`错误:不支持的源设置: + ${0}`, +'sabaf0061f7e41b0b': `消费者机密`, +'sabb56f74492e7e96': `更新设备`, +'sabd1bc9fb7da71e7': `使用 Python 的表达式。`, +'sabebdc7fa6a5bddb': `Nginx (standalone)`, +'sabf67834e35dede5': `Token count`, +'sac1332e6f421526e': `更新通知传输`, +'sac43cb9690260b86': `UID 起始编号`, +'sac8252732f2edb19': `日期`, +'sad09c62cb4ebae68': `点击复制令牌`, +'sad130c2d925fb7bf': `更新用户`, +'sad3e3c8146fc920f': `状态`, +'sad59707375956ad2': `完成`, +'sad8550b8731518d8': `会话不在当天或之后有效`, +'sae1e1a59d22609c4': `启用后,将使用全局电子邮件连接设置,而下面的连接设置将被忽略。`, +'sae239213b7c70376': `州`, +'sae486938be80729c': `一切正常。`, +'sae5d87e99fe081e0': `必需`, +'sae5da213b7f896ed': `阶段`, +'saeff3596e1ac31b6': `设置`, +'saf1d289e3137c2ea': `验证终端节点证书所依据的 CA。可以留空以表示不进行验证。`, +'saf24e253b3b006d4': `如何连接`, +'saf31b3c610036ed6': `启用此选项后,将记录此策略的所有执行。默认情况下,只记录执行错误。`, +'saf5eb7596b3a355b': `将与此过滤器匹配的对象视为组。`, +'saf63a04c86018698': `-`, +'saf63d34c8601dd41': str` + ${0} + `, +'saf794c74c9ea731e': `用户属性映射`, +'saf7ce4165a1025f6': `同步组`, +'safc0e0656d572f4e': `用于测试的策略。等待随机持续时间后,始终返回与下面指定的结果相同的结果。`, +'safcc54b2aedb1a17': `如果选择此选项,令牌将过期。到期后,令牌将被轮换。`, +'safd0363143a46a91': `基本身份验证`, +'sb0669da3df95837c': `上个月每天的登入次数`, +'sb07bf992e3d00664': `没有其他可用数据。`, +'sb0b86b8ca6ab13bd': `提供商`, +'sb157267c85fdff30': `证书`, +'sb15e8daacf26bdfc': `创建令牌`, +'sb1751a1411d6874f': `外部 API 网址`, +'sb17e8c70f9a05c77': `万一你无法访问任何其他方法。`, +'sb1c91762ae3a9bee': `模拟已开始`, +'sb1fe947f9ad27b9d': `令牌到期`, +'sb24755ea94bef31d': `删除当前设置的背景图片。`, +'sb25d9afe10941425': `决定此 Flow 的用途。例如,当未经身份验证的用户访问 authentik 时,身份验证流程将重定向到。`, +'sb25e689e00c61829': `使用基于代码的身份验证器。`, +'sb2b3b281954752c4': `分配给应用程序`, +'sb2bb6f93773a4594': `用于 HTTP-Basic 标头用户部分的用户/组属性。如果未设置,则使用用户的电子邮件地址。`, +'sb2c57b2d347203dd': `显示更多`, +'sb2f307e79d20bb56': `当前计划上下文`, +'sb32e9c1faa0b8673': `身份验证前流程`, +'sb357ea19a722d827': `Post`, +'sb3651834cca86735': `符号字符的最小数量`, +'sb3fa80ccfa97ee54': `阶段名`, +'sb4564c127ab8b921': `登入失败`, +'sb4a1d1c19438e929': `auth.example.com 上运行的 authentik`, +'sb546eb04425e07fa': `更新详情`, +'sb564f81eb057342e': `应用程序图标`, +'sb59d68ed12d46377': `正在加载`, +'sb635ad3c2e357d3c': `这是用于基本身份验证的密码`, +'sb69119c9f0547bed': `复制恢复链接`, +'sb69a4b0acd0895f2': `流程`, +'sb6cbd4f92ebaf5d8': `相关`, +'sb6d5146d5efb3058': `访问密钥`, +'sb6d7128df5978cee': `策略例外`, +'sb6d7d58cb0a1544e': `兼容模式`, +'sb72ebab438cb2983': `导入外部提供商的证书或创建用于签署请求的证书。`, +'sb7684e2910a33a1f': `Bind CN`, +'sb7794c2910b1a9ec': `Bind DN`, +'sb7a30abc1dcf6c36': `Issuer`, +'sb8168ae309c66abc': `TOTP 身份验证器`, +'sb85ffe141d7c229d': `会话持续时间`, +'sb8795b799c70776a': `一次性使用`, +'sb8bc2b8376c96a6b': `意图`, +'sb8c13bd58191cea2': `使用 TLS 连接到 LDAP 服务器时,默认情况下不检查证书。指定密钥对以验证远程证书。`, +'sb8d4f44a1d5b9a14': `后端`, +'sb8dd788adf7b907b': `代理`, +'sb904f23f17b60c3a': `已成功导入流程。`, +'sb932dead79567c7b': `访问令牌 URL`, +'sb96629f50f2e7fab': `不健康`, +'sb986f15fa9b17805': `同意过期。`, +'sba42248f3f27955c': `用户数据库+标准密码`, +'sba65ae54d6585c1a': `未读通知`, +'sbab723b98dcfe23f': `显示匹配的用户`, +'sbad5b96fb855ef36': `没有策略约束。`, +'sbadde673052efc02': `网络证书`, +'sbb3243352661428f': `身份验证流程`, +'sbb57cd8a3ed12915': `有效期为360天,之后密码将自动轮换。您可以从令牌列表中复制密码。`, +'sbbb2180b6aed196e': `发件人号码`, +'sbbb7318812d64e51': str`创建凭证时出错: + ${0}`, +'sbbb97b1c63507dc0': `编号`, +'sbbc1de43ab6c1f76': `创建通知规则`, +'sbbc53e0e54d7946f': `Subject`, +'sbc80eab557fbf782': `搜索组`, +'sbcae51a6f06e53d4': `搜索模式`, +'sbd19064fc3f405c1': `检查您的收件箱是否有验证电子邮件。`, +'sbdc1176ff9f93da2': `这是向其发送 POST 请求的完整终端节点。`, +'sbdeedc1c60306b35': `信息`, +'sbe3b416a356f1c91': `处于激活状态`, +'sbe47a5bdeec19ab0': `阶段绑定`, +'sbe9a51f29a4a2c5b': `成功`, +'sbea3c1e4f2fd623d': `阶段种类`, +'sbec40ef4e6f139b7': `(格式: hours=1;minutes=2;seconds=3).`, +'sbecf8dc03c978d15': `再次运行同步`, +'sbedb77365a066648': str`上次同步: + ${0}`, +'sbf41e0db12834133': `对于不访问userinfo端点的应用程序,将来自作用域的用户声明包含在id_token中。`, +'sbf5f4c5ba679e847': str`通过 + ${0}登录。`, +'sc04e92d753742189': `6位数字,广泛兼容`, +'sc0829ee663ced008': `目录`, +'sc0a0c87d5c556c38': `电话号码`, +'sc10db51c9bb77d5c': `用户数据库 + LDAP 密码`, +'sc1231049879b8d33': `如果启用,请使用本地连接。需要的 Docker Socket/Kubernetes 集成。`, +'sc15d60377cc8aaac': `当前没有策略绑定到此对象。`, +'sc16e00a7a8b2fde2': `返回`, +'sc19838ca8c135c1b': `品牌设置`, +'sc1a1ff47c058bb09': `事件日志`, +'sc1cb0eef9ed94e6a': `如果选择了组,则会将新创建的用户添加到该组。`, +'sc1ce2f758935ff48': `由 authentik 管理`, +'sc1cfce89ebcf1bf9': `下载签名证书`, +'sc1feadd25659c94d': `发件人地址`, +'sc21032b0d37882a0': `如果您的 authentik_host 设置与您要登录时使用的网址不匹配,请添加此设置。`, +'sc25edca57df81461': `身份验证`, +'sc265a3e29e1206e4': `事件`, +'sc297b2e13c28ecf9': `允许好友通过Plex进行身份验证,即使您不共享任何服务器`, +'sc2a1a40a1b4b0170': `已成功创建集成。`, +'sc2e03590269d5a10': `新建属性映射`, +'sc2f116c0ea77d58a': `错误消息`, +'sc2f1e5dd74c1b7df': `成功登入`, +'sc3259eb55cf91e8c': `LDAP`, +'sc35581d9c1cd67ff': str`代表 + ${0}`, +'sc381422c585b867f': `快速行动`, +'sc39fb3ff3753d5ab': `隐藏托管映射`, +'sc3c74f5273df459a': `通用的`, +'sc3e0c240b159fbce': `已成功创建流程。`, +'sc3e1c4f1fff8e1ca': `此流程已完成。`, +'sc4508175bf6b09dd': `未经身份验证的路径`, +'sc4eedb434536bdb4': `需要一个账户?`, +'sc54aafeea9c9bab0': `连接服务`, +'sc554339ffc7b04e7': `已成功创建邀请。`, +'sc5668cb23167e9bb': `或者,如果您当前的设备已安装 Duo,请单击此链接:`, +'sc592307ea80f16b9': `未知`, +'sc5a4711395ffb043': `用于配置 TOTP 身份验证器(即 Auth/Google 身份验证器)的阶段。`, +'sc647dcb91f6958dd': `发送短信的来源号码。`, +'sc6b4ebd37b7a91c7': `令牌和应用程序密码`, +'sc6c57419ad3a01a8': `用于对令牌进行签名的密钥。`, +'sc6e8a34361c7c272': `转发身份验证(域级)`, +'sc741d9ebe07ad103': `签名证书`, +'sc741dfb09d3395f0': `没有可用的应用程序。`, +'sc744f3691efe310d': `隐藏服务账户`, +'sc764ddf60b5149de': `如果 IDP 支持单点注销,则为可选 URL。`, +'sc7707b3ba3a2a7ca': `请求令牌 URL`, +'sc7be80a7f8ec597e': `到期日`, +'sc816360d6f5a1eeb': `流程描述了一系列用于对用户进行身份验证、注册或恢复的阶段。阶段是根据应用于它们的策略来选择的。`, +'sc8da3cc71de63832': `登入`, +'sc8de93a7dc0d78ba': `客户机类型`, +'sc8f286ac783c385d': `查看部署信息`, +'sc9175cb129fdc306': str`更新 + ${0}`, +'sc92d7cfb6ee1fec6': `已成功更新密码。`, +'sc92ed9d5e01d3f24': `通知规则`, +'sc96dd9d2e7b05fc5': `最小长度`, +'sc9c3578cce3cf7a8': `外部主机`, +'sc9f69360b58706c7': `模型已删除`, +'sc9fc206433f67588': `不需要身份验证的正则表达式。每个新行都被解释为一个新表达式。`, +'sca2879d96f58a39c': `发送一次`, +'scab2900019953050': `已成功更新用户。`, +'scae166352a31032c': `配置阶段`, +'scb317851cbcc6b12': `内部主机`, +'scb43f5faeb6a7ca9': `不应进行用户验证。`, +'scb489a1a173ac3f0': `Yes`, +'scb5c9a7cc4ccd68d': `电子邮件信息:`, +'scb6620fcd5bff04c': `高级设置`, +'scc286303aa9c6cb0': `同步状态`, +'scc733ba98740038a': `更新提示`, +'sccbfc4dec0c8d80c': `分配给应用程序`, +'scd0cfe87af6f2ff2': `严重程度`, +'scd8062ff5e1326d8': `HIBP 数据库中最多允许 N 次出现。`, +'sce106606ae84d46f': `属性映射`, +'sce8d867ca5f35304': `设置密码`, +'scea1f16238093e35': `执行 python 代码段以确定是允许还是拒绝请求。`, +'scf2790cf3ad89283': `用于 SAML 断言的属性名称。可以是 URN OID, 模式引用或任何其他字符串。如果此属性映射用于 NameID 属性,则会丢弃此字段。`, +'scf5ce91bfba10a61': `请输入你的密码`, +'sd04376c4216c921f': `URL 设置`, +'sd06b47084fec0ec5': `不记名令牌`, +'sd07866d9f38b2c50': `执行流程`, +'sd080b2370aa82967': `IP 和用户标识符的声誉。每次登入失败的分数都会降低,每次成功登入的分数都会增加。`, +'sd0bc94e11935ee5a': `未正确检测到 HTTPS`, +'sd1031bddc66dc495': `将您的用户帐户连接到下面列出的服务,以允许您使用该服务而不是传统凭据登录。`, +'sd1146418b344f81f': `更新通知规则`, +'sd1288ca57e221cf9': `更新令牌`, +'sd14a19a19d507f9e': `从 LDAP 导入的所有组的父组。`, +'sd18170637295bace': `额外的用户 DN`, +'sd1a5560fde6f2271': `已成功导入提供程序。`, +'sd1f44f1a8bc20e67': `电子邮箱`, +'sd20f6cd02c90867f': `应用程序`, +'sd216b08bafb297ee': `用于对用户进行身份验证的流程。如果留空,则使用按辅助信息块排序的第一个适用流程。`, +'sd2208cd1a767644b': `断开连接`, +'sd2223afb7d6b100d': `类型`, +'sd2c58d7c6dddc515': `SAML 元数据`, +'sd3386a2ef42e80b9': `下載`, +'sd34be0d0fcb39971': `用户的显示名称。`, +'sd35ae4be63df1f9f': `选择用于测试密码的后端。`, +'sd39c5e998efecf93': `SAML 属性名称`, +'sd3a853f63f45dcb0': `通过`, +'sd4ac926e4ebb1cd7': `常用名`, +'sd503fabef9691134': `使用代理或转发身份验证(单个应用程序)模式时,将根据正则表达式检查请求的 URL 路径。使用前向身份验证(域模式)时,请求的完整 URL(包括 scheme 和 host)将与正则表达式进行匹配。`, +'sd5903cc8de68b3fc': `找不到表格`, +'sd5a4b41c6c883b03': `Audience`, +'sd5ba2d61ee4796fe': `邀请`, +'sd6a025d66f2637d1': `传统身份验证器`, +'sd6b8b4156f7df696': `在侧边栏/标题和流程执行器中显示的图标。`, +'sd6c3ddb62de0e8f7': `用于签署发送给服务提供商的外发响应的证书。`, +'sd6cd7ce2310a73a4': `根据多条规则检查策略请求中的值,这些规则主要用于确保密码强度。`, +'sd71081c23d1cd38b': `检查访问权限`, +'sd766cdc29b25ff95': `正在使用Apple进行身份验证...`, +'sd7fa99e4d82b374a': `无法通过电子邮件发送恢复链接,用户没有保存电子邮件地址。`, +'sd80b0b8aeae3abe3': `用户密码写回`, +'sd8417b41ca27bc8f': `新建阶段`, +'sd8c5339b82b71507': `等待 (最短)`, +'sd8d9451f86502d1a': `可用于进行身份验证的设备类别。`, +'sd8f220c999726151': `重定向`, +'sd924045605feea63': `过期`, +'sd947d57c9a9b7108': `在 GitHub 上打开问题...`, +'sd94db2b8c85d10a6': `SLO URL`, +'sd97d8d0906e6cc47': `不区分大小写的匹配`, +'sd9b556a84ae25690': `已成功发送测试请求。`, +'sda4e78c19f5b6f35': `策略需要一段随机时间才能执行。这将控制所需的最短时间。`, +'sda5e1499f93146ad': str` + ${0}天前`, +'sda796c87fa97ed4d': `型号名称`, +'sdae55084f6cb2662': `输入可选的分组名称。分组相同的应用程序会显示在一起。`, +'sdae649fae731e838': `复选框`, +'sdb7b2173869822bc': `必须进行用户验证。`, +'sdbc08adee233f180': `更新 OAuth2 提供程序`, +'sdbccb39a658f0e45': `新建策略`, +'sdc1ef94016f0d855': `已成功更新集成。`, +'sdc30bddeda2f0225': `根据选定的后端验证用户的密码。`, +'sdc323c6af4ae9f01': `成功复制 TOTP 配置。`, +'sdc673e73b5c13aea': `删除`, +'sdc70195469e83e3f': `8位数字,与谷歌身份验证器等应用不兼容`, +'sdc9e222be9612939': `源链接`, +'sdcc7b2c109ce9775': `令牌在整个authentik中用于电子邮件验证阶段、恢复密钥和API访问。`, +'sdd1ff479d04ac140': `公开`, +'sdd4bd4224c4e943d': `authentik:语言:显示 authentik 支持的语言设置。`, +'sdd6b8b56a811080e': `证书指纹 (SHA256)`, +'sddb3b0176f437721': `打开 API 浏览器`, +'sddc8efe94cb8c210': `阶段是引导用户完成的流程的单个步骤。阶段只能在流程内部执行。`, +'sddcfc6ab24e3a6ed': `注册`, +'sde47e4d8b9b21b59': `WebAuthn 身份验证器`, +'sdefec5401bf67eba': `使用安全密钥证明您的身份。`, +'sdf1d8edef27236f0': `像 YubiKey 这样的 “漫游” 身份验证器`, +'sdf22dcf939c27cc7': `阶段配置`, +'sdf34a5599d66f85c': `背景图片`, +'sdf4e1c6a2f072600': `允许计数`, +'sdfd22a21660f6002': `已成功更新提供程序。`, +'se085f35c8a9203a1': `LDAP 源`, +'se09ab93d69f7f45b': `不被任何其他对象使用。`, +'se09d055771f3a11d': `通用 OpenID 连接`, +'se10bbf4cf861c81b': `签名密钥对`, +'se12969ade44cd2b6': `新建身份来源`, +'se16ac750b81fa93d': str`已分配给 + ${0}个对象。`, +'se17fcb1f159ee382': `更新 Plex 源`, +'se19cc57dd8675498': `阈值`, +'se1c85959463f53df': `对于没有专用租户的每个域,请使用此租户。`, +'se1e040b55319a0e8': `超时`, +'se291dfd2a59d7842': `策略绑定`, +'se2b62f7e9017965e': `Traefik (Compose)`, +'se2c3cbf2ed1403f1': `阶段绑定`, +'se2f258b996f7279c': `系统任务异常`, +'se36b55dfcf5dc80b': `启用 StartTLS`, +'se3e6af2ce24d80e8': `繁体中文`, +'se409d01b52c4e12f': `重试身份验证`, +'se47baf2fd16b9d2b': `“模板”`, +'se4a9da0295597e73': `SMTP 用户名`, +'se50a08ab71bb96ed': `如果输入了有效的用户名/电子邮件,并且启用了此选项,则会显示用户的用户名和头像。否则,将显示用户输入的文本。`, +'se5498954255620b4': `已成功发送电子邮件。`, +'se5dc026819a32ff8': str`用户 + ${0}`, +'se5fd752dbbc3cd28': `使用安全密钥`, +'se63f9d833700af49': `会话`, +'se68398e3c2c760b2': `令牌`, +'se6d950402810c34f': `属性映射`, +'se7430794fa89005a': `也称为实体 ID。 默认为 Metadata URL。`, +'se74ce42d41e392ba': `匹配是根据域名后缀完成的,因此,如果您输入 domain.tld,foo.domain.tld 仍将匹配。`, +'se78364ee913ae2bd': `新前哨集成`, +'se8987bdfb35e46b2': `消费者密钥`, +'se8a81c75b6e30a33': `要检查的字段键,提示阶段中定义的字段键可用。`, +'se99efc0873031976': `浏览器选项卡中显示的图标。`, +'se9b1fec72ffd8f48': `本地`, +'se9d0f12f95b14095': `可选,逗号分隔的 subjectAlt 名称。`, +'sea2f00b34b385a43': `已成功更新设备。`, +'sea91c57b3d3969fe': `系统状态`, +'seb5ba88f21937c98': `检查 outposts.`, +'sebda1d54a3f9f967': `令牌网址`, +'sebf44d2471b608ad': `经过身份验证的用户用来配置此阶段的流程。如果为空,用户将无法配置此阶段。`, +'sec1808532fe107b9': `允许用户根据属性使用应用程序、强制使用密码标准以及有选择地应用阶段。`, +'sec7443a45fd141e5': `提示`, +'sec97cdaf7af8648b': `使用 YAML 或 JSON 设置自定义属性。`, +'secbfd13bdae95a59': `用户设置流程`, +'secdb4b4c4e66aa38': `组信息`, +'sece294cd51a85745': `确定会话持续多长时间。默认为 0 秒意味着会话持续到浏览器关闭为止。`, +'sed3512fe4560c7f4': `将用户创建为非活动用户`, +'sed8d4c3fd5f60e1f': `探索集成`, +'sede0abbf2b612812': `Webhook (generic)`, +'see3ff55262fd6500': `用户被重定向到以同意授权的 URL。`, +'sef49aec68fd1dc66': `姓名`, +'sef50d248448e0df1': str`Yes ( + ${0})`, +'seffdf887fed7f668': `证书指纹 (SHA1)`, +'sf05e384059a0a7c1': `请求被转发到的上游主机。`, +'sf1868dc19e3917bb': `西班牙的`, +'sf1e9d421f35b51e5': `应用程序`, +'sf1ec4acb8d744ed9': `注意`, +'sf22a28f83cc45fcc': `Stage 用于配置基于二重奏的身份验证器。此阶段应该用于配置流程。`, +'sf22f7f8a9309b4ed': `检查应用程序访问权限`, +'sf232d42142eacc23': `启用后,邀请将在使用后被删除。`, +'sf29883ac9ec43085': `应用密码`, +'sf325a4adba4d6278': `组成员资格字段`, +'sf339673f0f76a8bd': `公钥,从 https://www.google.com/recaptcha/intro/v3.html 获取。`, +'sf3981f36525b0dbd': `连接将被删除`, +'sf3f9a0feaf083207': `已发送到组`, +'sf4122b220926be97': `版本`, +'sf417c13d7a0f7995': `复制下载 URL`, +'sf45a0d2f00bcc6ff': `未定义选项卡`, +'sf466142da6a65052': `模仿`, +'sf4de1644dcdb53d5': `用于 HTTP-Basic 标头的密码部分的用户/组属性。`, +'sf53a78d889b6c775': `由 authentik 管理(已发现)`, +'sf55c7c06dbc2c8c6': `成功创建租户。`, +'sf55d28d4dff0e41b': `设置示例如下所示:`, +'sf56998949bdf6b33': `停用`, +'sf679b7a62808287e': `到期`, +'sf693300708a40d2c': `创建一个新策略。`, +'sf6e1665c7022a1f8': `密码`, +'sf6eb148db23d19de': str`无法删除 + ${0}: + ${1}`, +'sf71dba2c30283a54': `过期?`, +'sf813a72d8fadd765': `在这种情况下,您需要将身份验证网址设置为 auth.example.com,将 Cookie 域设置为 example.com。`, +'sf8c76d5fb408de7b': `您将被重定向到以下 URL。`, +'sf8f49cdbf0036343': `配置错误`, +'sf90be97cb08f3d5a': `占位符`, +'sf9aee319a006c9b4': `添加`, +'sf9b1c0661a02d9f9': `配置`, +'sf9bddaf910f4eea5': `生成证书密钥对`, +'sf9e61f4f8e90f0f1': `更改状态`, +'sf9f2c719a04066ec': `App`, +'sfa88f413e287bb0f': `阶段类型`, +'sfab527528ea64618': `匹配事件的客户端 IP(严格匹配),对于网络匹配,请使用表达式策略。`, +'sfac6f995c7670559': `没有阶段绑定`, +'sfad8af8ce38104a3': `最长使用期限(以天为单位)`, +'sfae9f4ea5749a36b': `额外的Group DN,优先于Base DN。`, +'sfbadb77fbc61efb8': `上个月每天创建的用户`, +'sfbaeb0de54fbfdbb': `授权此请求发起端时使用的Flow。`, +'sfc400b2d71e49d28': `已成功创建策略。`, +'sfcebd18506f1e535': `流程`, +'sfcfcf85a57eea78a': `TOTP 设备`, +'sfd13ca8ebd857c2e': `创建新应用程序`, +'sfd1af96798dd8a5f': `公钥`, +'sfe199b2564b66054': str`在服务器上验证断言时出错: + ${0}`, +'sfe1c86b42ba13376': `请输入您的 TOTP 代码`, +'sfe211545fd02f73e': `验证`, +'sfe388f0313f52da2': `协议设置`, +'sfe629863ba1338c2': `连接错误,正在重新连接...`, +'sfe6977a3aea3ee6e': `认证已存在用户时所使用的流程。`, +'sfe938c1585e0bf68': `这些绑定控制是否将此阶段应用于流程。`, +'sfe99a8caa70232ab': `身份验证类型`, +'sfeb779d4ccbc5a0e': `恢复流程`, +'sfeb82261bcf99edd': `健康的 Outposts`, +'sfee06600c15082a9': `从当前会话中移除用户。`, +'sfee91e08b8b47477': `允许的服务器`, +'sfefce784ec55868f': `选择一个对象。`, +'sff3b708e23bb96b2': `在阶段呈现给用户之前评估策略。`, +'sff50532a2d85e32e': `修改密码`, +'sff5bb7742c2896c8': `目标`, +'sff69c1a637f899a6': `Bind 流程`, +'sff945d3f59b93c5e': `MFA 设备`, +'sffa171e11d4ae513': `传输`, +'sffa721bb6aa3128d': `搜索...`, +'sffd2e553143d1b0e': `按住 ctrl/command 键可选择多个项目。`, +'sffeef5b119d8625c': `已成功创建映射。`, +'s0410779cb47de312': `Path template for users created. Use placeholders like \`%(slug)s\` to insert the source slug.`, +'sd73b202ec04eefd9': `Unknown intent`, +'s02240309358f557c': `Unknown severity`, +'se2d65e13768468e0': `Internal`, +'s84fcddede27b8e2a': `External`, +'s1a635369edaf4dc3': `Service account`, +'sff930bf2834e2201': `Service account (internal)`, +'s4ba4473f3d4ec896': `New version available`, +'s364c4f177a2f8322': `Open API drawer`, +'s9ba989e69344ff29': `Open Notification drawer`, +'sca7cfe2bef51b2a5': `Root`, +'s9d8b8aa2b404c2c8': `Settings`, +'s7cfe12cd14df9950': `Sign out`, +'sb4d7bae2440d9781': `User Statistics`, +'saab79cd956ee56a9': `Blueprints`, +'s1a65ee08832fbfe2': `Flows and Stages`, +'s6b2beba7ab637e9e': `Roles`, +'sb1a4e9b288e2f005': `Federation and Social login`, +'s7be2df39f727faa2': `Enterprise`, +'s2e109263b73c12d5': `Licenses`, +'sfffb0d0958bfbc42': `Manage users`, +'s66313b45b69cfc88': `Check the release notes`, +'sbdc4a833de9ca502': `Logins and authorizations over the last week (per 8 hours)`, +'s4a34a6be4c68ec87': `Users created`, +'s275c956687e2e656': `Failed logins`, +'s1a0e95458b44d7f8': `Any policy must match to grant access`, +'s7fc1ace65486dc25': `All policies must match to grant access`, +'s1cffe58249b04669': `Internal application name used in URLs.`, +'s350a616ff5e145ec': `Select a provider that this application should use.`, +'sc92ea8fbf9ba06a7': `Backchannel Providers`, +'s4c6534a118f52fdd': `Select backchannel providers which augment the functionality of the main provider.`, +'s19409e8712ddd369': `Add provider`, +'s2348f46ebf436671': `Open in new tab`, +'s8655c52824caac63': `If checked, the launch URL will open in a new browser tab or window from the user's application library.`, +'s070fdfb03034ca9b': `One hint, 'New Application Wizard', is currently hidden`, +'s61bd841e66966325': `External applications that use authentik as an identity provider via protocols like OAuth2 and SAML. All applications are shown here, even ones you cannot access.`, +'s1f7698c061c208c9': `Open`, +'sed02f831e653deb3': `Logins over the last week (per 8 hours)`, +'se8dca0132c66ae03': `Permissions`, +'s398f6ba74ba8943a': `Select providers to add to application`, +'see2bcbc11bb91960': `Successfully updated instance.`, +'s9e51d6de369f320b': `Successfully created instance.`, +'s92e91071c6a45eb4': `Disabled blueprints are never applied.`, +'sf63c89c0604c288f': `Local path`, +'sd6422f7004036cdd': `OCI Registry`, +'s2e532e19ed477a56': `Path`, +'s61eacb19db252f5e': `URL`, +'scbb7d3154da629f3': `OCI URL, in the format of oci://registry.domain.tld/path/to/manifest.`, +'s0195c0df7294228a': `See more about OCI support here:`, +'s74cb3d66f6a668e1': `Documentation`, +'sfae395b94a5a0040': `Blueprint`, +'s7e1342d37124b65b': `Configure the blueprint context, used for templating.`, +'s6ec8c9d11310300a': `Orphaned`, +'s6835db03209b4f94': `Automate and template configuration within authentik.`, +'s23de62f931f7d754': `Last applied`, +'s2708cac1f4942708': `Blueprint(s)`, +'s880b8b70b22f9977': `Update Blueprint`, +'sb8f855b49234b81b': `Apply`, +'sef3d102324bf8561': `Create Blueprint Instance`, +'s0e427111d750cc02': `Successfully updated license.`, +'s06ae64e621f302eb': `Successfully created license.`, +'s2905c425adae99bd': `Install ID`, +'sb18ec434a8a3aafb': `License key`, +'s9ce7cc01fb9b5b53': `Manage enterprise licenses`, +'sf9ebf11ac2645820': `No licenses found.`, +'sd49099e9522635f4': `License(s)`, +'s3be1d90ffa46b7f1': `Enterprise is in preview.`, +'sa1db89262360550b': `Send us feedback!`, +'s4015746f55a8d89f': `Get a license`, +'sb2cbd06f8e25b47e': `Go to Customer Portal`, +'sf58825457d61c429': `Forecast internal users`, +'sde9a3f41977ec1f8': str`Estimated user count one year from now based on ${0} current internal users and ${1} forecasted internal users.`, +'s4557b6b9da258643': `Forecast external users`, +'sf52479d6daa0a4a8': str`Estimated user count one year from now based on ${0} current external users and ${1} forecasted external users.`, +'sd22bd01bdf28c548': `Cumulative license expiry`, +'s0dd031b58ed4017c': str`Internal: ${0}`, +'s57b07e524f8f5c2a': str`External: ${0}`, +'sdeb6cee42435dd07': `Update License`, +'s6196153c4b0c1ea0': `Install`, +'s0285b4bd69130fa3': `Install License`, +'s3b3c333481944862': `Show details`, +'sb41b2cfbbc52565b': `Created`, +'s7513372fe60f6387': `Event volume`, +'sa55ee64c5c51df0f': `Select the group of users which the alerts are sent to. If no group is selected the rule is disabled.`, +'s5795b310ab271d20': `These bindings control upon which events this rule triggers. +Bindings to groups/users are checked against the user of the event.`, +'s4acf840bc792c3ae': `Local (notifications will be created within authentik)`, +'s6f367f5604d5056d': `Create and bind Stage`, +'scc2e420c54dc8089': `Bind existing stage`, +'sb36e4c05244278c1': `No requirement`, +'s7b105164d209f670': `Require authentication`, +'s239c2a351cde6d39': `Require no authentication.`, +'s98beadfeeb3acb66': `Require superuser.`, +'s047a5f0211fedc72': `Require Outpost (flow can only be executed from an outpost).`, +'sfad9279cc42c6b61': `Required authentication level for this flow.`, +'sb56674c9ea4f0588': `Behavior settings`, +'s14ace18ccf4fb86d': `Increases compatibility with password managers and mobile devices.`, +'scfbc2f1396ee8550': `Denied action`, +'sff38031cf061e3ae': `Will follow the ?next parameter if set, otherwise show a message`, +'s936bf4342b182ad4': `Will either follow the ?next parameter or redirect to the default interface`, +'s22b0e8c5277dd5a9': `Will notify the user the flow isn't applicable`, +'s2eeca5cfc99ef19b': `Decides the response when a policy denies access to this flow for a user.`, +'sbaf20067de176c90': `Appearance settings`, +'s2e4818861000b13f': `Layout`, +'s3ebf4c166058afce': `Clear background`, +'sc4fdeccf14be5378': `Execute`, +'sf12d588a76ba7e51': `Are you sure you want to clear the flow cache? + This will cause all flows to be re-evaluated on their next usage.`, +'s01794c0ee3629c1b': `Flow Info`, +'s77099d752f1ab773': `Related actions`, +'s0a61796c1956d32c': `Evaluate when flow is planned`, +'sf533f13321fee530': `Evaluate policies during the Flow planning process.`, +'s6336fa345e96dde9': `Evaluate when stage is run`, +'s0dc46deb8f181baf': `Invalid response behavior`, +'seb0805249661d15b': `Returns the error message and a similar challenge to the executor`, +'sd891d8463d0ebace': `Restarts the flow from the beginning`, +'s6b9a1dd402750a8a': `Restarts the flow from the beginning, while keeping the flow context`, +'sbc88fb27a4c3b894': `Configure how the flow executor should handle an invalid response to a challenge given by this bound stage.`, +'sde2bb5418562c5b2': `Unknown designation`, +'sb9834316ffd4ae3e': `Stacked`, +'s12146091b2b539a3': `Content left`, +'sa800871782eba1ac': `Content right`, +'sb4e50ca3cffdbc10': `Sidebar left`, +'s745a55f9abf9f2e5': `Sidebar right`, +'sb3182a87ded1bc91': `Unknown layout`, +'s96d2bb4be3f5e8aa': `Select roles to grant this groups' users' permissions from the selected roles.`, +'s005053d82b712e0a': `Notes`, +'s634448e4942cf452': `Edit the notes attribute of this group to add notes here.`, +'sa982875b258fea07': `Successfully added user to group(s).`, +'s1bd5920d8adf2bd5': `Groups to add`, +'sd9f67fbf3f86efcf': `Add group`, +'s5f71fa3c53828e30': `Remove from Group(s)`, +'sb4c9ed2a487b238f': str`Are you sure you want to remove user ${0} from the following groups?`, +'sea4f08110bb8f15d': `Remove`, +'s964f6725aeb7662f': `Add Group`, +'s65ca2f256ea09c11': `Add to existing group`, +'s505fbbdcbc6aa921': `Add new group`, +'sdb53ccdd6174e6e3': `Successfully added user(s).`, +'s306a35df5d0d38bb': `Users to add`, +'s424f57afae0caac4': `Add users`, +'s7220fcf4fec4e0df': `Remove Users(s)`, +'s5d7748b1d2363478': str`Are you sure you want to remove the selected users from the group ${0}?`, +'s720594461542943f': `Add User`, +'s4c41f3f4c23e8eaa': `Warning: This group is configured with superuser access. Added users will have superuser access.`, +'scee721983b1c28d0': `Add existing user`, +'sd600334ec2c39b74': `Create user`, +'s824e0943a7104668': str`This user will be added to the group "${0}".`, +'s8afc8c5aafb392d3': `Radius`, +'s3abecf1e778c9625': `See more here:`, +'saa8939ac88a76f98': `Last seen`, +'s1e176e35c828318c': `Hostname`, +'sa43153d53ae65063': `Unknown type`, +'s9ee92717d7f63247': `Detailed health (one instance per column, data is cached so may be out of date)`, +'sa85cfb884c17d85d': `Verify Kubernetes API SSL Certificate`, +'s911a27022aba349f': `Create and bind Policy`, +'sddb040c47daae56b': `Bind existing policy`, +'s6b1ed7507f26cb4a': `Failure result`, +'s2e422519ed38f7d8': `Pass`, +'s81a45c4fd11e8e1a': `Don't pass`, +'s95b73e0f4e47eb9a': `Result used when policy execution fails.`, +'s15b46b78edebb20a': `Are you sure you want to clear the policy cache? This will cause all policies to be re-evaluated on their next usage.`, +'sb6c3bf5489d7556e': `Example context data`, +'s4a697f0b36c4fe83': `Active Directory User`, +'s9277b90db38e1983': `Active Directory Group`, +'sa6c0ba4910c7ad7f': `Assigned to application (backchannel) `, +'s0b3bf19b31dd6bac': `Try the new application wizard`, +'sa18e1c6e0e6f16cc': `The new application wizard greatly simplifies the steps required to create applications and providers.`, +'s01ef54f5d7c6ed47': `Try it now`, +'s9103a949a3963aa9': `Successfully updated role.`, +'sdf87c5661b31359e': `Successfully created role.`, +'s3484b1e6d0b5335f': `Manage roles which grant permissions to objects within authentik.`, +'s259de999919316db': `Role(s)`, +'sc615309d10a9228c': `RBAC is in preview.`, +'s2ffad156e8332f04': `Update Role`, +'sc5f923729564fbf3': `Create Role`, +'sf485014051ad0cf7': `Successfully assigned permission.`, +'sdeb90bfd8a80b86b': `Permissions to add`, +'s36247910d67421e1': `Select permissions`, +'sc92c1a54034e21cc': `Assign`, +'scd84d10ee9137070': `Assign permission to role`, +'s67e136af8fc1107b': `Assign permission`, +'sb923723d27df40ba': `Permission(s)`, +'sc5fb00b25c7f5a02': `Permission`, +'s14bfa8fd1bec8889': `Role doesn't have view permission so description cannot be retrieved.`, +'s7e796fe83982863f': str`Role ${0}`, +'s526e2c66bd51ff5f': `Role Info`, +'s9cc631505c17b028': `Assigned global permissions`, +'s8f85a0e678846080': `Assigned object permissions`, +'s8a67b33a0d70d322': `Import Duo device`, +'s254a9a23dc1635df': `Import devices`, +'s92921878e886e36d': `Duration`, +'se7e1ababbc4868b8': str`${0} seconds`, +'s14bf17e2a1a2c381': `Restart task`, +'s134177568525dbc8': `Device code flow`, +'s7b298427bdea81ae': `If set, the OAuth Device Code profile can be used, and the selected flow will be used to enter the code.`, +'s04bfd02201db5ab8': `Set custom attributes using YAML or JSON. Any attributes set here will be inherited by users, if the request is handled by this tenant.`, +'sbd34d118bcb1aaf2': `API Token`, +'se31d92bea7f3a186': `Used to access the API programmatically`, +'sfd586951c75eb291': `App password.`, +'s59bf194136d0d13a': `Used to login using a flow executor`, +'se9c07cf256774d81': `Editing is disabled for managed tokens`, +'scc3487e74c5a3e89': `Copy token`, +'sec5cdfa358f9dbf7': `Warning: Adding the user to the selected group(s) will give them superuser permissions.`, +'s3d2a8b86a4f5a810': str`Successfully created user and added to group ${0}`, +'s5a802e46a033c8af': `User's primary identifier. 150 characters or fewer.`, +'se6a13beff646557b': str`Successfully updated ${0} ${1}`, +'sd8051c26e155f043': `Assign permission to user`, +'s1455753daa00f1bc': `User doesn't have view permission so description cannot be retrieved.`, +'sf05c700a1250824e': `Confirmed`, +'s9f9492d30a96b9c6': `User type`, +'scef2eb6a2bfe3110': `Internal users might be users such as company employees, which will get access to the full Enterprise feature set.`, +'sf66389b04fcc219c': `External users might be external consultants or B2C customers. These users don't get access to enterprise features.`, +'s77e8668a27dbc402': `Service accounts should be used for machine-to-machine authentication or other automations.`, +'saf6097bfa25205b8': `A copy of this recovery link has been placed in your clipboard`, +'s5b8ee296ed258568': `The current tenant must have a recovery flow configured to use a recovery link`, +'s510c7add9e24c306': `Hide deactivated user`, +'s0924f51b028233a3': `<No name set>`, +'s895514dda9cb9c94': `Create recovery link`, +'s94055b4eb957dc8f': `User folders`, +'s028d385389b5aac0': `Lock the user out of this system`, +'sd2122c514f0778b5': `Allow the user to log in and use this system`, +'s43fe853bf219a9b8': `Temporarily assume the identity of this user`, +'se28b5f3fcadaeeb1': `Enter a new password for this user`, +'s6f5bb31e2733ecd5': `Create a link for this user to reset their password`, +'se5c795faf2c07514': `Create Recovery Link`, +'sc44bae5cde0083fa': `Actions over the last week (per 8 hours)`, +'sb57dbcda1929c642': `Edit the notes attribute of this user to add notes here.`, +'sb6770fa90be6d8b3': `OAuth Refresh Tokens`, +'s28b3de1561da72b3': `MFA Authenticators`, +'sa3a3e09b88ed9791': `Assigned permissions`, +'s67ac11d47f1ce794': `WebAuthn requires this page to be accessed via HTTPS.`, +'se9e9e1d6799b86a5': `WebAuthn not supported by browser.`, +'s71c5d51d5a357dbd': `Don't show this message again.`, +'sb3d4f79d9d8b71e5': `Submit`, +'s2da4aa7a9abeb653': `Pseudolocale (for testing)`, +'s2ed8eb02525a920a': str`${0} hour(s) ago`, +'s98327528f00365a7': `Failed to fetch data.`, +'s08df8d0a773a3ea0': `Remove item`, +'s7df5b92a3f93544f': `Warning: The current user count has exceeded the configured licenses.`, +'s0141f42936495787': `Click here for more info.`, +'se33b158a1ec02a09': str`Successfully deleted ${0} ${1}`, +'s5819a49638f6d7cb': str`Are you sure you want to delete ${0} ${1}?`, +'s04ceadb276bbe149': `Loading options...`, +'s90760e5e02e95dfe': `Refresh Tokens(s)`, +'sb37880a2a7288ef0': `Update Permissions`, +'saabeb4cab074b0b9': `User Object Permissions`, +'s8489d5559dda260c': `Role Object Permissions`, +'s5da52af9b083c29a': `Model`, +'s78ab26da7f067de8': `Select permissions to grant`, +'sca7fed2bef53cb99': `Role`, +'s5ee6f1b84e9ebc69': `Assign to new role`, +'s4afb26a8fae257e9': `Directly assigned`, +'sf79f8681e5ffaee2': `Assign to new user`, +'sfd44ce578f643145': `Failed to fetch objects.`, +'s5f4586bc1e2740e6': `Clear search`, +'sde1907073fd96017': `(Current session)`, +'sbb8ad22c83d375b1': `The following keywords are supported:`, +'s7181a5504472e856': `Apply changes`, +'s4090dd0c0e45988b': `Request ID`, +'s4d7fe7be1c49896c': `You may close this page now.`, +'s28cbd874ba450b4e': `Less details`, +'s8fa26f65aed77c96': `More details`, +'s3fb39fc45e840f78': `Refer to documentation`, +'sf34026321b35315c': `Either no applications are defined, or you don’t have access to any.`, +'s3e99ea082ca5ade9': `Failed to fetch`, +'s2152f3482784705f': `Recent events`, +'scefe482c547fb3f3': str`Based on ${0}`, +'s1f1c857c0c4250e4': str`${0} day(s) ago`, +'s477de089b505a6ea': `SCIM Provider`, +'s8a75e83497a183a2': `Healthy`, +'sbf9c5c5a8e5efad4': `Failed`, +'se4cd073c125382af': `Unsynced / N/A`, +'se2b29e6cfe59414c': `UI Settings`, +'s4498e890d47a8066': `OAuth2/OIDC (Open Authorization/OpenID Connect)`, +'sc2cedfb22488ccb2': `Modern applications, APIs and Single-page applications.`, +'s4f2e195d09e2868c': `LDAP (Lightweight Directory Access Protocol)`, +'sffd5481034a1bd41': `Provide an LDAP interface for applications and users to authenticate against.`, +'s836148f721d8913b': `Transparent Reverse Proxy`, +'s945a6b94361ee45b': `For transparent reverse proxies with required authentication`, +'s7f5bb0c9923315ed': `Forward Auth (Single Application)`, +'sdc9a6ad1af30572c': `For nginx's auth_request or traefik's forwardAuth`, +'sf8008d2d6b064b95': `Forward Auth (Domain Level)`, +'sfc31264ef7ff86ef': `For nginx's auth_request or traefik's forwardAuth per root domain`, +'sfa8a1ffa9fee07d3': `SAML (Security Assertion Markup Language)`, +'s40830ec037f34626': `Configure SAML provider manually`, +'s848a23972e388662': `RADIUS (Remote Authentication Dial-In User Service)`, +'sea9fc40dfd1d18b1': `Configure RADIUS provider manually`, +'s3e902999ddf7b50e': `SCIM (System for Cross-domain Identity Management)`, +'sa1b0052ae095b9b3': `Configure SCIM provider manually`, +'s15831fa50a116545': `Saving Application...`, +'s823abdb61543a826': `Authentik was unable to save this application:`, +'s848288f8c2265aad': `Your application has been saved`, +'scda8dc24b561e205': `There was an error in the application.`, +'sdaca9c2c0361ed3a': `Review the application.`, +'sb50000a8fada5672': `There was an error in the provider.`, +'s21f95eaf151d4ce3': `Review the provider.`, +'s9fd39a5cb20b4e61': `There was an error`, +'s7a6b3453209e1066': `There was an error creating the application, but no error message was sent. Please review the server logs.`, +'s8915e64b8b999bfe': `Cached binding`, +'s842d690eb3c11762': `Flow is executed and session is cached in memory. Flow is executed when session expires`, +'s6a66759749bf31ed': `Direct binding`, +'se0adaf83627104fb': `Always execute the configured bind flow to authenticate the user`, +'s9065fcccd837a679': `Cached querying`, +'s30d0d0e6c626a234': `The outpost holds all users and groups in-memory and will refresh every 5 Minutes`, +'sffc14b8200a9f938': `Direct querying`, +'sdce4680288083fe3': `Always returns the latest data, but slower than cached querying`, +'s1889ba2eaeec2f1e': `When enabled, code-based multi-factor authentication can be used by appending a semicolon and the TOTP code to the password. This should only be enabled if all users that will bind to this provider have a TOTP device configured, as otherwise a password may incorrectly be rejected if it contains a semicolon.`, +'s4647b2c92638d6fd': `The certificate for the above configured Base DN. As a fallback, the provider uses a self-signed certificate.`, +'s2acef4f6ba39bf11': `DNS name for which the above configured certificate should be used. The certificate cannot be detected based on the base DN, as the SSL/TLS negotiation happens before such data is exchanged.`, +'s1a711c19cda48375': `Configure LDAP Provider`, +'s67d858051b34c38b': `Method's display Name.`, +'s319040353f479853': `Flow used for users to authenticate.`, +'se5973e7c8ba0fc71': `Bind mode`, +'scef3f4ad80abbd22': `Configure how the outpost authenticates requests.`, +'s254d527e3a53dbb7': `Code-based MFA Support`, +'scd247ffad6e04ac0': `TLS Server name`, +'s9368e965b5c292ab': `Configure OAuth2/OpenId Provider`, +'sa72a3bd1e7e89926': `Flow used when a user access this provider and is not authenticated.`, +'sde0ad51b14f77cf6': `Redirect URIs/Origins (RegEx)`, +'sbea3db12fd799210': `Access Token validity`, +'s821f6014c1a435b9': `Refresh Token validity`, +'s00c2db16ea9bc263': `Configure how long refresh tokens are valid for.`, +'se2adaf0371ffcd65': `Machine-to-Machine authentication settings`, +'s33318837e6c54a9b': `Trusted OIDC Sources`, +'s22e566052f7bec81': `JWTs signed by certificates configured in the selected sources can be used to authenticate to this provider.`, +'sf5cbccdc6254c8dc': `Configure Proxy Provider`, +'sf6d46bb442b77e91': `AdditionalScopes`, +'sb488dee0be434f7e': `Authentication settings`, +'s23cee624c735f266': `Intercept header authentication`, +'sc007cca5af67eae0': `When enabled, authentik will intercept the Authorization header to authenticate the request.`, +'s36e630ba56617556': `Send HTTP-Basic Authentication`, +'s9d5796a4b9b7560e': `Send a custom HTTP-Basic Authentication header based on values from authentik.`, +'h10ef80d434185070': html`Use this provider with nginx's auth_request or traefik's + forwardAuth. Each application/domain needs its own provider. + Additionally, on each domain, /outpost.goauthentik.io must be + routed to the outpost (when using a managed outpost, this is done for you).`, +'s2c8c6f89089b31d4': `Configure Radius Provider`, +'sb95baab425322600': `Shared secret`, +'s9e9316a6b0c16231': `Client Networks`, +'s7f2dcf01f7a8c0b7': `List of CIDRs (comma-seperated) that clients can connect from. A more specific + CIDR will match before a looser one. Clients connecting from a non-specified CIDR + will be dropped.`, +'sfe906cde5dddc041': `Configure SAML Provider`, +'sf54c562d8a10ce77': `Also known as EntityID.`, +'sb3defbacd01ad972': `Property mappings used for user mapping.`, +'s43c1f927936f0a02': `Assertion not valid on or after current time + this value.`, +'s0dd00fbaba08748a': `Session not valid on or after current time + this value.`, +'s7ccce0ec8d228db6': `Configure SCIM Provider`, +'sb21f33b039c86322': `SCIM base url, usually ends in /v2.`, +'s33ed903c210a6209': `Token to authenticate with. Currently only bearer authentication is supported.`, +'sfc8bb104e2c05af8': `User filtering`, +'sc0d0890fbd46ef62': `Exclude service accounts`, +'s23ab136ad85f0ad2': `Only sync users within the selected group.`, +'sfdedc3b0b2b7ce3d': `Attribute mapping`, +'sd7728d2b6e1d25e9': `Property mappings used for group creation.`, +'s4bd386db7302bb22': `Create With Wizard`, +'s0c9670f429e74283': `New application`, +'s3ba9b8aeb686d9f7': `Match events created by selected model. When left empty, all models are matched.`, +'s9307f3dbb07a73b5': `Only fail the policy, don't invalidate user's password`, +'se2cc93bd2647baec': `Static rules`, +'s1293ad87acc7a609': `HaveIBeenPwned settings`, +'s3fd219b045193507': `zxcvbn settings`, +'s28d84abfbaf555ea': `Score threshold`, +'s7b3148ffba9f4527': `If the password's score is less than or equal this value, the policy will fail.`, +'sd94e99af8b41ff54': `0: Too guessable: risky password. (guesses &lt; 10^3)`, +'sc926385d1a624c3a': `1: Very guessable: protection from throttled online attacks. (guesses &lt; 10^6)`, +'s8aae61c41319602c': `2: Somewhat guessable: protection from unthrottled online attacks. (guesses &lt; 10^8)`, +'sc1f4b57e722a89d6': `3: Safely unguessable: moderate protection from offline slow-hash scenario. (guesses &lt; 10^10)`, +'sd47f3d3c9741343d': `4: Very unguessable: strong protection from offline slow-hash scenario. (guesses &gt;= 10^10)`, +'s2f8c4cf12350a36c': `Check static rules`, +'sd75a9a71309fb387': `Check haveibeenpwned.com`, +'se5cb18408df3284e': `For more info see:`, +'scef7abb8456b06d6': `Check zxcvbn`, +'sdfdb58cd232b363d': `Password strength estimator created by Dropbox, see:`, +'scf4afecb0f1e69b2': `Invalid login attempts will decrease the score for the client's IP, and the +username they are attempting to login as, by one.`, +'s8323a9af28e10502': `The policy passes when the reputation score is below the threshold, and +doesn't pass when either or both of the selected options are equal or above the threshold.`, +'s95f09b229a0a0bb0': `Confidential clients are capable of maintaining the confidentiality of their credentials such as client secrets`, +'s51c6b8403c2dc5d9': `Public clients are incapable of maintaining the confidentiality and should use methods like PKCE. `, +'sccc47f82044453f9': `Based on the User's hashed ID`, +'sbd5be4fb7442a34c': `Based on the User's ID`, +'sc9cf9ecaf9e5d67e': `Based on the User's UUID`, +'s4291727352c4f295': `Based on the User's username`, +'sd62cfc27ad4aa33b': `Based on the User's Email`, +'s55eb75bedf96be0f': `This is recommended over the UPN mode.`, +'sf80e9547166117e6': `Based on the User's UPN`, +'sde949d0ef44572eb': `Requires the user to have a 'upn' attribute set, and falls back to hashed user ID. Use this mode only if you have different UPN and Mail domains.`, +'sde56783222b527d6': `Each provider has a different issuer, based on the application slug`, +'sa8384c9c26731f83': `To allow any redirect URI, set this value to ".*". Be aware of the possible security implications this can have.`, +'s417b90913e05bc17': `Preview`, +'s59f5eda30a904b75': `JWKS URL`, +'s453b0c150a7ca58e': `Example JWT payload (for currently authenticated user)`, +'sff0ac1ace2d90709': `Use this provider with nginx's auth_request or traefik's forwardAuth. Each application/domain needs its own provider. Additionally, on each domain, /outpost.goauthentik.io must be routed to the outpost (when using a managed outpost, this is done for you).`, +'s2345170f7e272668': `Unknown proxy mode`, +'sd539548ca4c71619': `Additional scopes`, +'s7ba9677d069e5f02': `Caddy (Standalone)`, +'s09b671b120443043': `Update Radius Provider`, +'scb58b8a60cad8762': `Default relay state`, +'s6827a456c9dfc6ee': `When using IDP-initiated logins, the relay state will be set to this value.`, +'s44b1f042790cd1a2': `SAML Configuration`, +'sba999428083abce3': `EntityID/Issuer`, +'scd2984ee5552643a': `SSO URL (Post)`, +'saa79b47f60c66458': `SSO URL (Redirect)`, +'s2da51a6287118ba8': `SSO URL (IdP-initiated Login)`, +'s0a57e911e457302b': `SLO URL (Post)`, +'s1e7308bb1ca323e1': `SLO URL (Redirect)`, +'s382b702673776873': `Example SAML attributes`, +'sea3bfc143ced73db': `NameID attribute`, +'s019555b5a442aa00': `Property mappings used to user mapping.`, +'sadadfe9dfa06d7dd': `No sync status.`, +'s2b1c81130a65a55b': `Sync currently running.`, +'s2f0f6691de0b0388': `Warning: Provider is not assigned to an application as backchannel provider.`, +'sc6c575c5ff64cdb1': `Update SCIM Provider`, +'s4476e9c50cfd13f4': `Global status`, +'sd21a971eea208533': `Vendor`, +'s1024166475850a65': `Use Server URI for SNI verification`, +'se65beb94fffc3c4b': `Required for servers using TLS 1.3+`, +'s000ee3e634868b3c': `TLS Client authentication certificate`, +'s5506b35a1bceb141': `Client certificate keypair to authenticate against the LDAP Server's Certificate.`, +'sfbc59ff17a73503d': `User path`, +'sf36170f71cea38c2': `Connectivity`, +'sf3fec8353106ac2f': str`OAuth Source ${0}`, +'s199b55513a739f43': `OIDC Well-known URL`, +'s8b149b30b5b523ef': `OIDC well-known configuration URL. Can be used to automatically configure the URLs above.`, +'s9db2c836ade1339c': `OIDC JWKS URL`, +'s4b2a1b657c160f5b': `JSON Web Key URL. Keys from the URL will be used to validate JWTs from this source.`, +'s2df0b65125600de9': `OIDC JWKS`, +'s02de8d9e8583b480': `Raw JWKS data.`, +'sb35c08e3a541188f': `Also known as Client ID.`, +'sd46fd9b647cfea10': `Also known as Client Secret.`, +'sa61966cd83b4924c': `Additional scopes to be passed to the OAuth Provider, separated by space. To replace existing scopes, prefix with *.`, +'s5c1dc164c89ac13e': `Unknown provider type`, +'s355b21b89ce5d9c5': `Details`, +'s2feae323f46479f8': `These bindings control which users can access this source. + You can only use policies here as access is checked before the user is authenticated.`, +'s995535e7af30d754': `Use the user's email address, but deny enrollment when the email address already exists`, +'s542ecb4130f6cea5': `Link to a user with identical username. Can have security implications when a username is used with another source`, +'s2a1debf34e5aeba4': `Use the user's username, but deny enrollment when the username already exists`, +'s81ce0d54727f42d2': `Unknown user matching mode`, +'s6f96a78d81ef277c': `Post-auto binding`, +'sc2c70fd56f5d0b48': `Post binding but the request is automatically sent and the user doesn't have to confirm.`, +'s3198c384c2f68b08': `Time offset when temporary users should be deleted. This only applies if your IDP uses the NameID Format 'transient', and the user doesn't log out manually.`, +'s5adafce329aaa853': `Authenticator type name`, +'s23e6a57201fba25e': `Display name of this authenticator, used by users when they enroll an authenticator.`, +'s5b6b6e2cb884d59f': `Duo Auth API`, +'s88870d7e499e848b': `Duo Admin API (optional)`, +'s7f13f4a2d0370cf6': `When using a Duo MFA, Access or Beyond plan, an Admin API application can be created. + This will allow authentik to import devices automatically.`, +'s71633a67e0d7c0e4': `Successfully imported device.`, +'s7d61705dfb120d7b': `The user in authentik this device will be assigned to.`, +'s5eaf1d304e03ed4b': `Duo User ID`, +'s003847d8bc01c676': `The user ID in Duo, can be found in the URL after clicking on a user.`, +'sbbc806ea3987c781': `Automatic import`, +'s77299a9d3dd932cd': str`Successfully imported ${0} devices.`, +'s6a615f6165ef01c9': `Start automatic import`, +'s9f83d7768aea548a': `Or manually import`, +'sa92398dba8b12d85': `Mapping`, +'s38162f615710c7b4': `Modify the payload sent to the custom provider.`, +'s0ae0072614320ae2': `Hash phone number`, +'s9ca3310e1999fd5b': `If enabled, only a hash of the phone number will be saved. This can be done for data-protection reasons. Devices created from a stage with this enabled cannot be used with the authenticator validation stage.`, +'s7caa8f7edb920909': `The number of tokens generated whenever this stage is used. Every token generated per stage execution will be attached to a single static device.`, +'s4aacc4e0277c1042': `Token length`, +'s6931695c4f563bc4': `The length of the individual generated tokens. Can be increased to improve security.`, +'se2e9f5a32c93e5f7': `Last validation threshold`, +'s951281efc92b03fc': `If any of the devices user of the types selected above have been used within this duration, this stage will be skipped.`, +'s1e0de9c4f66dc371': `WebAuthn User verification`, +'s24bce955914b1f0a': `Stage used to configure a WebAuthn authenticator (i.e. Yubikey, FaceID/Windows Hello).`, +'s6a3cf855140b9511': `Required: User verification must occur.`, +'sc498a3b05cfe2b08': `Preferred: User verification is preferred if available, but not required.`, +'s9d2239d2b0402795': `Discouraged: User verification should not occur.`, +'s428b7859907f6db2': `Required: The authenticator MUST create a dedicated credential. If it cannot, the RP is prepared for an error to occur`, +'s33e3766d4a02b042': `Preferred: The authenticator can create and store a dedicated credential, but if it doesn't that's alright too`, +'sfb852dd507c25c24': `Discouraged: The authenticator should not create a dedicated credential`, +'sfffba7b23d8fb40c': `This stage checks the user's current session against the Google reCaptcha (or compatible) service.`, +'s39e436de1dc4df4f': `JS URL`, +'s170b705c55ecb2ae': `URL to fetch JavaScript from, defaults to recaptcha. Can be replaced with any compatible alternative.`, +'s275021658614ce9e': `API URL`, +'sc8a79fddea3ab4a9': `URL used to validate captcha response, defaults to recaptcha. Can be replaced with any compatible alternative.`, +'se0c660020d9cf5b7': `Offset after which consent expires.`, +'s7f68101a50f526ee': `Statically deny the flow. To use this stage effectively, disable *Evaluate when flow is planned* on the respective binding.`, +'s1cc306d8e28c4464': `Deny message`, +'s6985c401e1100122': `Message shown when this stage is run.`, +'sdb861d9906f18ac2': `Throw error?`, +'s62e7f6ed7d9cb3ca': `Pretend user exists`, +'s52bdc80690a9a8dc': `When enabled, the stage will always accept the given user identifier and continue.`, +'s0295ce5d6f635d75': `Source settings`, +'sa84a7fd11ba85e88': `When selected, the invite will only be usable with the flow. By default the invite is accepted on all flows with invitation stages.`, +'sd18b18f91b804c3f': `Custom attributes`, +'s96dcf7ec8342c335': `Invitation not limited to any flow, and can be used with any enrollment flow.`, +'s63e54b86e2a2cc43': `Text Area: Multiline text input`, +'s4e5646b23e41231f': `Text Area (read-only): Multiline text input, but cannot be edited.`, +'s1c5574968b29ab1c': `Password: Masked input, multiple inputs of this type on the same prompt need to be identical.`, +'s34edeb18f887161d': `Radio Button Group (fixed choice)`, +'s57730b6870e8916c': `Dropdown (fixed choice)`, +'sd1f81284eeb7b503': `File`, +'saf84e7732a9e1336': `Preview errors`, +'sb71ace8e9b35c749': `Data preview`, +'s4d53f4b7ff33bedd': `Unique name of this field, used for selecting fields in prompt stages.`, +'s4a953e6234cb4808': `When checked, the placeholder will be evaluated in the same way a property mapping is. + If the evaluation fails, the placeholder itself is returned.`, +'sf76ead4c4708dd06': `Optionally provide a short hint that describes the expected input value. + When creating a fixed choice field, enable interpreting as expression and return a + list to return multiple choices.`, +'saa7ba2057bd524a1': `Interpret initial value as expression`, +'sd60415c7666859f0': `When checked, the initial value will be evaluated in the same way a property mapping is. + If the evaluation fails, the initial value itself is returned.`, +'sa9c7044d9fd1f3e6': `Initial value`, +'seab35681cbf36755': `Optionally pre-fill the input with an initial value. + When creating a fixed choice field, enable interpreting as expression and + return a list to return multiple default choices.`, +'sbf4ef82e04772a4e': `Delete the currently pending user. CAUTION, this stage does not ask for confirmation. Use a consent stage to ensure the user is aware of their actions.`, +'sf7949fbbab2eb566': `Different browsers handle session cookies differently, and might not remove them even when the browser is closed.`, +'s53bbc3ae4b5fa1d0': `See here.`, +'s2512334108f06a5a': `Stay signed in offset`, +'s1608b2f94fa0dbd4': `If set to a duration above 0, the user will have the option to choose to "stay signed in", which will extend their session by the time specified here.`, +'s542a71bb8f41e057': `Terminate other sessions`, +'sa920231366378c90': `When enabled, all previous sessions of the user will be terminated.`, +'s927398c400970760': `Write any data from the flow's context's 'prompt_data' to the currently pending user. If no user + is pending, a new user is created, and data is written to them.`, +'sb379d861cbed0b47': `Never create users`, +'s81d673755a86a4f0': `When no user is present in the flow context, the stage will fail.`, +'s9940e3f073fbdbd4': `Create users when required`, +'s5414356cc10e80fe': `When no user is present in the the flow context, a new user is created.`, +'s57337099d96ce6d2': `Always create new users`, +'se80dd66f23b4fc39': `Create a new user even if a user is in the flow context.`, +'s89d1847b5e4ad225': `User path template`, +'s32babfed740fd3c1': `User type used for newly created users.`, +'s18269e3889d6fa54': `Path new users will be created under. If left blank, the default path will be used.`, +'s09f0c100d0ad2fec': `Open Wizard`, +'sf2ef885f7d0a101d': `Demo Wizard`, +'s77505ee5d2e45e53': `Run the demo wizard`, +'sdc5690be4a342985': `The token has been copied to your clipboard`, +'s7f3edfee24690c9f': `The token was displayed because authentik does not have permission to write to the clipboard`, +'sc1589121ae2f5f92': `Enter the code shown on your device.`, +'s455a8fc21077e7f9': `You've successfully authenticated your device.`, +'s2ddbebcb8a49b005': `Waiting for authentication...`, +'sb15fe7b9d09bb419': `If no Plex popup opens, click the button below.`, +'sbc625b4c669b9ce8': `Open login`, +'sc2ec367e3108fe65': `Duo activation QR code`, +'seb0c08d9f233bbfe': `Please enter the code you received via SMS`, +'sa84adff85b5e505c': `Open your two-factor authenticator app to view your authentication code.`, +'s844fea0bfb10a72a': `Authentication code`, +'s3cd84e82e83e35ad': `Please enter your code`, +'sbcf8604929b6a27a': `Sending Duo push notification`, +'s7073489bb01b3c24': `Application already has access to the following permissions:`, +'s98dc556f8bf707dc': `Application requires following new permissions:`, +'s091d5407b5b32e84': `Or`, +'sac17f177f884e238': `Stay signed in?`, +'s859b2e00391da380': `Select Yes to reduce the number of times you're asked to sign in.`, +'s30205d424e710818': `Successfully disconnected source`, +'s67dedada007d4067': str`Failed to disconnected source: ${0}`, + }; + \ No newline at end of file diff --git a/web/packages/localization/src/locales/zh_TW.js b/web/packages/localization/src/locales/zh_TW.js new file mode 100644 index 000000000..234bd487f --- /dev/null +++ b/web/packages/localization/src/locales/zh_TW.js @@ -0,0 +1,1666 @@ + + // Do not modify this file by hand! + // Re-generate this file by running lit-localize + + import {html} from 'lit'; + import {str} from '@lit/localize'; + + /* eslint-disable no-irregular-whitespace */ + /* eslint-disable @typescript-eslint/no-explicit-any */ + + export const templates = { + 'sa90b7809586c35ce': `Either input a full URL, a relative path, or use 'fa://fa-test' to use the Font Awesome icon "fa-test".`, +'s0410779cb47de312': `Path template for users created. Use placeholders like \`%(slug)s\` to insert the source slug.`, +'s1cd198d689c66e4b': `API Access`, +'sf29883ac9ec43085': `App password`, +'s6ac670086eb137c6': `Recovery`, +'sfe211545fd02f73e': `Verification`, +'sd73b202ec04eefd9': `Unknown intent`, +'sc8da3cc71de63832': `Login`, +'sb4564c127ab8b921': `Failed login`, +'s67749057edb2586b': `Logout`, +'s7e537ad68d7c16e1': `User was written to`, +'sa0e0bdd7e244416b': `Suspicious request`, +'s7bda44013984fc48': `Password set`, +'sa1b41e334ad89d94': `Secret was viewed`, +'s92ca679592a36b35': `Secret was rotated`, +'s8a1d9403ca90989b': `Invitation used`, +'s5f496533610103f2': `Application authorized`, +'sdc9e222be9612939': `Source linked`, +'sb1c91762ae3a9bee': `Impersonation started`, +'s9c73bd29b279d26b': `Impersonation ended`, +'s1cd264012278c047': `Flow execution`, +'s32f04d33924ce8ad': `Policy execution`, +'sb6d7128df5978cee': `Policy exception`, +'s77f572257f69a8db': `Property Mapping exception`, +'s2543cffd6ebb6803': `System task execution`, +'se2f258b996f7279c': `System task exception`, +'s81eff3409d572a21': `General system exception`, +'sf8f49cdbf0036343': `Configuration error`, +'s9c6f61dc47bc4f0a': `Model created`, +'s47a4983a2c6bb749': `Model updated`, +'sc9f69360b58706c7': `Model deleted`, +'sa266303caf1bd27f': `Email sent`, +'s6c410fedda2a575f': `Update available`, +'sf1ec4acb8d744ed9': `Alert`, +'s9117fb5195e75151': `Notice`, +'s34be76c6b1eadbef': `Warning`, +'s02240309358f557c': `Unknown severity`, +'s858e7ac4b3cf955f': `Static tokens`, +'sfcfcf85a57eea78a': `TOTP Device`, +'se2d65e13768468e0': `Internal`, +'s84fcddede27b8e2a': `External`, +'s1a635369edaf4dc3': `Service account`, +'sff930bf2834e2201': `Service account (internal)`, +'sfe629863ba1338c2': `Connection error, reconnecting...`, +'sb564f81eb057342e': `Application Icon`, +'s6238f519db67980d': `UID`, +'sef49aec68fd1dc66': `Name`, +'sf9f2c719a04066ec': `App`, +'sda796c87fa97ed4d': `Model Name`, +'s79e8cc71a5975b04': `Message`, +'sbbc53e0e54d7946f': `Subject`, +'sa6ab5184d6315895': `From`, +'s09353907b5c79284': `To`, +'s63e03c70f67ebf9c': `Context`, +'sa48f81f001b893d2': `User`, +'s119498d4e4cf59a6': `Affected model:`, +'sa3660d505e7011e0': `Authorized application:`, +'s95a032ae86881bf5': `Using flow`, +'scb5c9a7cc4ccd68d': `Email info:`, +'s677f1b675fc21bb1': `Secret:`, +'sa6905be242387f36': `Exception`, +'sd947d57c9a9b7108': `Open issue on GitHub...`, +'s6ab73c998850c5ab': `Expression`, +'s50ebe627b4bc7d02': `Binding`, +'s3c6de3f257e0c912': `Request`, +'s730182ad28374cda': `Object`, +'s890e983a7be64da4': `Result`, +'sd3a853f63f45dcb0': `Passing`, +'sbdeedc1c60306b35': `Messages`, +'s4ba4473f3d4ec896': `New version available`, +'s0a5401d4419f9958': `Using source`, +'s14622ee6de586485': str`Attempted to log in as ${0}`, +'sb07bf992e3d00664': `No additional data available.`, +'s67e20cd8018d7e3c': `Currently set to:`, +'scb489a1a173ac3f0': `Yes`, +'s09205907b5b56cda': `No`, +'sa50a6326530d8a0d': `Show less`, +'sb2c57b2d347203dd': `Show more`, +'saae1c70e168b45b4': `Admin`, +'s364c4f177a2f8322': `Open API drawer`, +'s9ba989e69344ff29': `Open Notification drawer`, +'s49730f3d5751a433': `Loading...`, +'sf45a0d2f00bcc6ff': `no tabs defined`, +'sca7cfe2bef51b2a5': `Root`, +'sb59d68ed12d46377': `Loading`, +'s6fe64b4625517333': `Powered by authentik`, +'sdf34a5599d66f85c': `Background image`, +'s3ab772345f78aee0': `Flow inspector`, +'s5e8250fb85d64c23': `Close`, +'s502884e1977b2c06': `Next stage`, +'sb3fa80ccfa97ee54': `Stage name`, +'sbea3c1e4f2fd623d': `Stage kind`, +'s2bc8aa1740d3da34': `Stage object`, +'sc3e1c4f1fff8e1ca': `This flow is completed.`, +'s342eccabf83c9bde': `Plan history`, +'sb2f307e79d20bb56': `Current plan context`, +'sa13e6c8310000e30': `Session ID`, +'sa3599457b9418bc5': `User's avatar`, +'sba65ae54d6585c1a': `Unread notifications`, +'s9d8b8aa2b404c2c8': `Settings`, +'s7cfe12cd14df9950': `Sign out`, +'s5599c62bb78c631f': `Admin interface`, +'s1298e361e40ee1c5': `Stop impersonation`, +'s6abff64e7ff7fde9': `Avatar image`, +'s7031e6928c44cedd': `User interface`, +'s8849ece8c65e3a18': `Dashboards`, +'s3d197283cb019b5a': `Overview`, +'sb4d7bae2440d9781': `User Statistics`, +'s3b34d9930e33bd46': `System Tasks`, +'s6ba50bb0842ba1e2': `Applications`, +'sb0b86b8ca6ab13bd': `Providers`, +'s5e169e1bac20b4a6': `Outposts`, +'sc265a3e29e1206e4': `Events`, +'s4f1ad6b48a5df506': `Logs`, +'s98c3bdf4fd5cdf65': `Notification Rules`, +'s819509c33a7534ac': `Notification Transports`, +'s1823625e6f831d73': `Customisation`, +'s8cb7bb82e96d5d77': `Policies`, +'sce106606ae84d46f': `Property Mappings`, +'saab79cd956ee56a9': `Blueprints`, +'s62ddcbaaa91d120d': `Reputation scores`, +'s1a65ee08832fbfe2': `Flows and Stages`, +'sb69a4b0acd0895f2': `Flows`, +'s41b105819b67ee7a': `Stages`, +'s2be6121210e2a2f8': `Prompts`, +'sc0829ee663ced008': `Directory`, +'s586d6bd2eca2da93': `Users`, +'s9f26843287bb592d': `Groups`, +'s6b2beba7ab637e9e': `Roles`, +'sb1a4e9b288e2f005': `Federation and Social login`, +'sc6b4ebd37b7a91c7': `Tokens and App passwords`, +'s8226f48cb1a80997': `Invitations`, +'sa81e2cdaf6921adc': `System`, +'s7f9e79189a3d19e2': `Tenants`, +'s5515a897ae98bed9': `Certificates`, +'s6b79e73ca77148a0': `Outpost Integrations`, +'s4207178ba0b99418': `A newer version of the frontend is available.`, +'s96b3cddf33e1c853': str`You're currently impersonating ${0}. Click to stop.`, +'s7be2df39f727faa2': `Enterprise`, +'s2e109263b73c12d5': `Licenses`, +'s41e035c4bb8d15f2': `General system status`, +'s6dfd15978586d05f': str`Welcome, ${0}.`, +'sc381422c585b867f': `Quick actions`, +'sfd13ca8ebd857c2e': `Create a new application`, +'s079d388d3cbfa54f': `Check the logs`, +'sed8d4c3fd5f60e1f': `Explore integrations`, +'sfffb0d0958bfbc42': `Manage users`, +'s66313b45b69cfc88': `Check the release notes`, +'s8763a33c3d46aaf5': `Outpost status`, +'scc286303aa9c6cb0': `Sync status`, +'sbdc4a833de9ca502': `Logins and authorizations over the last week (per 8 hours)`, +'s6e09a19aa3952509': `Apps with most usage`, +'sfbadb77fbc61efb8': `Users created per day in the last month`, +'s4a34a6be4c68ec87': `Users created`, +'sb0669da3df95837c': `Logins per day in the last month`, +'s310d8757ce319673': `Logins`, +'s835da49b4dc83a51': `Failed Logins per day in the last month`, +'s275c956687e2e656': `Failed logins`, +'sf1e9d421f35b51e5': `Application`, +'sda5e1499f93146ad': str`${0} days ago`, +'s11bc220e8fa9d797': `Authorizations`, +'sd9b556a84ae25690': `Successfully sent test-request.`, +'s5deac600e329de1b': `Log messages`, +'s3feea7b49673bef2': `No log messages.`, +'s1a0e95458b44d7f8': `Any policy must match to grant access`, +'s7fc1ace65486dc25': `All policies must match to grant access`, +'s58fd2aafa4261c55': `Successfully updated application.`, +'s9222ca30ae7786e4': `Successfully created application.`, +'s03907d7a66c6164e': `Application's display Name.`, +'s91f70424f5d5d23e': `Slug`, +'s1cffe58249b04669': `Internal application name used in URLs.`, +'s98b1cb8fb62909ec': `Group`, +'sdae55084f6cb2662': `Optionally enter a group name. Applications with identical groups are shown grouped together.`, +'s7f5869b3d14d7cbc': `Provider`, +'s350a616ff5e145ec': `Select a provider that this application should use.`, +'sc92ea8fbf9ba06a7': `Backchannel Providers`, +'s4c6534a118f52fdd': `Select backchannel providers which augment the functionality of the main provider.`, +'s19409e8712ddd369': `Add provider`, +'s0639662111324466': `Policy engine mode`, +'s8be4abc7ca71da6c': `UI settings`, +'s427f788ff333f45b': `Launch URL`, +'s992f8d1a776e763c': `If left empty, authentik will try to extract the launch URL based on the selected provider.`, +'s2348f46ebf436671': `Open in new tab`, +'s8655c52824caac63': `If checked, the launch URL will open in a new browser tab or window from the user's application library.`, +'s068d4dd16d9106d0': `Icon`, +'s80e6d6fe5ad458d3': `Clear icon`, +'s485c05d34eb00415': `Delete currently set icon.`, +'s6d3b4d0561ba1cff': `Publisher`, +'s63d894b1ddb06289': `Description`, +'s070fdfb03034ca9b': `One hint, 'New Application Wizard', is currently hidden`, +'s61bd841e66966325': `External applications that use authentik as an identity provider via protocols like OAuth2 and SAML. All applications are shown here, even ones you cannot access.`, +'s96b2fefc550e4b1c': `Provider Type`, +'s8af61807443f32a4': `Actions`, +'sd20f6cd02c90867f': `Application(s)`, +'sdc673e73b5c13aea': `Delete`, +'saf63a04c86018698': `-`, +'s8b0432eecbd8b034': `Update`, +'sa347e31efbb60be2': `Update Application`, +'s64ef2a6c2dd1d3d1': `Edit`, +'s1f7698c061c208c9': `Open`, +'s382a2aa3984474dd': `Create`, +'sa8c45b6b92a8ba1f': `Create Application`, +'saa855c61e0403fe6': `Warning: Application is not used by any Outpost.`, +'sb6cbd4f92ebaf5d8': `Related`, +'sd71081c23d1cd38b': `Check access`, +'s42cbd8dca939a9c7': `Check`, +'sf22f7f8a9309b4ed': `Check Application access`, +'s2474e7fb1aec9f05': `Test`, +'s512957aa09384646': `Launch`, +'sed02f831e653deb3': `Logins over the last week (per 8 hours)`, +'s6c3daaac4eed12f9': `Changelog`, +'s2b1bc31276c4c477': `Policy / Group / User Bindings`, +'s473f0143efa3f706': `These policies control which users can access this application.`, +'se8dca0132c66ae03': `Permissions`, +'sd2223afb7d6b100d': `Type`, +'s398f6ba74ba8943a': `Select providers to add to application`, +'sf9aee319a006c9b4': `Add`, +'s2ceb11be2290bb1b': `Cancel`, +'see2bcbc11bb91960': `Successfully updated instance.`, +'s9e51d6de369f320b': `Successfully created instance.`, +'s965c503c3e42fdfe': `Enabled`, +'s92e91071c6a45eb4': `Disabled blueprints are never applied.`, +'sf63c89c0604c288f': `Local path`, +'sd6422f7004036cdd': `OCI Registry`, +'s2e532e19ed477a56': `Path`, +'s61eacb19db252f5e': `URL`, +'scbb7d3154da629f3': `OCI URL, in the format of oci://registry.domain.tld/path/to/manifest.`, +'s0195c0df7294228a': `See more about OCI support here:`, +'s74cb3d66f6a668e1': `Documentation`, +'sfae395b94a5a0040': `Blueprint`, +'s94333971a07803b9': `Additional settings`, +'s7e1342d37124b65b': `Configure the blueprint context, used for templating.`, +'sbe9a51f29a4a2c5b': `Successful`, +'s6ec8c9d11310300a': `Orphaned`, +'s5f343a43e7ea9f91': `Error`, +'sc592307ea80f16b9': `Unknown`, +'s6835db03209b4f94': `Automate and template configuration within authentik.`, +'sad3e3c8146fc920f': `Status`, +'s23de62f931f7d754': `Last applied`, +'s2708cac1f4942708': `Blueprint(s)`, +'s880b8b70b22f9977': `Update Blueprint`, +'sb8f855b49234b81b': `Apply`, +'sef3d102324bf8561': `Create Blueprint Instance`, +'s9d18948d25c68d66': `Successfully generated certificate-key pair.`, +'sd4ac926e4ebb1cd7': `Common Name`, +'s592425143c4f5834': `Subject-alt name`, +'se9d0f12f95b14095': `Optional, comma-separated SubjectAlt Names.`, +'s7609ee54e8a7b05a': `Validity days`, +'s4c24b2baa377e870': `Successfully updated certificate-key pair.`, +'s122f308b5f198ba7': `Successfully created certificate-key pair.`, +'sb157267c85fdff30': `Certificate`, +'s08a8716c214a0efb': `PEM-encoded Certificate data.`, +'s83d0f62ad1731a03': `Private Key`, +'s6e612e5a6a359bbb': `Optional Private Key. If this is set, you can use this keypair for encryption.`, +'s27ac7a47b390e3cb': `Certificate-Key Pairs`, +'sb72ebab438cb2983': `Import certificates of external providers or create certificates to sign requests with.`, +'s4b5af7736aedd6c1': `Private key available?`, +'sc7be80a7f8ec597e': `Expiry date`, +'s1d6e16d86961c782': `Certificate-Key Pair(s)`, +'sf679b7a62808287e': `Expiry`, +'sc1ce2f758935ff48': `Managed by authentik`, +'sf53a78d889b6c775': `Managed by authentik (Discovered)`, +'sef50d248448e0df1': str`Yes (${0})`, +'s33aa05f435c29753': `Update Certificate-Key Pair`, +'seffdf887fed7f668': `Certificate Fingerprint (SHA1)`, +'sdd6b8b56a811080e': `Certificate Fingerprint (SHA256)`, +'s2a2d3e7c379e9518': `Certificate Subject`, +'sd3386a2ef42e80b9': `Download`, +'s351246c52548086a': `Download Certificate`, +'s47bd537a3bcebf19': `Download Private key`, +'s3a5fec3d73ac9edc': `Create Certificate-Key Pair`, +'s45cb501abd43ba52': `Generate`, +'sf9bddaf910f4eea5': `Generate Certificate-Key Pair`, +'s0e427111d750cc02': `Successfully updated license.`, +'s06ae64e621f302eb': `Successfully created license.`, +'s2905c425adae99bd': `Install ID`, +'sb18ec434a8a3aafb': `License key`, +'s9ce7cc01fb9b5b53': `Manage enterprise licenses`, +'sf9ebf11ac2645820': `No licenses found.`, +'sd49099e9522635f4': `License(s)`, +'s3be1d90ffa46b7f1': `Enterprise is in preview.`, +'sa1db89262360550b': `Send us feedback!`, +'s4015746f55a8d89f': `Get a license`, +'sb2cbd06f8e25b47e': `Go to Customer Portal`, +'sf58825457d61c429': `Forecast internal users`, +'sde9a3f41977ec1f8': str`Estimated user count one year from now based on ${0} current internal users and ${1} forecasted internal users.`, +'s4557b6b9da258643': `Forecast external users`, +'sf52479d6daa0a4a8': str`Estimated user count one year from now based on ${0} current external users and ${1} forecasted external users.`, +'sd22bd01bdf28c548': `Cumulative license expiry`, +'s0dd031b58ed4017c': str`Internal: ${0}`, +'s57b07e524f8f5c2a': str`External: ${0}`, +'sdeb6cee42435dd07': `Update License`, +'s6196153c4b0c1ea0': `Install`, +'s0285b4bd69130fa3': `Install License`, +'sc1a1ff47c058bb09': `Event Log`, +'sa442044b586ec8bf': `Action`, +'s02839b01844d6ca8': `Creation Date`, +'s4d00f1de1c82281b': `Client IP`, +'s45f9e7ce0897f9e5': `Tenant`, +'sc35581d9c1cd67ff': str`On behalf of ${0}`, +'s3b3c333481944862': `Show details`, +'s65d67612999165e9': str`Event ${0}`, +'s455de2f740b073fd': `Event info`, +'sb41b2cfbbc52565b': `Created`, +'s7513372fe60f6387': `Event volume`, +'s0a39e4f61ccafacb': `Successfully updated rule.`, +'s72e102414fec81a4': `Successfully created rule.`, +'sa55ee64c5c51df0f': `Select the group of users which the alerts are sent to. If no group is selected the rule is disabled.`, +'sffa171e11d4ae513': `Transports`, +'s7b18721be331241e': `Select which transports should be used to notify the user. If none are selected, the notification will only be shown in the authentik UI.`, +'sffd2e553143d1b0e': `Hold control/command to select multiple items.`, +'scd0cfe87af6f2ff2': `Severity`, +'s107bf77afb93c9b8': `Send notifications whenever a specific Event is created and matched by policies.`, +'sf3f9a0feaf083207': `Sent to group`, +'sc92ed9d5e01d3f24': `Notification rule(s)`, +'s5140d157642d7362': `None (rule disabled)`, +'sd1146418b344f81f': `Update Notification Rule`, +'sbbc1de43ab6c1f76': `Create Notification Rule`, +'s5795b310ab271d20': `These bindings control upon which events this rule triggers. +Bindings to groups/users are checked against the user of the event.`, +'s037bc6d25a03c3c8': `Successfully updated transport.`, +'s1575a15cee001915': `Successfully created transport.`, +'s37cbecaec58e2192': `Mode`, +'s4acf840bc792c3ae': `Local (notifications will be created within authentik)`, +'sd1f44f1a8bc20e67': `Email`, +'sede0abbf2b612812': `Webhook (generic)`, +'s76f5dca6404a1210': `Webhook (Slack/Discord)`, +'s6873bdbfa24615fb': `Webhook URL`, +'s25ec2846f6b88214': `Webhook Mapping`, +'sca2879d96f58a39c': `Send once`, +'s2430e000b7cfefd0': `Only send notification once, for example when sending a webhook into a chat channel.`, +'s57072ffb92b6c9c8': `Define how notifications are sent to users, like Email or Webhook.`, +'s624256f8a4bb4c89': `Notification transport(s)`, +'sac1332e6f421526e': `Update Notification Transport`, +'s6b5002c605b39d6d': `Create Notification Transport`, +'s2ba5f4d8f3bd7c57': `Order`, +'sbe47a5bdeec19ab0': `Stage binding(s)`, +'sae5da213b7f896ed': `Stage`, +'sfa88f413e287bb0f': `Stage type`, +'sc9175cb129fdc306': str`Update ${0}`, +'s04440099d97c0bef': `Edit Stage`, +'s980270d0fab7ecb3': `Update Stage binding`, +'s40b80eb4cc1f0e0c': `Edit Binding`, +'sfe938c1585e0bf68': `These bindings control if this stage will be applied to the flow.`, +'sfac6f995c7670559': `No Stages bound`, +'s955c1fec1c6fb970': `No stages are currently bound to this flow.`, +'s9a393a04eaf1eb0e': `Create Stage binding`, +'s207e8b106806d7e4': `Bind stage`, +'s6f367f5604d5056d': `Create and bind Stage`, +'scc2e420c54dc8089': `Bind existing stage`, +'s48cf8fd56b1237ed': `Successfully updated flow.`, +'sc3e0c240b159fbce': `Successfully created flow.`, +'s99f110d27e30b289': `Title`, +'s925936f647ae52cc': `Shown as the Title in Flow pages.`, +'s50719dda8f90abf4': `Visible in the URL.`, +'s0f4c6540c30bd8b4': `Designation`, +'sb25d9afe10941425': `Decides what this Flow is used for. For example, the Authentication flow is redirect to when an un-authenticated user visits authentik.`, +'sc25edca57df81461': `Authentication`, +'sb36e4c05244278c1': `No requirement`, +'s7b105164d209f670': `Require authentication`, +'s239c2a351cde6d39': `Require no authentication.`, +'s98beadfeeb3acb66': `Require superuser.`, +'s047a5f0211fedc72': `Require Outpost (flow can only be executed from an outpost).`, +'sfad9279cc42c6b61': `Required authentication level for this flow.`, +'sb56674c9ea4f0588': `Behavior settings`, +'sb6d7d58cb0a1544e': `Compatibility mode`, +'s14ace18ccf4fb86d': `Increases compatibility with password managers and mobile devices.`, +'scfbc2f1396ee8550': `Denied action`, +'sff38031cf061e3ae': `Will follow the ?next parameter if set, otherwise show a message`, +'s936bf4342b182ad4': `Will either follow the ?next parameter or redirect to the default interface`, +'s22b0e8c5277dd5a9': `Will notify the user the flow isn't applicable`, +'s2eeca5cfc99ef19b': `Decides the response when a policy denies access to this flow for a user.`, +'sbaf20067de176c90': `Appearance settings`, +'s2e4818861000b13f': `Layout`, +'s1efbfc3937d565bd': `Background`, +'s374abf1a54d87b67': `Background shown during execution.`, +'s3ebf4c166058afce': `Clear background`, +'sb24755ea94bef31d': `Delete currently set background image.`, +'sb904f23f17b60c3a': `Successfully imported flow.`, +'sfcebd18506f1e535': `Flow`, +'s344c4a2a48997e18': `.yaml files, which can be found on goauthentik.io and can be exported by authentik.`, +'sc816360d6f5a1eeb': `Flows describe a chain of Stages to authenticate, enroll or recover a user. Stages are chosen based on policies applied to them.`, +'s7468e87263dfff7e': `Identifier`, +'s6f857299d5db1ecf': `Flow(s)`, +'s9e830cbc0b42a514': `Update Flow`, +'sc4fdeccf14be5378': `Execute`, +'s293aa6a6446fb153': `Export`, +'s2f1bcfcc5cae94c3': `Create Flow`, +'s3914cb410fca44d4': `Import`, +'s832282d415294df4': `Import Flow`, +'s098237f7ccb4dc4a': `Successfully cleared flow cache`, +'s59572c1be31a812e': `Failed to delete flow cache`, +'s3ed5607ad78d4224': `Clear cache`, +'sa2b727168b090d34': `Clear Flow cache`, +'sf12d588a76ba7e51': `Are you sure you want to clear the flow cache? + This will cause all flows to be re-evaluated on their next usage.`, +'s30d1f50f476c3f48': `Flow Overview`, +'s01794c0ee3629c1b': `Flow Info`, +'s77099d752f1ab773': `Related actions`, +'sd07866d9f38b2c50': `Execute flow`, +'s9ff3121d30f88d52': `Normal`, +'s6e4c997a101b6abf': `with current user`, +'s8ecdbff1a7329b64': `with inspector`, +'s3576aead3e68c5c9': `Export flow`, +'s7b576aa71acb36a6': `Diagram`, +'se2c3cbf2ed1403f1': `Stage Bindings`, +'s78c08391ffbfb8c0': `These bindings control which users can access this flow.`, +'s1e36813d3504ed48': `Successfully updated binding.`, +'s1bf56ee106e9e711': `Successfully created binding.`, +'sff5bb7742c2896c8': `Target`, +'s0a61796c1956d32c': `Evaluate when flow is planned`, +'sf533f13321fee530': `Evaluate policies during the Flow planning process.`, +'s6336fa345e96dde9': `Evaluate when stage is run`, +'sff3b708e23bb96b2': `Evaluate policies before the Stage is present to the user.`, +'s0dc46deb8f181baf': `Invalid response behavior`, +'seb0805249661d15b': `Returns the error message and a similar challenge to the executor`, +'sd891d8463d0ebace': `Restarts the flow from the beginning`, +'s6b9a1dd402750a8a': `Restarts the flow from the beginning, while keeping the flow context`, +'sbc88fb27a4c3b894': `Configure how the flow executor should handle an invalid response to a challenge given by this bound stage.`, +'s6dfb7283452f78fe': `Authorization`, +'sddcfc6ab24e3a6ed': `Enrollment`, +'s1fc9c70610c4c67d': `Invalidation`, +'sdf22dcf939c27cc7': `Stage Configuration`, +'s6d5bce4321f57cda': `Unenrollment`, +'sde2bb5418562c5b2': `Unknown designation`, +'sb9834316ffd4ae3e': `Stacked`, +'s12146091b2b539a3': `Content left`, +'sa800871782eba1ac': `Content right`, +'sb4e50ca3cffdbc10': `Sidebar left`, +'s745a55f9abf9f2e5': `Sidebar right`, +'sb3182a87ded1bc91': `Unknown layout`, +'s75d5ff5dd8d3c6d2': `Successfully updated group.`, +'s3079ca1184e77573': `Successfully created group.`, +'s63cb05541b294335': `Is superuser`, +'s29315e374008d0c5': `Users added to this group will be superusers.`, +'s4eb514ebcb80553d': `Parent`, +'s96d2bb4be3f5e8aa': `Select roles to grant this groups' users' permissions from the selected roles.`, +'s16b9446e3a70e1f4': `Attributes`, +'sec97cdaf7af8648b': `Set custom attributes using YAML or JSON.`, +'s4dcb9288f7e9e4d7': `Group users together and give them permissions based on the membership.`, +'s9f5a5f23312798f0': `Members`, +'s62f93cfcb45d5a06': `Superuser privileges?`, +'s9fdda7ea4642306c': `Group(s)`, +'s0b55a57f473ab8af': `Update Group`, +'s416a540b16275f2e': `Create Group`, +'s2a64d2dca3da9b0e': str`Group ${0}`, +'secdb4b4c4e66aa38': `Group Info`, +'s9fb28be12e2c6317': `Superuser`, +'s005053d82b712e0a': `Notes`, +'s634448e4942cf452': `Edit the notes attribute of this group to add notes here.`, +'sa45a194b58837e4f': `Active`, +'s58c867aac77b9158': `Last login`, +'s3e3bb9e7cb1de4fd': `Select users to add`, +'sa982875b258fea07': `Successfully added user to group(s).`, +'s1bd5920d8adf2bd5': `Groups to add`, +'sd9f67fbf3f86efcf': `Add group`, +'s5f71fa3c53828e30': `Remove from Group(s)`, +'sb4c9ed2a487b238f': str`Are you sure you want to remove user ${0} from the following groups?`, +'sea4f08110bb8f15d': `Remove`, +'s964f6725aeb7662f': `Add Group`, +'s65ca2f256ea09c11': `Add to existing group`, +'s505fbbdcbc6aa921': `Add new group`, +'sdb53ccdd6174e6e3': `Successfully added user(s).`, +'s306a35df5d0d38bb': `Users to add`, +'s424f57afae0caac4': `Add users`, +'s7d499be3b781a3ca': `User(s)`, +'s7220fcf4fec4e0df': `Remove Users(s)`, +'s5d7748b1d2363478': str`Are you sure you want to remove the selected users from the group ${0}?`, +'s03f42eea72154959': `Username`, +'s09240e07b5b8d640': `ID`, +'sad130c2d925fb7bf': `Update User`, +'sf466142da6a65052': `Impersonate`, +'s58888ef1ee9b5bb8': `User status`, +'s4409ada9c5c2a7f8': `Inactive`, +'s7ec7036b249f4f22': `Regular user`, +'sf9e61f4f8e90f0f1': `Change status`, +'sf56998949bdf6b33': `Deactivate`, +'s27976e94b05c6970': `Activate`, +'s3794c596ee7964ad': `Update password`, +'sce8d867ca5f35304': `Set password`, +'s0ae3395d8f48e624': `Successfully generated recovery link`, +'s8ca0dbaec5d48563': `No recovery flow is configured.`, +'sb69119c9f0547bed': `Copy recovery link`, +'s7fa236d26b798301': `Send link`, +'sa9dbe2fb284e26fe': `Send recovery link to user`, +'s03fd2c252ad7972a': `Email recovery link`, +'sd7fa99e4d82b374a': `Recovery link cannot be emailed, user has no email address saved.`, +'s63d89a6ae0969c30': `To let a user directly reset a their password, configure a recovery flow on the currently active tenant.`, +'s720594461542943f': `Add User`, +'s4c41f3f4c23e8eaa': `Warning: This group is configured with superuser access. Added users will have superuser access.`, +'scee721983b1c28d0': `Add existing user`, +'sd600334ec2c39b74': `Create user`, +'s53ad3455d9523b54': `Create User`, +'s824e0943a7104668': str`This user will be added to the group "${0}".`, +'s06c163334767a381': `Create Service account`, +'sc744f3691efe310d': `Hide service-accounts`, +'s90c3b62194fe8508': `Outpost Deployment Info`, +'s35f9df7668d5fa79': `View deployment documentation`, +'sad09c62cb4ebae68': `Click to copy token`, +'s0e03fe2dc5b9164b': `If your authentik Instance is using a self-signed certificate, set this value.`, +'sc21032b0d37882a0': `If your authentik_host setting does not match the URL you want to login with, add this setting.`, +'s6f270e1668c036e9': `Successfully updated outpost.`, +'s79aed8154d7c472c': `Successfully created outpost.`, +'sb8dd788adf7b907b': `Proxy`, +'sc3259eb55cf91e8c': `LDAP`, +'s8afc8c5aafb392d3': `Radius`, +'s03970aa76a09982d': `Integration`, +'s9c29565c5ae1cc92': `Selecting an integration enables the management of the outpost by authentik.`, +'s554ce268e9727e79': `You can only select providers that match the type of the outpost.`, +'sf9b1c0661a02d9f9': `Configuration`, +'s3abecf1e778c9625': `See more here:`, +'saa8939ac88a76f98': `Last seen`, +'sf4122b220926be97': `Version`, +'s1ac2653a6492b435': str`${0}, should be ${1}`, +'s1e176e35c828318c': `Hostname`, +'s322e34cfcba47155': `Not available`, +'s02b632a9ac24a824': str`Last seen: ${0}`, +'sa43153d53ae65063': `Unknown type`, +'s8802553bc57617ee': `Outposts are deployments of authentik components to support different environments and protocols, like reverse proxies.`, +'s84d7d6ebbedcb586': `Health and Version`, +'s9bf48a89367282cd': `Warning: authentik Domain is not configured, authentication will not work.`, +'sbf5f4c5ba679e847': str`Logging in via ${0}.`, +'s59b6028f19d15cda': `No integration active`, +'s9bd59e0ea70a3e4a': `Update Outpost`, +'sc8f286ac783c385d': `View Deployment Info`, +'s9ee92717d7f63247': `Detailed health (one instance per column, data is cached so may be out of date)`, +'s1d49ec5030447643': `Outpost(s)`, +'s1a2f8f4b3861583b': `Create Outpost`, +'sdc1ef94016f0d855': `Successfully updated integration.`, +'sc2a1a40a1b4b0170': `Successfully created integration.`, +'se9b1fec72ffd8f48': `Local`, +'sc1231049879b8d33': `If enabled, use the local connection. Required Docker socket/Kubernetes Integration.`, +'s13de04774ff0f210': `Docker URL`, +'sa7fcf026bd25f231': `Can be in the format of 'unix://' when connecting to a local docker daemon, using 'ssh://' to connect via SSH, or 'https://:2376' when connecting to a remote system.`, +'s2221fef80f4753a2': `TLS Verification Certificate`, +'saf1d289e3137c2ea': `CA which the endpoint's Certificate is verified against. Can be left empty for no validation.`, +'s0f2e070d38cd36df': `TLS Authentication Certificate/SSH Keypair`, +'s2f58bb9905d2b76f': `Certificate/Key used for authentication. Can be left empty for no authentication.`, +'s8b33660e2ed7212c': `When connecting via SSH, this keypair is used for authentication.`, +'sa668bd79645c3e06': `Kubeconfig`, +'sa85cfb884c17d85d': `Verify Kubernetes API SSL Certificate`, +'sae239213b7c70376': `State`, +'sb96629f50f2e7fab': `Unhealthy`, +'sa8e255492bb6ae0d': `Outpost integration(s)`, +'s74475586afc1fb0f': `Select type`, +'se78364ee913ae2bd': `New outpost integration`, +'s68d69ad0271c8ef6': `Create a new outpost integration.`, +'s5d6af4c100ad321b': str`Create ${0}`, +'s29ec5e7889f4787f': `Successfully updated policy.`, +'sfc400b2d71e49d28': `Successfully created policy.`, +'s67560d7e37d984c3': `Policy / User / Group`, +'se1e040b55319a0e8': `Timeout`, +'s030ac0829bb50a49': str`Policy ${0}`, +'se5dc026819a32ff8': str`User ${0}`, +'s50c312bea93b6925': `Edit Policy`, +'s494e1ed913d9351a': `Edit Group`, +'s5cd31f4a88adf180': `Edit User`, +'se291dfd2a59d7842': `Policy binding(s)`, +'s7e87ab366c199345': `Update Binding`, +'sbad5b96fb855ef36': `No Policies bound.`, +'sc15d60377cc8aaac': `No policies are currently bound to this object.`, +'s5b1fb0d4c0daeba8': `Create Binding`, +'s911a27022aba349f': `Create and bind Policy`, +'sddb040c47daae56b': `Bind existing policy`, +'s042baf59902a711f': `Policy`, +'s5f5bf4ef2bd93c04': `Group mappings can only be checked if a user is already logged in when trying to access this source.`, +'s6c607d74bdfe9f36': `User mappings can only be checked if a user is already logged in when trying to access this source.`, +'s6b85380416964890': `Negate result`, +'s3bfa0258999fb629': `Negates the outcome of the binding. Messages are unaffected.`, +'s6b1ed7507f26cb4a': `Failure result`, +'s2e422519ed38f7d8': `Pass`, +'s81a45c4fd11e8e1a': `Don't pass`, +'s95b73e0f4e47eb9a': `Result used when policy execution fails.`, +'sec1808532fe107b9': `Allow users to use Applications based on properties, enforce Password Criteria and selectively apply Stages.`, +'se16ac750b81fa93d': str`Assigned to ${0} object(s).`, +'s5a48d5171e1a1522': `Warning: Policy is not assigned.`, +'s544142ce35050751': `Test Policy`, +'s00c8354318addfa0': `Policy / Policies`, +'s76da2c978dcc5ef4': `Successfully cleared policy cache`, +'sa717841a602fe7d8': `Failed to delete policy cache`, +'s1b07757762cda372': `Clear Policy cache`, +'s15b46b78edebb20a': `Are you sure you want to clear the policy cache? This will cause all policies to be re-evaluated on their next usage.`, +'sdbccb39a658f0e45': `New policy`, +'sf693300708a40d2c': `Create a new policy.`, +'s643d8f2e5e5e930d': `Successfully updated mapping.`, +'sffeef5b119d8625c': `Successfully created mapping.`, +'s1c33d22492029aba': `Object field`, +'s06df3c3b6a503da8': `Field of the user object this value is written to.`, +'sabd1bc9fb7da71e7': `Expression using Python.`, +'s8d08843f397d9e81': `See documentation for a list of all variables.`, +'s271a7e04ff9865b1': `Control how authentik exposes and interprets information.`, +'s59dc0eda07f9e2b6': `Property Mapping(s)`, +'sa57c393736e2732c': `Test Property Mapping`, +'sc39fb3ff3753d5ab': `Hide managed mappings`, +'sd39c5e998efecf93': `SAML Attribute Name`, +'scf2790cf3ad89283': `Attribute name used for SAML Assertions. Can be a URN OID, a schema reference, or a any other string. If this property mapping is used for NameID Property, this field is discarded.`, +'sab6d24c5ec8dc361': `Friendly Name`, +'s9f8aac89fe318acc': `Optionally set the 'FriendlyName' value of the Assertion attribute.`, +'s851c108679653d2a': `Scope name`, +'s23fd4411419fca06': `Scope which the client can specify to access these properties.`, +'s7754f0e34f27fb6e': `Description shown to the user when consenting. If left empty, the user won't be informed.`, +'sb6c3bf5489d7556e': `Example context data`, +'s4a697f0b36c4fe83': `Active Directory User`, +'s9277b90db38e1983': `Active Directory Group`, +'sc2e03590269d5a10': `New property mapping`, +'s713e8666ed70f8b3': `Create a new property mapping.`, +'sdfd22a21660f6002': `Successfully updated provider.`, +'s457c639088c547c5': `Successfully created provider.`, +'s3ffa320128991a45': `Provide support for protocols like SAML and OAuth to assigned applications.`, +'s10929ca568ae10bc': `Provider(s)`, +'sb2b3b281954752c4': `Assigned to application `, +'sa6c0ba4910c7ad7f': `Assigned to application (backchannel) `, +'s97f5e0c138eae172': `Warning: Provider not assigned to any application.`, +'s0b3bf19b31dd6bac': `Try the new application wizard`, +'sa18e1c6e0e6f16cc': `The new application wizard greatly simplifies the steps required to create applications and providers.`, +'s01ef54f5d7c6ed47': `Try it now`, +'s58d1eb482059da12': `New provider`, +'sa661ea7d7a50f2e9': `Create a new provider.`, +'s9103a949a3963aa9': `Successfully updated role.`, +'sdf87c5661b31359e': `Successfully created role.`, +'s3484b1e6d0b5335f': `Manage roles which grant permissions to objects within authentik.`, +'s259de999919316db': `Role(s)`, +'sc615309d10a9228c': `RBAC is in preview.`, +'s2ffad156e8332f04': `Update Role`, +'sc5f923729564fbf3': `Create Role`, +'sf485014051ad0cf7': `Successfully assigned permission.`, +'sdeb90bfd8a80b86b': `Permissions to add`, +'s36247910d67421e1': `Select permissions`, +'sc92c1a54034e21cc': `Assign`, +'scd84d10ee9137070': `Assign permission to role`, +'s67e136af8fc1107b': `Assign permission`, +'sb923723d27df40ba': `Permission(s)`, +'sc5fb00b25c7f5a02': `Permission`, +'s14bfa8fd1bec8889': `Role doesn't have view permission so description cannot be retrieved.`, +'s7e796fe83982863f': str`Role ${0}`, +'s526e2c66bd51ff5f': `Role Info`, +'s9cc631505c17b028': `Assigned global permissions`, +'s8f85a0e678846080': `Assigned object permissions`, +'s24875d5475e82526': `Successfully updated source.`, +'s60d891ed3ee9ebc5': `Successfully created source.`, +'s6152026c364ad974': `Sources of identities, which can either be synced into authentik's database, or can be used by users to authenticate and enroll themselves.`, +'s0a0ca63b967f1630': `Source(s)`, +'s66722bc2ea775e05': `Disabled`, +'s4ff2c202b4e5bdc5': `Built-in`, +'se12969ade44cd2b6': `New source`, +'s19b09f4fc72175d1': `Create a new source.`, +'s916b32ac64ea2b05': `Successfully updated stage.`, +'s14c8f36e180d6bbc': `Successfully created stage.`, +'sddc8efe94cb8c210': `Stages are single steps of a Flow that a user is guided through. A stage can only be executed from within a flow.`, +'s0eaf755fa88c8d97': `Stage(s)`, +'s8a67b33a0d70d322': `Import Duo device`, +'s254a9a23dc1635df': `Import devices`, +'sd8417b41ca27bc8f': `New stage`, +'s293801033f9fc0d0': `Create a new stage.`, +'saaa3abe03c7260f9': `Long-running operations which authentik executes in the background.`, +'sa9b2a245441557dc': `Last run`, +'s92921878e886e36d': `Duration`, +'se7e1ababbc4868b8': str`${0} seconds`, +'s14bf17e2a1a2c381': `Restart task`, +'s0af6301e76e2a2a5': `Successfully updated tenant.`, +'sf55c7c06dbc2c8c6': `Successfully created tenant.`, +'s41706a202b6c40f1': `Domain`, +'se74ce42d41e392ba': `Matching is done based on domain suffix, so if you enter domain.tld, foo.domain.tld will still match.`, +'s11326fd2590f4e5e': `Default`, +'se1c85959463f53df': `Use this tenant for each domain that doesn't have a dedicated tenant.`, +'sc19838ca8c135c1b': `Branding settings`, +'sab6bad52985c6676': `Branding shown in page title and several other places.`, +'s4f1af2b48a5e249a': `Logo`, +'sd6b8b4156f7df696': `Icon shown in sidebar/header and flow executor.`, +'s3626433940124897': `Favicon`, +'se99efc0873031976': `Icon shown in the browser tab.`, +'s10356fd921037fbf': `Default flows`, +'sbb3243352661428f': `Authentication flow`, +'sd216b08bafb297ee': `Flow used to authenticate users. If left empty, the first applicable flow sorted by the slug is used.`, +'s35e6e60e83a8c003': `Invalidation flow`, +'s7989db5f4819af89': `Flow used to logout. If left empty, the first applicable flow sorted by the slug is used.`, +'sfeb779d4ccbc5a0e': `Recovery flow`, +'s1c2fd8097e14a608': `Recovery flow. If left empty, the first applicable flow sorted by the slug is used.`, +'s836aa192b30c21da': `Unenrollment flow`, +'s081d3c4b47a6ff83': `If set, users are able to unenroll themselves using this flow. If no flow is set, option is not shown.`, +'secbfd13bdae95a59': `User settings flow`, +'s523160b433311521': `If set, users are able to configure details of their profile.`, +'s134177568525dbc8': `Device code flow`, +'s7b298427bdea81ae': `If set, the OAuth Device Code profile can be used, and the selected flow will be used to enter the code.`, +'s7f4e4054fbe132e1': `Other global settings`, +'sbadde673052efc02': `Web Certificate`, +'s84c5a011acd608c9': `Event retention`, +'s2536ac8d32d2e63f': `Duration after which events will be deleted from the database.`, +'s7b1fba26d245cb1c': `When using an external logging solution for archiving, this can be set to "minutes=5".`, +'s44536d20bb5c8257': `This setting only affects new Events, as the expiration is saved per-event.`, +'s3bb51cabb02b997e': `Format: "weeks=3;days=2;hours=3,seconds=2".`, +'s04bfd02201db5ab8': `Set custom attributes using YAML or JSON. Any attributes set here will be inherited by users, if the request is handled by this tenant.`, +'s164be9a7537b99f6': `Configure visual settings and defaults for different domains.`, +'s4802636d55022ed3': `Default?`, +'s69a56a3022c4be7f': `Tenant(s)`, +'s1b606acd76ba2c4c': `Update Tenant`, +'s773aa6621d7e37b7': `Create Tenant`, +'s476ffc07e6d66f18': `Successfully updated token.`, +'s93c1e5fbe8184895': `Successfully created token.`, +'s4165cd175bc4c0c4': `Expires on`, +'s5fc4269c2addee61': `Unique identifier the token is referenced by.`, +'sb8bc2b8376c96a6b': `Intent`, +'sbd34d118bcb1aaf2': `API Token`, +'se31d92bea7f3a186': `Used to access the API programmatically`, +'sfd586951c75eb291': `App password.`, +'s59bf194136d0d13a': `Used to login using a flow executor`, +'s1b14062c44e5ef45': `Expiring`, +'safcc54b2aedb1a17': `If this is selected, the token will expire. Upon expiration, the token will be rotated.`, +'s78fd8c03f8c967f3': `Tokens`, +'sdcc7b2c109ce9775': `Tokens are used throughout authentik for Email validation stages, Recovery keys and API access.`, +'sf71dba2c30283a54': `Expires?`, +'s71dcd9cf808449aa': `Token(s)`, +'sb15e8daacf26bdfc': `Create Token`, +'s8d7ecd944ebe834b': `Token is managed by authentik.`, +'sd1288ca57e221cf9': `Update Token`, +'se9c07cf256774d81': `Editing is disabled for managed tokens`, +'scc3487e74c5a3e89': `Copy token`, +'s7eb3d239e0b491ab': `Select groups to add user to`, +'sec5cdfa358f9dbf7': `Warning: Adding the user to the selected group(s) will give them superuser permissions.`, +'s3d2a8b86a4f5a810': str`Successfully created user and added to group ${0}`, +'s9c3c272944dcfca3': `Successfully created user.`, +'s5a802e46a033c8af': `User's primary identifier. 150 characters or fewer.`, +'s7c5774fad9d050ce': `Create group`, +'s2a12e0b5527ff99a': `Enabling this toggle will create a group named after the user, with the user as member.`, +'s6b6e6eb037aef7da': `Use the username and password below to authenticate. The password can be retrieved later on the Tokens page.`, +'sf6e1665c7022a1f8': `Password`, +'sbb57cd8a3ed12915': `Valid for 360 days, after which the password will automatically rotate. You can copy the password from the Token List.`, +'se6a13beff646557b': str`Successfully updated ${0} ${1}`, +'s14401ff4a0cba208': str`Failed to update ${0}: ${1}`, +'sa95a538bfbb86111': str`Are you sure you want to update ${0} "${1}"?`, +'sd8051c26e155f043': `Assign permission to user`, +'s1455753daa00f1bc': `User doesn't have view permission so description cannot be retrieved.`, +'s3ef3c252ada78076': `Failed Logins`, +'sc2f1e5dd74c1b7df': `Successful Logins`, +'s506beb486fa41241': `Application authorizations`, +'sf05c700a1250824e': `Confirmed`, +'sa0b01f479f40c52d': `Device(s)`, +'s7b7163270e57e8b4': `Refresh`, +'scab2900019953050': `Successfully updated user.`, +'sd34be0d0fcb39971': `User's display name.`, +'s9f9492d30a96b9c6': `User type`, +'scef2eb6a2bfe3110': `Internal users might be users such as company employees, which will get access to the full Enterprise feature set.`, +'sf66389b04fcc219c': `External users might be external consultants or B2C customers. These users don't get access to enterprise features.`, +'s77e8668a27dbc402': `Service accounts should be used for machine-to-machine authentication or other automations.`, +'sbe3b416a356f1c91': `Is active`, +'s35fac2e5677d55cd': `Designates whether this user should be treated as active. Unselect this instead of deleting accounts.`, +'saf6097bfa25205b8': `A copy of this recovery link has been placed in your clipboard`, +'s5b8ee296ed258568': `The current tenant must have a recovery flow configured to use a recovery link`, +'s3616cc78631f5893': str`Warning: You're about to delete the user you're logged in as (${0}). Proceed at your own risk.`, +'s510c7add9e24c306': `Hide deactivated user`, +'s0924f51b028233a3': `<No name set>`, +'s895514dda9cb9c94': `Create recovery link`, +'s94055b4eb957dc8f': `User folders`, +'sc92d7cfb6ee1fec6': `Successfully updated password.`, +'se5498954255620b4': `Successfully sent email.`, +'s44ea4e9a81ce730d': `Email stage`, +'s64a33dcdaf90af26': `User Info`, +'s028d385389b5aac0': `Lock the user out of this system`, +'sd2122c514f0778b5': `Allow the user to log in and use this system`, +'s43fe853bf219a9b8': `Temporarily assume the identity of this user`, +'se28b5f3fcadaeeb1': `Enter a new password for this user`, +'s6f5bb31e2733ecd5': `Create a link for this user to reset their password`, +'se5c795faf2c07514': `Create Recovery Link`, +'sc44bae5cde0083fa': `Actions over the last week (per 8 hours)`, +'sb57dbcda1929c642': `Edit the notes attribute of this user to add notes here.`, +'s5c18cae48b93138c': `Sessions`, +'s27586544c447d9e3': `User events`, +'s4d31797d81e9cea3': `Explicit Consent`, +'sb6770fa90be6d8b3': `OAuth Refresh Tokens`, +'s28b3de1561da72b3': `MFA Authenticators`, +'sa3a3e09b88ed9791': `Assigned permissions`, +'s67ac11d47f1ce794': `WebAuthn requires this page to be accessed via HTTPS.`, +'se9e9e1d6799b86a5': `WebAuthn not supported by browser.`, +'s71c5d51d5a357dbd': `Don't show this message again.`, +'s0fbf6dc6a1966408': `Next`, +'sc16e00a7a8b2fde2': `Back`, +'sb3d4f79d9d8b71e5': `Submit`, +'s1b448a4ea79d4eef': `No Events found.`, +'s50911ec1c8aee99a': `No matching events could be found.`, +'s2da4aa7a9abeb653': `Pseudolocale (for testing)`, +'s4caed5b7a7e5d89b': `English`, +'sf1868dc19e3917bb': `Spanish`, +'s63e71d20d1eaca93': `German`, +'s75a27f43413e02c5': `French`, +'s03f49e598ffb11cc': `Polish`, +'s9d2d00982edafabb': `Turkish`, +'se3e6af2ce24d80e8': `Chinese (traditional)`, +'s4660da32fb311ac0': `Taiwanese Mandarin`, +'s354e0a9f146d2869': `Chinese (simplified)`, +'sae486938be80729c': `Everything is ok.`, +'s2ed8eb02525a920a': str`${0} hour(s) ago`, +'s98327528f00365a7': `Failed to fetch data.`, +'s08df8d0a773a3ea0': `Remove item`, +'s7df5b92a3f93544f': `Warning: The current user count has exceeded the configured licenses.`, +'s0141f42936495787': `Click here for more info.`, +'s0382d73823585617': str`${0}: ${1}`, +'se09ab93d69f7f45b': `Not used by any other object.`, +'s10922bd0ac765562': `object will be DELETED`, +'sf3981f36525b0dbd': `connection will be deleted`, +'s93cf77a59db53395': `reference will be reset to default value`, +'s3e211d29fa10f843': `reference will be set to an empty value`, +'s55fa598b754cc3cc': str`${0} (${1})`, +'se33b158a1ec02a09': str`Successfully deleted ${0} ${1}`, +'sf6eb148db23d19de': str`Failed to delete ${0}: ${1}`, +'s039b6434e8a75560': str`Delete ${0}`, +'s5819a49638f6d7cb': str`Are you sure you want to delete ${0} ${1}?`, +'s4414164d120de61a': str`The following objects use ${0}`, +'s92e241c9f3c101a2': `connecting object will be deleted`, +'s09810653c832e935': `Click to change value`, +'sd5903cc8de68b3fc': `No form found`, +'s45935843b1b5b496': `Form didn't return a promise for submitting`, +'sfefce784ec55868f': `Select an object.`, +'s04ceadb276bbe149': `Loading options...`, +'sab85321d3b0840b7': `API request failed`, +'s32a3efa23718e713': `API Requests`, +'sddb3b0176f437721': `Open API Browser`, +'s5be3c6d61cd9182f': `Notifications`, +'sa3438c7bb4e9cce8': str`${0} unread`, +'s6e6e737601f44b2c': `Successfully cleared notifications`, +'s8cda828dac449ea5': `Clear all`, +'s7301a7069b7bc83e': `Revoked?`, +'sd924045605feea63': `Expires`, +'s2e3ef41a0edd8608': `Scopes`, +'s1c8916418c334935': `ID Token`, +'s90760e5e02e95dfe': `Refresh Tokens(s)`, +'sb37880a2a7288ef0': `Update Permissions`, +'saabeb4cab074b0b9': `User Object Permissions`, +'s8489d5559dda260c': `Role Object Permissions`, +'s5da52af9b083c29a': `Model`, +'s78ab26da7f067de8': `Select permissions to grant`, +'sca7fed2bef53cb99': `Role`, +'s5ee6f1b84e9ebc69': `Assign to new role`, +'s4afb26a8fae257e9': `Directly assigned`, +'sf79f8681e5ffaee2': `Assign to new user`, +'s0a11c2ffb8309d1a': `Not found`, +'saa0e2675da69651b': str`The URL "${0}" was not found.`, +'s58cd9c2fe836d9c6': `Return home`, +'s7bc8c327f1f7c82c': `No objects found.`, +'sfd44ce578f643145': `Failed to fetch objects.`, +'s909e876731a8febb': `Select all rows`, +'s5f4586bc1e2740e6': `Clear search`, +'s04c5a637328c9b67': str`${0} - ${1} of ${2}`, +'s6a89bb10338369b4': `Go to previous page`, +'s7edad99c6b7bfe88': `Go to next page`, +'sffa721bb6aa3128d': `Search...`, +'s1b88fa3df4423292': `Last IP`, +'se63f9d833700af49': `Session(s)`, +'sde1907073fd96017': `(Current session)`, +'s76881c01b6a3a8c7': `Consent(s)`, +'s2236dc563c2dbf76': `(Format: hours=-1;minutes=-2;seconds=-3).`, +'sbec40ef4e6f139b7': `(Format: hours=1;minutes=2;seconds=3).`, +'sbb8ad22c83d375b1': `The following keywords are supported:`, +'s7181a5504472e856': `Apply changes`, +'sad59707375956ad2': `Finish`, +'s9bd9ba84819493d4': `Something went wrong! Please try again later.`, +'s4090dd0c0e45988b': `Request ID`, +'s4d7fe7be1c49896c': `You may close this page now.`, +'sd8f220c999726151': `Redirect`, +'sf8c76d5fb408de7b': `You're about to be redirect to the following URL.`, +'s197420b40df164f8': `Follow redirect`, +'s28cbd874ba450b4e': `Less details`, +'s8fa26f65aed77c96': `More details`, +'s3fb39fc45e840f78': `Refer to documentation`, +'sc741dfb09d3395f0': `No Applications available.`, +'sf34026321b35315c': `Either no applications are defined, or you don’t have access to any.`, +'s1cf2298d92c327a6': `My Applications`, +'s2656433a3b1f7e86': `My applications`, +'s588796ee929a2e4c': `User details`, +'s332a5235948c1a1d': `Consent`, +'sff945d3f59b93c5e': `MFA Devices`, +'sc54aafeea9c9bab0': `Connected services`, +'s3e99ea082ca5ade9': `Failed to fetch`, +'s2152f3482784705f': `Recent events`, +'s113c05ef9996ca4b': `Embedded outpost is not configured correctly.`, +'seb5ba88f21937c98': `Check outposts.`, +'sd0bc94e11935ee5a': `HTTPS is not detected correctly`, +'s40bf151b56a64f51': `Server and client are further than 5 seconds apart.`, +'s091d3d07b5b3076f': `OK`, +'sea91c57b3d3969fe': `System status`, +'scefe482c547fb3f3': str`Based on ${0}`, +'s68a50b1ee6efee7b': str`${0} is available!`, +'s713d147e1761d0f0': `Up-to-date!`, +'s0a63a8be0b2b422c': `Workers`, +'s341ab68d4130de20': `No workers connected. Background tasks will not run.`, +'s1f1c857c0c4250e4': str`${0} day(s) ago`, +'s51ea3a244c781b1f': `Objects created`, +'sfeb82261bcf99edd': `Healthy outposts`, +'s21b3058faf874368': `Outdated outposts`, +'s51f92b6fa76656ca': `Unhealthy outposts`, +'se085f35c8a9203a1': `LDAP Source`, +'s477de089b505a6ea': `SCIM Provider`, +'s8a75e83497a183a2': `Healthy`, +'sbf9c5c5a8e5efad4': `Failed`, +'se4cd073c125382af': `Unsynced / N/A`, +'se2b29e6cfe59414c': `UI Settings`, +'s4498e890d47a8066': `OAuth2/OIDC (Open Authorization/OpenID Connect)`, +'sc2cedfb22488ccb2': `Modern applications, APIs and Single-page applications.`, +'s4f2e195d09e2868c': `LDAP (Lightweight Directory Access Protocol)`, +'sffd5481034a1bd41': `Provide an LDAP interface for applications and users to authenticate against.`, +'s836148f721d8913b': `Transparent Reverse Proxy`, +'s945a6b94361ee45b': `For transparent reverse proxies with required authentication`, +'s7f5bb0c9923315ed': `Forward Auth (Single Application)`, +'sdc9a6ad1af30572c': `For nginx's auth_request or traefik's forwardAuth`, +'sf8008d2d6b064b95': `Forward Auth (Domain Level)`, +'sfc31264ef7ff86ef': `For nginx's auth_request or traefik's forwardAuth per root domain`, +'sfa8a1ffa9fee07d3': `SAML (Security Assertion Markup Language)`, +'s40830ec037f34626': `Configure SAML provider manually`, +'s848a23972e388662': `RADIUS (Remote Authentication Dial-In User Service)`, +'sea9fc40dfd1d18b1': `Configure RADIUS provider manually`, +'s3e902999ddf7b50e': `SCIM (System for Cross-domain Identity Management)`, +'sa1b0052ae095b9b3': `Configure SCIM provider manually`, +'s15831fa50a116545': `Saving Application...`, +'s823abdb61543a826': `Authentik was unable to save this application:`, +'s848288f8c2265aad': `Your application has been saved`, +'scda8dc24b561e205': `There was an error in the application.`, +'sdaca9c2c0361ed3a': `Review the application.`, +'sb50000a8fada5672': `There was an error in the provider.`, +'s21f95eaf151d4ce3': `Review the provider.`, +'s9fd39a5cb20b4e61': `There was an error`, +'s7a6b3453209e1066': `There was an error creating the application, but no error message was sent. Please review the server logs.`, +'s8915e64b8b999bfe': `Cached binding`, +'s842d690eb3c11762': `Flow is executed and session is cached in memory. Flow is executed when session expires`, +'s6a66759749bf31ed': `Direct binding`, +'se0adaf83627104fb': `Always execute the configured bind flow to authenticate the user`, +'s9065fcccd837a679': `Cached querying`, +'s30d0d0e6c626a234': `The outpost holds all users and groups in-memory and will refresh every 5 Minutes`, +'sffc14b8200a9f938': `Direct querying`, +'sdce4680288083fe3': `Always returns the latest data, but slower than cached querying`, +'s1889ba2eaeec2f1e': `When enabled, code-based multi-factor authentication can be used by appending a semicolon and the TOTP code to the password. This should only be enabled if all users that will bind to this provider have a TOTP device configured, as otherwise a password may incorrectly be rejected if it contains a semicolon.`, +'s1c8e9816dcae6d9c': `The start for gidNumbers, this number is added to a number generated from the group.Pk to make sure that the numbers aren't too low for POSIX groups. Default is 4000 to ensure that we don't collide with local groups or users primary groups gidNumber`, +'s4647b2c92638d6fd': `The certificate for the above configured Base DN. As a fallback, the provider uses a self-signed certificate.`, +'s2acef4f6ba39bf11': `DNS name for which the above configured certificate should be used. The certificate cannot be detected based on the base DN, as the SSL/TLS negotiation happens before such data is exchanged.`, +'s60edbcfac8ed1f90': `The start for uidNumbers, this number is added to the user.Pk to make sure that the numbers aren't too low for POSIX users. Default is 2000 to ensure that we don't collide with local users uidNumber`, +'s1a711c19cda48375': `Configure LDAP Provider`, +'s67d858051b34c38b': `Method's display Name.`, +'sff69c1a637f899a6': `Bind flow`, +'s319040353f479853': `Flow used for users to authenticate.`, +'sbc80eab557fbf782': `Search group`, +'se5973e7c8ba0fc71': `Bind mode`, +'scef3f4ad80abbd22': `Configure how the outpost authenticates requests.`, +'sbcae51a6f06e53d4': `Search mode`, +'s8b87df5664de7eb8': `Configure how the outpost queries the core authentik server's users.`, +'s254d527e3a53dbb7': `Code-based MFA Support`, +'sfe388f0313f52da2': `Protocol settings`, +'s55d731be1ef66efe': `Base DN`, +'s0b15ff11a0049cfd': `LDAP DN under which bind requests and search requests can be made.`, +'scd247ffad6e04ac0': `TLS Server name`, +'sac43cb9690260b86': `UID start number`, +'s5acb607b40356974': `GID start number`, +'s9368e965b5c292ab': `Configure OAuth2/OpenId Provider`, +'sa72a3bd1e7e89926': `Flow used when a user access this provider and is not authenticated.`, +'s62f7c59b0606a8d6': `Authorization flow`, +'sfbaeb0de54fbfdbb': `Flow used when authorizing this provider.`, +'sc8de93a7dc0d78ba': `Client type`, +'s4d00e5de1c8213b7': `Client ID`, +'s03fb3fa232f0434a': `Client Secret`, +'sde0ad51b14f77cf6': `Redirect URIs/Origins (RegEx)`, +'s55787f4dfcdce52b': `Signing Key`, +'sc6c57419ad3a01a8': `Key used to sign the tokens.`, +'s124f93a61ee772d6': `Advanced protocol settings`, +'s926e0ecf124fb01a': `Access code validity`, +'sa578033f134a83b6': `Configure how long access codes are valid for.`, +'sbea3db12fd799210': `Access Token validity`, +'s72559845d38bf688': `Configure how long access tokens are valid for.`, +'s821f6014c1a435b9': `Refresh Token validity`, +'s00c2db16ea9bc263': `Configure how long refresh tokens are valid for.`, +'s3a3fae99373ce56b': `Select which scopes can be used by the client. The client still has to specify the scope to access the data.`, +'s26bf2730430efbea': `Subject mode`, +'s9f23ed1799b4d49a': `Configure what data should be used as unique User Identifier. For most cases, the default should be fine.`, +'s17d1e337f6c11c1e': `Include claims in id_token`, +'sbf41e0db12834133': `Include User claims from scopes in the id_token, for applications that don't access the userinfo endpoint.`, +'s850a58c683682809': `Issuer mode`, +'s37d9155b9f4cc7bd': `Configure how the issuer field of the ID Token should be filled.`, +'se2adaf0371ffcd65': `Machine-to-Machine authentication settings`, +'s33318837e6c54a9b': `Trusted OIDC Sources`, +'s22e566052f7bec81': `JWTs signed by certificates configured in the selected sources can be used to authenticate to this provider.`, +'s072c6d12d3d37501': `HTTP-Basic Username Key`, +'sb2bb6f93773a4594': `User/Group Attribute used for the user part of the HTTP-Basic Header. If not set, the user's Email address is used.`, +'s70f6471de355b98c': `HTTP-Basic Password Key`, +'sf4de1644dcdb53d5': `User/Group Attribute used for the password part of the HTTP-Basic Header.`, +'sf5cbccdc6254c8dc': `Configure Proxy Provider`, +'s7c10976de6411844': `Token validity`, +'s3e87ce98ba3c4d80': `Configure how long tokens are valid for.`, +'sf6d46bb442b77e91': `AdditionalScopes`, +'s8f12575f694e85a2': `Additional scope mappings, which are passed to the proxy.`, +'s93cea6ca1f93349d': `Unauthenticated URLs`, +'sc4508175bf6b09dd': `Unauthenticated Paths`, +'sc9fc206433f67588': `Regular expressions for which authentication is not required. Each new line is interpreted as a new expression.`, +'sd503fabef9691134': `When using proxy or forward auth (single application) mode, the requested URL Path is checked against the regular expressions. When using forward auth (domain mode), the full requested URL including scheme and host is matched against the regular expressions.`, +'sb488dee0be434f7e': `Authentication settings`, +'s23cee624c735f266': `Intercept header authentication`, +'sc007cca5af67eae0': `When enabled, authentik will intercept the Authorization header to authenticate the request.`, +'s36e630ba56617556': `Send HTTP-Basic Authentication`, +'s9d5796a4b9b7560e': `Send a custom HTTP-Basic Authentication header based on values from authentik.`, +'s44c90273f08fb718': `Use this provider with nginx's auth_request or traefik's forwardAuth. Only a single provider is required per root domain. You can't do per-application authorization, but you don't have to create a provider for each application.`, +'sf55d28d4dff0e41b': `An example setup can look like this:`, +'sb4a1d1c19438e929': `authentik running on auth.example.com`, +'s68f935c9ca792016': `app1 running on app1.example.com`, +'sf813a72d8fadd765': `In this case, you'd set the Authentication URL to auth.example.com and Cookie domain to example.com.`, +'sa29b5680cfafacc8': `External host`, +'sa03fe48e892df2d8': `The external URL you'll authenticate at. The authentik core server should be reachable under this URL.`, +'s7def067ed3ad3ad9': `Cookie domain`, +'s211b75e868072162': `Set this to the domain you wish the authentication to be valid for. Must be a parent domain of the URL above. If you're running applications as app1.domain.tld, app2.domain.tld, set this to 'domain.tld'.`, +'s93574c03953f25dd': `This provider will behave like a transparent reverse-proxy, except requests must be authenticated. If your upstream application uses HTTPS, make sure to connect to the outpost using HTTPS as well.`, +'s764bccb30868bf62': `The external URL you'll access the application at. Include any non-standard port.`, +'scb317851cbcc6b12': `Internal host`, +'sf05e384059a0a7c1': `Upstream host that the requests are forwarded to.`, +'s3d34068a31cab30b': `Internal host SSL Validation`, +'s4a26798e1c3c37dd': `Validate SSL Certificates of upstream servers.`, +'h10ef80d434185070': html`Use this provider with nginx's auth_request or traefik's + forwardAuth. Each application/domain needs its own provider. + Additionally, on each domain, /outpost.goauthentik.io must be + routed to the outpost (when using a managed outpost, this is done for you).`, +'s2c8c6f89089b31d4': `Configure Radius Provider`, +'sb95baab425322600': `Shared secret`, +'s9e9316a6b0c16231': `Client Networks`, +'s7f2dcf01f7a8c0b7': `List of CIDRs (comma-seperated) that clients can connect from. A more specific + CIDR will match before a looser one. Clients connecting from a non-specified CIDR + will be dropped.`, +'sb357ea19a722d827': `Post`, +'sfe906cde5dddc041': `Configure SAML Provider`, +'s11204eeb1e27ea8f': `ACS URL`, +'sb7a30abc1dcf6c36': `Issuer`, +'sf54c562d8a10ce77': `Also known as EntityID.`, +'s991b750e2d5c4234': `Service Provider Binding`, +'s4e28e2899e08a5f8': `Determines how authentik sends the response back to the Service Provider.`, +'sd5a4b41c6c883b03': `Audience`, +'sc741d9ebe07ad103': `Signing Certificate`, +'sd6c3ddb62de0e8f7': `Certificate used to sign outgoing Responses going to the Service Provider.`, +'s5be3b0567172e415': `Verification Certificate`, +'s7c27e113f90a89e0': `When selected, incoming assertion's Signatures will be validated against this certificate. To allow unsigned Requests, leave on default.`, +'sb3defbacd01ad972': `Property mappings used for user mapping.`, +'s1a2797874b7fe852': `NameID Property Mapping`, +'s256b8452664ccae4': `Configure how the NameID value will be created. When left empty, the NameIDPolicy of the incoming request will be respected.`, +'s9f91cc8bcfabb40f': `Assertion valid not before`, +'s733f83ff9d50da30': `Configure the maximum allowed time drift for an assertion.`, +'s2af5754090898640': `Assertion valid not on or after`, +'s43c1f927936f0a02': `Assertion not valid on or after current time + this value.`, +'sad8550b8731518d8': `Session valid not on or after`, +'s0dd00fbaba08748a': `Session not valid on or after current time + this value.`, +'s2a0f60e74b478804': `Digest algorithm`, +'s693d975d38ff0214': `Signature algorithm`, +'s7ccce0ec8d228db6': `Configure SCIM Provider`, +'sb21f33b039c86322': `SCIM base url, usually ends in /v2.`, +'se68398e3c2c760b2': `Token`, +'s33ed903c210a6209': `Token to authenticate with. Currently only bearer authentication is supported.`, +'sfc8bb104e2c05af8': `User filtering`, +'sc0d0890fbd46ef62': `Exclude service accounts`, +'s23ab136ad85f0ad2': `Only sync users within the selected group.`, +'sfdedc3b0b2b7ce3d': `Attribute mapping`, +'saf794c74c9ea731e': `User Property Mappings`, +'s7cb9aa9ee1783f00': `Group Property Mappings`, +'sd7728d2b6e1d25e9': `Property mappings used for group creation.`, +'s4bd386db7302bb22': `Create With Wizard`, +'s0c9670f429e74283': `New application`, +'safc0e0656d572f4e': `A policy used for testing. Always returns the same result as specified below after waiting a random duration.`, +'s9ffa1ac03ce6fd20': `Execution logging`, +'saf31b3c610036ed6': `When this option is enabled, all executions of this policy will be logged. By default, only execution errors are logged.`, +'sa879d5ce584875cf': `Policy-specific settings`, +'s838418d1a0815157': `Pass policy?`, +'sd8c5339b82b71507': `Wait (min)`, +'sda4e78c19f5b6f35': `The policy takes a random time to execute. This controls the minimum time it will take.`, +'s1d30ff9ba938e68d': `Wait (max)`, +'s303b5e552246e613': `Matches an event against a set of criteria. If any of the configured values match, the policy passes.`, +'s890810efbe103cbc': `Match created events with this action type. When left empty, all action types will be matched.`, +'sfab527528ea64618': `Matches Event's Client IP (strict matching, for network matching use an Expression Policy.`, +'s5a15a8f39c699273': `Match events created by selected application. When left empty, all applications are matched.`, +'s3ba9b8aeb686d9f7': `Match events created by selected model. When left empty, all models are matched.`, +'s5a13f4bbe004503f': `Checks if the request's user's password has been changed in the last x days, and denys based on settings.`, +'sfad8af8ce38104a3': `Maximum age (in days)`, +'s9307f3dbb07a73b5': `Only fail the policy, don't invalidate user's password`, +'scea1f16238093e35': `Executes the python snippet to determine whether to allow or deny a request.`, +'se2cc93bd2647baec': `Static rules`, +'sc96dd9d2e7b05fc5': `Minimum length`, +'s33d48fb745f4d4ae': `Minimum amount of Uppercase Characters`, +'s883b544e2b4aa3b5': `Minimum amount of Lowercase Characters`, +'s43be3ce2439ffe9c': `Minimum amount of Digits`, +'sb3651834cca86735': `Minimum amount of Symbols Characters`, +'sc2f116c0ea77d58a': `Error message`, +'s21d0e290c51a8ef9': `Symbol charset`, +'s545d99afa61e4095': `Characters which are considered as symbols.`, +'s1293ad87acc7a609': `HaveIBeenPwned settings`, +'sdf4e1c6a2f072600': `Allowed count`, +'scd8062ff5e1326d8': `Allow up to N occurrences in the HIBP database.`, +'s3fd219b045193507': `zxcvbn settings`, +'s28d84abfbaf555ea': `Score threshold`, +'s7b3148ffba9f4527': `If the password's score is less than or equal this value, the policy will fail.`, +'sd94e99af8b41ff54': `0: Too guessable: risky password. (guesses &lt; 10^3)`, +'sc926385d1a624c3a': `1: Very guessable: protection from throttled online attacks. (guesses &lt; 10^6)`, +'s8aae61c41319602c': `2: Somewhat guessable: protection from unthrottled online attacks. (guesses &lt; 10^8)`, +'sc1f4b57e722a89d6': `3: Safely unguessable: moderate protection from offline slow-hash scenario. (guesses &lt; 10^10)`, +'sd47f3d3c9741343d': `4: Very unguessable: strong protection from offline slow-hash scenario. (guesses &gt;= 10^10)`, +'sd6cd7ce2310a73a4': `Checks the value from the policy request against several rules, mostly used to ensure password strength.`, +'s2a957e843960b604': `Password field`, +'se8a81c75b6e30a33': `Field key to check, field keys defined in Prompt stages are available.`, +'s2f8c4cf12350a36c': `Check static rules`, +'sd75a9a71309fb387': `Check haveibeenpwned.com`, +'se5cb18408df3284e': `For more info see:`, +'scef7abb8456b06d6': `Check zxcvbn`, +'sdfdb58cd232b363d': `Password strength estimator created by Dropbox, see:`, +'sd080b2370aa82967': `Reputation for IP and user identifiers. Scores are decreased for each failed login and increased for each successful login.`, +'s09242207b5b8f83c': `IP`, +'s7d684b6257284e55': `Score`, +'s10d2dbc4613397f0': `Updated`, +'sa33d061d2ade20aa': `Reputation`, +'s40b034801fcb843b': `Allows/denys requests based on the users and/or the IPs reputation.`, +'scf4afecb0f1e69b2': `Invalid login attempts will decrease the score for the client's IP, and the +username they are attempting to login as, by one.`, +'s8323a9af28e10502': `The policy passes when the reputation score is below the threshold, and +doesn't pass when either or both of the selected options are equal or above the threshold.`, +'s1828fbfc2c56379c': `Check IP`, +'s4751df77cfd8a5f9': `Check Username`, +'se19cc57dd8675498': `Threshold`, +'s04b7f8d6aaef3756': `Users in the selected group can do search queries. If no group is selected, no LDAP Searches are allowed.`, +'s05e395ff60af047b': `Warning: Provider is not used by any Outpost.`, +'sccbfc4dec0c8d80c': `Assigned to application`, +'s2d46e3a9ee8e0e7e': `Update LDAP Provider`, +'saf24e253b3b006d4': `How to connect`, +'s02b3fade1795d03f': `Connect to the LDAP Server on port 389:`, +'sa00cf67b54c44c71': `Check the IP of the Kubernetes service, or`, +'s28f270859c5f4d51': `The Host IP of the docker host`, +'sb7794c2910b1a9ec': `Bind DN`, +'s5694f9421c428227': `Bind Password`, +'s086e1bbe7c97ea16': `Search base`, +'s399cc2d67d92e957': `Confidential`, +'s95f09b229a0a0bb0': `Confidential clients are capable of maintaining the confidentiality of their credentials such as client secrets`, +'sdd1ff479d04ac140': `Public`, +'s51c6b8403c2dc5d9': `Public clients are incapable of maintaining the confidentiality and should use methods like PKCE. `, +'sccc47f82044453f9': `Based on the User's hashed ID`, +'sbd5be4fb7442a34c': `Based on the User's ID`, +'sc9cf9ecaf9e5d67e': `Based on the User's UUID`, +'s4291727352c4f295': `Based on the User's username`, +'sd62cfc27ad4aa33b': `Based on the User's Email`, +'s55eb75bedf96be0f': `This is recommended over the UPN mode.`, +'sf80e9547166117e6': `Based on the User's UPN`, +'sde949d0ef44572eb': `Requires the user to have a 'upn' attribute set, and falls back to hashed user ID. Use this mode only if you have different UPN and Mail domains.`, +'sde56783222b527d6': `Each provider has a different issuer, based on the application slug`, +'s8d32d7b9e8ca60b1': `Same identifier is used for all providers`, +'s7f9eb9c8bd26e8fd': `Valid redirect URLs after a successful authorization flow. Also specify any origins here for Implicit flows.`, +'s2a369bc2febb5d55': `If no explicit redirect URIs are specified, the first successfully used redirect URI will be saved.`, +'sa8384c9c26731f83': `To allow any redirect URI, set this value to ".*". Be aware of the possible security implications this can have.`, +'s417b90913e05bc17': `Preview`, +'s17f3eaf3b07ece26': `Warning: Provider is not used by an Application.`, +'s56806e9f63efa298': `Redirect URIs`, +'sdbc08adee233f180': `Update OAuth2 Provider`, +'s9d96eb5ca93e6473': `OpenID Configuration URL`, +'s74f809a69e030351': `OpenID Configuration Issuer`, +'s028be8989873f001': `Authorize URL`, +'sebda1d54a3f9f967': `Token URL`, +'s2fc3eb68c7ced3af': `Userinfo URL`, +'s145483489b87a622': `Logout URL`, +'s59f5eda30a904b75': `JWKS URL`, +'s453b0c150a7ca58e': `Example JWT payload (for currently authenticated user)`, +'s7489f76224f8120d': `Forward auth (single application)`, +'s25d0cd75377daf75': `Forward auth (domain level)`, +'sff0ac1ace2d90709': `Use this provider with nginx's auth_request or traefik's forwardAuth. Each application/domain needs its own provider. Additionally, on each domain, /outpost.goauthentik.io must be routed to the outpost (when using a managed outpost, this is done for you).`, +'s31d15c6f16951464': `Authentication URL`, +'s2345170f7e272668': `Unknown proxy mode`, +'sd539548ca4c71619': `Additional scopes`, +'sc6e8a34361c7c272': `Forward auth (domain-level)`, +'s6df42b3072a2d7e9': `Nginx (Ingress)`, +'s8e01a852c1db8d29': `Nginx (Proxy Manager)`, +'sabebdc7fa6a5bddb': `Nginx (standalone)`, +'s5d9f93f1fe1c19d3': `Traefik (Ingress)`, +'se2b62f7e9017965e': `Traefik (Compose)`, +'s4c4c504a48c3b7bd': `Traefik (Standalone)`, +'s7ba9677d069e5f02': `Caddy (Standalone)`, +'s4a1e774ab25aa232': `Internal Host`, +'sc9c3578cce3cf7a8': `External Host`, +'s7a141f1b61074fbe': `Basic-Auth`, +'s4e474b9e2e737dd1': `Update Proxy Provider`, +'s37eb2f1b6e3c19c2': `Protocol Settings`, +'s5116b89f7db1fbec': `Allowed Redirect URIs`, +'saeff3596e1ac31b6': `Setup`, +'s1b783856ab4aaaf3': `No additional setup is required.`, +'s09b671b120443043': `Update Radius Provider`, +'se6d950402810c34f': `Property mappings`, +'scb58b8a60cad8762': `Default relay state`, +'s6827a456c9dfc6ee': `When using IDP-initiated logins, the relay state will be set to this value.`, +'sd1a5560fde6f2271': `Successfully imported provider.`, +'s252a52330d32b900': `Metadata`, +'sf417c13d7a0f7995': `Copy download URL`, +'sc1cfce89ebcf1bf9': `Download signing certificate`, +'s2c0de3d35a7bc784': `Related objects`, +'s803b0621006085be': `Update SAML Provider`, +'s44b1f042790cd1a2': `SAML Configuration`, +'sba999428083abce3': `EntityID/Issuer`, +'scd2984ee5552643a': `SSO URL (Post)`, +'saa79b47f60c66458': `SSO URL (Redirect)`, +'s2da51a6287118ba8': `SSO URL (IdP-initiated Login)`, +'s0a57e911e457302b': `SLO URL (Post)`, +'s1e7308bb1ca323e1': `SLO URL (Redirect)`, +'sd2c58d7c6dddc515': `SAML Metadata`, +'s382b702673776873': `Example SAML attributes`, +'sea3bfc143ced73db': `NameID attribute`, +'s019555b5a442aa00': `Property mappings used to user mapping.`, +'sa319e3bf44c85963': `Property mappings used to group creation.`, +'sadadfe9dfa06d7dd': `No sync status.`, +'s2b1c81130a65a55b': `Sync currently running.`, +'s31a2d43bc1cf1790': `Not synced yet.`, +'s388ee787bbf2271b': `Task finished with warnings`, +'s949826fad0fe0909': `Task finished with errors`, +'sbedb77365a066648': str`Last sync: ${0}`, +'s2f0f6691de0b0388': `Warning: Provider is not assigned to an application as backchannel provider.`, +'sc6c575c5ff64cdb1': `Update SCIM Provider`, +'sbecf8dc03c978d15': `Run sync again`, +'s4476e9c50cfd13f4': `Global status`, +'sd21a971eea208533': `Vendor`, +'s8af7239354f7e7b6': `Sync users`, +'sd80b0b8aeae3abe3': `User password writeback`, +'s2b952e9dc99cbded': `Login password is synced from LDAP into authentik automatically. Enable this option only to write password changes in authentik back to LDAP.`, +'saf7ce4165a1025f6': `Sync groups`, +'s2035f889f576bca6': `Connection settings`, +'s0a72e65aef45b1e8': `Server URI`, +'sa599dbe5776897ad': `Specify multiple server URIs by separating them with a comma.`, +'se36b55dfcf5dc80b': `Enable StartTLS`, +'s33683c3b1dbaf264': `To use SSL instead, use 'ldaps://' and disable this option.`, +'s1024166475850a65': `Use Server URI for SNI verification`, +'se65beb94fffc3c4b': `Required for servers using TLS 1.3+`, +'sb8c13bd58191cea2': `When connecting to an LDAP Server with TLS, certificates are not checked by default. Specify a keypair to validate the remote certificate.`, +'s000ee3e634868b3c': `TLS Client authentication certificate`, +'s5506b35a1bceb141': `Client certificate keypair to authenticate against the LDAP Server's Certificate.`, +'sb7684e2910a33a1f': `Bind CN`, +'s3de6db803012016a': `LDAP Attribute mapping`, +'s7c05ee41d634aa45': `Property mappings used to user creation.`, +'sd14a19a19d507f9e': `Parent group for all the groups imported from LDAP.`, +'sfbc59ff17a73503d': `User path`, +'sd18170637295bace': `Addition User DN`, +'s9ae089fd248e72db': `Additional user DN, prepended to the Base DN.`, +'s5944355d69db1fb8': `Addition Group DN`, +'sfae9f4ea5749a36b': `Additional group DN, prepended to the Base DN.`, +'s66ffc06300964849': `User object filter`, +'s1c2a173db0e1ec61': `Consider Objects matching this filter to be Users.`, +'s2ec94a7c7f5bcd1b': `Group object filter`, +'saf5eb7596b3a355b': `Consider Objects matching this filter to be Groups.`, +'sf325a4adba4d6278': `Group membership field`, +'s76768bebabb7d543': `Field which contains members of a group. Note that if using the "memberUid" field, the value is assumed to contain a relative distinguished name. e.g. 'memberUid=some-user' instead of 'memberUid=cn=some-user,ou=groups,...'`, +'s026555347e589f0e': `Object uniqueness field`, +'s24211f319e5b7e98': `Field which contains a unique Identifier.`, +'s52b500138a2d2b8a': `Update LDAP Source`, +'sf36170f71cea38c2': `Connectivity`, +'sf3fec8353106ac2f': str`OAuth Source ${0}`, +'sd04376c4216c921f': `URL settings`, +'s872d0e88ab34ed83': `Authorization URL`, +'see3ff55262fd6500': `URL the user is redirect to to consent the authorization.`, +'sb932dead79567c7b': `Access token URL`, +'s88b8a2892635a2fc': `URL used by authentik to retrieve tokens.`, +'s69bd313dd12fc2f3': `Profile URL`, +'sa8d83cd8023e8e4d': `URL used by authentik to get user information.`, +'sc7707b3ba3a2a7ca': `Request token URL`, +'s3926da5b20cdf3b6': `URL used to request the initial token. This URL is only required for OAuth 1.`, +'s199b55513a739f43': `OIDC Well-known URL`, +'s8b149b30b5b523ef': `OIDC well-known configuration URL. Can be used to automatically configure the URLs above.`, +'s9db2c836ade1339c': `OIDC JWKS URL`, +'s4b2a1b657c160f5b': `JSON Web Key URL. Keys from the URL will be used to validate JWTs from this source.`, +'s2df0b65125600de9': `OIDC JWKS`, +'s02de8d9e8583b480': `Raw JWKS data.`, +'s81a87652ade099e4': `User matching mode`, +'se8987bdfb35e46b2': `Consumer key`, +'sb35c08e3a541188f': `Also known as Client ID.`, +'sabaf0061f7e41b0b': `Consumer secret`, +'sd46fd9b647cfea10': `Also known as Client Secret.`, +'sa61966cd83b4924c': `Additional scopes to be passed to the OAuth Provider, separated by space. To replace existing scopes, prefix with *.`, +'s1cc0e66dbd2b5502': `Flow settings`, +'sfe6977a3aea3ee6e': `Flow to use when authenticating existing users.`, +'s2801a48ceac691b3': `Enrollment flow`, +'s5d0a14d29ebad561': `Flow to use when enrolling new users.`, +'se09d055771f3a11d': `Generic OpenID Connect`, +'s5c1dc164c89ac13e': `Unknown provider type`, +'s355b21b89ce5d9c5': `Details`, +'s01088b6625d2443b': `Callback URL`, +'sb6d5146d5efb3058': `Access Key`, +'s065604a41e9d1584': `Update OAuth Source`, +'s587ba266269297ab': `Policy Bindings`, +'s2feae323f46479f8': `These bindings control which users can access this source. + You can only use policies here as access is checked before the user is authenticated.`, +'s900b0d85b872d134': `Link users on unique identifier`, +'s6c70a73265e14521': `Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses`, +'s995535e7af30d754': `Use the user's email address, but deny enrollment when the email address already exists`, +'s542ecb4130f6cea5': `Link to a user with identical username. Can have security implications when a username is used with another source`, +'s2a1debf34e5aeba4': `Use the user's username, but deny enrollment when the username already exists`, +'s81ce0d54727f42d2': `Unknown user matching mode`, +'s91f389c796720a81': `Load servers`, +'s24f405197ede5ebb': `Re-authenticate with plex`, +'sc297b2e13c28ecf9': `Allow friends to authenticate via Plex, even if you don't share any servers`, +'sfee91e08b8b47477': `Allowed servers`, +'s216eb300543edd91': `Select which server a user has to be a member of to be allowed to authenticate.`, +'se17fcb1f159ee382': `Update Plex Source`, +'s31d7f3ba04d306a5': `SSO URL`, +'s1d9d6c5b424fdc1f': `URL that the initial Login request is sent to.`, +'sd94db2b8c85d10a6': `SLO URL`, +'sc764ddf60b5149de': `Optional URL if the IDP supports Single-Logout.`, +'se7430794fa89005a': `Also known as Entity ID. Defaults the Metadata URL.`, +'s5615bb595ad6ded6': `Binding Type`, +'sa2e4d6830226d3ec': `Redirect binding`, +'s6f96a78d81ef277c': `Post-auto binding`, +'sc2c70fd56f5d0b48': `Post binding but the request is automatically sent and the user doesn't have to confirm.`, +'s968c90258dcf7562': `Post binding`, +'se10bbf4cf861c81b': `Signing keypair`, +'s838ed611b533b19e': `Keypair which is used to sign outgoing requests. Leave empty to disable signing.`, +'s39c8c0bf4d927c9f': ` Allow IDP-initiated logins`, +'s65d507f1513c2f03': `Allows authentication flows initiated by the IdP. This can be a security risk, as no validation of the request ID is done.`, +'s297a2075bd7e40db': `NameID Policy`, +'s004e9a2c90f23900': `Persistent`, +'s38887b94b3320533': `Email address`, +'s2d34c87f67f66c6a': `Windows`, +'s1665454e31e14941': `X509 Subject`, +'s0c3ac7f9383a8cfd': `Transient`, +'s20a0ce62823bfa97': `Delete temporary users after`, +'s3198c384c2f68b08': `Time offset when temporary users should be deleted. This only applies if your IDP uses the NameID Format 'transient', and the user doesn't log out manually.`, +'sb32e9c1faa0b8673': `Pre-authentication flow`, +'sa3c1f6ac5e63a70f': `Flow used before authentication.`, +'saa10777250a6deca': `Update SAML Source`, +'sf22a28f83cc45fcc': `Stage used to configure a duo-based authenticator. This stage should be used for configuration flows.`, +'s5adafce329aaa853': `Authenticator type name`, +'s23e6a57201fba25e': `Display name of this authenticator, used by users when they enroll an authenticator.`, +'s276d751eb7a186cc': `API Hostname`, +'s5b6b6e2cb884d59f': `Duo Auth API`, +'s240ff02ce3a53dee': `Integration key`, +'s56fd9ed596c724fa': `Secret key`, +'s88870d7e499e848b': `Duo Admin API (optional)`, +'s7f13f4a2d0370cf6': `When using a Duo MFA, Access or Beyond plan, an Admin API application can be created. + This will allow authentik to import devices automatically.`, +'s9a34d1520e320465': `Stage-specific settings`, +'s0dfc6838c9d07677': `Configuration flow`, +'sebf44d2471b608ad': `Flow used by an authenticated user to configure this Stage. If empty, user will not be able to configure this stage.`, +'s71633a67e0d7c0e4': `Successfully imported device.`, +'s7d61705dfb120d7b': `The user in authentik this device will be assigned to.`, +'s5eaf1d304e03ed4b': `Duo User ID`, +'s003847d8bc01c676': `The user ID in Duo, can be found in the URL after clicking on a user.`, +'sbbc806ea3987c781': `Automatic import`, +'s77299a9d3dd932cd': str`Successfully imported ${0} devices.`, +'s6a615f6165ef01c9': `Start automatic import`, +'s9f83d7768aea548a': `Or manually import`, +'s3baf512851453712': `Twilio Account SID`, +'sa738ce390bc24875': `Get this value from https://console.twilio.com`, +'sa7b56a80ab1801f0': `Twilio Auth Token`, +'sfe99a8caa70232ab': `Authentication Type`, +'safd0363143a46a91': `Basic Auth`, +'sd06b47084fec0ec5': `Bearer Token`, +'sb1751a1411d6874f': `External API URL`, +'sbdc1176ff9f93da2': `This is the full endpoint to send POST requests to.`, +'s51da4de00984fe51': `API Auth Username`, +'s293ab4331c1dd387': `This is the username to be used with basic auth or the token when used with bearer token`, +'s634d041fd954ab20': `API Auth password`, +'sb635ad3c2e357d3c': `This is the password to be used with basic auth`, +'sa92398dba8b12d85': `Mapping`, +'s38162f615710c7b4': `Modify the payload sent to the custom provider.`, +'s5e830ae7688d1219': `Stage used to configure an SMS-based TOTP authenticator.`, +'s0d5d05bf3d122ced': `Twilio`, +'sc3c74f5273df459a': `Generic`, +'sbbb2180b6aed196e': `From number`, +'sc647dcb91f6958dd': `Number the SMS will be sent from.`, +'s0ae0072614320ae2': `Hash phone number`, +'s9ca3310e1999fd5b': `If enabled, only a hash of the phone number will be saved. This can be done for data-protection reasons. Devices created from a stage with this enabled cannot be used with the authenticator validation stage.`, +'s128e7f5f34bfa155': `Stage used to configure a static authenticator (i.e. static tokens). This stage should be used for configuration flows.`, +'sabf67834e35dede5': `Token count`, +'s7caa8f7edb920909': `The number of tokens generated whenever this stage is used. Every token generated per stage execution will be attached to a single static device.`, +'s4aacc4e0277c1042': `Token length`, +'s6931695c4f563bc4': `The length of the individual generated tokens. Can be increased to improve security.`, +'sc5a4711395ffb043': `Stage used to configure a TOTP authenticator (i.e. Authy/Google Authenticator).`, +'s9d8ad4b85287131f': `Digits`, +'sc04e92d753742189': `6 digits, widely compatible`, +'sdc70195469e83e3f': `8 digits, not compatible with apps like Google Authenticator`, +'s0e15f678445dfc45': `Stage used to validate any authenticator. This stage should be used during authentication or authorization flows.`, +'s73c13e5a6f5e38a3': `Device classes`, +'s97d1b0070f50c07f': `Static Tokens`, +'sb8168ae309c66abc': `TOTP Authenticators`, +'sde47e4d8b9b21b59': `WebAuthn Authenticators`, +'s8da88a8a5750bce1': `Duo Authenticators`, +'s4d182bae8a578010': `SMS-based Authenticators`, +'sd8d9451f86502d1a': `Device classes which can be used to authenticate.`, +'se2e9f5a32c93e5f7': `Last validation threshold`, +'s951281efc92b03fc': `If any of the devices user of the types selected above have been used within this duration, this stage will be skipped.`, +'s681074b6c1f19c08': `Not configured action`, +'sa2c29dc5ed47b26d': `Force the user to configure an authenticator`, +'sa30c58514a3dc0fb': `Deny the user access`, +'s81ecf2d4386b8e84': `Continue`, +'s1e0de9c4f66dc371': `WebAuthn User verification`, +'sdb7b2173869822bc': `User verification must occur.`, +'s7683363cdf78cf31': `User verification is preferred if available, but not required.`, +'scb43f5faeb6a7ca9': `User verification should not occur.`, +'scae166352a31032c': `Configuration stages`, +'s6941a67f0038ba4c': `Stages used to configure Authenticator when user doesn't have any compatible devices. After this configuration Stage passes, the user is not prompted again.`, +'s7e5af9c6ba6f5cc6': `When multiple stages are selected, the user can choose which one they want to enroll.`, +'s24bce955914b1f0a': `Stage used to configure a WebAuthn authenticator (i.e. Yubikey, FaceID/Windows Hello).`, +'s34b23ebbac9f6ab9': `User verification`, +'s6a3cf855140b9511': `Required: User verification must occur.`, +'sc498a3b05cfe2b08': `Preferred: User verification is preferred if available, but not required.`, +'s9d2239d2b0402795': `Discouraged: User verification should not occur.`, +'s9ea472b555374771': `Resident key requirement`, +'s428b7859907f6db2': `Required: The authenticator MUST create a dedicated credential. If it cannot, the RP is prepared for an error to occur`, +'s33e3766d4a02b042': `Preferred: The authenticator can create and store a dedicated credential, but if it doesn't that's alright too`, +'sfb852dd507c25c24': `Discouraged: The authenticator should not create a dedicated credential`, +'s5fbaeb14f42815e5': `Authenticator Attachment`, +'s502d2473587032e1': `No preference is sent`, +'s60cc554fde2676cb': `A non-removable authenticator, like TouchID or Windows Hello`, +'sdf1d8edef27236f0': `A "roaming" authenticator, like a YubiKey`, +'sfffba7b23d8fb40c': `This stage checks the user's current session against the Google reCaptcha (or compatible) service.`, +'sfd1af96798dd8a5f': `Public Key`, +'sf339673f0f76a8bd': `Public key, acquired from https://www.google.com/recaptcha/intro/v3.html.`, +'s892d2731a6f22e59': `Private key, acquired from https://www.google.com/recaptcha/intro/v3.html.`, +'scb6620fcd5bff04c': `Advanced settings`, +'s39e436de1dc4df4f': `JS URL`, +'s170b705c55ecb2ae': `URL to fetch JavaScript from, defaults to recaptcha. Can be replaced with any compatible alternative.`, +'s275021658614ce9e': `API URL`, +'sc8a79fddea3ab4a9': `URL used to validate captcha response, defaults to recaptcha. Can be replaced with any compatible alternative.`, +'s1cd617e7bbe278d0': `Prompt for the user's consent. The consent can either be permanent or expire in a defined amount of time.`, +'s26513c9dd154f041': `Always require consent`, +'s8ce8bdc9cc9c8604': `Consent given last indefinitely`, +'sb986f15fa9b17805': `Consent expires.`, +'s6f328f2d8382d998': `Consent expires in`, +'se0c660020d9cf5b7': `Offset after which consent expires.`, +'s7f68101a50f526ee': `Statically deny the flow. To use this stage effectively, disable *Evaluate when flow is planned* on the respective binding.`, +'s1cc306d8e28c4464': `Deny message`, +'s6985c401e1100122': `Message shown when this stage is run.`, +'s22b10ed263b96194': `Dummy stage used for testing. Shows a simple continue button and always passes.`, +'sdb861d9906f18ac2': `Throw error?`, +'s31ebc5431d677f5d': `SMTP Host`, +'s289fce7e694b98ac': `SMTP Port`, +'se4a9da0295597e73': `SMTP Username`, +'s593db2c00d6516a2': `SMTP Password`, +'s0d4268408182491d': `Use TLS`, +'s480c6c40a248f7d2': `Use SSL`, +'sc1feadd25659c94d': `From address`, +'sa248e1021d2c27b5': `Verify the user's email address by sending them a one-time-link. Can also be used for recovery to verify the user's authenticity.`, +'s87b7e3bc944c728c': `Activate pending user on success`, +'s9e9c8d99f4c26baf': `When a user returns from the email successfully, their account will be activated.`, +'s618d4e53f455c834': `Use global settings`, +'sae1e1a59d22609c4': `When enabled, global Email connection settings will be used and connection settings below will be ignored.`, +'sb1fe947f9ad27b9d': `Token expiry`, +'s1c6ba8d100453392': `Time in minutes the token sent is valid.`, +'se47baf2fd16b9d2b': `Template`, +'s4af8a3ce5a600855': `Let the user identify themselves with their username or Email address.`, +'s592ab7d2bc1b8973': `User fields`, +'s61e48919db20538a': `UPN`, +'s4cdae7635e757555': `Fields a user can identify themselves with. If no fields are selected, the user will only be able to use sources.`, +'s3380d7cbcebe50f6': `Password stage`, +'s08c91cb1a2cd3d97': `When selected, a password field is shown on the same page instead of a separate page. This prevents username enumeration attacks.`, +'sd97d8d0906e6cc47': `Case insensitive matching`, +'s8aaad223e954f9ca': `When enabled, user fields are matched regardless of their casing.`, +'s62e7f6ed7d9cb3ca': `Pretend user exists`, +'s52bdc80690a9a8dc': `When enabled, the stage will always accept the given user identifier and continue.`, +'sbab723b98dcfe23f': `Show matched user`, +'se50a08ab71bb96ed': `When a valid username/email has been entered, and this option is enabled, the user's username and avatar will be shown. Otherwise, the text that the user entered will be shown.`, +'s0295ce5d6f635d75': `Source settings`, +'s91e3a47599412f51': `Sources`, +'s17a679298216aca9': `Select sources should be shown for users to authenticate with. This only affects web-based sources, not LDAP.`, +'sa41aee3ae04c9216': `Show sources' labels`, +'s54cd35e6224ba65d': `By default, only icons are shown for sources. Enable this to show their full names.`, +'s9ee20003cb116abf': `Passwordless flow`, +'s0c8c4d2bb0a9162a': `Optional passwordless flow, which is linked at the bottom of the page. When configured, users can use this flow to authenticate with a WebAuthn authenticator, without entering any details.`, +'s01a3a7f48ee4edaf': `Optional enrollment flow, which is linked at the bottom of the page.`, +'s82188c9542510212': `Optional recovery flow, which is linked at the bottom of the page.`, +'s7a322c89298dd27c': `Successfully updated invitation.`, +'sc554339ffc7b04e7': `Successfully created invitation.`, +'sa84a7fd11ba85e88': `When selected, the invite will only be usable with the flow. By default the invite is accepted on all flows with invitation stages.`, +'sd18b18f91b804c3f': `Custom attributes`, +'s7520286c8419a266': `Optional data which is loaded into the flow's 'prompt_data' context variable. YAML or JSON.`, +'sb8795b799c70776a': `Single use`, +'sf232d42142eacc23': `When enabled, the invitation will be deleted after usage.`, +'sa4a8086275475714': `Select an enrollment flow`, +'s839cb09cb2193da9': `Link to use the invitation.`, +'s57448f10eb973100': `Create Invitation Links to enroll Users, and optionally force specific attributes of their account.`, +'s4aee34a672e5cfc0': `Created by`, +'sd5ba2d61ee4796fe': `Invitation(s)`, +'s96dcf7ec8342c335': `Invitation not limited to any flow, and can be used with any enrollment flow.`, +'s1b42b49e7b392013': `Update Invitation`, +'s38c72e1cf120b8d8': `Create Invitation`, +'s802826db4e2c852e': `Warning: No invitation stage is bound to any flow. Invitations will not work as expected.`, +'s3e59b8b2debf0209': `This stage can be included in enrollment flows to accept invitations.`, +'s79ad406777feab1f': `Continue flow without invitation`, +'s61ccefd661ac2296': `If this flag is set, this Stage will jump to the next Stage when no Invitation is given. By default this Stage will cancel the Flow when no invitation is given.`, +'sdc30bddeda2f0225': `Validate the user's password against the selected backend(s).`, +'sb8d4f44a1d5b9a14': `Backends`, +'sba42248f3f27955c': `User database + standard password`, +'s3330adb3f0922f7b': `User database + app passwords`, +'sc10db51c9bb77d5c': `User database + LDAP password`, +'sd35ae4be63df1f9f': `Selection of backends to test the password against.`, +'s482ae78809a6822b': `Flow used by an authenticated user to configure their password. If empty, user will not be able to configure change their password.`, +'s77994108c886b965': `Failed attempts before cancel`, +'sa9020b93c3bd7235': `How many attempts a user has before the flow is canceled. To lock the user out, use a reputation policy and a user_write stage.`, +'s8b2b2a43fcf688a3': `Successfully updated prompt.`, +'s5572ac4d2208f5ec': `Successfully created prompt.`, +'s54e7a23a95d99649': `Text: Simple Text input`, +'s63e54b86e2a2cc43': `Text Area: Multiline text input`, +'s12de1c06a1e18cc5': `Text (read-only): Simple Text input, but cannot be edited.`, +'s4e5646b23e41231f': `Text Area (read-only): Multiline text input, but cannot be edited.`, +'s1e4c3de6e12cd87b': `Username: Same as Text input, but checks for and prevents duplicate usernames.`, +'s5462c7f56ed65e6c': `Email: Text field with Email type.`, +'s1c5574968b29ab1c': `Password: Masked input, multiple inputs of this type on the same prompt need to be identical.`, +'sbbb97b1c63507dc0': `Number`, +'sdae649fae731e838': `Checkbox`, +'s34edeb18f887161d': `Radio Button Group (fixed choice)`, +'s57730b6870e8916c': `Dropdown (fixed choice)`, +'sac8252732f2edb19': `Date`, +'s45960273852a61b2': `Date Time`, +'sd1f81284eeb7b503': `File`, +'s21e3c227cc2c5873': `Separator: Static Separator Line`, +'s706af57c1af42c6d': `Hidden: Hidden field, can be used to insert data into form.`, +'s40e2c72dae905a50': `Static: Static value, displayed as-is.`, +'sdd4bd4224c4e943d': `authentik: Locale: Displays a list of locales authentik supports.`, +'saf84e7732a9e1336': `Preview errors`, +'sb71ace8e9b35c749': `Data preview`, +'s4d53f4b7ff33bedd': `Unique name of this field, used for selecting fields in prompt stages.`, +'s3b58f8d2155ae90c': `Field Key`, +'s2b088ba65eb69b7e': `Name of the form field, also used to store the value.`, +'s662fcb3761ad9df7': `When used in conjunction with a User Write stage, use attributes.foo to write attributes.`, +'s5590dbf7e425789d': `Label`, +'s0c135eba6017d94f': `Label shown next to/above the prompt.`, +'sae5d87e99fe081e0': `Required`, +'s37dbfe2133b74d2d': `Interpret placeholder as expression`, +'s4a953e6234cb4808': `When checked, the placeholder will be evaluated in the same way a property mapping is. + If the evaluation fails, the placeholder itself is returned.`, +'sf90be97cb08f3d5a': `Placeholder`, +'sf76ead4c4708dd06': `Optionally provide a short hint that describes the expected input value. + When creating a fixed choice field, enable interpreting as expression and return a + list to return multiple choices.`, +'saa7ba2057bd524a1': `Interpret initial value as expression`, +'sd60415c7666859f0': `When checked, the initial value will be evaluated in the same way a property mapping is. + If the evaluation fails, the initial value itself is returned.`, +'sa9c7044d9fd1f3e6': `Initial value`, +'seab35681cbf36755': `Optionally pre-fill the input with an initial value. + When creating a fixed choice field, enable interpreting as expression and + return a list to return multiple default choices.`, +'s72c1c17a9bdc76ad': `Help text`, +'s584d1c38ad20d560': `Any HTML can be used.`, +'s42fc6f4b64eff5d9': `Single Prompts that can be used for Prompt Stages.`, +'s42a1ebe17efda727': `Field`, +'sec7443a45fd141e5': `Prompt(s)`, +'scc733ba98740038a': `Update Prompt`, +'s61b6f3e6bc59c6dd': `Create Prompt`, +'s5170f9ef331949c0': `Show arbitrary input fields to the user, for example during enrollment. Data is saved in the flow context under the 'prompt_data' variable.`, +'s36cb242ac90353bc': `Fields`, +'s2d5f69929bb7221d': str`${0} ("${1}", of type ${2})`, +'s3b7b519444181264': `Validation Policies`, +'s59691290a232c687': `Selected policies are executed when the stage is submitted to validate the data.`, +'sbf4ef82e04772a4e': `Delete the currently pending user. CAUTION, this stage does not ask for confirmation. Use a consent stage to ensure the user is aware of their actions.`, +'s8cc920e6a8430a0d': `Log the currently pending user in.`, +'sb85ffe141d7c229d': `Session duration`, +'sece294cd51a85745': `Determines how long a session lasts. Default of 0 seconds means that the sessions lasts until the browser is closed.`, +'sf7949fbbab2eb566': `Different browsers handle session cookies differently, and might not remove them even when the browser is closed.`, +'s53bbc3ae4b5fa1d0': `See here.`, +'s2512334108f06a5a': `Stay signed in offset`, +'s1608b2f94fa0dbd4': `If set to a duration above 0, the user will have the option to choose to "stay signed in", which will extend their session by the time specified here.`, +'s542a71bb8f41e057': `Terminate other sessions`, +'sa920231366378c90': `When enabled, all previous sessions of the user will be terminated.`, +'sfee06600c15082a9': `Remove the user from the current session.`, +'s927398c400970760': `Write any data from the flow's context's 'prompt_data' to the currently pending user. If no user + is pending, a new user is created, and data is written to them.`, +'sb379d861cbed0b47': `Never create users`, +'s81d673755a86a4f0': `When no user is present in the flow context, the stage will fail.`, +'s9940e3f073fbdbd4': `Create users when required`, +'s5414356cc10e80fe': `When no user is present in the the flow context, a new user is created.`, +'s57337099d96ce6d2': `Always create new users`, +'se80dd66f23b4fc39': `Create a new user even if a user is in the flow context.`, +'sed3512fe4560c7f4': `Create users as inactive`, +'s9193ef1a39a6c872': `Mark newly created users as inactive.`, +'s89d1847b5e4ad225': `User path template`, +'s32babfed740fd3c1': `User type used for newly created users.`, +'s18269e3889d6fa54': `Path new users will be created under. If left blank, the default path will be used.`, +'sc1cb0eef9ed94e6a': `Newly created users are added to this group, if a group is selected.`, +'s09f0c100d0ad2fec': `Open Wizard`, +'sf2ef885f7d0a101d': `Demo Wizard`, +'s77505ee5d2e45e53': `Run the demo wizard`, +'sdc5690be4a342985': `The token has been copied to your clipboard`, +'s7f3edfee24690c9f': `The token was displayed because authentik does not have permission to write to the clipboard`, +'sc1589121ae2f5f92': `Enter the code shown on your device.`, +'s3643189d1abbb7f4': `Code`, +'s67664f8ee9aea98d': `Please enter your Code`, +'s455a8fc21077e7f9': `You've successfully authenticated your device.`, +'sd766cdc29b25ff95': `Authenticating with Apple...`, +'s2c8189544e3ea679': `Retry`, +'s420d2cdedcaf8cd0': `Authenticating with Plex...`, +'s2ddbebcb8a49b005': `Waiting for authentication...`, +'sb15fe7b9d09bb419': `If no Plex popup opens, click the button below.`, +'sbc625b4c669b9ce8': `Open login`, +'sa11e92683c5860c7': `Request has been denied.`, +'s8939f574b096054a': `Not you?`, +'sc2ec367e3108fe65': `Duo activation QR code`, +'sc5668cb23167e9bb': `Alternatively, if your current device has Duo installed, click on this link:`, +'s721d94ae700b5dfd': `Duo activation`, +'s708d9a4a0db0be8f': `Check status`, +'sc0a0c87d5c556c38': `Phone number`, +'s04c1210202f48dc9': `Please enter your Phone number.`, +'seb0c08d9f233bbfe': `Please enter the code you received via SMS`, +'s31fba571065f2c87': `Make sure to keep these tokens in a safe place.`, +'sdc323c6af4ae9f01': `Successfully copied TOTP Config.`, +'s3687049d1af562c4': `Copy`, +'sfe1c86b42ba13376': `Please enter your TOTP Code`, +'s8d857061510fe794': `Duo push-notifications`, +'s47490298c17b753a': `Receive a push notification on your device.`, +'s16bc281dce5685e8': `Authenticator`, +'sdefec5401bf67eba': `Use a security key to prove your identity.`, +'sd6a025d66f2637d1': `Traditional authenticator`, +'sb25e689e00c61829': `Use a code-based authenticator.`, +'s9e568afec3810bfe': `Recovery keys`, +'sb17e8c70f9a05c77': `In case you can't access any other method.`, +'s97f2dc19fa556a6a': `SMS`, +'s0e516232f2ab4e04': `Tokens sent via SMS.`, +'s6ae0d087036e6d6d': `Select an authentication method.`, +'s2b7dbba348234a36': `A code has been sent to you via SMS.`, +'sa84adff85b5e505c': `Open your two-factor authenticator app to view your authentication code.`, +'s7abc9d08b0f70fd6': `Static token`, +'s844fea0bfb10a72a': `Authentication code`, +'s3cd84e82e83e35ad': `Please enter your code`, +'s18b910437b73e8e8': `Return to device picker`, +'sbcf8604929b6a27a': `Sending Duo push notification`, +'s3b68883dda2682ed': `Assertions is empty`, +'sbbb7318812d64e51': str`Error when creating credential: ${0}`, +'sfe199b2564b66054': str`Error when validating assertion on server: ${0}`, +'se409d01b52c4e12f': `Retry authentication`, +'s7fa4e5e409d43573': str`Error creating credential: ${0}`, +'s9d95f09deb601f34': str`Server validation of credential failed: ${0}`, +'s6c8f05e3be04f62a': `Register device`, +'s14c552fb0a4c0186': `Application requires following permissions:`, +'s7073489bb01b3c24': `Application already has access to the following permissions:`, +'s98dc556f8bf707dc': `Application requires following new permissions:`, +'sbd19064fc3f405c1': `Check your Inbox for a verification email.`, +'s8aff572e64b7936b': `Send Email again.`, +'sc4eedb434536bdb4': `Need an account?`, +'s38f774cd7e9b9dad': `Sign up.`, +'sa03aa46068460c95': `Forgot username or password?`, +'s4a87445f3108db7c': `Select one of the sources below to login.`, +'s091d5407b5b32e84': `Or`, +'se5fd752dbbc3cd28': `Use a security key`, +'s670ad066cc0e50a3': str`Login to continue to ${0}.`, +'scf5ce91bfba10a61': `Please enter your password`, +'s85366fac18679f28': `Forgot password?`, +'s2f995efbb1e46b18': `Auto-detect (based on your browser)`, +'s296fbffaaa7c910a': `Required.`, +'sac17f177f884e238': `Stay signed in?`, +'s859b2e00391da380': `Select Yes to reduce the number of times you're asked to sign in.`, +'s06c92148da82be0d': `Change your password`, +'sff50532a2d85e32e': `Change password`, +'s4a6aa26413287069': `Successfully updated details`, +'s6fcd9b5a87ceccd6': `Open settings`, +'s8c05cccd470f6b5f': `No settings flow configured.`, +'sb546eb04425e07fa': `Update details`, +'sea2f00b34b385a43': `Successfully updated device.`, +'s6a406aecb2c0e5c5': `Enroll`, +'sabb56f74492e7e96': `Update Device`, +'sababff57115130a0': str`Error: unsupported source settings: ${0}`, +'sd1031bddc66dc495': `Connect your user account to the services listed below, to allow you to login using the service instead of traditional credentials.`, +'s7968dbed9b106c29': `No services available.`, +'s30205d424e710818': `Successfully disconnected source`, +'s67dedada007d4067': str`Failed to disconnected source: ${0}`, +'sd2208cd1a767644b': `Disconnect`, +'s7a4f059aaa029719': `Connect`, +'s3a135682bd30bdbb': `Create App password`, +'saf63d34c8601dd41': str`${0}`, +'s33f85f24c0f5f008': `Save`, +'s045c3b86aae073c1': `Delete account`, + }; + \ No newline at end of file diff --git a/web/packages/localization/tsconfig.json b/web/packages/localization/tsconfig.json new file mode 100644 index 000000000..497550796 --- /dev/null +++ b/web/packages/localization/tsconfig.json @@ -0,0 +1,4 @@ +{ + "extends": "../../tsconfig.base.json", + "include": ["./src/**/*.ts"] +} diff --git a/web/packages/monolith/xliff/de.xlf b/web/packages/localization/xliff/de.xlf similarity index 99% rename from web/packages/monolith/xliff/de.xlf rename to web/packages/localization/xliff/de.xlf index 68164cbb3..30b91ae03 100644 --- a/web/packages/monolith/xliff/de.xlf +++ b/web/packages/localization/xliff/de.xlf @@ -1363,9 +1363,9 @@ Aktualisieren - Update + Update Aktualisiere - + Select providers to add to application @@ -2073,9 +2073,9 @@ doesn't pass when either or both of the selected options are equal or above the - Group + Group Gruppe - + User diff --git a/web/packages/monolith/xliff/en.xlf b/web/packages/localization/xliff/en.xlf similarity index 99% rename from web/packages/monolith/xliff/en.xlf rename to web/packages/localization/xliff/en.xlf index 29f454e9b..2a16d286b 100644 --- a/web/packages/monolith/xliff/en.xlf +++ b/web/packages/localization/xliff/en.xlf @@ -1431,9 +1431,9 @@ Update - Update + Update Update - + Select providers to add to application @@ -2181,9 +2181,9 @@ doesn't pass when either or both of the selected options are equal or above the - Group + Group Group - + User diff --git a/web/packages/monolith/xliff/es.xlf b/web/packages/localization/xliff/es.xlf similarity index 99% rename from web/packages/monolith/xliff/es.xlf rename to web/packages/localization/xliff/es.xlf index 3d45d2983..d1c910872 100644 --- a/web/packages/monolith/xliff/es.xlf +++ b/web/packages/localization/xliff/es.xlf @@ -1337,9 +1337,9 @@ Actualización - Update + Update Actualización - + Select providers to add to application @@ -2039,9 +2039,9 @@ doesn't pass when either or both of the selected options are equal or above the - Group + Group Grupo - + User diff --git a/web/packages/monolith/xliff/fr.xlf b/web/packages/localization/xliff/fr.xlf similarity index 99% rename from web/packages/monolith/xliff/fr.xlf rename to web/packages/localization/xliff/fr.xlf index 3669e063d..f460c2441 100644 --- a/web/packages/monolith/xliff/fr.xlf +++ b/web/packages/localization/xliff/fr.xlf @@ -1782,9 +1782,9 @@ Il y a jour(s) - Update + Update Mettre à jour - + @@ -2719,9 +2719,9 @@ doesn't pass when either or both of the selected options are equal or above the - Group + Group Groupe - + diff --git a/web/packages/monolith/xliff/nl.xlf b/web/packages/localization/xliff/nl.xlf similarity index 99% rename from web/packages/monolith/xliff/nl.xlf rename to web/packages/localization/xliff/nl.xlf index f2ceeb89c..8aba303cb 100644 --- a/web/packages/monolith/xliff/nl.xlf +++ b/web/packages/localization/xliff/nl.xlf @@ -1783,8 +1783,8 @@ - Update - Update + Update + Update @@ -2960,8 +2960,8 @@ slaagt niet wanneer een of beide geselecteerde opties gelijk zijn aan of boven d - Group - Groep + Group + Groep @@ -7713,4 +7713,4 @@ Bindingen naar groepen/gebruikers worden gecontroleerd tegen de gebruiker van de - \ No newline at end of file + diff --git a/web/packages/monolith/xliff/pl.xlf b/web/packages/localization/xliff/pl.xlf similarity index 99% rename from web/packages/monolith/xliff/pl.xlf rename to web/packages/localization/xliff/pl.xlf index 3dbed2422..1b7f0bb26 100644 --- a/web/packages/monolith/xliff/pl.xlf +++ b/web/packages/localization/xliff/pl.xlf @@ -1377,9 +1377,9 @@ Aktualizuj - Update + Update Zaktualizuj - + Select providers to add to application @@ -2111,9 +2111,9 @@ doesn't pass when either or both of the selected options are equal or above the - Group + Group Grupa - + User diff --git a/web/packages/monolith/xliff/pseudo-LOCALE.xlf b/web/packages/localization/xliff/pseudo-LOCALE.xlf similarity index 99% rename from web/packages/monolith/xliff/pseudo-LOCALE.xlf rename to web/packages/localization/xliff/pseudo-LOCALE.xlf index ecd85ea7c..917b7b9ad 100644 --- a/web/packages/monolith/xliff/pseudo-LOCALE.xlf +++ b/web/packages/localization/xliff/pseudo-LOCALE.xlf @@ -1764,8 +1764,8 @@ - Update - Ũƥďàţē + Update + Ũƥďàţē @@ -2700,8 +2700,8 @@ doesn't pass when either or both of the selected options are equal or above the - Group - Ĝŕōũƥ + Group + Ĝŕōũƥ diff --git a/web/packages/monolith/xliff/tr.xlf b/web/packages/localization/xliff/tr.xlf similarity index 99% rename from web/packages/monolith/xliff/tr.xlf rename to web/packages/localization/xliff/tr.xlf index 1b95f3f75..d28cdc330 100644 --- a/web/packages/monolith/xliff/tr.xlf +++ b/web/packages/localization/xliff/tr.xlf @@ -1336,9 +1336,9 @@ Güncelleme - Update + Update Güncelleme - + Select providers to add to application @@ -2038,9 +2038,9 @@ doesn't pass when either or both of the selected options are equal or above the - Group + Group Grup - + User diff --git a/web/packages/monolith/xliff/zh-Hans.xlf b/web/packages/localization/xliff/zh-Hans.xlf similarity index 99% rename from web/packages/monolith/xliff/zh-Hans.xlf rename to web/packages/localization/xliff/zh-Hans.xlf index 5d5a436a7..c4ce7bb81 100644 --- a/web/packages/monolith/xliff/zh-Hans.xlf +++ b/web/packages/localization/xliff/zh-Hans.xlf @@ -1783,9 +1783,9 @@ - Update + Update 更新 - + @@ -2721,9 +2721,9 @@ doesn't pass when either or both of the selected options are equal or above the - Group + Group 组 - + diff --git a/web/packages/monolith/xliff/zh-Hant.xlf b/web/packages/localization/xliff/zh-Hant.xlf similarity index 99% rename from web/packages/monolith/xliff/zh-Hant.xlf rename to web/packages/localization/xliff/zh-Hant.xlf index ff31e2854..ad73d4cf0 100644 --- a/web/packages/monolith/xliff/zh-Hant.xlf +++ b/web/packages/localization/xliff/zh-Hant.xlf @@ -1349,9 +1349,9 @@ 更新 - Update + Update 更新 - + Select providers to add to application @@ -2058,9 +2058,9 @@ doesn't pass when either or both of the selected options are equal or above the - Group + Group 组 - + User diff --git a/web/packages/monolith/xliff/zh_CN.xlf b/web/packages/localization/xliff/zh_CN.xlf similarity index 99% rename from web/packages/monolith/xliff/zh_CN.xlf rename to web/packages/localization/xliff/zh_CN.xlf index 15ba558f0..f1cb7827c 100644 --- a/web/packages/monolith/xliff/zh_CN.xlf +++ b/web/packages/localization/xliff/zh_CN.xlf @@ -1783,9 +1783,9 @@ - Update + Update 更新 - + @@ -2726,9 +2726,9 @@ doesn't pass when either or both of the selected options are equal or above the - Group + Group 组 - + @@ -8051,4 +8051,4 @@ Bindings to groups/users are checked against the user of the event. - \ No newline at end of file + diff --git a/web/packages/monolith/xliff/zh_TW.xlf b/web/packages/localization/xliff/zh_TW.xlf similarity index 99% rename from web/packages/monolith/xliff/zh_TW.xlf rename to web/packages/localization/xliff/zh_TW.xlf index 66c5d3228..74148805e 100644 --- a/web/packages/monolith/xliff/zh_TW.xlf +++ b/web/packages/localization/xliff/zh_TW.xlf @@ -1765,8 +1765,8 @@ - Update - 更新 + Update + 更新 @@ -2700,8 +2700,8 @@ doesn't pass when either or both of the selected options are equal or above the - Group - 群組 + Group + 群組 diff --git a/web/packages/monolith/package.json b/web/packages/monolith/package.json index 151921d2b..aa289757c 100644 --- a/web/packages/monolith/package.json +++ b/web/packages/monolith/package.json @@ -4,29 +4,21 @@ "private": true, "license": "MIT", "scripts": { - "extract-locales": "lit-localize extract", - "build-locales": "run-s build-locales:build", - "build-locales:build": "lit-localize build", - "build-locales:repair": "prettier --write ./src/locale-codes.ts", "rollup:build": "cross-env NODE_OPTIONS='--max_old_space_size=4096' rollup -c ./rollup.config.mjs", "rollup:build-proxy": "cross-env NODE_OPTIONS='--max_old_space_size=4096' rollup -c ./rollup.proxy.mjs", "rollup:watch": "cross-env NODE_OPTIONS='--max_old_space_size=4096' rollup -c -w", - "build": "run-s build-locales rollup:build", - "build-proxy": "run-s build-locales rollup:build-proxy", - "watch": "run-s build-locales rollup:watch", + "build": "run-s rollup:build", + "build-proxy": "run-s rollup:build-proxy", + "watch": "run-s rollup:watch", "lint": "eslint . --max-warnings 0 --fix", "lint:precommit": "eslint --max-warnings 0 --config ./.eslintrc.precommit.json $(git status --porcelain . | grep '^[M?][M?]' | cut -c8- | grep -E '\\.(ts|js|tsx|jsx)$') ", - "lint:spelling": "codespell -D - -D ../../../.github/codespell-dictionary.txt -I ../../../.github/codespell-words.txt -S './src/locales/**' ./src -s", + "lint:spelling": "codespell -D - -D ../../../.github/codespell-dictionary.txt -I ../../../.github/codespell-words.txt ./src -s", "lit-analyse": "lit-analyzer src", "precommit": "run-s tsc lit-analyse lint:precommit lint:spelling prettier", "prequick": "run-s tsc:execute lit-analyse lint:precommit lint:spelling", "prettier-check": "prettier --check .", "prettier": "prettier --write .", - "pseudolocalize:build-extract-script": "cd scripts && tsc --esModuleInterop --module es2020 --moduleResolution 'node' pseudolocalize.ts && mv pseudolocalize.js pseudolocalize.mjs", - "pseudolocalize:extract": "node scripts/pseudolocalize.mjs", - "pseudolocalize": "run-s pseudolocalize:build-extract-script pseudolocalize:extract", - "tsc:execute": "tsc --noEmit -p .", - "tsc": "run-s build-locales tsc:execute", + "tsc": "tsc --noEmit -p .", "storybook": "storybook dev -p 6006", "storybook:build": "cross-env NODE_OPTIONS='--max_old_space_size=4096' storybook build", "storybook:build-import-map": "run-s storybook:build-import-map-script storybook:run-import-map-script", @@ -43,6 +35,7 @@ "@formatjs/intl-listformat": "^7.5.3", "@fortawesome/fontawesome-free": "^6.5.1", "@goauthentik/api": "^2023.10.5-1703167718", + "@goauthentik/localization": "*", "@lit-labs/context": "^0.4.0", "@lit-labs/task": "^3.1.0", "@lit/localize": "^0.11.4", @@ -79,7 +72,6 @@ "@hcaptcha/types": "^1.0.3", "@jackfranklin/rollup-plugin-markdown": "^0.4.0", "@jeysal/storybook-addon-css-user-preferences": "^0.2.0", - "@lit/localize-tools": "^0.7.1", "@rollup/plugin-babel": "^6.0.4", "@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-node-resolve": "^15.2.3", @@ -111,7 +103,6 @@ "lit-analyzer": "^2.0.2", "npm-run-all": "^4.1.5", "prettier": "^3.1.1", - "pseudolocale": "^2.0.0", "pyright": "=1.1.338", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/web/packages/monolith/src/elements/ak-locale-context/configureLocale.ts b/web/packages/monolith/src/elements/ak-locale-context/configureLocale.ts index 21f244668..74ef264ba 100644 --- a/web/packages/monolith/src/elements/ak-locale-context/configureLocale.ts +++ b/web/packages/monolith/src/elements/ak-locale-context/configureLocale.ts @@ -1,4 +1,4 @@ -import { sourceLocale, targetLocales } from "@goauthentik/app/locale-codes"; +import { sourceLocale, targetLocales } from "@goauthentik/localization"; import { configureLocalization } from "@lit/localize"; diff --git a/web/packages/monolith/src/elements/ak-locale-context/definitions.ts b/web/packages/monolith/src/elements/ak-locale-context/definitions.ts index e920e85b1..58180bff4 100644 --- a/web/packages/monolith/src/elements/ak-locale-context/definitions.ts +++ b/web/packages/monolith/src/elements/ak-locale-context/definitions.ts @@ -1,4 +1,4 @@ -import * as _enLocale from "@goauthentik/locales/en"; +import * as _enLocale from "@goauthentik/localization/en.js"; import type { LocaleModule } from "@lit/localize"; import { msg } from "@lit/localize"; @@ -37,20 +37,20 @@ export { enLocale }; // prettier-ignore const debug: LocaleRow = [ - "pseudo-LOCALE", /^pseudo/i, () => msg("Pseudolocale (for testing)"), async () => await import("@goauthentik/locales/pseudo-LOCALE"), + "pseudo-LOCALE", /^pseudo/i, () => msg("Pseudolocale (for testing)"), async () => await import("@goauthentik/localization/pseudo-LOCALE.js"), ]; // prettier-ignore const LOCALE_TABLE: LocaleRow[] = [ - ["en", /^en([_-]|$)/i, () => msg("English"), async () => await import("@goauthentik/locales/en")], - ["es", /^es([_-]|$)/i, () => msg("Spanish"), async () => await import("@goauthentik/locales/es")], - ["de", /^de([_-]|$)/i, () => msg("German"), async () => await import("@goauthentik/locales/de")], - ["fr", /^fr([_-]|$)/i, () => msg("French"), async () => await import("@goauthentik/locales/fr")], - ["pl", /^pl([_-]|$)/i, () => msg("Polish"), async () => await import("@goauthentik/locales/pl")], - ["tr", /^tr([_-]|$)/i, () => msg("Turkish"), async () => await import("@goauthentik/locales/tr")], - ["zh-Hant", /^zh[_-](HK|Hant)/i, () => msg("Chinese (traditional)"), async () => await import("@goauthentik/locales/zh-Hant")], - ["zh_TW", /^zh[_-]TW$/i, () => msg("Taiwanese Mandarin"), async () => await import("@goauthentik/locales/zh_TW")], - ["zh-Hans", /^zh(\b|_)/i, () => msg("Chinese (simplified)"), async () => await import("@goauthentik/locales/zh-Hans")], + ["en", /^en([_-]|$)/i, () => msg("English"), async () => await import("@goauthentik/localization/en.js")], + ["es", /^es([_-]|$)/i, () => msg("Spanish"), async () => await import("@goauthentik/localization/es.js")], + ["de", /^de([_-]|$)/i, () => msg("German"), async () => await import("@goauthentik/localization/de.js")], + ["fr", /^fr([_-]|$)/i, () => msg("French"), async () => await import("@goauthentik/localization/fr.js")], + ["pl", /^pl([_-]|$)/i, () => msg("Polish"), async () => await import("@goauthentik/localization/pl.js")], + ["tr", /^tr([_-]|$)/i, () => msg("Turkish"), async () => await import("@goauthentik/localization/tr.js")], + ["zh-Hant", /^zh[_-](HK|Hant)/i, () => msg("Chinese (traditional)"), async () => await import("@goauthentik/localization/zh-Hant.js")], + ["zh_TW", /^zh[_-]TW$/i, () => msg("Taiwanese Mandarin"), async () => await import("@goauthentik/localization/zh_TW.js")], + ["zh-Hans", /^zh(\b|_)/i, () => msg("Chinese (simplified)"), async () => await import("@goauthentik/localization/zh-Hans.js")], debug ]; diff --git a/web/packages/monolith/src/elements/ak-locale-context/helpers.ts b/web/packages/monolith/src/elements/ak-locale-context/helpers.ts index 51ef76509..eaa364e86 100644 --- a/web/packages/monolith/src/elements/ak-locale-context/helpers.ts +++ b/web/packages/monolith/src/elements/ak-locale-context/helpers.ts @@ -14,7 +14,7 @@ const TOMBSTONE = "⛼⛼tombstone⛼⛼"; // application is first instantiated. export const LOCALES = RAW_LOCALES.map((locale) => - locale.code === "en" ? { ...locale, locale: async () => enLocale } : locale, + locale.code === "en" ? { ...locale, locale: async () => enLocale } : locale ); export function getBestMatchLocale(locale: string): AkLocale | undefined { @@ -47,8 +47,8 @@ const isLocaleCandidate = (v: unknown): v is string => export function autoDetectLanguage(requestedCode?: string): string { const localeCandidates: string[] = [ - globalAK()?.locale ?? TOMBSTONE, localeCodeFromUrl("locale"), + globalAK()?.locale ?? TOMBSTONE, requestedCode ?? TOMBSTONE, window.navigator?.language ?? TOMBSTONE, DEFAULT_LOCALE, @@ -58,7 +58,7 @@ export function autoDetectLanguage(requestedCode?: string): string { if (!firstSupportedLocale) { console.debug( - `authentik/locale: No locale found for '[${localeCandidates}.join(',')]', falling back to ${DEFAULT_LOCALE}`, + `authentik/locale: No locale found for '[${localeCandidates}.join(',')]', falling back to ${DEFAULT_LOCALE}` ); return DEFAULT_LOCALE; } diff --git a/web/packages/monolith/tsconfig.json b/web/packages/monolith/tsconfig.json index 06906beab..c3831fc32 100644 --- a/web/packages/monolith/tsconfig.json +++ b/web/packages/monolith/tsconfig.json @@ -9,7 +9,6 @@ "@goauthentik/docs/*": ["../../../website/docs/*"], "@goauthentik/elements/*": ["./src/elements/*"], "@goauthentik/flow/*": ["./src/flow/*"], - "@goauthentik/locales/*": ["./src/locales/*"], "@goauthentik/polyfill/*": ["./src/polyfill/*"], "@goauthentik/standalone/*": ["./src/standalone/*"], "@goauthentik/user/*": ["./src/user/*"]