Compare commits

...

3 Commits

Author SHA1 Message Date
Teffen Ellis
1b51047628 Split. 2026-03-10 19:23:33 +01:00
Teffen Ellis
20c8cf1bf3 Flesh out. 2026-03-10 19:20:02 +01:00
Teffen Ellis
fe29fb9e2c Flesh out. 2026-03-10 07:28:56 +01:00
116 changed files with 149013 additions and 19984 deletions

4
web/.gitignore vendored
View File

@@ -5,8 +5,8 @@
#region Locale
src/locales/*.ts
xliff/pseudo[_-]LOCALE.xlf
xliff/en[_-]XA.xlf
pseudo[_-]LOCALE.xlf
en[_-]XA.xlf
### Node ###
# Logs

View File

@@ -0,0 +1,34 @@
{
"$schema": "https://raw.githubusercontent.com/lit/lit/main/packages/localize-tools/config.schema.json",
"sourceLocale": "en",
"targetLocales": [
"cs-CZ",
"de-DE",
"en",
"en-XA",
"es-ES",
"fi-FI",
"fr-FR",
"it-IT",
"ja-JP",
"ko-KR",
"nl-NL",
"pl-PL",
"pt-BR",
"ru-RU",
"tr-TR",
"zh-Hans",
"zh-Hant"
],
"tsConfig": "./tsconfig.json",
"inputFiles": ["src/admin/**/*"],
"output": {
"mode": "runtime",
"outputDir": "./src/admin/locales",
"localeCodesModule": "./src/admin/locale-codes.ts"
},
"interchange": {
"format": "xliff",
"xliffDir": "./src/admin/xliff/"
}
}

View File

@@ -0,0 +1,36 @@
{
"$schema": "https://raw.githubusercontent.com/lit/lit/main/packages/localize-tools/config.schema.json",
"sourceLocale": "en",
"targetLocales": [
"cs-CZ",
"de-DE",
"en",
"en-XA",
"es-ES",
"fi-FI",
"fr-FR",
"it-IT",
"ja-JP",
"ko-KR",
"nl-NL",
"pl-PL",
"pt-BR",
"ru-RU",
"tr-TR",
"zh-Hans",
"zh-Hant"
],
"tsConfig": "./tsconfig.json",
"inputFiles": [
"src/flow/**/*"
],
"output": {
"mode": "runtime",
"outputDir": "./src/flow/locales",
"localeCodesModule": "./src/flow/locale-codes.ts"
},
"interchange": {
"format": "xliff",
"xliffDir": "./src/flow/xliff/"
}
}

View File

@@ -21,13 +21,14 @@
"zh-Hant"
],
"tsConfig": "./tsconfig.json",
"inputFiles": ["src/user/**/*"],
"output": {
"mode": "runtime",
"outputDir": "./src/locales",
"localeCodesModule": "./src/locale-codes.ts"
"outputDir": "./src/user/locales",
"localeCodesModule": "./src/user/locale-codes.ts"
},
"interchange": {
"format": "xliff",
"xliffDir": "./xliff/"
"xliffDir": "./src/user/xliff/"
}
}

View File

@@ -6,10 +6,16 @@
"scripts": {
"build": "wireit",
"build:sfe": "npm run build -w @goauthentik/web-sfe",
"build-locales": "node scripts/build-locales.mjs",
"build-locales": "run-s extract-locales:*",
"build-locales:admin": "node scripts/build-locales.mjs lit-localize.admin.json",
"build-locales:flow": "node scripts/build-locales.mjs lit-localize.flow.json",
"build-locales:user": "node scripts/build-locales.mjs lit-localize.user.json",
"build-proxy": "wireit",
"bundler:watch": "node scripts/build-web.mjs --watch",
"extract-locales": "lit-localize extract",
"extract-locales": "run-s extract-locales:*",
"extract-locales:admin": "lit-localize extract --config lit-localize.admin.json",
"extract-locales:flow": "lit-localize extract --config lit-localize.flow.json",
"extract-locales:user": "lit-localize extract --config lit-localize.user.json",
"format": "wireit",
"lint": "eslint --fix .",
"lint:imports": "knip --config scripts/knip.config.ts",

View File

@@ -16,6 +16,7 @@
import * as fs from "node:fs/promises";
import path, { resolve } from "node:path";
import { parseArgs } from "node:util";
import { generatePseudoLocaleModule } from "./pseudolocalize.mjs";
@@ -31,7 +32,48 @@ const missingMessagePattern = /([\w_-]+)\smessage\s(?:[\w_.-]+)\sis\smissing/;
const outdatedMessagePattern = /([\w_-]+)\smessage\s(?:[\w_.-]+)\sdoes\snot\sexist/;
const logger = ConsoleLogger.child({ name: "Locales" });
const localizeRules = readConfigFileAndWriteSchema(path.join(PackageRoot, "lit-localize.json"));
const parsedArgs = parseArgs({
options: {
force: {
type: "boolean",
default: false,
description: "Force rebuild of all locales, even if they are up-to-date.",
},
clean: {
type: "boolean",
default: false,
description: "Clean the emitted locales directory without rebuilding.",
},
check: {
type: "boolean",
default: false,
description: "Check if all locales are up-to-date without rebuilding.",
},
},
allowPositionals: true,
});
const { positionals } = parsedArgs;
const initCWD = process.env.INIT_CWD || process.cwd();
const relativeWorkingPath = positionals.length ? resolve(initCWD, positionals[0]) : initCWD;
const configPath = await fs.stat(relativeWorkingPath).then((stat) => {
if (stat.isDirectory()) {
return path.join(relativeWorkingPath, "lit-localize.json");
}
return relativeWorkingPath;
});
logger.info(
{
configPath,
relativeWorkingPath,
},
"Starting locale build with configuration",
);
const localizeRules = readConfigFileAndWriteSchema(configPath);
if (localizeRules.interchange.format !== "xliff") {
logger.error("Unsupported interchange type, expected 'xliff'");
@@ -152,7 +194,7 @@ async function checkIfLocalesAreCurrent() {
export async function generateLocaleModules() {
logger.info("Updating pseudo-locale...");
await generatePseudoLocaleModule();
await generatePseudoLocaleModule(configPath);
logger.info("Generating locale modules...");
@@ -236,15 +278,18 @@ export async function generateLocaleModules() {
//#region Commands
async function delegateCommand() {
const command = process.argv[2];
const options = parsedArgs.values;
switch (command) {
case "--clean":
return cleanEmittedLocales();
case "--check":
return checkIfLocalesAreCurrent();
case "--force":
return cleanEmittedLocales().then(generateLocaleModules);
if (options.clean) {
return cleanEmittedLocales();
}
if (options.check) {
return checkIfLocalesAreCurrent();
}
if (options.force) {
return cleanEmittedLocales().then(generateLocaleModules);
}
const upToDate = await checkIfLocalesAreCurrent();

View File

@@ -27,30 +27,6 @@ const pseudoLocale = /** @type {Locale} */ ("en-XA");
const targetLocales = [pseudoLocale];
const __dirname = fileURLToPath(new URL(".", import.meta.url));
/**
* @type {ConfigFile}
*/
const baseConfig = JSON.parse(readFileSync(path.join(PackageRoot, "lit-localize.json"), "utf-8"));
// Need to make some internal specifications to satisfy the transformer. It doesn't actually matter
// which Localizer we use (transformer or runtime), because all of the functionality we care about
// is in their common parent class, but I had to pick one. Everything else here is just pure
// exploitation of the lit/localize-tools internals.
/**
* @satisfies {Config}
*/
const config = {
...baseConfig,
baseDir: path.join(__dirname, ".."),
targetLocales,
output: {
...baseConfig.output,
mode: "transform",
},
resolve: (path) => path,
};
/**
*
* @param {ProgramMessage} message
@@ -63,7 +39,37 @@ const pseudoMessagify = (message) => ({
),
});
export async function generatePseudoLocaleModule() {
/**
*
* @param {string} [configPath]
*/
export async function generatePseudoLocaleModule(configPath) {
configPath ||= path.join(PackageRoot, "lit-localize.json");
/**
* @type {ConfigFile}
*/
const baseConfig = JSON.parse(readFileSync(configPath, "utf-8"));
// Need to make some internal specifications to satisfy the transformer. It doesn't actually matter
// which Localizer we use (transformer or runtime), because all of the functionality we care about
// is in their common parent class, but I had to pick one. Everything else here is just pure
// exploitation of the lit/localize-tools internals.
/**
* @satisfies {Config}
*/
const config = {
...baseConfig,
baseDir: path.join(__dirname, ".."),
targetLocales,
output: {
...baseConfig.output,
mode: "transform",
},
resolve: (path) => path,
};
const localizer = new TransformLitLocalizer(config);
const { messages } = localizer.extractSourceMessages();
const translations = messages.map(pseudoMessagify);

View File

@@ -14,6 +14,8 @@ import {
import { isAPIResultReady } from "#common/api/responses";
import { configureSentry } from "#common/sentry/index";
import { PseudoLanguageTag } from "#common/ui/locale/definitions";
import { LocaleLoaderInit } from "#common/ui/locale/loaders";
import { isGuest } from "#common/users";
import { WebsocketClient } from "#common/ws/WebSocketClient";
@@ -54,6 +56,27 @@ if (process.env.NODE_ENV === "development") {
export class AdminInterface extends WithCapabilitiesConfig(
WithNotifications(WithSession(AuthenticatedInterface)),
) {
public static localeLoader: LocaleLoaderInit = {
loaders: {
[PseudoLanguageTag]: () => import("#admin/locales/en-XA"),
"cs-CZ": () => import("#admin/locales/cs-CZ"),
"de-DE": () => import("#admin/locales/de-DE"),
"es-ES": () => import("#admin/locales/es-ES"),
"fi-FI": () => import("#admin/locales/fi-FI"),
"fr-FR": () => import("#admin/locales/fr-FR"),
"it-IT": () => import("#admin/locales/it-IT"),
"ja-JP": () => import("#admin/locales/ja-JP"),
"ko-KR": () => import("#admin/locales/ko-KR"),
"nl-NL": () => import("#admin/locales/nl-NL"),
"pl-PL": () => import("#admin/locales/pl-PL"),
"pt-BR": () => import("#admin/locales/pt-BR"),
"ru-RU": () => import("#admin/locales/ru-RU"),
"tr-TR": () => import("#admin/locales/tr-TR"),
"zh-Hans": () => import("#admin/locales/zh-Hans"),
"zh-Hant": () => import("#admin/locales/zh-Hant"),
},
};
//#region Styles
public static readonly styles: CSSResult[] = [PFPage, PFButton, PFDrawer, PFNav, Styles];

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

7696
web/src/admin/xliff/en.xlf Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,51 +1,6 @@
import { allLocales, sourceLocale as SourceLanguageTag } from "../../../locale-codes.js";
import type { LocaleModule } from "@lit/localize";
export type TargetLanguageTag = (typeof allLocales)[number];
export const TargetLanguageTags = new Set<TargetLanguageTag>(allLocales);
/**
* The language tag representing the pseudo-locale for testing.
*/
const PseudoLanguageTag = "en-XA" as const satisfies TargetLanguageTag;
export const PseudoLanguageTag = "en-XA" as const satisfies Intl.UnicodeBCP47LocaleIdentifier;
export { PseudoLanguageTag, SourceLanguageTag };
/**
* A dummy locale module representing the source locale (English).
*
* @remarks
* This is used to satisfy the return type of {@linkcode LocaleLoaderRecord}
* for the source locale, which does not need to be loaded.
*/
const sourceTargetModule: LocaleModule = {
templates: {},
};
/**
* A record mapping locale codes to their respective module loaders.
*
* @remarks
* The `import` statements **must** reference a locale module path,
* as this is how ESBuild identifies which files to include in the build.
*/
export const LocaleLoaderRecord: Record<TargetLanguageTag, () => Promise<LocaleModule>> = {
[SourceLanguageTag]: () => Promise.resolve(sourceTargetModule),
[PseudoLanguageTag]: () => import("#locales/en-XA"),
"cs-CZ": () => import("#locales/cs-CZ"),
"de-DE": () => import("#locales/de-DE"),
"es-ES": () => import("#locales/es-ES"),
"fi-FI": () => import("#locales/fi-FI"),
"fr-FR": () => import("#locales/fr-FR"),
"it-IT": () => import("#locales/it-IT"),
"ja-JP": () => import("#locales/ja-JP"),
"ko-KR": () => import("#locales/ko-KR"),
"nl-NL": () => import("#locales/nl-NL"),
"pl-PL": () => import("#locales/pl-PL"),
"pt-BR": () => import("#locales/pt-BR"),
"ru-RU": () => import("#locales/ru-RU"),
"tr-TR": () => import("#locales/tr-TR"),
"zh-Hans": () => import("#locales/zh-Hans"),
"zh-Hant": () => import("#locales/zh-Hant"),
};
export const SourceLanguageTag = "en" as const satisfies Intl.UnicodeBCP47LocaleIdentifier;

View File

@@ -1,11 +1,5 @@
import { allLocales } from "../../../locale-codes.js";
import { CJKLanguageTag, isCJKLanguageTag, isHanLanguageTag } from "#common/ui/locale/cjk";
import {
PseudoLanguageTag,
SourceLanguageTag,
TargetLanguageTag,
} from "#common/ui/locale/definitions";
import { PseudoLanguageTag, SourceLanguageTag } from "#common/ui/locale/definitions";
import { safeParseLocale } from "#common/ui/locale/utils";
import { msg, str } from "@lit/localize";
@@ -30,7 +24,7 @@ function getMinimizedLocaleID(tag: string): string {
* Get the appropriate locale ID for display purposes.
* Han scripts use full baseName; others use just the language.
*/
function getDisplayLocaleID(tag: TargetLanguageTag): string {
function getDisplayLocaleID(tag: Intl.UnicodeBCP47LocaleIdentifier): string {
const locale = safeParseLocale(tag);
if (!locale) {
return tag;
@@ -77,7 +71,7 @@ export function normalizeDisplayName(displayName: string): string {
* A triple representing a locale and its corresponding display names.
*/
export type LocaleDisplay = [
locale: TargetLanguageTag,
locale: Intl.UnicodeBCP47LocaleIdentifier,
localizedDisplayName: string,
relativeDisplayName: string,
];
@@ -120,6 +114,7 @@ export function createIntlCollator(
}
export interface FormatLocaleOptionsInit {
languageTags?: Iterable<Intl.UnicodeBCP47LocaleIdentifier>;
languageNames?: Intl.DisplayNames;
collatorOptions?: Intl.CollatorOptions;
debug?: boolean;
@@ -129,14 +124,15 @@ export interface FormatLocaleOptionsInit {
* Pre-defined display names for locales that need special handling.
* These use minimized IDs or explicit fallbacks.
*/
const SPECIAL_LOCALE_FALLBACKS: ReadonlyMap<TargetLanguageTag, () => string> = new Map([
[SourceLanguageTag, () => msg("English", { id: "en" })],
[CJKLanguageTag.HanSimplified, () => msg("Chinese (Simplified)", { id: "zh-Hans" })],
[CJKLanguageTag.HanTraditional, () => msg("Chinese (Traditional)", { id: "zh-Hant" })],
[CJKLanguageTag.Japanese, () => msg("Japanese", { id: "ja-JP" })],
[CJKLanguageTag.Korean, () => msg("Korean", { id: "ko-KR" })],
[PseudoLanguageTag, () => msg("English (Pseudo-Accents)", { id: "en-XA" })],
]);
const SPECIAL_LOCALE_FALLBACKS: ReadonlyMap<Intl.UnicodeBCP47LocaleIdentifier, () => string> =
new Map([
[SourceLanguageTag, () => msg("English", { id: "en" })],
[CJKLanguageTag.HanSimplified, () => msg("Chinese (Simplified)", { id: "zh-Hans" })],
[CJKLanguageTag.HanTraditional, () => msg("Chinese (Traditional)", { id: "zh-Hant" })],
[CJKLanguageTag.Japanese, () => msg("Japanese", { id: "ja-JP" })],
[CJKLanguageTag.Korean, () => msg("Korean", { id: "ko-KR" })],
[PseudoLanguageTag, () => msg("English (Pseudo-Accents)", { id: "en-XA" })],
]);
/**
* Format the locale options for use in a user-facing element.
@@ -145,7 +141,7 @@ const SPECIAL_LOCALE_FALLBACKS: ReadonlyMap<TargetLanguageTag, () => string> = n
*/
export function formatLocaleDisplayNames(
activeLanguageTag: Intl.UnicodeBCP47LocaleIdentifier | Intl.Locale,
{ collatorOptions = {}, languageNames, debug }: FormatLocaleOptionsInit = {},
{ collatorOptions = {}, languageNames, debug, languageTags = [] }: FormatLocaleOptionsInit = {},
): LocaleDisplay[] {
const activeLocaleTag =
typeof activeLanguageTag === "string" ? activeLanguageTag : activeLanguageTag.baseName;
@@ -155,10 +151,10 @@ export function formatLocaleDisplayNames(
});
const usedLanguages = new Set<string>();
const displayNames = new Map<TargetLanguageTag, string>();
const displayNames = new Map<Intl.UnicodeBCP47LocaleIdentifier, string>();
// Process all locales
for (const tag of allLocales) {
for (const tag of languageTags) {
// Skip pseudo unless debug
if (tag === PseudoLanguageTag && !debug) {
continue;
@@ -197,7 +193,7 @@ export function formatLocaleDisplayNames(
}
export function formatRelativeLocaleDisplayName(
languageTag: TargetLanguageTag,
languageTag: Intl.UnicodeBCP47LocaleIdentifier,
localizedDisplayName: string,
relativeDisplayName: string,
) {

View File

@@ -0,0 +1,87 @@
import { SourceLanguageTag } from "#common/ui/locale/definitions";
import { formatDisplayName } from "#common/ui/locale/format";
import { ConsoleLogger, Logger } from "#logger/browser";
import { LocaleModule, RuntimeConfiguration } from "@lit/localize";
/**
* A record mapping locale codes to their respective module loaders.
*
* @remarks
* The `import` statements **must** reference a locale module path,
* as this is how ESBuild identifies which files to include in the build.
*/
export type LocaleLoaderRecord = Record<string, (() => Promise<LocaleModule>) | undefined>;
export interface LocaleLoaderInit {
loaders?: LocaleLoaderRecord;
sourceLocale?: string;
logger?: Logger;
}
/**
* A dummy locale module representing the source locale (English).
*
* @remarks
* This is used to satisfy the return type of {@linkcode LocaleLoaderRecord}
* for the source locale, which does not need to be loaded.
*/
const sourceTargetModule: LocaleModule = {
templates: {},
};
export class LocaleLoader {
public readonly loaders: LocaleLoaderRecord;
public readonly sourceLocale: string;
public readonly logger: Logger;
constructor({ loaders, sourceLocale, logger }: LocaleLoaderInit = {}) {
this.sourceLocale = sourceLocale || SourceLanguageTag;
this.logger = logger ?? ConsoleLogger.prefix("LocaleLoader");
this.loaders = {
[SourceLanguageTag]: () => Promise.resolve(sourceTargetModule),
...loaders,
};
}
/**
* Loads the locale module for the given locale code.
*
* @param languageCode The language code to load.
*
* @remarks
* This is used by `@lit/localize` to dynamically load locale modules,
* as well synchronizing the document's `lang` attribute.
*/
public load = async (
languageCode: Intl.UnicodeBCP47LocaleIdentifier,
): Promise<LocaleModule> => {
const languageNames = new Intl.DisplayNames([languageCode, this.sourceLocale], {
type: "language",
});
const displayName = formatDisplayName(languageCode, languageCode, languageNames);
const loader = this.loaders[languageCode];
if (!loader) {
// Lit localize ensures this function is only called with valid locales
// but we add a runtime check nonetheless.
throw new TypeError(`Unsupported language code: ${languageCode} (${displayName})`);
}
this.logger.debug(`Loading "${displayName}" module...`);
return loader();
};
public toRuntimeConfig(): RuntimeConfiguration {
return {
loadLocale: this.load,
sourceLocale: this.sourceLocale,
targetLocales: Object.keys(this.loaders),
};
}
}

View File

@@ -1,11 +1,5 @@
import { allLocales, sourceLocale as SourceLanguageTag } from "../../../locale-codes.js";
import { resolveChineseScript, resolveChineseScriptLegacy } from "#common/ui/locale/cjk";
import {
PseudoLanguageTag,
TargetLanguageTag,
TargetLanguageTags,
} from "#common/ui/locale/definitions";
import { PseudoLanguageTag, SourceLanguageTag } from "#common/ui/locale/definitions";
//#region Cache
@@ -35,7 +29,7 @@ export function safeParseLocale(candidate: string): Intl.Locale | null {
}
interface ParsedLocale {
tag: TargetLanguageTag;
tag: Intl.UnicodeBCP47LocaleIdentifier;
language: string;
script?: string;
region?: string;
@@ -46,9 +40,11 @@ let parsedSupportedLocales: ParsedLocale[] | null = null;
/**
* Lazily parse and cache supported locales.
*/
function getParsedSupportedLocales(): ParsedLocale[] {
function getParsedSupportedLocales(
languageTag: Iterable<Intl.UnicodeBCP47LocaleIdentifier>,
): ParsedLocale[] {
if (!parsedSupportedLocales) {
parsedSupportedLocales = allLocales.map((tag) => {
parsedSupportedLocales = Array.from(languageTag, (tag) => {
const locale = safeParseLocale(tag);
return {
@@ -66,7 +62,10 @@ function getParsedSupportedLocales(): ParsedLocale[] {
/**
* Find the best matching supported locale for a given locale string.
*/
export function getBestMatchLocale(candidate: string): TargetLanguageTag | null {
export function getBestMatchLocale(
candidate: string,
languageTags: Iterable<Intl.UnicodeBCP47LocaleIdentifier>,
): Intl.UnicodeBCP47LocaleIdentifier | null {
// Normalize common variations
const normalized = candidate.trim();
if (!normalized) return null;
@@ -94,7 +93,7 @@ export function getBestMatchLocale(candidate: string): TargetLanguageTag | null
return `${language}-${script}`;
}
const parsed = getParsedSupportedLocales();
const parsed = getParsedSupportedLocales(languageTags);
const match = parsed.find((p) => p.language === language);
return match?.tag ?? null;
@@ -111,9 +110,12 @@ export function getBestMatchLocale(candidate: string): TargetLanguageTag | null
* one that has a supported locale. Then, from *that*, we have to extract that first supported
* locale.
*/
export function findSupportedLocale(candidates: string[]): TargetLanguageTag | null {
export function findSupportedLocale(
candidates: string[],
languageTags: Iterable<Intl.UnicodeBCP47LocaleIdentifier>,
): Intl.UnicodeBCP47LocaleIdentifier | null {
for (const candidate of candidates) {
const match = getBestMatchLocale(candidate);
const match = getBestMatchLocale(candidate, languageTags);
if (match) return match;
}
return null;
@@ -128,7 +130,7 @@ const sessionLocaleKey = "authentik:locale";
/**
* Persist the given locale code to sessionStorage.
*/
export function setSessionLocale(languageTag: TargetLanguageTag | null): void {
export function setSessionLocale(languageTag: Intl.UnicodeBCP47LocaleIdentifier | null): void {
try {
if (!languageTag || languageTag === SourceLanguageTag) {
sessionStorage?.removeItem?.(sessionLocaleKey);
@@ -154,21 +156,6 @@ export function getSessionLocale(): string | null {
return null;
}
//#region Type Guards
/**
* Predicate to determine if a given language tag is a supported locale target.
*
* @param languageTagHint The language tag to check.
*/
export function isTargetLanguageTag(
languageTagHint: Intl.UnicodeBCP47LocaleIdentifier,
): languageTagHint is TargetLanguageTag {
return TargetLanguageTags.has(languageTagHint as TargetLanguageTag);
}
//#endregion
//#region Auto-Detection
/**
@@ -191,7 +178,8 @@ export function isTargetLanguageTag(
export function autoDetectLanguage(
languageTagHint?: Intl.UnicodeBCP47LocaleIdentifier,
fallbackLanguageTag?: Intl.UnicodeBCP47LocaleIdentifier,
): TargetLanguageTag {
languageTags: Iterable<Intl.UnicodeBCP47LocaleIdentifier> = [],
): Intl.UnicodeBCP47LocaleIdentifier {
let localeParam: string | null = null;
if (self.location) {
@@ -210,7 +198,7 @@ export function autoDetectLanguage(
fallbackLanguageTag,
].filter((item): item is string => !!item);
const firstSupportedLocale = findSupportedLocale(candidates);
const firstSupportedLocale = findSupportedLocale(candidates, languageTags);
if (!firstSupportedLocale) {
console.debug(`authentik/locale: Falling back to source locale`, {

View File

@@ -1,5 +1,6 @@
import { globalAK } from "#common/global";
import { applyDocumentTheme, createUIThemeEffect } from "#common/theme";
import { LocaleLoaderInit } from "#common/ui/locale/loaders";
import { AKElement } from "#elements/Base";
import { BrandingContextController } from "#elements/controllers/BrandContextController";
@@ -11,6 +12,8 @@ import { ReactiveContextController } from "#elements/controllers/ReactiveContext
import { BrandingContext } from "#elements/mixins/branding";
import { AuthentikConfigContext } from "#elements/mixins/config";
import { ConsoleLogger, Logger } from "#logger/browser";
import { Context, ContextType } from "@lit/context";
import { ReactiveController } from "lit";
@@ -18,6 +21,10 @@ import { ReactiveController } from "lit";
* The base interface element for the application.
*/
export abstract class Interface extends AKElement {
protected static localeLoader?: LocaleLoaderInit;
protected logger: Logger;
/**
* Private map of controllers to their registry keys.
*
@@ -31,9 +38,14 @@ export abstract class Interface extends AKElement {
const { config, brand, locale } = globalAK();
this.logger = ConsoleLogger.prefix(this.tagName.toLowerCase());
createUIThemeEffect(applyDocumentTheme);
this.addController(new LocaleContextController(this, locale));
const { localeLoader: loaderInit } = this.constructor as typeof Interface;
this.addController(new LocaleContextController(this, loaderInit, locale));
this.addController(new ConfigContextController(this, config), AuthentikConfigContext);
this.addController(new BrandingContextController(this, brand), BrandingContext);
this.addController(new ModalOrchestrationController());

View File

@@ -1,8 +1,7 @@
import { sourceLocale, targetLocales } from "../../locale-codes.js";
import { LocaleLoaderRecord, TargetLanguageTag } from "#common/ui/locale/definitions";
import { SourceLanguageTag } from "#common/ui/locale/definitions";
import { formatDisplayName } from "#common/ui/locale/format";
import { autoDetectLanguage, isTargetLanguageTag } from "#common/ui/locale/utils";
import { LocaleLoader, LocaleLoaderInit } from "#common/ui/locale/loaders";
import { autoDetectLanguage } from "#common/ui/locale/utils";
import { kAKLocale, LocaleContext, LocaleContextValue, LocaleMixin } from "#elements/mixins/locale";
import type { ReactiveElementHost } from "#elements/types";
@@ -10,46 +9,11 @@ import type { ReactiveElementHost } from "#elements/types";
import { ConsoleLogger } from "#logger/browser";
import { ContextProvider } from "@lit/context";
import {
configureLocalization,
LOCALE_STATUS_EVENT,
LocaleModule,
LocaleStatusEventDetail,
} from "@lit/localize";
import { configureLocalization, LOCALE_STATUS_EVENT, LocaleStatusEventDetail } from "@lit/localize";
import type { ReactiveController } from "lit";
const logger = ConsoleLogger.prefix("controller/locale");
/**
* Loads the locale module for the given locale code.
*
* @param locale The locale code to load.
*
* @remarks
* This is used by `@lit/localize` to dynamically load locale modules,
* as well synchronizing the document's `lang` attribute.
*/
function loadLocale(locale: string): Promise<LocaleModule> {
const languageNames = new Intl.DisplayNames([locale, sourceLocale], {
type: "language",
});
const displayName = formatDisplayName(locale, locale, languageNames);
if (!isTargetLanguageTag(locale)) {
// Lit localize ensures this function is only called with valid locales
// but we add a runtime check nonetheless.
throw new TypeError(`Unsupported locale code: ${locale} (${displayName})`);
}
logger.debug(`Loading "${displayName}" module...`);
const loader = LocaleLoaderRecord[locale];
return loader();
}
/**
* A controller that provides the application configuration to the element.
*/
@@ -57,11 +21,7 @@ export class LocaleContextController implements ReactiveController {
/**
* A shared locale context value.
*/
protected static context: LocaleContextValue = configureLocalization({
sourceLocale,
targetLocales,
loadLocale,
});
static #localizationContext: LocaleContextValue;
protected static DocumentObserverInit: MutationObserverInit = {
attributes: true,
@@ -69,22 +29,24 @@ export class LocaleContextController implements ReactiveController {
attributeOldValue: true,
};
public get activeLanguageTag(): TargetLanguageTag {
return LocaleContextController.context!.getLocale() as TargetLanguageTag;
public readonly sourceLocale: string;
public get activeLanguageTag(): Intl.UnicodeBCP47LocaleIdentifier {
return LocaleContextController.#localizationContext!.getLocale() as Intl.UnicodeBCP47LocaleIdentifier;
}
public set activeLanguageTag(value: TargetLanguageTag) {
LocaleContextController.context!.setLocale(value);
public set activeLanguageTag(value: Intl.UnicodeBCP47LocaleIdentifier) {
LocaleContextController.#localizationContext!.setLocale(value);
}
/**
* Attempts to apply the given locale code.
* @param nextLocale A user or agent preferred locale code.
*/
#applyLocale(nextLocale: TargetLanguageTag) {
#applyLocale(nextLocale: Intl.UnicodeBCP47LocaleIdentifier) {
const { activeLanguageTag } = this;
const languageNames = new Intl.DisplayNames([nextLocale, sourceLocale], {
const languageNames = new Intl.DisplayNames([nextLocale, this.sourceLocale], {
type: "language",
});
@@ -162,19 +124,30 @@ export class LocaleContextController implements ReactiveController {
* @param host The host element.
* @param localeHint The initial locale code to set.
*/
constructor(host: ReactiveElementHost<LocaleContext>, localeHint?: TargetLanguageTag) {
constructor(
host: ReactiveElementHost<LocaleMixin>,
loaderInit?: LocaleLoaderInit,
localeHint: Intl.UnicodeBCP47LocaleIdentifier = SourceLanguageTag,
) {
this.#host = host;
const loader = new LocaleLoader(loaderInit);
this.sourceLocale = loader.sourceLocale;
LocaleContextController.#localizationContext = configureLocalization(
loader.toRuntimeConfig(),
);
this.#context = new ContextProvider(this.#host, {
context: LocaleContext,
initialValue: LocaleContextController.context,
initialValue: LocaleContextController.#localizationContext,
});
this.#host[kAKLocale] = LocaleContextController.context;
this.#host[kAKLocale] = LocaleContextController.#localizationContext;
const nextLocale = localeHint || autoDetectLanguage();
if (nextLocale !== sourceLocale) {
if (nextLocale !== this.sourceLocale) {
this.#applyLocale(nextLocale);
}
}

View File

@@ -1,4 +1,4 @@
import { PseudoLanguageTag, TargetLanguageTag } from "#common/ui/locale/definitions";
import { PseudoLanguageTag } from "#common/ui/locale/definitions";
import { formatRelativeLocaleDisplayName, LocaleDisplay } from "#common/ui/locale/format";
import type { LitFC, SlottedTemplateResult } from "#elements/types";
@@ -8,7 +8,7 @@ import { repeat } from "lit/directives/repeat.js";
export interface LocaleOptionsProps {
entries: Iterable<LocaleDisplay>;
activeLocaleTag: TargetLanguageTag | null;
activeLocaleTag: Intl.UnicodeBCP47LocaleIdentifier | null;
}
/**

View File

@@ -12,6 +12,8 @@ import { APIError, parseAPIResponseError, pluckErrorDetail } from "#common/error
import { globalAK } from "#common/global";
import { configureSentry } from "#common/sentry/index";
import { applyBackgroundImageProperty } from "#common/theme";
import { PseudoLanguageTag } from "#common/ui/locale/definitions";
import { LocaleLoaderInit } from "#common/ui/locale/loaders";
import { AKSessionAuthenticatedEvent } from "#common/ws/events";
import { WebsocketClient } from "#common/ws/WebSocketClient";
@@ -79,6 +81,27 @@ import PFTitle from "@patternfly/patternfly/components/Title/title.css";
*/
@customElement("ak-flow-executor")
export class FlowExecutor extends WithBrandConfig(Interface) implements StageHost {
public static localeLoader: LocaleLoaderInit = {
loaders: {
[PseudoLanguageTag]: () => import("#flow/locales/en-XA"),
"cs-CZ": () => import("#flow/locales/cs-CZ"),
"de-DE": () => import("#flow/locales/de-DE"),
"es-ES": () => import("#flow/locales/es-ES"),
"fi-FI": () => import("#flow/locales/fi-FI"),
"fr-FR": () => import("#flow/locales/fr-FR"),
"it-IT": () => import("#flow/locales/it-IT"),
"ja-JP": () => import("#flow/locales/ja-JP"),
"ko-KR": () => import("#flow/locales/ko-KR"),
"nl-NL": () => import("#flow/locales/nl-NL"),
"pl-PL": () => import("#flow/locales/pl-PL"),
"pt-BR": () => import("#flow/locales/pt-BR"),
"ru-RU": () => import("#flow/locales/ru-RU"),
"tr-TR": () => import("#flow/locales/tr-TR"),
"zh-Hans": () => import("#flow/locales/zh-Hans"),
"zh-Hant": () => import("#flow/locales/zh-Hant"),
},
};
public static readonly DefaultLayout: FlowLayoutEnum =
globalAK()?.flow?.layout || FlowLayoutEnum.Stacked;

View File

@@ -0,0 +1,53 @@
// 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 = [
`cs-CZ`,
`de-DE`,
`en-XA`,
`es-ES`,
`fi-FI`,
`fr-FR`,
`it-IT`,
`ja-JP`,
`ko-KR`,
`nl-NL`,
`pl-PL`,
`pt-BR`,
`ru-RU`,
`tr-TR`,
`zh-Hans`,
`zh-Hant`,
] as const;
/**
* All valid project locale codes. Sorted lexicographically.
*/
export const allLocales = [
`cs-CZ`,
`de-DE`,
`en`,
`en-XA`,
`es-ES`,
`fi-FI`,
`fr-FR`,
`it-IT`,
`ja-JP`,
`ko-KR`,
`nl-NL`,
`pl-PL`,
`pt-BR`,
`ru-RU`,
`tr-TR`,
`zh-Hans`,
`zh-Hant`,
] as const;

View File

@@ -0,0 +1,250 @@
// Do not modify this file by hand!
// Re-generate this file by running lit-localize
import {str} from '@lit/localize';
/* eslint-disable no-irregular-whitespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
export const templates = {
'en': `Angličtina`,
'ja-JP': `Japonština`,
'ko-KR': `Korejština`,
'language-selector-label': `Vybrat jazyk`,
'locale-auto-detect-option': `Automatická detekce`,
's009bd1c98a9f5de2': `Registrace se nezdařila`,
's02240309358f557c': `Neznámá závažnost`,
's0382d73823585617': str`
${0}:
${1}`,
's03f42eea72154959': `Uživatelské jméno`,
's042baf59902a711f': `Zásada`,
's04c1210202f48dc9': `Prosím zadejte své telefonní číslo.`,
's06bfe45ffef2cf60': str`Název kroku: ${0}`,
's091d5407b5b32e84': `nebo`,
's09205907b5b56cda': `Ne`,
's0e516232f2ab4e04': `Tokeny zaslané prostřednictvím SMS.`,
's12d6dde9b30c3093': `Skrýt`,
's14c552fb0a4c0186': `Aplikace vyžaduje následující oprávnění:`,
's197420b40df164f8': `Následovat přesměrování`,
's1a635369edaf4dc3': `Servisní účet`,
's1c336c2d6cef77b3': `Zapamatovat na tomto zařízení`,
's1cd198d689c66e4b': `API přístup`,
's1cd264012278c047': `Spuštění toku`,
's21d95b4651ad7a1e': `Zadejte jednorázový obnovovací kód pro tohoto uživatele.`,
's238784fc1dc672ae': `Registrace...`,
's23da7320dee28a60': `Kód zařízení`,
's2543cffd6ebb6803': `Spuštění systémové úlohy`,
's296fbffaaa7c910a': `Vyžadováno.`,
's2bc8aa1740d3da34': `Objekt kroku`,
's2c8189544e3ea679': `Znovu`,
's2ddbebcb8a49b005': `Čeká se na ověření...`,
's2e1d5a7d320c25ef': `Zadejte kód z vašeho autentizačního zařízení.`,
's2e422519ed38f7d8': `Povolit`,
's2f7f35f6a5b733f5': `Zobrazit heslo`,
's30d6ff9e15e0a40a': `Ověřování...`,
's3108167b562674e2': `Vrátit se na přehled`,
's31fba571065f2c87': `Ujistěte se, že tyto tokeny uchováváte na bezpečném místě.`,
's32f04d33924ce8ad': `Spuštění zásady`,
's342eccabf83c9bde': `Historie plánu`,
's34be76c6b1eadbef': `Upozornění`,
's363abde8a254ea5f': `Ověření selhalo. Zkuste to prosím znovu.`,
's3643189d1abbb7f4': `Kód`,
's38f774cd7e9b9dad': `Zaregistrovat se.`,
's39002897db60bb28': `Odesílání Duo push oznámení...`,
's3ab772345f78aee0': `Inspektor toku`,
's3cd84e82e83e35ad': `Prosím zadejte svůj kód`,
's3f8a07912545e72e': `Nastavte svůj email`,
's4090dd0c0e45988b': `ID požadavku`,
's420d2cdedcaf8cd0': `Probíhá ověřování s Plexem...`,
's452f791e0ff6a13e': `Skrýt heslo`,
's455a8fc21077e7f9': `Vaše zařízení bylo úspěšně ověřeno.`,
's47490298c17b753a': `Na své zařízení obdržíte push notifikaci.`,
's47a4983a2c6bb749': `Model upraven`,
's49730f3d5751a433': `Načítání...`,
's4d7fe7be1c49896c': `Nyní můžete tuto stránku zavřít.`,
's502884e1977b2c06': `Další krok`,
's521681ed1d5ff814': str`Přihlásit se zpět do ${0}`,
's5f496533610103f2': `Aplikace byla autorizovaná`,
's5f5bf4ef2bd93c04': `Mapování skupin lze zkontrolovat pouze v případě, že je uživatel při pokusu o přístup k tomuto zdroji již přihlášen.`,
's61e48919db20538a': `UPN`,
's67749057edb2586b': `Odhlášení`,
's67ac11d47f1ce794': `WebAuthn vyžaduje, aby byla tato stránka přístupná přes HTTPS.`,
's6ac670086eb137c6': `Obnovení`,
's6bb30c61df4cf486': `CapsLock je zapnutý.`,
's6c410fedda2a575f': `Dostupná aktualizace`,
's6c607d74bdfe9f36': `Mapování uživatelů lze zkontrolovat pouze v případě, že je uživatel při pokusu o přístup k tomuto zdroji již přihlášen.`,
's6ecfc18dbfeedd76': `Vyberte jednu z možností níže pro pokračování.`,
's6fe64b4625517333': `Powered by authentik`,
's7073489bb01b3c24': `Aplikace již má přístup k následujícím oprávněním:`,
's708d9a4a0db0be8f': `Zkontrolovat stav`,
's721d94ae700b5dfd': `Aktivace Duo`,
's77f572257f69a8db': `Chyba mapování vlastnosti`,
's7abc9d08b0f70fd6': `Statický token`,
's7bda44013984fc48': `Heslo je nastavené`,
's7cdd62c100b6b17b': `Zadejte kód z emailu.`,
's7e537ad68d7c16e1': `Uživatel byl zapsaný do`,
's7fa4e5e409d43573': str`Chyba při vytváření přihlašovacích údajů: ${0}`,
's81ecf2d4386b8e84': `Pokračovat`,
's81eff3409d572a21': `Obecná systémová chyba`,
's833cfe815918c143': `Tokeny odeslané e-mailem.`,
's844fea0bfb10a72a': `Ověřovací kód`,
's84fcddede27b8e2a': `Externí`,
's85366fac18679f28': `Zapomněli jste heslo?`,
's858e7ac4b3cf955f': `Statické tokeny`,
's859b2e00391da380': `Vyberte Ano, aby se snížil počet žádostí o přihlášení.`,
's8939f574b096054a': `Nejste to vy?`,
's8a1d9403ca90989b': `Pozvánka byla použitá`,
's8aff572e64b7936b': `Poslat email znovu.`,
's8d857061510fe794': `Duo push-notifikace`,
's90064dd5c4dde2c6': `Naskenujte výše uvedený QR kód pomocí aplikace Microsoft Authenticator, Google Authenticator nebo jiné autentizační aplikace ve svém zařízení a zadejte kód, který zařízení zobrazí níže, pro dokončení nastavení MFA zařízení.`,
's9117fb5195e75151': `Poznámka`,
's91ae4b6bf981682b': `Logo authentik`,
's92ca679592a36b35': `Secret byl změněn`,
's97f2dc19fa556a6a': `SMS`,
's98b1cb8fb62909ec': `Skupina`,
's98bb2ae796f1ceef': `Vyberte jinou metodu ověření`,
's98dc556f8bf707dc': `Aplikace vyžaduje následující nová oprávnění:`,
's9bd9ba84819493d4': `Něco se pokazilo! Zkuste to znovu později.`,
's9c6f61dc47bc4f0a': `Model vytvořen`,
's9c73bd29b279d26b': `Zosobnění bylo ukončeno`,
's9d95f09deb601f34': str`Ověření přihlašovacích údajů na serveru selhalo: ${0}`,
's9e568afec3810bfe': `Klíče pro obnovu`,
'sa03aa46068460c95': `Zapomněli jste uživatelské jméno nebo heslo?`,
'sa0e0bdd7e244416b': `Podezřelý požadavek`,
'sa11e92683c5860c7': `Požadavek byl zamítnut.`,
'sa13e6c8310000e30': `ID relace`,
'sa1b41e334ad89d94': `Secret byl zobrazený`,
'sa266303caf1bd27f': `Email odeslán`,
'sa48f81f001b893d2': `Uživatel`,
'sa50a6326530d8a0d': `Zobrazit méně`,
'sac17f177f884e238': `Zůstat přihlášen?`,
'sac315d5bd28d4efa': `Nepovolit`,
'sac88482c48453fc8': str`Odhlásili jste se z ${0}. Můžete se vrátit na přehled a spustit jinou aplikaci nebo se odhlásit z účtu authentik.`,
'sae5d87e99fe081e0': `Vyžadováno`,
'sb0821a9e92cac5eb': `Registrace se nezdařila. Zkuste to prosím znovu.`,
'sb15fe7b9d09bb419': `Pokud se neotevře okno Plex, klikněte na tlačítko níže.`,
'sb166ce92e8e807d6': `Opakovat registraci`,
'sb1c91762ae3a9bee': `Zosobnění bylo spuštěno`,
'sb25e689e00c61829': `Použijte autentikátor založený na kódech.`,
'sb2c57b2d347203dd': `Zobrazit více`,
'sb2f307e79d20bb56': `Aktuální kontext plánu`,
'sb3fa80ccfa97ee54': `Název kroku`,
'sb4564c127ab8b921': `Chybné přihlášení`,
'sb59d68ed12d46377': `Načítání`,
'sb6d7128df5978cee': `Chyba zásady`,
'sbc625b4c669b9ce8': `Otevřít přihlášení`,
'sbd19064fc3f405c1': `Ověřovací email najdete ve Vaší poštovní schránce.`,
'sbea3c1e4f2fd623d': `Druh kroku`,
'sc0a0c87d5c556c38': `Telefonní číslo`,
'sc2ec367e3108fe65': `QR kód pro aktivaci Duo`,
'sc3e1c4f1fff8e1ca': `Tento tok je dokončen.`,
'sc4eedb434536bdb4': `Potřebujete účet?`,
'sc5668cb23167e9bb': `Alternativně, pokud máte Duo nainstalováno na svém aktuálním zařízení, klikněte na tento odkaz:`,
'sc8da3cc71de63832': `Přihlášení`,
'sc9f69360b58706c7': `Model smazán`,
'scb489a1a173ac3f0': `Ano`,
'scedf77e8b75cad5a': `Zadejte vaši emailovou adresu.`,
'scf5ce91bfba10a61': `Prosím zadejte své heslo`,
'sd1f44f1a8bc20e67': `E-mail`,
'sd2b8c1caa0340ed6': `Ověření se nezdařilo`,
'sd6a025d66f2637d1': `Tradiční autentikátor`,
'sd73b202ec04eefd9': `Neznámý záměr`,
'sd766cdc29b25ff95': `Probíhá ověřování s Apple...`,
'sd8f220c999726151': `Přesměrování`,
'sdaecc3c29a27c5c5': `Došlo k neznámé chybě`,
'sdb749e793de55478': str`Odhlásit se z ${0}`,
'sdc9e222be9612939': `Zdroj propojen`,
'sdea479482318489d': `Stavové zprávy`,
'se2d65e13768468e0': `Interní`,
'se2f258b996f7279c': `Chyba systémové úlohy`,
'se409d01b52c4e12f': `Opakovat ověření`,
'se5fd752dbbc3cd28': `Použít bezpečnostní klíč`,
'se84ba7f105934495': `Pro více informací se podívejte do konzole prohlížeče.`,
'se9e9e1d6799b86a5': `WebAuthn není podporováno prohlížečem.`,
'seb0c08d9f233bbfe': `Prosím zadejte kód který vám přišel v SMS`,
'sf1ec4acb8d744ed9': `Upozornění`,
'sf29883ac9ec43085': `Heslo aplikace`,
'sf6e1665c7022a1f8': `Heslo`,
'sf8f49cdbf0036343': `Chyba nastavení`,
'sfcfcf85a57eea78a': `TOTP zařízení`,
'sfe211545fd02f73e': `Ověření`,
'sfe629863ba1338c2': `Chyba spojení, znovu se připojuji...`,
'sff930bf2834e2201': `Servisní účet (interní)`,
'sffef1a8596bc58bb': `Ověřování...`,
'zh-Hans': `Čínština`,
'zh-Hant': `Čínština`,
'en-XA': `English (Pseudo-Accents)`,
'locale-option-localized-label': str`${0} (${1})`,
'sa4be93eb7f4e51e3': `Site links`,
'sb69e43f2f6bd1b54': `Close flow inspector`,
's857cf5aa8955cf5c': `Flow inspector loading`,
's3736936aac1adc2e': `Open flow inspector`,
's15d6fabebb4ef2d8': `User information`,
'avatar.alt-text-for-user': str`Avatar for ${0}`,
'avatar.alt-text': `User avatar`,
'sf376ae7e9ef41c1a': `Authenticating with Telegram...`,
's76ea993fdc8503d8': `Click the button below to start.`,
's6e858c4c4c3b6b76': `You're about to be redirected to the following URL.`,
's7f073c746d0f6324': `Form actions`,
's0b1ffff8bedd6b8a': `Unknown Provider`,
's777e86d562523c85': `Logging out of providers...`,
's4980379bf8461c2d': `Single Logout`,
's78869b8b2bc26d0d': `SAML Provider`,
'sca83a1f9227f74b9': `SAML logout complete`,
's7b90eab7969ae056': str`Redirecting to SAML provider: ${0}`,
'saa088a2d0f90d5a9': str`Posting logout response to SAML provider: ${0}`,
's3e6174b645d96835': str`Posting logout request to SAML provider: ${0}`,
'flow.navigation.go-back': `Go back`,
'stage.authenticator.email.sent-to-address': str`A verification token has been sent to your configured email address: ${0}`,
'stage.authenticator.email.sent': `A verification token has been sent to your email address.`,
'clipboard.write.success.message.entity': str`${0} copied to clipboard.`,
'clipboard.write.success.generic': `Copied to clipboard.`,
'clipboard.write.failure.description': `Clipboard not available. Please copy the value manually.`,
'totp.config': `TOTP Config`,
'totp.config.clipboard.description': `Paste this URL into your authenticator app to set up a time-based one-time password.`,
'totp.secret': `TOTP Secret`,
'totp.secret.clipboard.description': `Paste this secret into your authenticator app to set up a time-based one-time password.`,
'sc091f75b942ec081': `QR-Code to setup a time-based one-time password`,
's6db67c7681b8be6e': `Copy time-based one-time password configuration`,
's43e859bf711e3599': `Copy TOTP Config`,
'sdf2794b96386c868': `Copy time-based one-time password secret`,
'sc78d16417878afd0': `Copy Secret`,
'sa5562e0115ffbccd': `Time-based one-time password`,
's40f44c0d88807fd5': `TOTP Code`,
's95474cc8c73dd9c0': `Type your TOTP code...`,
's168d0c138b63286d': `Type your time-based one-time password code.`,
's92e22f9319fdb85d': `Configuration warning`,
's1af2337b6d11d4c6': `Data export ready`,
's776d93092ad9ce90': `Review initiated`,
'sad46bcad1a343b51': `Review overdue`,
's59d168d966cecbaf': `Review attested`,
's5158b7f014cecefc': `Review completed`,
's482bc55a78891ef7': str`A code has been sent to your address: ${0}`,
's5afa3fc77ce8d94d': `A code has been sent to your email address.`,
's37f47fa981493c3b': `A one-time use code has been sent to you via SMS text message.`,
'sc92a7248dba5f388': `Open your authenticator app to retrieve a one-time use code.`,
'sb94beab52540d2b7': `The CAPTCHA challenge failed to load.`,
's8d6236ad153d42c0': `CAPTCHA challenge`,
's217a96c47caaf73d': `Could not find a suitable CAPTCHA provider.`,
'sf910cca0f06bbc31': `Enter the email address or username associated with your account.`,
'sd5d2b94a1ccba1a9': str`Log in to continue to ${0}.`,
'seb6ab868740e4e36': str`Continue with ${0}`,
's53dddf1733e26c98': `Login sources`,
's05a941e4b4bfca9f': `Additional actions`,
's14e8ac4d377a1a99': `Type an authentication code...`,
'scd909e0bc55fc548': `Security key`,
'sd0de938d9c37ad5f': `Use a Passkey or security key to prove your identity.`,
's8bb0a1b672b52954': `In case you lose access to your primary authenticators.`,
's76d21e163887ddd1': `Unknown device`,
'sf0ceaf3116e31fd4': `An unknown device class was provided.`,
's610fced3957d0471': `Select an authentication method`,
's958cedec1cb3fc52': `Select a configuration stage`,
's95094b57684716a5': `Failed to validate device.`,
'se99d25eb70c767ef': `Verifying your device...`,
'sdd2ea73c24b40d5d': `Site footer`,
'sa17ce23517e56461': `Authentication form`,
};

View File

@@ -0,0 +1,252 @@
// Do not modify this file by hand!
// Re-generate this file by running lit-localize
import {str} from '@lit/localize';
/* eslint-disable no-irregular-whitespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
export const templates = {
'en': `Englisch`,
'ja-JP': `Japanisch`,
'ko-KR': `Koreanisch`,
'language-selector-label': `Sprache auswählen`,
'locale-auto-detect-option': `Automatische Erkennung`,
's009bd1c98a9f5de2': `Registrierung fehlgeschlagen`,
's02240309358f557c': `Unbekannter Schweregrad`,
's0382d73823585617': str`
${0}:
${1}`,
's03f42eea72154959': `Anmeldename`,
's042baf59902a711f': `Richtlinie`,
's04c1210202f48dc9': `Bitte geben Sie Ihre Telefonnummer ein.`,
's06bfe45ffef2cf60': str`Stage Name: ${0}`,
's091d5407b5b32e84': `Oder`,
's09205907b5b56cda': `Nein`,
's0e516232f2ab4e04': `Per SMS versendete Token.`,
's12d6dde9b30c3093': `Verwerfen`,
's14c552fb0a4c0186': `Anwendung benötigt die folgenden Berechtigungen:`,
's197420b40df164f8': `Weiterleitung folgen`,
's1a635369edaf4dc3': `Dienstkonto`,
's1c336c2d6cef77b3': `Angemeldet bleiben auf diesem Gerät`,
's1cd198d689c66e4b': `API Zugriff`,
's1cd264012278c047': `Flow-Ausführung`,
's21d95b4651ad7a1e': `Gib einen einmaligen Wiederherstellungscode für diesen Benutzer ein.`,
's238784fc1dc672ae': `Registriere…`,
's23da7320dee28a60': `Geräte Code`,
's2543cffd6ebb6803': `Ausführung von Systemtasks`,
's296fbffaaa7c910a': `Erforderlich`,
's2bc8aa1740d3da34': `Stage Objekt`,
's2c8189544e3ea679': `Erneut versuchen`,
's2ddbebcb8a49b005': `Warten auf Authentifizierung...`,
's2e1d5a7d320c25ef': `Gib den Code von deinem Authentifikatorgerät ein.`,
's2e422519ed38f7d8': `Bestanden`,
's2f7f35f6a5b733f5': `Passwort anzeigen`,
's30d6ff9e15e0a40a': `Überprüfe…`,
's3108167b562674e2': `Zurück zur Übersicht`,
's31fba571065f2c87': `Bewahren Sie diese Tokens an einem sicheren Ort auf.`,
's32f04d33924ce8ad': `Richtlinien-Ausführung`,
's342eccabf83c9bde': `Historie`,
's34be76c6b1eadbef': `Warnung`,
's363abde8a254ea5f': `Authentifizierung fehlgeschlagen. Bitte versuchen Sie es erneut.`,
's3643189d1abbb7f4': `Code`,
's38f774cd7e9b9dad': `Registrieren.`,
's39002897db60bb28': `Sende Duo-Push-Benachrichtigung …`,
's3ab772345f78aee0': `Flow-Inspektor`,
's3cd84e82e83e35ad': `Bitte geben Sie Ihren Code ein`,
's3f8a07912545e72e': `Konfiguriere deine E-Mail`,
's4090dd0c0e45988b': `Anfrage-ID`,
's420d2cdedcaf8cd0': `Authentifizierung mit Plex...`,
's452f791e0ff6a13e': `Passwort ausblenden`,
's455a8fc21077e7f9': `Sie haben Ihr Gerät erfolgreich authentifiziert.`,
's47490298c17b753a': `Erhalten Sie eine Push-Benachrichtigung auf Ihrem Gerät.`,
's47a4983a2c6bb749': `Modell aktualisiert`,
's49730f3d5751a433': `Laden...`,
's4d7fe7be1c49896c': `Sie können diese Seite jetzt schließen.`,
's502884e1977b2c06': `Nächste Stage`,
's521681ed1d5ff814': str`Erneut anmelden bei ${0}`,
's5f496533610103f2': `Anwendung authorisiert`,
's5f5bf4ef2bd93c04': `Gruppenzuordnungen können nur überprüft werden, wenn der Benutzer beim Zugriff auf diese Quelle bereits angemeldet ist.`,
's61e48919db20538a': `UPN`,
's67749057edb2586b': `Abmelden`,
's67ac11d47f1ce794': `WebAuthn verlangt, dass der Zugriff auf diese Seite über HTTPS erfolgt.`,
's6ac670086eb137c6': `Wiederherstellung`,
's6bb30c61df4cf486': `Feststelltaste ist aktiviert.`,
's6c410fedda2a575f': `Update verfügbar`,
's6c607d74bdfe9f36': `Benutzerzuordnungen können nur überprüft werden, wenn der Benutzer beim Zugriff auf diese Quelle bereits angemeldet ist.`,
's6ecfc18dbfeedd76': `Wählen Sie eine der folgenden Optionen aus, um fortzufahren.`,
's6fe64b4625517333': `Erstellt durch Authentik`,
's7073489bb01b3c24': `Die Anwendung hat bereits Zugriff auf die folgenden Berechtigungen:`,
's708d9a4a0db0be8f': `Status überprüfen`,
's721d94ae700b5dfd': `Duo-Aktivierung`,
's77f572257f69a8db': `Ausnahme der Eigenschaftszuordnung`,
's7abc9d08b0f70fd6': `Statische Token`,
's7bda44013984fc48': `Passwort festgelegt`,
's7cdd62c100b6b17b': `Bitte gib den Code ein, den du per E-Mail erhalten hast.`,
's7e537ad68d7c16e1': `Benutzer wurde geschrieben nach`,
's7fa4e5e409d43573': str`Fehler beim Erstellen der Anmeldeinformationen:
${0}`,
's81ecf2d4386b8e84': `Weiter`,
's81eff3409d572a21': `Allgemeine Systemausnahme`,
's833cfe815918c143': `Tokens per E-Mail gesendet.`,
's844fea0bfb10a72a': `Authentifizierungscode`,
's84fcddede27b8e2a': `Extern`,
's85366fac18679f28': `Passwort vergessen?`,
's858e7ac4b3cf955f': `Statische Token`,
's859b2e00391da380': `Wähle 'Ja' um die Anzahl der Anmeldeaufforderungen zu reduzieren.`,
's8939f574b096054a': `Nicht Sie?`,
's8a1d9403ca90989b': `Einladung verwendet`,
's8aff572e64b7936b': `E-Mail erneut senden.`,
's8d857061510fe794': `Duo Push-Benachrichtigungen`,
's90064dd5c4dde2c6': `Bitte scannen Sie den QR-Code oberhalb mit Microsoft Authenticator, Google Authenticator oder anderen Authenticator-Apps auf Ihrem Gerät ab und geben Sie den angezeigten Code unterhalb ein, um die Einrichtung des MFA-Geräts abzuschließen.`,
's9117fb5195e75151': `Hinweis`,
's91ae4b6bf981682b': `authentik Logo`,
's92ca679592a36b35': `Geheimnis wurde rotiert`,
's97f2dc19fa556a6a': `SMS`,
's98b1cb8fb62909ec': `Gruppe`,
's98bb2ae796f1ceef': `Andere Authentifizierungsmethode auswählen`,
's98dc556f8bf707dc': `Die Anwendung erfordert folgende neue Berechtigungen:`,
's9bd9ba84819493d4': `Etwas ist schiefgelaufen. Bitte probiere es später wieder`,
's9c6f61dc47bc4f0a': `Modell erstellt`,
's9c73bd29b279d26b': `Identitätswechsel beenden`,
's9d95f09deb601f34': str`Servervalidierung der Anmeldedaten fehlgeschlagen:
${0}`,
's9e568afec3810bfe': `Wiederherstellungsschlüssel`,
'sa03aa46068460c95': `Benutzername oder Passwort vergessen?`,
'sa0e0bdd7e244416b': `Verdächtige Anfrage`,
'sa11e92683c5860c7': `Anfrage wurde verweigert`,
'sa13e6c8310000e30': `Sitzungs-ID`,
'sa1b41e334ad89d94': `Geheimnis wurde angesehen`,
'sa266303caf1bd27f': `E-Mail gesendet`,
'sa48f81f001b893d2': `Benutzer`,
'sa50a6326530d8a0d': `Zeige weniger`,
'sac17f177f884e238': `Eingeloggt bleiben?`,
'sac315d5bd28d4efa': `Nicht bestehen`,
'sac88482c48453fc8': str`Sie sind von ${0} abgemeldet. Sie können zurück zu Übersicht gehen, um eine andere Anwendung zu starten, oder sich ausloggen.`,
'sae5d87e99fe081e0': `Erforderlich`,
'sb0821a9e92cac5eb': `Registrierung fehlgeschlagen. Bitte versuchen Sie es erneut.`,
'sb15fe7b9d09bb419': `Wenn sich kein Plex-Popup öffnet, klicken Sie auf die Schaltfläche unten.`,
'sb166ce92e8e807d6': `Registrierung erneut versuchen`,
'sb1c91762ae3a9bee': `Identitätswechsel gestarted`,
'sb25e689e00c61829': `Verwenden Sie einen Code-basierten Authentifikator`,
'sb2c57b2d347203dd': `Zeige mehr`,
'sb2f307e79d20bb56': `Aktueller Plankontext`,
'sb3fa80ccfa97ee54': `Stage Name`,
'sb4564c127ab8b921': `Fehlgeschlagene Anmeldung`,
'sb59d68ed12d46377': `Wird geladen`,
'sb6d7128df5978cee': `Richtlinien-Ausnahme`,
'sbc625b4c669b9ce8': `Anmeldung öffnen`,
'sbd19064fc3f405c1': `Prüfen Sie Ihren Posteingang auf eine Bestätigungsmail.`,
'sbea3c1e4f2fd623d': `Art der Stage`,
'sc0a0c87d5c556c38': `Telefonnummer`,
'sc2ec367e3108fe65': `QR-Code für die Duo-Aktivierung`,
'sc3e1c4f1fff8e1ca': `Dieser Flow ist abgeschlossen.`,
'sc4eedb434536bdb4': `Noch kein Konto?`,
'sc5668cb23167e9bb': `Alternativ kannst Du auch auf diesen Link klicken, wenn Du Duo auf Deinem Gerät installiert hast:`,
'sc8da3cc71de63832': `Anmeldung`,
'sc9f69360b58706c7': `Modell gelöscht`,
'scb489a1a173ac3f0': `Ja`,
'scedf77e8b75cad5a': `Bitte gib deine E-Mail-Adresse ein.`,
'scf5ce91bfba10a61': `Bitte geben Sie Ihr Passwort ein`,
'sd1f44f1a8bc20e67': `E-Mail`,
'sd2b8c1caa0340ed6': `Authentifizierung fehlgeschlagen`,
'sd6a025d66f2637d1': `Traditioneller Authentifikator`,
'sd73b202ec04eefd9': `Unbekannte Absicht`,
'sd766cdc29b25ff95': `Authentifizierung mit Apple...`,
'sd8f220c999726151': `Umleiten`,
'sdaecc3c29a27c5c5': `Ein unbekannter Fehler ist aufgetreten`,
'sdb749e793de55478': str`Abmelden von ${0}`,
'sdc9e222be9612939': `Quelle verknüpft`,
'sdea479482318489d': `Statusmeldungen`,
'se2d65e13768468e0': `Intern`,
'se2f258b996f7279c': `Systemtask-Ausnahme`,
'se409d01b52c4e12f': `Authentifizierung erneut versuchen`,
'se5fd752dbbc3cd28': `Einen Sicherheitsschlüssel verwenden`,
'se84ba7f105934495': `Bitte prüfe die Browser-Konsole für weitere Details.`,
'se9e9e1d6799b86a5': `WebAuthn wird vom Browser nicht unterstützt.`,
'seb0c08d9f233bbfe': `Bitte geben Sie den Code ein, den Sie per SMS erhalten haben`,
'sf1ec4acb8d744ed9': `Alarm`,
'sf29883ac9ec43085': `App Passwort`,
'sf6e1665c7022a1f8': `Passwort`,
'sf8f49cdbf0036343': `Fehler bei der Konfiguration`,
'sfcfcf85a57eea78a': `TOTP-Gerät`,
'sfe211545fd02f73e': `Überprüfung`,
'sfe629863ba1338c2': `Verbindungsfehler, erneuter Verbindungsaufbau...`,
'sff930bf2834e2201': `Dienstkonto (intern)`,
'sffef1a8596bc58bb': `Authentifiziere…`,
'zh-Hans': `Chinesisch`,
'zh-Hant': `Chinesisch`,
'en-XA': `English (Pseudo-Accents)`,
'locale-option-localized-label': str`${0} (${1})`,
'sa4be93eb7f4e51e3': `Site links`,
'sb69e43f2f6bd1b54': `Close flow inspector`,
's857cf5aa8955cf5c': `Flow inspector loading`,
's3736936aac1adc2e': `Open flow inspector`,
's15d6fabebb4ef2d8': `User information`,
'avatar.alt-text-for-user': str`Avatar for ${0}`,
'avatar.alt-text': `User avatar`,
'sf376ae7e9ef41c1a': `Authenticating with Telegram...`,
's76ea993fdc8503d8': `Click the button below to start.`,
's6e858c4c4c3b6b76': `You're about to be redirected to the following URL.`,
's7f073c746d0f6324': `Form actions`,
's0b1ffff8bedd6b8a': `Unknown Provider`,
's777e86d562523c85': `Logging out of providers...`,
's4980379bf8461c2d': `Single Logout`,
's78869b8b2bc26d0d': `SAML Provider`,
'sca83a1f9227f74b9': `SAML logout complete`,
's7b90eab7969ae056': str`Redirecting to SAML provider: ${0}`,
'saa088a2d0f90d5a9': str`Posting logout response to SAML provider: ${0}`,
's3e6174b645d96835': str`Posting logout request to SAML provider: ${0}`,
'flow.navigation.go-back': `Go back`,
'stage.authenticator.email.sent-to-address': str`A verification token has been sent to your configured email address: ${0}`,
'stage.authenticator.email.sent': `A verification token has been sent to your email address.`,
'clipboard.write.success.message.entity': str`${0} copied to clipboard.`,
'clipboard.write.success.generic': `Copied to clipboard.`,
'clipboard.write.failure.description': `Clipboard not available. Please copy the value manually.`,
'totp.config': `TOTP Config`,
'totp.config.clipboard.description': `Paste this URL into your authenticator app to set up a time-based one-time password.`,
'totp.secret': `TOTP Secret`,
'totp.secret.clipboard.description': `Paste this secret into your authenticator app to set up a time-based one-time password.`,
'sc091f75b942ec081': `QR-Code to setup a time-based one-time password`,
's6db67c7681b8be6e': `Copy time-based one-time password configuration`,
's43e859bf711e3599': `Copy TOTP Config`,
'sdf2794b96386c868': `Copy time-based one-time password secret`,
'sc78d16417878afd0': `Copy Secret`,
'sa5562e0115ffbccd': `Time-based one-time password`,
's40f44c0d88807fd5': `TOTP Code`,
's95474cc8c73dd9c0': `Type your TOTP code...`,
's168d0c138b63286d': `Type your time-based one-time password code.`,
's92e22f9319fdb85d': `Configuration warning`,
's1af2337b6d11d4c6': `Data export ready`,
's776d93092ad9ce90': `Review initiated`,
'sad46bcad1a343b51': `Review overdue`,
's59d168d966cecbaf': `Review attested`,
's5158b7f014cecefc': `Review completed`,
's482bc55a78891ef7': str`A code has been sent to your address: ${0}`,
's5afa3fc77ce8d94d': `A code has been sent to your email address.`,
's37f47fa981493c3b': `A one-time use code has been sent to you via SMS text message.`,
'sc92a7248dba5f388': `Open your authenticator app to retrieve a one-time use code.`,
'sb94beab52540d2b7': `The CAPTCHA challenge failed to load.`,
's8d6236ad153d42c0': `CAPTCHA challenge`,
's217a96c47caaf73d': `Could not find a suitable CAPTCHA provider.`,
'sf910cca0f06bbc31': `Enter the email address or username associated with your account.`,
'sd5d2b94a1ccba1a9': str`Log in to continue to ${0}.`,
'seb6ab868740e4e36': str`Continue with ${0}`,
's53dddf1733e26c98': `Login sources`,
's05a941e4b4bfca9f': `Additional actions`,
's14e8ac4d377a1a99': `Type an authentication code...`,
'scd909e0bc55fc548': `Security key`,
'sd0de938d9c37ad5f': `Use a Passkey or security key to prove your identity.`,
's8bb0a1b672b52954': `In case you lose access to your primary authenticators.`,
's76d21e163887ddd1': `Unknown device`,
'sf0ceaf3116e31fd4': `An unknown device class was provided.`,
's610fced3957d0471': `Select an authentication method`,
's958cedec1cb3fc52': `Select a configuration stage`,
's95094b57684716a5': `Failed to validate device.`,
'se99d25eb70c767ef': `Verifying your device...`,
'sdd2ea73c24b40d5d': `Site footer`,
'sa17ce23517e56461': `Authentication form`,
};

View File

@@ -0,0 +1,248 @@
// Do not modify this file by hand!
// Re-generate this file by running lit-localize
import {str} from '@lit/localize';
/* eslint-disable no-irregular-whitespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
export const templates = {
'avatar.alt-text': `Ũśēŕ àvàţàŕ`,
'avatar.alt-text-for-user': str`Àvàţàŕ ƒōŕ ${0}`,
'clipboard.write.failure.description': `Ćĺĩƥƀōàŕď ńōţ àvàĩĺàƀĺē. Ƥĺēàśē ćōƥŷ ţĥē vàĺũē ḿàńũàĺĺŷ.`,
'clipboard.write.success.generic': `Ćōƥĩēď ţō ćĺĩƥƀōàŕď.`,
'clipboard.write.success.message.entity': str`${0} ćōƥĩēď ţō ćĺĩƥƀōàŕď.`,
'en': `Ēńĝĺĩśĥ`,
'en-XA': `Ēńĝĺĩśĥ (Ƥśēũďō-Àććēńţś)`,
'flow.navigation.go-back': `Ĝō ƀàćķ`,
'ja-JP': `ĵàƥàńēśē`,
'ko-KR': `Ķōŕēàń`,
'language-selector-label': `Śēĺēćţ ĺàńĝũàĝē`,
'locale-auto-detect-option': `Àũţō-ďēţēćţ`,
'locale-option-localized-label': str`${0} (${1})`,
's009bd1c98a9f5de2': `Ƒàĩĺēď ţō ŕēĝĩśţēŕ`,
's02240309358f557c': `Ũńķńōŵń śēvēŕĩţŷ`,
's0382d73823585617': str`${0}: ${1}`,
's03f42eea72154959': `Ũśēŕńàḿē`,
's042baf59902a711f': `Ƥōĺĩćŷ`,
's04c1210202f48dc9': `Ƥĺēàśē ēńţēŕ ŷōũŕ Ƥĥōńē ńũḿƀēŕ.`,
's05a941e4b4bfca9f': `Àďďĩţĩōńàĺ àćţĩōńś`,
's06bfe45ffef2cf60': str`Śţàĝē ńàḿē: ${0}`,
's091d5407b5b32e84': `Ōŕ`,
's09205907b5b56cda': `Ńō`,
's0b1ffff8bedd6b8a': `Ũńķńōŵń Ƥŕōvĩďēŕ`,
's0e516232f2ab4e04': `Ţōķēńś śēńţ vĩà ŚḾŚ.`,
's12d6dde9b30c3093': `Ďĩśḿĩśś`,
's14c552fb0a4c0186': `Àƥƥĺĩćàţĩōń ŕēǫũĩŕēś ƒōĺĺōŵĩńĝ ƥēŕḿĩśśĩōńś:`,
's14e8ac4d377a1a99': `Ţŷƥē àń àũţĥēńţĩćàţĩōń ćōďē...`,
's15d6fabebb4ef2d8': `Ũśēŕ ĩńƒōŕḿàţĩōń`,
's168d0c138b63286d': `Ţŷƥē ŷōũŕ ţĩḿē-ƀàśēď ōńē-ţĩḿē ƥàśśŵōŕď ćōďē.`,
's197420b40df164f8': `Ƒōĺĺōŵ ŕēďĩŕēćţ`,
's1a635369edaf4dc3': `Śēŕvĩćē àććōũńţ`,
's1af2337b6d11d4c6': `Ďàţà ēxƥōŕţ ŕēàďŷ`,
's1c336c2d6cef77b3': `Ŕēḿēḿƀēŕ ḿē ōń ţĥĩś ďēvĩćē`,
's1cd198d689c66e4b': `ÀƤĨ Àććēśś`,
's1cd264012278c047': `Ƒĺōŵ ēxēćũţĩōń`,
's217a96c47caaf73d': `Ćōũĺď ńōţ ƒĩńď à śũĩţàƀĺē ĆÀƤŢĆĤÀ ƥŕōvĩďēŕ.`,
's21d95b4651ad7a1e': `Ēńţēŕ à ōńē-ţĩḿē ŕēćōvēŕŷ ćōďē ƒōŕ ţĥĩś ũśēŕ.`,
's238784fc1dc672ae': `Ŕēĝĩśţēŕĩńĝ...`,
's23da7320dee28a60': `Ďēvĩćē Ćōďē`,
's2543cffd6ebb6803': `Śŷśţēḿ ţàśķ ēxēćũţĩōń`,
's296fbffaaa7c910a': `Ŕēǫũĩŕēď.`,
's2bc8aa1740d3da34': `Śţàĝē ōƀĴēćţ`,
's2c8189544e3ea679': `Ŕēţŕŷ`,
's2ddbebcb8a49b005': `Ŵàĩţĩńĝ ƒōŕ àũţĥēńţĩćàţĩōń...`,
's2e1d5a7d320c25ef': `Ēńţēŕ ţĥē ćōďē ƒŕōḿ ŷōũŕ àũţĥēńţĩćàţōŕ ďēvĩćē.`,
's2e422519ed38f7d8': `Ƥàśś`,
's2f7f35f6a5b733f5': `Śĥōŵ ƥàśśŵōŕď`,
's30d6ff9e15e0a40a': `Vēŕĩƒŷĩńĝ...`,
's3108167b562674e2': `Ĝō ƀàćķ ţō ōvēŕvĩēŵ`,
's31fba571065f2c87': `Ḿàķē śũŕē ţō ķēēƥ ţĥēśē ţōķēńś ĩń à śàƒē ƥĺàćē.`,
's32f04d33924ce8ad': `Ƥōĺĩćŷ ēxēćũţĩōń`,
's342eccabf83c9bde': `Ƥĺàń ĥĩśţōŕŷ`,
's34be76c6b1eadbef': `Ŵàŕńĩńĝ`,
's363abde8a254ea5f': `Àũţĥēńţĩćàţĩōń ƒàĩĺēď. Ƥĺēàśē ţŕŷ àĝàĩń.`,
's3643189d1abbb7f4': `Ćōďē`,
's3736936aac1adc2e': `Ōƥēń ƒĺōŵ ĩńśƥēćţōŕ`,
's37f47fa981493c3b': `À ōńē-ţĩḿē ũśē ćōďē ĥàś ƀēēń śēńţ ţō ŷōũ vĩà ŚḾŚ ţēxţ ḿēśśàĝē.`,
's38f774cd7e9b9dad': `Śĩĝń ũƥ.`,
's39002897db60bb28': `Śēńďĩńĝ Ďũō ƥũśĥ ńōţĩƒĩćàţĩōń...`,
's3ab772345f78aee0': `Ƒĺōŵ ĩńśƥēćţōŕ`,
's3cd84e82e83e35ad': `Ƥĺēàśē ēńţēŕ ŷōũŕ ćōďē`,
's3e6174b645d96835': str`Ƥōśţĩńĝ ĺōĝōũţ ŕēǫũēśţ ţō ŚÀḾĹ ƥŕōvĩďēŕ: ${0}`,
's3f8a07912545e72e': `Ćōńƒĩĝũŕē ŷōũŕ ēḿàĩĺ`,
's4090dd0c0e45988b': `Ŕēǫũēśţ ĨĎ`,
's40f44c0d88807fd5': `ŢŌŢƤ Ćōďē`,
's420d2cdedcaf8cd0': `Àũţĥēńţĩćàţĩńĝ ŵĩţĥ Ƥĺēx...`,
's43e859bf711e3599': `Ćōƥŷ ŢŌŢƤ Ćōńƒĩĝ`,
's452f791e0ff6a13e': `Ĥĩďē ƥàśśŵōŕď`,
's455a8fc21077e7f9': `Ŷōũ'vē śũććēśśƒũĺĺŷ àũţĥēńţĩćàţēď ŷōũŕ ďēvĩćē.`,
's47490298c17b753a': `Ŕēćēĩvē à ƥũśĥ ńōţĩƒĩćàţĩōń ōń ŷōũŕ ďēvĩćē.`,
's47a4983a2c6bb749': `Ḿōďēĺ ũƥďàţēď`,
's482bc55a78891ef7': str`À ćōďē ĥàś ƀēēń śēńţ ţō ŷōũŕ àďďŕēśś: ${0}`,
's49730f3d5751a433': `Ĺōàďĩńĝ...`,
's4980379bf8461c2d': `Śĩńĝĺē Ĺōĝōũţ`,
's4d7fe7be1c49896c': `Ŷōũ ḿàŷ ćĺōśē ţĥĩś ƥàĝē ńōŵ.`,
's502884e1977b2c06': `Ńēxţ śţàĝē`,
's5158b7f014cecefc': `Ŕēvĩēŵ ćōḿƥĺēţēď`,
's521681ed1d5ff814': str`Ĺōĝ ƀàćķ ĩńţō ${0}`,
's53dddf1733e26c98': `Ĺōĝĩń śōũŕćēś`,
's59d168d966cecbaf': `Ŕēvĩēŵ àţţēśţēď`,
's5afa3fc77ce8d94d': `À ćōďē ĥàś ƀēēń śēńţ ţō ŷōũŕ ēḿàĩĺ àďďŕēśś.`,
's5f496533610103f2': `Àƥƥĺĩćàţĩōń àũţĥōŕĩźēď`,
's5f5bf4ef2bd93c04': `Ĝŕōũƥ ḿàƥƥĩńĝś ćàń ōńĺŷ ƀē ćĥēćķēď ĩƒ à ũśēŕ ĩś àĺŕēàďŷ ĺōĝĝēď ĩń ŵĥēń ţŕŷĩńĝ ţō àććēśś ţĥĩś śōũŕćē.`,
's610fced3957d0471': `Śēĺēćţ àń àũţĥēńţĩćàţĩōń ḿēţĥōď`,
's61e48919db20538a': `ŨƤŃ`,
's67749057edb2586b': `Ĺōĝōũţ`,
's67ac11d47f1ce794': `ŴēƀÀũţĥń ŕēǫũĩŕēś ţĥĩś ƥàĝē ţō ƀē àććēśśēď vĩà ĤŢŢƤŚ.`,
's6ac670086eb137c6': `Ŕēćōvēŕŷ`,
's6bb30c61df4cf486': `Ćàƥś Ĺōćķ ĩś ēńàƀĺēď.`,
's6c410fedda2a575f': `Ũƥďàţē àvàĩĺàƀĺē`,
's6c607d74bdfe9f36': `Ũśēŕ ḿàƥƥĩńĝś ćàń ōńĺŷ ƀē ćĥēćķēď ĩƒ à ũśēŕ ĩś àĺŕēàďŷ ĺōĝĝēď ĩń ŵĥēń ţŕŷĩńĝ ţō àććēśś ţĥĩś śōũŕćē.`,
's6db67c7681b8be6e': `Ćōƥŷ ţĩḿē-ƀàśēď ōńē-ţĩḿē ƥàśśŵōŕď ćōńƒĩĝũŕàţĩōń`,
's6e858c4c4c3b6b76': `Ŷōũ'ŕē àƀōũţ ţō ƀē ŕēďĩŕēćţēď ţō ţĥē ƒōĺĺōŵĩńĝ ŨŔĹ.`,
's6ecfc18dbfeedd76': `Śēĺēćţ ōńē ōƒ ţĥē ōƥţĩōńś ƀēĺōŵ ţō ćōńţĩńũē.`,
's6fe64b4625517333': `Ƥōŵēŕēď ƀŷ àũţĥēńţĩķ`,
's7073489bb01b3c24': `Àƥƥĺĩćàţĩōń àĺŕēàďŷ ĥàś àććēśś ţō ţĥē ƒōĺĺōŵĩńĝ ƥēŕḿĩśśĩōńś:`,
's708d9a4a0db0be8f': `Ćĥēćķ śţàţũś`,
's721d94ae700b5dfd': `Ďũō àćţĩvàţĩōń`,
's76d21e163887ddd1': `Ũńķńōŵń ďēvĩćē`,
's76ea993fdc8503d8': `Ćĺĩćķ ţĥē ƀũţţōń ƀēĺōŵ ţō śţàŕţ.`,
's776d93092ad9ce90': `Ŕēvĩēŵ ĩńĩţĩàţēď`,
's777e86d562523c85': `Ĺōĝĝĩńĝ ōũţ ōƒ ƥŕōvĩďēŕś...`,
's77f572257f69a8db': `Ƥŕōƥēŕţŷ Ḿàƥƥĩńĝ ēxćēƥţĩōń`,
's78869b8b2bc26d0d': `ŚÀḾĹ Ƥŕōvĩďēŕ`,
's7abc9d08b0f70fd6': `Śţàţĩć ţōķēń`,
's7b90eab7969ae056': str`Ŕēďĩŕēćţĩńĝ ţō ŚÀḾĹ ƥŕōvĩďēŕ: ${0}`,
's7bda44013984fc48': `Ƥàśśŵōŕď śēţ`,
's7cdd62c100b6b17b': `Ƥĺēàśē ēńţēŕ ţĥē ćōďē ŷōũ ŕēćēĩvēď vĩà ēḿàĩĺ`,
's7e537ad68d7c16e1': `Ũśēŕ ŵàś ŵŕĩţţēń ţō`,
's7f073c746d0f6324': `Ƒōŕḿ àćţĩōńś`,
's7fa4e5e409d43573': str`Ēŕŕōŕ ćŕēàţĩńĝ ćŕēďēńţĩàĺ: ${0}`,
's81ecf2d4386b8e84': `Ćōńţĩńũē`,
's81eff3409d572a21': `Ĝēńēŕàĺ śŷśţēḿ ēxćēƥţĩōń`,
's833cfe815918c143': `Ţōķēńś śēńţ vĩà ēḿàĩĺ.`,
's844fea0bfb10a72a': `Àũţĥēńţĩćàţĩōń ćōďē`,
's84fcddede27b8e2a': `Ēxţēŕńàĺ`,
's85366fac18679f28': `Ƒōŕĝōţ ƥàśśŵōŕď?`,
's857cf5aa8955cf5c': `Ƒĺōŵ ĩńśƥēćţōŕ ĺōàďĩńĝ`,
's858e7ac4b3cf955f': `Śţàţĩć ţōķēńś`,
's859b2e00391da380': `Śēĺēćţ Ŷēś ţō ŕēďũćē ţĥē ńũḿƀēŕ ōƒ ţĩḿēś ŷōũ'ŕē àśķēď ţō śĩĝń ĩń.`,
's8939f574b096054a': `Ńōţ ŷōũ?`,
's8a1d9403ca90989b': `Ĩńvĩţàţĩōń ũśēď`,
's8aff572e64b7936b': `Śēńď Ēḿàĩĺ àĝàĩń.`,
's8bb0a1b672b52954': `Ĩń ćàśē ŷōũ ĺōśē àććēśś ţō ŷōũŕ ƥŕĩḿàŕŷ àũţĥēńţĩćàţōŕś.`,
's8d6236ad153d42c0': `ĆÀƤŢĆĤÀ ćĥàĺĺēńĝē`,
's8d857061510fe794': `Ďũō ƥũśĥ-ńōţĩƒĩćàţĩōńś`,
's90064dd5c4dde2c6': `Ƥĺēàśē śćàń ţĥē ǪŔ ćōďē àƀōvē ũśĩńĝ ţĥē Ḿĩćŕōśōƒţ Àũţĥēńţĩćàţōŕ, Ĝōōĝĺē Àũţĥēńţĩćàţōŕ, ōŕ ōţĥēŕ àũţĥēńţĩćàţōŕ àƥƥś ōń ŷōũŕ ďēvĩćē, àńď ēńţēŕ ţĥē ćōďē ţĥē ďēvĩćē ďĩśƥĺàŷś ƀēĺōŵ ţō ƒĩńĩśĥ śēţţĩńĝ ũƥ ţĥē ḾƑÀ ďēvĩćē.`,
's9117fb5195e75151': `Ńōţĩćē`,
's91ae4b6bf981682b': `àũţĥēńţĩķ Ĺōĝō`,
's92ca679592a36b35': `Śēćŕēţ ŵàś ŕōţàţēď`,
's92e22f9319fdb85d': `Ćōńƒĩĝũŕàţĩōń ŵàŕńĩńĝ`,
's95094b57684716a5': `Ƒàĩĺēď ţō vàĺĩďàţē ďēvĩćē.`,
's95474cc8c73dd9c0': `Ţŷƥē ŷōũŕ ŢŌŢƤ ćōďē...`,
's958cedec1cb3fc52': `Śēĺēćţ à ćōńƒĩĝũŕàţĩōń śţàĝē`,
's97f2dc19fa556a6a': `ŚḾŚ`,
's98b1cb8fb62909ec': `Ĝŕōũƥ`,
's98bb2ae796f1ceef': `Śēĺēćţ àńōţĥēŕ àũţĥēńţĩćàţĩōń ḿēţĥōď`,
's98dc556f8bf707dc': `Àƥƥĺĩćàţĩōń ŕēǫũĩŕēś ƒōĺĺōŵĩńĝ ńēŵ ƥēŕḿĩśśĩōńś:`,
's9bd9ba84819493d4': `Śōḿēţĥĩńĝ ŵēńţ ŵŕōńĝ! Ƥĺēàśē ţŕŷ àĝàĩń ĺàţēŕ.`,
's9c6f61dc47bc4f0a': `Ḿōďēĺ ćŕēàţēď`,
's9c73bd29b279d26b': `Ĩḿƥēŕśōńàţĩōń ēńďēď`,
's9d95f09deb601f34': str`Śēŕvēŕ vàĺĩďàţĩōń ōƒ ćŕēďēńţĩàĺ ƒàĩĺēď: ${0}`,
's9e568afec3810bfe': `Ŕēćōvēŕŷ ķēŷś`,
'sa03aa46068460c95': `Ƒōŕĝōţ ũśēŕńàḿē ōŕ ƥàśśŵōŕď?`,
'sa0e0bdd7e244416b': `Śũśƥĩćĩōũś ŕēǫũēśţ`,
'sa11e92683c5860c7': `Ŕēǫũēśţ ĥàś ƀēēń ďēńĩēď.`,
'sa13e6c8310000e30': `Śēśśĩōń ĨĎ`,
'sa17ce23517e56461': `Àũţĥēńţĩćàţĩōń ƒōŕḿ`,
'sa1b41e334ad89d94': `Śēćŕēţ ŵàś vĩēŵēď`,
'sa266303caf1bd27f': `Ēḿàĩĺ śēńţ`,
'sa48f81f001b893d2': `Ũśēŕ`,
'sa4be93eb7f4e51e3': `Śĩţē ĺĩńķś`,
'sa50a6326530d8a0d': `Śĥōŵ ĺēśś`,
'sa5562e0115ffbccd': `Ţĩḿē-ƀàśēď ōńē-ţĩḿē ƥàśśŵōŕď`,
'saa088a2d0f90d5a9': str`Ƥōśţĩńĝ ĺōĝōũţ ŕēśƥōńśē ţō ŚÀḾĹ ƥŕōvĩďēŕ: ${0}`,
'sac17f177f884e238': `Śţàŷ śĩĝńēď ĩń?`,
'sac315d5bd28d4efa': `Ďōń'ţ Ƥàśś`,
'sac88482c48453fc8': str`Ŷōũ'vē ĺōĝĝēď ōũţ ōƒ ${0}. Ŷōũ ćàń ĝō ƀàćķ ţō ţĥē ōvēŕvĩēŵ ţō ĺàũńćĥ àńōţĥēŕ àƥƥĺĩćàţĩōń, ōŕ ĺōĝ ōũţ ōƒ ŷōũŕ àũţĥēńţĩķ àććōũńţ.`,
'sad46bcad1a343b51': `Ŕēvĩēŵ ōvēŕďũē`,
'sae5d87e99fe081e0': `Ŕēǫũĩŕēď`,
'sb0821a9e92cac5eb': `Ƒàĩĺēď ţō ŕēĝĩśţēŕ. Ƥĺēàśē ţŕŷ àĝàĩń.`,
'sb15fe7b9d09bb419': `Ĩƒ ńō Ƥĺēx ƥōƥũƥ ōƥēńś, ćĺĩćķ ţĥē ƀũţţōń ƀēĺōŵ.`,
'sb166ce92e8e807d6': `Ŕēţŕŷ ŕēĝĩśţŕàţĩōń`,
'sb1c91762ae3a9bee': `Ĩḿƥēŕśōńàţĩōń śţàŕţēď`,
'sb25e689e00c61829': `Ũśē à ćōďē-ƀàśēď àũţĥēńţĩćàţōŕ.`,
'sb2c57b2d347203dd': `Śĥōŵ ḿōŕē`,
'sb2f307e79d20bb56': `Ćũŕŕēńţ ƥĺàń ćōńţēxţ`,
'sb3fa80ccfa97ee54': `Śţàĝē ńàḿē`,
'sb4564c127ab8b921': `Ƒàĩĺēď ĺōĝĩń`,
'sb59d68ed12d46377': `Ĺōàďĩńĝ`,
'sb69e43f2f6bd1b54': `Ćĺōśē ƒĺōŵ ĩńśƥēćţōŕ`,
'sb6d7128df5978cee': `Ƥōĺĩćŷ ēxćēƥţĩōń`,
'sb94beab52540d2b7': `Ţĥē ĆÀƤŢĆĤÀ ćĥàĺĺēńĝē ƒàĩĺēď ţō ĺōàď.`,
'sbc625b4c669b9ce8': `Ōƥēń ĺōĝĩń`,
'sbd19064fc3f405c1': `Ćĥēćķ ŷōũŕ Ĩńƀōx ƒōŕ à vēŕĩƒĩćàţĩōń ēḿàĩĺ.`,
'sbea3c1e4f2fd623d': `Śţàĝē ķĩńď`,
'sc091f75b942ec081': `ǪŔ-Ćōďē ţō śēţũƥ à ţĩḿē-ƀàśēď ōńē-ţĩḿē ƥàśśŵōŕď`,
'sc0a0c87d5c556c38': `Ƥĥōńē ńũḿƀēŕ`,
'sc2ec367e3108fe65': `Ďũō àćţĩvàţĩōń ǪŔ ćōďē`,
'sc3e1c4f1fff8e1ca': `Ţĥĩś ƒĺōŵ ĩś ćōḿƥĺēţēď.`,
'sc4eedb434536bdb4': `Ńēēď àń àććōũńţ?`,
'sc5668cb23167e9bb': `Àĺţēŕńàţĩvēĺŷ, ĩƒ ŷōũŕ ćũŕŕēńţ ďēvĩćē ĥàś Ďũō ĩńśţàĺĺēď, ćĺĩćķ ōń ţĥĩś ĺĩńķ:`,
'sc78d16417878afd0': `Ćōƥŷ Śēćŕēţ`,
'sc8da3cc71de63832': `Ĺōĝĩń`,
'sc92a7248dba5f388': `Ōƥēń ŷōũŕ àũţĥēńţĩćàţōŕ àƥƥ ţō ŕēţŕĩēvē à ōńē-ţĩḿē ũśē ćōďē.`,
'sc9f69360b58706c7': `Ḿōďēĺ ďēĺēţēď`,
'sca83a1f9227f74b9': `ŚÀḾĹ ĺōĝōũţ ćōḿƥĺēţē`,
'scb489a1a173ac3f0': `Ŷēś`,
'scd909e0bc55fc548': `Śēćũŕĩţŷ ķēŷ`,
'scedf77e8b75cad5a': `Ƥĺēàśē ēńţēŕ ŷōũŕ ēḿàĩĺ àďďŕēśś.`,
'scf5ce91bfba10a61': `Ƥĺēàśē ēńţēŕ ŷōũŕ ƥàśśŵōŕď`,
'sd0de938d9c37ad5f': `Ũśē à Ƥàśśķēŷ ōŕ śēćũŕĩţŷ ķēŷ ţō ƥŕōvē ŷōũŕ ĩďēńţĩţŷ.`,
'sd1f44f1a8bc20e67': `Ēḿàĩĺ`,
'sd2b8c1caa0340ed6': `Ƒàĩĺēď ţō àũţĥēńţĩćàţē`,
'sd5d2b94a1ccba1a9': str`Ĺōĝ ĩń ţō ćōńţĩńũē ţō ${0}.`,
'sd6a025d66f2637d1': `Ţŕàďĩţĩōńàĺ àũţĥēńţĩćàţōŕ`,
'sd73b202ec04eefd9': `Ũńķńōŵń ĩńţēńţ`,
'sd766cdc29b25ff95': `Àũţĥēńţĩćàţĩńĝ ŵĩţĥ Àƥƥĺē...`,
'sd8f220c999726151': `Ŕēďĩŕēćţ`,
'sdaecc3c29a27c5c5': `Àń ũńķńōŵń ēŕŕōŕ ōććũŕŕēď`,
'sdb749e793de55478': str`Ĺōĝ ōũţ ōƒ ${0}`,
'sdc9e222be9612939': `Śōũŕćē ĺĩńķēď`,
'sdd2ea73c24b40d5d': `Śĩţē ƒōōţēŕ`,
'sdea479482318489d': `Śţàţũś ḿēśśàĝēś`,
'sdf2794b96386c868': `Ćōƥŷ ţĩḿē-ƀàśēď ōńē-ţĩḿē ƥàśśŵōŕď śēćŕēţ`,
'se2d65e13768468e0': `Ĩńţēŕńàĺ`,
'se2f258b996f7279c': `Śŷśţēḿ ţàśķ ēxćēƥţĩōń`,
'se409d01b52c4e12f': `Ŕēţŕŷ àũţĥēńţĩćàţĩōń`,
'se5fd752dbbc3cd28': `Ũśē à śēćũŕĩţŷ ķēŷ`,
'se84ba7f105934495': `Ƥĺēàśē ćĥēćķ ţĥē ƀŕōŵśēŕ ćōńśōĺē ƒōŕ ḿōŕē ďēţàĩĺś.`,
'se99d25eb70c767ef': `Vēŕĩƒŷĩńĝ ŷōũŕ ďēvĩćē...`,
'se9e9e1d6799b86a5': `ŴēƀÀũţĥń ńōţ śũƥƥōŕţēď ƀŷ ƀŕōŵśēŕ.`,
'seb0c08d9f233bbfe': `Ƥĺēàśē ēńţēŕ ţĥē ćōďē ŷōũ ŕēćēĩvēď vĩà ŚḾŚ`,
'seb6ab868740e4e36': str`Ćōńţĩńũē ŵĩţĥ ${0}`,
'sf0ceaf3116e31fd4': `Àń ũńķńōŵń ďēvĩćē ćĺàśś ŵàś ƥŕōvĩďēď.`,
'sf1ec4acb8d744ed9': `Àĺēŕţ`,
'sf29883ac9ec43085': `Àƥƥ ƥàśśŵōŕď`,
'sf376ae7e9ef41c1a': `Àũţĥēńţĩćàţĩńĝ ŵĩţĥ Ţēĺēĝŕàḿ...`,
'sf6e1665c7022a1f8': `Ƥàśśŵōŕď`,
'sf8f49cdbf0036343': `Ćōńƒĩĝũŕàţĩōń ēŕŕōŕ`,
'sf910cca0f06bbc31': `Ēńţēŕ ţĥē ēḿàĩĺ àďďŕēśś ōŕ ũśēŕńàḿē àśśōćĩàţēď ŵĩţĥ ŷōũŕ àććōũńţ.`,
'sfcfcf85a57eea78a': `ŢŌŢƤ Ďēvĩćē`,
'sfe211545fd02f73e': `Vēŕĩƒĩćàţĩōń`,
'sfe629863ba1338c2': `Ćōńńēćţĩōń ēŕŕōŕ, ŕēćōńńēćţĩńĝ...`,
'sff930bf2834e2201': `Śēŕvĩćē àććōũńţ (ĩńţēŕńàĺ)`,
'sffef1a8596bc58bb': `Àũţĥēńţĩćàţĩńĝ...`,
'stage.authenticator.email.sent': `À vēŕĩƒĩćàţĩōń ţōķēń ĥàś ƀēēń śēńţ ţō ŷōũŕ ēḿàĩĺ àďďŕēśś.`,
'stage.authenticator.email.sent-to-address': str`À vēŕĩƒĩćàţĩōń ţōķēń ĥàś ƀēēń śēńţ ţō ŷōũŕ ćōńƒĩĝũŕēď ēḿàĩĺ àďďŕēśś: ${0}`,
'totp.config': `ŢŌŢƤ Ćōńƒĩĝ`,
'totp.config.clipboard.description': `Ƥàśţē ţĥĩś ŨŔĹ ĩńţō ŷōũŕ àũţĥēńţĩćàţōŕ àƥƥ ţō śēţ ũƥ à ţĩḿē-ƀàśēď ōńē-ţĩḿē ƥàśśŵōŕď.`,
'totp.secret': `ŢŌŢƤ Śēćŕēţ`,
'totp.secret.clipboard.description': `Ƥàśţē ţĥĩś śēćŕēţ ĩńţō ŷōũŕ àũţĥēńţĩćàţōŕ àƥƥ ţō śēţ ũƥ à ţĩḿē-ƀàśēď ōńē-ţĩḿē ƥàśśŵōŕď.`,
'zh-Hans': `Ćĥĩńēśē (Śĩḿƥĺĩƒĩēď)`,
'zh-Hant': `Ćĥĩńēśē (Ţŕàďĩţĩōńàĺ)`,
};

View File

@@ -0,0 +1,252 @@
// Do not modify this file by hand!
// Re-generate this file by running lit-localize
import {str} from '@lit/localize';
/* eslint-disable no-irregular-whitespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
export const templates = {
'en': `Inglés`,
'ja-JP': `Japonés`,
'ko-KR': `Coreano`,
'language-selector-label': `Seleccionar idioma`,
'locale-auto-detect-option': `Detección automática`,
's009bd1c98a9f5de2': `No se pudo registrar`,
's02240309358f557c': `Gravedad desconocida`,
's0382d73823585617': str`
${0}:
${1}`,
's03f42eea72154959': `Nombre usuario`,
's042baf59902a711f': `Política`,
's04c1210202f48dc9': `Por favor, introduzca su número de teléfono.`,
's06bfe45ffef2cf60': str`Nombre de etapa: ${0}`,
's091d5407b5b32e84': `O`,
's09205907b5b56cda': `No`,
's0e516232f2ab4e04': `Tokens enviados por SMS.`,
's12d6dde9b30c3093': `Desestimar`,
's14c552fb0a4c0186': `La aplicación requiere los siguientes permisos:`,
's197420b40df164f8': `Seguir la redirección`,
's1a635369edaf4dc3': `Cuenta de servicio`,
's1c336c2d6cef77b3': `Recuérdame en este dispositivo`,
's1cd198d689c66e4b': `Acceso a la API`,
's1cd264012278c047': `Ejecución de flujo`,
's21d95b4651ad7a1e': `Introduzca un código de recuperación único para este usuario.`,
's238784fc1dc672ae': `Registrando...`,
's2543cffd6ebb6803': `Ejecución de tarea del sistema`,
's296fbffaaa7c910a': `Necesario.`,
's2bc8aa1740d3da34': `Objeto escénico`,
's2c8189544e3ea679': `Intentar de nuevo`,
's2ddbebcb8a49b005': `Esperando autenticación...`,
's2e1d5a7d320c25ef': `Ingresa el código de tu dispositivo autenticador.`,
's2e422519ed38f7d8': `Aprobado`,
's2f7f35f6a5b733f5': `Mostrar contraseña`,
's30d6ff9e15e0a40a': `Verificando...`,
's3108167b562674e2': `Volver a la vista general`,
's31fba571065f2c87': `Asegúrese de guardar estas fichas en un lugar seguro.`,
's32f04d33924ce8ad': `Ejecución de políticas`,
's342eccabf83c9bde': `Historial del plan`,
's34be76c6b1eadbef': `Aviso`,
's363abde8a254ea5f': `Falló la autenticación. Por favor inténtalo de nuevo.`,
's3643189d1abbb7f4': `Código`,
's38f774cd7e9b9dad': `Inscríbete.`,
's39002897db60bb28': `Enviando notificación push de Duo`,
's3ab772345f78aee0': `inspector de flujo`,
's3cd84e82e83e35ad': `Por favor, introduzca su código`,
's3f8a07912545e72e': `Configura tu correo electrónico`,
's4090dd0c0e45988b': `ID de Solicitud`,
's420d2cdedcaf8cd0': `Autenticando con Plex...`,
's452f791e0ff6a13e': `Ocultar contraseña`,
's455a8fc21077e7f9': `Has autenticado tu dispositivo correctamente.`,
's47490298c17b753a': `Reciba una notificación push en su dispositivo.`,
's47a4983a2c6bb749': `Modelo actualizado`,
's49730f3d5751a433': `Cargando...`,
's4d7fe7be1c49896c': `Puedes cerrar esta página ahora.`,
's502884e1977b2c06': `Próxima etapa`,
's521681ed1d5ff814': str`Volver a iniciar sesión ${0}`,
's5f496533610103f2': `Solicitud autorizada`,
's5f5bf4ef2bd93c04': `Las asignaciones de grupo solo puede verificarse si un usuario ya ha iniciado sesión al intentar acceder a esta fuente.`,
's61e48919db20538a': `UPN`,
's67749057edb2586b': `Cerrar sesión`,
's67ac11d47f1ce794': `WebAuthn requiere que esta página se acceda a través de HTTPS.`,
's6ac670086eb137c6': `Recuperación`,
's6bb30c61df4cf486': `Bloqueo de mayúsculas activado.`,
's6c410fedda2a575f': `Actualización disponible`,
's6c607d74bdfe9f36': `Las asignaciones de usuario solo puede verificarse si un usuario ya ha iniciado sesión al intentar acceder a esta fuente.`,
's6ecfc18dbfeedd76': `Selecciona una de las opciones siguientes para continuar.`,
's6fe64b4625517333': `Desarrollado por authentik`,
's7073489bb01b3c24': `La aplicación ya tiene acceso a los siguientes permisos:`,
's708d9a4a0db0be8f': `Comprobar el estado`,
's721d94ae700b5dfd': `Activación dúo`,
's77f572257f69a8db': `Excepción de Asignación de Propiedades`,
's7abc9d08b0f70fd6': `Token estático`,
's7bda44013984fc48': `Conjunto de contraseñas`,
's7cdd62c100b6b17b': `Por favor, ingresa el código que recibiste por correo electrónico`,
's7e537ad68d7c16e1': `Se escribió al usuario a`,
's7fa4e5e409d43573': str`Error al crear la credencial:
${0}`,
's81ecf2d4386b8e84': `Continuar`,
's81eff3409d572a21': `Excepción general del sistema`,
's833cfe815918c143': `Tokens enviados por correo electrónico.`,
's844fea0bfb10a72a': `Código de autenticación`,
's84fcddede27b8e2a': `Externo`,
's85366fac18679f28': `¿Has olvidado tu contraseña`,
's858e7ac4b3cf955f': `Fichas estáticas`,
's859b2e00391da380': `Seleccione Sí para reducir la cantidad de veces que se le solicita iniciar sesión.`,
's8939f574b096054a': `¿No eres tú?`,
's8a1d9403ca90989b': `Invitación utilizada`,
's8aff572e64b7936b': `Vuelve a enviar el correo electrónico.`,
's8d857061510fe794': `Notificaciones push dúo`,
's90064dd5c4dde2c6': `Escanee el código QR de arriba usando Microsoft Authenticator, Google Authenticator u otras aplicaciones de autenticación en su dispositivo, e ingresa el código que muestra a continuación para terminar de configurar el dispositivo MFA.`,
's9117fb5195e75151': `Notificación`,
's91ae4b6bf981682b': `Logotipo de authentik`,
's92ca679592a36b35': `Se ha rotado el`,
's97f2dc19fa556a6a': `SMS`,
's98b1cb8fb62909ec': `Grupo`,
's98bb2ae796f1ceef': `Seleccione otro método de autenticación`,
's98dc556f8bf707dc': `La aplicación requiere los siguientes permisos nuevos:`,
's9bd9ba84819493d4': `¡Algo salió mal! Inténtelo de nuevo más tarde.`,
's9c6f61dc47bc4f0a': `Modelo creado`,
's9c73bd29b279d26b': `Finalizó la personificación`,
's9d95f09deb601f34': str`La validación del servidor de la credencial falló:
${0}`,
's9e568afec3810bfe': `Teclas de recuperación`,
'sa03aa46068460c95': `¿Olvidaste tu nombre de usuario o contraseña?`,
'sa0e0bdd7e244416b': `Solicitud sospechosa`,
'sa11e92683c5860c7': `Se ha denegado la solicitud.`,
'sa13e6c8310000e30': `ID de sesión`,
'sa1b41e334ad89d94': `Se ha visto el secreto`,
'sa266303caf1bd27f': `Correo electrónico enviado`,
'sa48f81f001b893d2': `Usuario`,
'sa50a6326530d8a0d': `Mostrar menos`,
'sac17f177f884e238': `¿Mantener sesión iniciada?`,
'sac315d5bd28d4efa': `No Pasa`,
'sac88482c48453fc8': str`Has cerrado sesión de ${0}. Puede volver a la descripción general para iniciar otra aplicación o cerrar sesión en su cuenta de authentik.`,
'sae5d87e99fe081e0': `Requerido`,
'sb0821a9e92cac5eb': `Error al registrarse. Por favor, inténtalo de nuevo.`,
'sb15fe7b9d09bb419': `Si no se abre una ventana emergente de Plex, haga clic en el botón de abajo.`,
'sb166ce92e8e807d6': `Reintentar registro`,
'sb1c91762ae3a9bee': `Inició la personificación`,
'sb25e689e00c61829': `Use un autenticador basado en código.`,
'sb2c57b2d347203dd': `Mostrar más`,
'sb2f307e79d20bb56': `Contexto actual del plan`,
'sb3fa80ccfa97ee54': `Nombre artístico`,
'sb4564c127ab8b921': `Inicio de sesión incorrecto`,
'sb59d68ed12d46377': `Cargando`,
'sb6d7128df5978cee': `Excepción de política`,
'sbc625b4c669b9ce8': `Abrir inicio de sesión`,
'sbd19064fc3f405c1': `Busca un correo electrónico de verificación en tu bandeja de entrada.`,
'sbea3c1e4f2fd623d': `Tipo de escenario`,
'sc0a0c87d5c556c38': `Número de teléfono`,
'sc2ec367e3108fe65': `Código QR de activación de Duo`,
'sc3e1c4f1fff8e1ca': `Este flujo se ha completado.`,
'sc4eedb434536bdb4': `¿Necesitas una cuenta?`,
'sc5668cb23167e9bb': `Como alternativa, si su dispositivo actual tiene instalado Duo, haga clic en este enlace:`,
'sc8da3cc71de63832': `Iniciar sesión`,
'sc9f69360b58706c7': `Modelo eliminado`,
'scb489a1a173ac3f0': ``,
'scedf77e8b75cad5a': `Por favor, ingresa tu dirección de correo electrónico.`,
'scf5ce91bfba10a61': `Por favor, introduzca su contraseña`,
'sd1f44f1a8bc20e67': `Correo`,
'sd2b8c1caa0340ed6': `No se pudo autenticar`,
'sd6a025d66f2637d1': `Autenticador Tradicional`,
'sd73b202ec04eefd9': `Intento desconocido`,
'sd766cdc29b25ff95': `Autenticando con Apple...`,
'sd8f220c999726151': `Redirigir`,
'sdb749e793de55478': str`Cerrar sesión de ${0}`,
'sdc9e222be9612939': `Fuente enlazada`,
'sdea479482318489d': `Mensaje de estado`,
'se2d65e13768468e0': `Interno`,
'se2f258b996f7279c': `Excepción tarea del sistema`,
'se409d01b52c4e12f': `Reintentar la autenticación`,
'se5fd752dbbc3cd28': `Use una llave de seguridad`,
'se9e9e1d6799b86a5': `WebAuthn no es compatible con el navegador.`,
'seb0c08d9f233bbfe': `Por favor, ingresa el código que recibiste por SMS.`,
'sf1ec4acb8d744ed9': `Alerta`,
'sf29883ac9ec43085': `contraseña de la aplicación`,
'sf6e1665c7022a1f8': `Contraseña`,
'sf8f49cdbf0036343': `Error de configuración`,
'sfcfcf85a57eea78a': `Dispositivo TOTP`,
'sfe211545fd02f73e': `Verificación`,
'sfe629863ba1338c2': `Error de conexión, reconexión...`,
'sff930bf2834e2201': `Cuenta de servicio (interna)`,
'sffef1a8596bc58bb': `Autenticando...`,
'zh-Hans': `Chino`,
'zh-Hant': `Chino`,
'en-XA': `English (Pseudo-Accents)`,
'locale-option-localized-label': str`${0} (${1})`,
'sa4be93eb7f4e51e3': `Site links`,
'sdaecc3c29a27c5c5': `An unknown error occurred`,
'se84ba7f105934495': `Please check the browser console for more details.`,
'sb69e43f2f6bd1b54': `Close flow inspector`,
's857cf5aa8955cf5c': `Flow inspector loading`,
's3736936aac1adc2e': `Open flow inspector`,
's15d6fabebb4ef2d8': `User information`,
'avatar.alt-text-for-user': str`Avatar for ${0}`,
'avatar.alt-text': `User avatar`,
'sf376ae7e9ef41c1a': `Authenticating with Telegram...`,
's76ea993fdc8503d8': `Click the button below to start.`,
's6e858c4c4c3b6b76': `You're about to be redirected to the following URL.`,
's7f073c746d0f6324': `Form actions`,
's0b1ffff8bedd6b8a': `Unknown Provider`,
's777e86d562523c85': `Logging out of providers...`,
's4980379bf8461c2d': `Single Logout`,
's23da7320dee28a60': `Device Code`,
's78869b8b2bc26d0d': `SAML Provider`,
'sca83a1f9227f74b9': `SAML logout complete`,
's7b90eab7969ae056': str`Redirecting to SAML provider: ${0}`,
'saa088a2d0f90d5a9': str`Posting logout response to SAML provider: ${0}`,
's3e6174b645d96835': str`Posting logout request to SAML provider: ${0}`,
'flow.navigation.go-back': `Go back`,
'stage.authenticator.email.sent-to-address': str`A verification token has been sent to your configured email address: ${0}`,
'stage.authenticator.email.sent': `A verification token has been sent to your email address.`,
'clipboard.write.success.message.entity': str`${0} copied to clipboard.`,
'clipboard.write.success.generic': `Copied to clipboard.`,
'clipboard.write.failure.description': `Clipboard not available. Please copy the value manually.`,
'totp.config': `TOTP Config`,
'totp.config.clipboard.description': `Paste this URL into your authenticator app to set up a time-based one-time password.`,
'totp.secret': `TOTP Secret`,
'totp.secret.clipboard.description': `Paste this secret into your authenticator app to set up a time-based one-time password.`,
'sc091f75b942ec081': `QR-Code to setup a time-based one-time password`,
's6db67c7681b8be6e': `Copy time-based one-time password configuration`,
's43e859bf711e3599': `Copy TOTP Config`,
'sdf2794b96386c868': `Copy time-based one-time password secret`,
'sc78d16417878afd0': `Copy Secret`,
'sa5562e0115ffbccd': `Time-based one-time password`,
's40f44c0d88807fd5': `TOTP Code`,
's95474cc8c73dd9c0': `Type your TOTP code...`,
's168d0c138b63286d': `Type your time-based one-time password code.`,
's92e22f9319fdb85d': `Configuration warning`,
's1af2337b6d11d4c6': `Data export ready`,
's776d93092ad9ce90': `Review initiated`,
'sad46bcad1a343b51': `Review overdue`,
's59d168d966cecbaf': `Review attested`,
's5158b7f014cecefc': `Review completed`,
's482bc55a78891ef7': str`A code has been sent to your address: ${0}`,
's5afa3fc77ce8d94d': `A code has been sent to your email address.`,
's37f47fa981493c3b': `A one-time use code has been sent to you via SMS text message.`,
'sc92a7248dba5f388': `Open your authenticator app to retrieve a one-time use code.`,
'sb94beab52540d2b7': `The CAPTCHA challenge failed to load.`,
's8d6236ad153d42c0': `CAPTCHA challenge`,
's217a96c47caaf73d': `Could not find a suitable CAPTCHA provider.`,
'sf910cca0f06bbc31': `Enter the email address or username associated with your account.`,
'sd5d2b94a1ccba1a9': str`Log in to continue to ${0}.`,
'seb6ab868740e4e36': str`Continue with ${0}`,
's53dddf1733e26c98': `Login sources`,
's05a941e4b4bfca9f': `Additional actions`,
's14e8ac4d377a1a99': `Type an authentication code...`,
'scd909e0bc55fc548': `Security key`,
'sd0de938d9c37ad5f': `Use a Passkey or security key to prove your identity.`,
's8bb0a1b672b52954': `In case you lose access to your primary authenticators.`,
's76d21e163887ddd1': `Unknown device`,
'sf0ceaf3116e31fd4': `An unknown device class was provided.`,
's610fced3957d0471': `Select an authentication method`,
's958cedec1cb3fc52': `Select a configuration stage`,
's95094b57684716a5': `Failed to validate device.`,
'se99d25eb70c767ef': `Verifying your device...`,
'sdd2ea73c24b40d5d': `Site footer`,
'sa17ce23517e56461': `Authentication form`,
};

View File

@@ -0,0 +1,252 @@
// Do not modify this file by hand!
// Re-generate this file by running lit-localize
import {str} from '@lit/localize';
/* eslint-disable no-irregular-whitespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
export const templates = {
'en': `Englanti`,
'ja-JP': `Japani`,
'ko-KR': `Korea`,
'language-selector-label': `Valitse kieli`,
'locale-auto-detect-option': `Tunnista automaattisesti`,
's009bd1c98a9f5de2': `Rekisteröityminen epäonnistui`,
's02240309358f557c': `Tuntematon vakavuusaste`,
's0382d73823585617': str`
${0}:
${1}`,
's03f42eea72154959': `Käyttäjätunnus`,
's042baf59902a711f': `Käytäntö`,
's04c1210202f48dc9': `Kirjoita puhelinnumerosi.`,
's06bfe45ffef2cf60': str`Vaiheen nimi: ${0}`,
's091d5407b5b32e84': `Tai`,
's09205907b5b56cda': `Ei`,
's0b1ffff8bedd6b8a': `Tuntematon palveluntarjoaja`,
's0e516232f2ab4e04': `Tunnisteet lähetetty tekstiviestinä.`,
's12d6dde9b30c3093': `Sulje`,
's14c552fb0a4c0186': `Sovellus tarvitsee seuraavat käyttöoikeudet:`,
's14e8ac4d377a1a99': `Kirjoita todennuskoodi...`,
's15d6fabebb4ef2d8': `Käyttäjän tiedot`,
's168d0c138b63286d': `Kirjoita aikaperusteinen kertakäyttösalasanasi.`,
's197420b40df164f8': `Seuraa uudelleenohjausta`,
's1a635369edaf4dc3': `Palvelutili`,
's1c336c2d6cef77b3': `Muista minut tällä laitteella`,
's1cd198d689c66e4b': `Rajapintapääsy`,
's1cd264012278c047': `Prosessin suoritus`,
's21d95b4651ad7a1e': `Kirjoita kertakäyttöinen palautuskoodi tälle käyttäjälle.`,
's238784fc1dc672ae': `Rekisteröidään...`,
's23da7320dee28a60': `Laitekoodi`,
's2543cffd6ebb6803': `Järjestelmän tehtävän suoritus`,
's296fbffaaa7c910a': `Pakollinen.`,
's2bc8aa1740d3da34': `Vaiheobjekti`,
's2c8189544e3ea679': `Yritä uudelleen`,
's2ddbebcb8a49b005': `Odotetaan tunnistautumista...`,
's2e1d5a7d320c25ef': `Kirjoita koodi todentajalaitteeltasi.`,
's2e422519ed38f7d8': `Päästä läpi`,
's2f7f35f6a5b733f5': `Näytä salasana`,
's30d6ff9e15e0a40a': `Vahvistetaan...`,
's3108167b562674e2': `Palaa yleisnäkymään`,
's31fba571065f2c87': `Pidä nämä tunnisteet turvallisessa paikassa.`,
's32f04d33924ce8ad': `Käytännön suoritus`,
's342eccabf83c9bde': `Suunnitelman historia`,
's34be76c6b1eadbef': `Varoitus`,
's363abde8a254ea5f': `Tunnistautuminen epäonnistui. Yritä uudelleen.`,
's3643189d1abbb7f4': `Koodi`,
's3736936aac1adc2e': `Avaa prosessin tarkastaja`,
's37f47fa981493c3b': `Kertakäyttöinen koodi on lähetetty sinulle tekstiviestinä.`,
's38f774cd7e9b9dad': `Luo tunnus.`,
's39002897db60bb28': `Lähetetään Duo-push-notifikaatiota...`,
's3ab772345f78aee0': `Prosessin tarkastaja`,
's3cd84e82e83e35ad': `Kirjoita koodisi`,
's3e6174b645d96835': str`Uloskirjautumispyyntö lähetetään SAML-palveluntarjoajalle: ${0}`,
's3f8a07912545e72e': `Määritä sähköpostisi`,
's4090dd0c0e45988b': `Pyynnön ID`,
's40f44c0d88807fd5': `TOTP-koodi`,
's420d2cdedcaf8cd0': `Tunnistaudutaan Plexillä...`,
's43e859bf711e3599': `Kopioi TOTP-konfiguraatio`,
's452f791e0ff6a13e': `Piilota salasana`,
's455a8fc21077e7f9': `Olet tunnistautunut laitteellasi.`,
's47490298c17b753a': `Vastaanota push-notifikaatio laitteellasi.`,
's47a4983a2c6bb749': `Malli päivitetty`,
's482bc55a78891ef7': str`Koodi on lähetetty osoitteeseesi: ${0}`,
's49730f3d5751a433': `Lataa...`,
's4980379bf8461c2d': `Kertauloskirjautuminen`,
's4d7fe7be1c49896c': `Voit sulkea tämän sivun nyt.`,
's502884e1977b2c06': `Seuraava vaihe`,
's521681ed1d5ff814': str`Kirjaudu takaisin palveluun ${0}`,
's5afa3fc77ce8d94d': `Koodi on lähetetty sähköpostiosoitteeseesi.`,
's5f496533610103f2': `Sovellus valtuutettu`,
's5f5bf4ef2bd93c04': `Ryhmien kytkennät voidaan tarkistaa vain jos käyttäjä on jo kirjautunut yrittäessään käyttää tätä lähdettä.`,
's610fced3957d0471': `Valitse todennustapa`,
's61e48919db20538a': `UPN`,
's67749057edb2586b': `Kirjaudu ulos`,
's67ac11d47f1ce794': `WebAuthn edellyttää, että tämä sivu on käytettävissä HTTPS:n yli`,
's6ac670086eb137c6': `Palautus`,
's6bb30c61df4cf486': `Caps Lock on päällä.`,
's6c410fedda2a575f': `Päivitys saatavilla`,
's6c607d74bdfe9f36': `Käyttäjien kytkennät voidaan tarkistaa vain jos käyttäjä on jo kirjautunut yrittäessään käyttää tätä lähdettä.`,
's6db67c7681b8be6e': `Kopioi aikaperusteisen kertakäyttösalasanan konfiguraatio`,
's6ecfc18dbfeedd76': `Valitse yksi alla olevista vaihtoehdoista jatkaaksesi.`,
's6fe64b4625517333': `Käyttää authentikiä`,
's7073489bb01b3c24': `Sovelluksella on jo seuraavat käyttöoikeudet:`,
's708d9a4a0db0be8f': `Tarkista tila`,
's721d94ae700b5dfd': `Duo-aktivointi`,
's76d21e163887ddd1': `Tuntematon laite`,
's76ea993fdc8503d8': `Napauta alla olevaa painiketta aloittaaksesi.`,
's777e86d562523c85': `Kirjaudutaan ulos palveluntarjoajilta...`,
's77f572257f69a8db': `Ominaisuuskytkennän virhe`,
's78869b8b2bc26d0d': `SAML-palveluntarjoaja`,
's7abc9d08b0f70fd6': `Staattinen tunniste`,
's7b90eab7969ae056': str`Ohjataan SAML-palveluntarjoajaan: ${0}`,
's7bda44013984fc48': `Salasana asetettu`,
's7cdd62c100b6b17b': `Kirjoita koodi, jonka sait sähköpostilla`,
's7e537ad68d7c16e1': `Käyttäjä kirjoitettiin`,
's7f073c746d0f6324': `Lomakkeen toiminnot`,
's7fa4e5e409d43573': str`Valtuutuksen luonti epäonnistui:
${0}`,
's81ecf2d4386b8e84': `Jatka`,
's81eff3409d572a21': `Yleinen järjestelmävirhe`,
's833cfe815918c143': `Tunnisteet lähetetty sähköpostina.`,
's844fea0bfb10a72a': `Todennuskoodi`,
's84fcddede27b8e2a': `Ulkoinen`,
's85366fac18679f28': `Unohditko salasanasi?`,
's857cf5aa8955cf5c': `Prosessin tarkastajaa ladataan`,
's858e7ac4b3cf955f': `Staattiset tunnisteet`,
's859b2e00391da380': `Valitse kyllä vähentääksesi sitä, kuinka usein sinua pyydetään kirjautumaan sisään.`,
's8939f574b096054a': `Et sinä?`,
's8a1d9403ca90989b': `Kutsua käytetty`,
's8aff572e64b7936b': `Lähetä sähköposti uudelleen.`,
's8bb0a1b672b52954': `Siltä varalta, että menetät pääsyn ensisijaisiin todentajiisi.`,
's8d6236ad153d42c0': `CAPTCHA-haaste`,
's8d857061510fe794': `Duo:n push-notifikaatiot`,
's90064dd5c4dde2c6': `Skannaa yllä oleva QR-koodi Microsoft Authenticatorilla, Google Authenticatorilla tai jollakin muulla laitteeltasi löytyvällä todentajasovelluksella, ja syötä koodi, jonka laite näyttää alla olevaan kenttään suorittaaksesi MFA-laitteen asennuksen loppuun.`,
's9117fb5195e75151': `Huomio`,
's91ae4b6bf981682b': `authentik Logo`,
's92ca679592a36b35': `Salaisuus kierrätettiin`,
's95474cc8c73dd9c0': `Kirjoita TOTP-koodisi...`,
's958cedec1cb3fc52': `Valitse konfiguraatiovaihe`,
's97f2dc19fa556a6a': `SMS`,
's98b1cb8fb62909ec': `Ryhmä`,
's98bb2ae796f1ceef': `Valitse toinen tunnistautumistapa`,
's98dc556f8bf707dc': `Sovellus tarvitsee seuraavat uudet käyttöoikeudet:`,
's9bd9ba84819493d4': `Jokin meni pieleen! Yritä myöhemmin uudelleen.`,
's9c6f61dc47bc4f0a': `Malli luotu`,
's9c73bd29b279d26b': `Toisena käyttäjänä esiintyminen lopetettu`,
's9d95f09deb601f34': str`Valtuutuksen palvelintarkastus epäonnistui:
${0}`,
's9e568afec3810bfe': `Palautusavaimet`,
'sa03aa46068460c95': `Unohditko käyttäjätunnuksesi tai salasanasi?`,
'sa0e0bdd7e244416b': `Epäilyttävä pyyntö`,
'sa11e92683c5860c7': `Pyyntö on estetty.`,
'sa13e6c8310000e30': `Istunnon ID`,
'sa17ce23517e56461': `Todennuslomake`,
'sa1b41e334ad89d94': `Salaisuus katsottiin`,
'sa266303caf1bd27f': `Sähköposti lähetetty`,
'sa48f81f001b893d2': `Käyttäjä`,
'sa4be93eb7f4e51e3': `Sivuston linkit`,
'sa50a6326530d8a0d': `Näytä vähemmän`,
'sa5562e0115ffbccd': `Aikaperusteinen kertakäyttösalasana`,
'sac17f177f884e238': `Pysy sisäänkirjautuneena?`,
'sac315d5bd28d4efa': `Estä`,
'sac88482c48453fc8': str`Olet kirjautunut ulos palvelusta ${0}. Voit palata yleisnäkymään käynnistääksesi jonkun toisen sovelluksen, tai voit kirjautu ulos authentik-tililtäsi.`,
'sae5d87e99fe081e0': `Pakollinen`,
'sb0821a9e92cac5eb': `Rekisteröityminen epäonnistui. Yritä uudelleen.`,
'sb15fe7b9d09bb419': `Jos Plex-ponnahdusikkuna ei aukea, klikkaa alla olevaa painiketta.`,
'sb166ce92e8e807d6': `Yritä rekisteröitymistä uudelleen`,
'sb1c91762ae3a9bee': `Toisena käyttäjänä esiintyminen aloitettu`,
'sb25e689e00c61829': `Käytä koodipohjaista todentajaa`,
'sb2c57b2d347203dd': `Näytä enemmän`,
'sb2f307e79d20bb56': `Tämänhetkinen suunnitelman konteksti`,
'sb3fa80ccfa97ee54': `Vaiheen nimi`,
'sb4564c127ab8b921': `Kirjautuminen epäonnistui`,
'sb59d68ed12d46377': `Ladataan`,
'sb69e43f2f6bd1b54': `Sulje prosessin tarkastaja`,
'sb6d7128df5978cee': `Käytännön virhe`,
'sbc625b4c669b9ce8': `Avaa kirjautuminen`,
'sbd19064fc3f405c1': `Vahvistusviesti löytyy sähköpostistasi.`,
'sbea3c1e4f2fd623d': `Vaiheen tyyppi`,
'sc091f75b942ec081': `QR-koodi, jolla määritellään aikaperusteinen kertakäyttösalasana`,
'sc0a0c87d5c556c38': `Puhelinnumero`,
'sc2ec367e3108fe65': `Duo-aktivoinnin QR-koodi`,
'sc3e1c4f1fff8e1ca': `Tämä prosessi on suoritettu.`,
'sc4eedb434536bdb4': `Tarvitsetko tilin?`,
'sc5668cb23167e9bb': `Vaihtoehtoisesti, jos Duo on asennettu tälle laitteelle, klikkaa tätä linkkiä:`,
'sc8da3cc71de63832': `Kirjaudu`,
'sc92a7248dba5f388': `Avaa todennussovellus hakeaksesi kertakäyttöisen koodin.`,
'sc9f69360b58706c7': `Malli poistettu`,
'sca83a1f9227f74b9': `SAML-uloskirjautuminen valmis`,
'scb489a1a173ac3f0': `Kyllä`,
'scedf77e8b75cad5a': `Kirjoita sähköpostiosoitteesi.`,
'scf5ce91bfba10a61': `Kirjoita salasanasi`,
'sd1f44f1a8bc20e67': `Sähköposti`,
'sd2b8c1caa0340ed6': `Tunnistautuminen epäonnistui`,
'sd6a025d66f2637d1': `Perinteinen todentaja`,
'sd73b202ec04eefd9': `Tuntematon aikomus`,
'sd766cdc29b25ff95': `Tunnistaudutaan Applella...`,
'sd8f220c999726151': `Uudelleenohjaa`,
'sdaecc3c29a27c5c5': `Tapahtui tuntematon virhe`,
'sdb749e793de55478': str`Kirjaudu ulos palvelusta ${0}`,
'sdc9e222be9612939': `Lähde yhdistetty`,
'sdea479482318489d': `Tilaviestit`,
'se2d65e13768468e0': `Sisäinen`,
'se2f258b996f7279c': `Järjestelmän tehtävän virhe`,
'se409d01b52c4e12f': `Yritä tunnistautumista uudelleen`,
'se5fd752dbbc3cd28': `Käytä turva-avainta`,
'se84ba7f105934495': `Katso lisätietoja selaimen konsolista.`,
'se9e9e1d6799b86a5': `Selain ei tue WebAuthn:ää.`,
'seb0c08d9f233bbfe': `Kirjoita koodi, jonka sait tekstiviestinä`,
'sf0ceaf3116e31fd4': `Tuntematon laiteluokka annettiin.`,
'sf1ec4acb8d744ed9': `Hälytys`,
'sf29883ac9ec43085': `Sovelluksen salasana`,
'sf376ae7e9ef41c1a': `Todennetaan Telegramilla...`,
'sf6e1665c7022a1f8': `Salasana`,
'sf8f49cdbf0036343': `Konfiguraatiovirhe`,
'sfcfcf85a57eea78a': `TOTP-laite`,
'sfe211545fd02f73e': `Vahvistus`,
'sfe629863ba1338c2': `Yhteysvirhe, yhdistetään uudelleen...`,
'sff930bf2834e2201': `Palvelutili (sisäinen)`,
'sffef1a8596bc58bb': `Tunnistaudutaan...`,
'zh-Hans': `Kiina`,
'zh-Hant': `Kiina`,
'en-XA': `English (Pseudo-Accents)`,
'locale-option-localized-label': str`${0} (${1})`,
'avatar.alt-text-for-user': str`Avatar for ${0}`,
'avatar.alt-text': `User avatar`,
's6e858c4c4c3b6b76': `You're about to be redirected to the following URL.`,
'saa088a2d0f90d5a9': str`Posting logout response to SAML provider: ${0}`,
'flow.navigation.go-back': `Go back`,
'stage.authenticator.email.sent-to-address': str`A verification token has been sent to your configured email address: ${0}`,
'stage.authenticator.email.sent': `A verification token has been sent to your email address.`,
'clipboard.write.success.message.entity': str`${0} copied to clipboard.`,
'clipboard.write.success.generic': `Copied to clipboard.`,
'clipboard.write.failure.description': `Clipboard not available. Please copy the value manually.`,
'totp.config': `TOTP Config`,
'totp.config.clipboard.description': `Paste this URL into your authenticator app to set up a time-based one-time password.`,
'totp.secret': `TOTP Secret`,
'totp.secret.clipboard.description': `Paste this secret into your authenticator app to set up a time-based one-time password.`,
'sdf2794b96386c868': `Copy time-based one-time password secret`,
'sc78d16417878afd0': `Copy Secret`,
's92e22f9319fdb85d': `Configuration warning`,
's1af2337b6d11d4c6': `Data export ready`,
's776d93092ad9ce90': `Review initiated`,
'sad46bcad1a343b51': `Review overdue`,
's59d168d966cecbaf': `Review attested`,
's5158b7f014cecefc': `Review completed`,
'sb94beab52540d2b7': `The CAPTCHA challenge failed to load.`,
's217a96c47caaf73d': `Could not find a suitable CAPTCHA provider.`,
'sf910cca0f06bbc31': `Enter the email address or username associated with your account.`,
'sd5d2b94a1ccba1a9': str`Log in to continue to ${0}.`,
'seb6ab868740e4e36': str`Continue with ${0}`,
's53dddf1733e26c98': `Login sources`,
's05a941e4b4bfca9f': `Additional actions`,
'scd909e0bc55fc548': `Security key`,
'sd0de938d9c37ad5f': `Use a Passkey or security key to prove your identity.`,
's95094b57684716a5': `Failed to validate device.`,
'se99d25eb70c767ef': `Verifying your device...`,
'sdd2ea73c24b40d5d': `Site footer`,
};

View File

@@ -0,0 +1,252 @@
// Do not modify this file by hand!
// Re-generate this file by running lit-localize
import {str} from '@lit/localize';
/* eslint-disable no-irregular-whitespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
export const templates = {
'en': `Anglais`,
'ja-JP': `Japonais`,
'ko-KR': `Coréen`,
'language-selector-label': `Sélectionner la langue`,
'locale-auto-detect-option': `Détection automatique`,
's009bd1c98a9f5de2': `Échec de l'enregistrement`,
's02240309358f557c': `Sévérité inconnue`,
's0382d73823585617': str`
${0}:
${1}`,
's03f42eea72154959': `Nom d'utilisateur`,
's042baf59902a711f': `Politique`,
's04c1210202f48dc9': `Veuillez entrer votre numéro de téléphone`,
's06bfe45ffef2cf60': str`Nom de l'étape : ${0}`,
's091d5407b5b32e84': `Ou`,
's09205907b5b56cda': `Non`,
's0b1ffff8bedd6b8a': `Fournisseur inconnu`,
's0e516232f2ab4e04': `Jetons envoyés par SMS.`,
's12d6dde9b30c3093': `Fermer`,
's14c552fb0a4c0186': `Cette application requiert les permissions suivantes :`,
's14e8ac4d377a1a99': `Saisissez un code d'authentification...`,
's15d6fabebb4ef2d8': `Informations utilisateur`,
's168d0c138b63286d': `Saisissez votre code de mot de passe à usage unique basé sur le temps.`,
's197420b40df164f8': `Suivre la redirection`,
's1a635369edaf4dc3': `Compte de service`,
's1c336c2d6cef77b3': `Se souvenir de moi sur cet appareil`,
's1cd198d689c66e4b': `Accès à l'API`,
's1cd264012278c047': `Exécution du flux`,
's21d95b4651ad7a1e': `Entrer un code de récupération à usage unique pour cette utilisateur.`,
's238784fc1dc672ae': `Enregistrement...`,
's23da7320dee28a60': `Code d'équipement`,
's2543cffd6ebb6803': `Exécution de tâche système`,
's296fbffaaa7c910a': `Obligatoire.`,
's2bc8aa1740d3da34': `Objet étap`,
's2c8189544e3ea679': `Recommencer`,
's2ddbebcb8a49b005': `En attente de l'authentification...`,
's2e1d5a7d320c25ef': `Entrer le code sur votre appareil d'authentification.`,
's2e422519ed38f7d8': `Réussir`,
's2f7f35f6a5b733f5': `Montrer le mot de passe`,
's30d6ff9e15e0a40a': `Vérification...`,
's3108167b562674e2': `Retourner à la vue d'ensemble`,
's31fba571065f2c87': `Veuillez à conserver ces jetons dans un endroit sûr.`,
's32f04d33924ce8ad': `Exécution de politique`,
's342eccabf83c9bde': `Historique du plan`,
's34be76c6b1eadbef': `Avertissement`,
's363abde8a254ea5f': `Échec d'authentification. Veuillez réessayer.`,
's3643189d1abbb7f4': `Code`,
's3736936aac1adc2e': `Ouvrir l'inspecteur de flux`,
's37f47fa981493c3b': `Un code à usage unique vous a été envoyé par SMS.`,
's38f774cd7e9b9dad': `S'enregistrer.`,
's39002897db60bb28': `Envoi de la notification push Duo`,
's3ab772345f78aee0': `Inspecteur de flux`,
's3cd84e82e83e35ad': `Veuillez saisir votre code`,
's3e6174b645d96835': str`Envoi de la demande de déconnexion au fournisseur SAML : ${0}`,
's3f8a07912545e72e': `Configurer votre courriel`,
's4090dd0c0e45988b': `ID de requête`,
's40f44c0d88807fd5': `Code TOTP`,
's420d2cdedcaf8cd0': `Authentification avec Plex...`,
's43e859bf711e3599': `Copier la configuration TOTP`,
's452f791e0ff6a13e': `Cacher le mot de passe`,
's455a8fc21077e7f9': `Vous avez authentifié votre appareil avec succès.`,
's47490298c17b753a': `Recevoir une notification push sur votre appareil.`,
's47a4983a2c6bb749': `Modèle mis à jour`,
's482bc55a78891ef7': str`Un code a été envoyé à votre adresse : ${0}`,
's49730f3d5751a433': `Chargement en cours...`,
's4980379bf8461c2d': `Déconnexion unifiée`,
's4d7fe7be1c49896c': `Vous pouvez maintenant fermer cette page.`,
's502884e1977b2c06': `Étape suivante`,
's521681ed1d5ff814': str`Se reconnecter à ${0}`,
's5afa3fc77ce8d94d': `Un code a été envoyé à votre adresse courriel.`,
'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.`,
's610fced3957d0471': `Sélectionnez une méthode d'authentification`,
's61e48919db20538a': `UPN`,
's67749057edb2586b': `Déconnexion`,
's67ac11d47f1ce794': `WebAuthn requirt que cette page soit accessible via HTTPS.`,
's6ac670086eb137c6': `Récupération`,
's6bb30c61df4cf486': `La touche Verr Maj est activée.`,
'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.`,
's6db67c7681b8be6e': `Copier la configuration du mot de passe à usage unique basé sur le temps`,
's6ecfc18dbfeedd76': `Sélectionner une des options suivantes pour continuer.`,
's6fe64b4625517333': `Propulsé par authentik`,
's7073489bb01b3c24': `Lapplication a déjà accès aux permissions suivantes :`,
's708d9a4a0db0be8f': `Vérifier le statut`,
's721d94ae700b5dfd': `Activation Duo`,
's76d21e163887ddd1': `Périphérique inconnu`,
's76ea993fdc8503d8': `Cliquer le bouton ci-dessous pour démarrer.`,
's777e86d562523c85': `Déconnexion auprès des fournisseurs...`,
's77f572257f69a8db': `Erreur de mappage de propriété`,
's78869b8b2bc26d0d': `Fournisseur SAML`,
's7abc9d08b0f70fd6': `Jeton statique`,
's7b90eab7969ae056': str`Redirection version le fournisseur SAML : ${0}`,
's7bda44013984fc48': `Mot de passe défini`,
's7cdd62c100b6b17b': `Veuillez entrer le code que vous avez reçu par courriel`,
's7e537ad68d7c16e1': `L'utilisateur a été écrit vers`,
's7f073c746d0f6324': `Actions du formulaire`,
's7fa4e5e409d43573': str`Erreur lors de la création des identifiants :
${0}`,
's81ecf2d4386b8e84': `Continuer`,
's81eff3409d572a21': `Exception générale du systèm`,
's833cfe815918c143': `Jetons envoyés par courriel.`,
's844fea0bfb10a72a': `Code d'authentification`,
's84fcddede27b8e2a': `Externe`,
's85366fac18679f28': `Mot de passe oublié ?`,
's857cf5aa8955cf5c': `Chargement de l'inspecteur de flux`,
's858e7ac4b3cf955f': `Jetons statiques`,
's859b2e00391da380': `Sélectionnez Oui pour réduire le nombre de fois où l'on vous demande de vous connecter.`,
's8939f574b096054a': `Pas vous ?`,
's8a1d9403ca90989b': `Invitation utilisée`,
's8aff572e64b7936b': `Renvoyer le courriel.`,
's8bb0a1b672b52954': `Au cas où vous perdriez l'accès à vos authentificateurs principaux.`,
's8d6236ad153d42c0': `Challenge CAPTCHA`,
's8d857061510fe794': `Notification push Duo`,
's90064dd5c4dde2c6': `Merci de scanner le QR code ci-dessus avec Microsoft Authenticator, Google Authenticator ou une autre application d'authentification à deux facteurs sur votre appareil, et entrer le code que l'appareil affiche ci-dessous pour finir la configuration de votre appareil MFA.`,
's9117fb5195e75151': `Note`,
's91ae4b6bf981682b': `Logo authentik`,
's92ca679592a36b35': `Rotation du secret effectuée`,
's95474cc8c73dd9c0': `Saisissez votre code TOTP...`,
's958cedec1cb3fc52': `Sélectionnez une étape de configuration`,
's97f2dc19fa556a6a': `SMS`,
's98b1cb8fb62909ec': `Group`,
's98bb2ae796f1ceef': `Sélectionnez une autre méthode d'authentification`,
's98dc556f8bf707dc': `Cette application requiert de nouvelles permissions :`,
's9bd9ba84819493d4': `Une erreur s'est produite ! Veuillez réessayer plus tard.`,
's9c6f61dc47bc4f0a': `Modèle créé`,
's9c73bd29b279d26b': `Fin de l'usurpation d'identité`,
's9d95f09deb601f34': str`Erreur lors de la validation des identifiants par le serveur :
${0}`,
's9e568afec3810bfe': `Clés de récupération`,
'sa03aa46068460c95': `Mot de passe ou nom d'utilisateur oublié ?`,
'sa0e0bdd7e244416b': `Requête suspecte`,
'sa11e92683c5860c7': `La requête a été refusée.`,
'sa13e6c8310000e30': `ID de session`,
'sa17ce23517e56461': `Formulaire d'authentification`,
'sa1b41e334ad89d94': `Le secret a été vu`,
'sa266303caf1bd27f': `Courriel envoyé`,
'sa48f81f001b893d2': `Utilisateur`,
'sa4be93eb7f4e51e3': `Liens du site`,
'sa50a6326530d8a0d': `Montrer moins`,
'sa5562e0115ffbccd': `Mot de passe à usage unique basé sur le temps`,
'sac17f177f884e238': `Rester connecté ?`,
'sac315d5bd28d4efa': `Échouer`,
'sac88482c48453fc8': str`Vous vous êtes déconnecté de ${0}. Vous pouvez retourner à la vue d'ensemble pour lancer une autre application, ou vous déconnecter de votre compte authentik.`,
'sae5d87e99fe081e0': `Obligatoire`,
'sb0821a9e92cac5eb': `Échec d'enregistrement. Veuillez réessayer.`,
'sb15fe7b9d09bb419': `Si aucune fenêtre contextuelle Plex ne s'ouvre, cliquez sur le bouton ci-dessous.`,
'sb166ce92e8e807d6': `Réessayer l'enregistrement`,
'sb1c91762ae3a9bee': `Début de l'usurpation d'identité`,
'sb25e689e00c61829': `Utiliser un authentifieur à code.`,
'sb2c57b2d347203dd': `Montrer plus`,
'sb2f307e79d20bb56': `Contexte du plan courant`,
'sb3fa80ccfa97ee54': `Nom de l'étape`,
'sb4564c127ab8b921': `Échec de la connexion`,
'sb59d68ed12d46377': `Chargement en cours`,
'sb69e43f2f6bd1b54': `Fermer l'inspecteur de flux`,
'sb6d7128df5978cee': `Exception de politique`,
'sbc625b4c669b9ce8': `Ouvrir la connexion`,
'sbd19064fc3f405c1': `Vérifiez votre boite de réception pour un courriel de vérification.`,
'sbea3c1e4f2fd623d': `Type d'étap`,
'sc091f75b942ec081': `Code QR pour configurer un mot de passe à usage unique basé sur le temps`,
'sc0a0c87d5c556c38': `Numéro de téléphone`,
'sc2ec367e3108fe65': `Code QR d'activation Duo`,
'sc3e1c4f1fff8e1ca': `Ce flux est terminé.`,
'sc4eedb434536bdb4': `Besoin d'un compte ?`,
'sc5668cb23167e9bb': `Sinon, si Duo est installé sur cet appareil, cliquez sur ce lien :`,
'sc8da3cc71de63832': `Connexion`,
'sc92a7248dba5f388': `Ouvrez votre application d'authentification à deux facteurs pour récupérer votre code à usage unique.`,
'sc9f69360b58706c7': `Modèle supprimé`,
'sca83a1f9227f74b9': `Déconnexion SAML terminée`,
'scb489a1a173ac3f0': `Oui`,
'scedf77e8b75cad5a': `Veuillez entrer votre adresse courriel.`,
'scf5ce91bfba10a61': `Veuillez saisir votre mot de passe`,
'sd1f44f1a8bc20e67': `Courriel`,
'sd2b8c1caa0340ed6': `Échec d'authentification`,
'sd6a025d66f2637d1': `Authentificateur traditionnel`,
'sd73b202ec04eefd9': `Intention inconnue`,
'sd766cdc29b25ff95': `Authentification avec Apple...`,
'sd8f220c999726151': `Redirection`,
'sdaecc3c29a27c5c5': `Une erreur inconnue est parvenue`,
'sdb749e793de55478': str`Se déconnecter de ${0}`,
'sdc9e222be9612939': `Source liée`,
'sdea479482318489d': `Messages d'état`,
'se2d65e13768468e0': `Interne`,
'se2f258b996f7279c': `Erreur de tâche système`,
'se409d01b52c4e12f': `Réessayer l'authentification`,
'se5fd752dbbc3cd28': `Utiliser une clé de sécurité`,
'se84ba7f105934495': `Veuillez consulter la console du navigateur pour plus de détails.`,
'se9e9e1d6799b86a5': `WebAuthn n'est pas supporté pas ce navigateur.`,
'seb0c08d9f233bbfe': `Veuillez entrer le code que vous avez reçu par SMS`,
'sf0ceaf3116e31fd4': `Une classe de périphérique inconnue a été fournie.`,
'sf1ec4acb8d744ed9': `Alerte`,
'sf29883ac9ec43085': `Mot de passe de l'App`,
'sf376ae7e9ef41c1a': `Authentification avec Telegram...`,
'sf6e1665c7022a1f8': `Mot de passe`,
'sf8f49cdbf0036343': `Erreur de configuration`,
'sfcfcf85a57eea78a': `Appareil TOTP`,
'sfe211545fd02f73e': `Vérification`,
'sfe629863ba1338c2': `Erreur de connexion, nouvelle tentative...`,
'sff930bf2834e2201': `Compte de service (interne)`,
'sffef1a8596bc58bb': `Authentification en cours...`,
'zh-Hans': `Chinois`,
'zh-Hant': `Chinois`,
'en-XA': `English (Pseudo-Accents)`,
'locale-option-localized-label': str`${0} (${1})`,
'avatar.alt-text-for-user': str`Avatar for ${0}`,
'avatar.alt-text': `User avatar`,
's6e858c4c4c3b6b76': `You're about to be redirected to the following URL.`,
'saa088a2d0f90d5a9': str`Posting logout response to SAML provider: ${0}`,
'flow.navigation.go-back': `Go back`,
'stage.authenticator.email.sent-to-address': str`A verification token has been sent to your configured email address: ${0}`,
'stage.authenticator.email.sent': `A verification token has been sent to your email address.`,
'clipboard.write.success.message.entity': str`${0} copied to clipboard.`,
'clipboard.write.success.generic': `Copied to clipboard.`,
'clipboard.write.failure.description': `Clipboard not available. Please copy the value manually.`,
'totp.config': `TOTP Config`,
'totp.config.clipboard.description': `Paste this URL into your authenticator app to set up a time-based one-time password.`,
'totp.secret': `TOTP Secret`,
'totp.secret.clipboard.description': `Paste this secret into your authenticator app to set up a time-based one-time password.`,
'sdf2794b96386c868': `Copy time-based one-time password secret`,
'sc78d16417878afd0': `Copy Secret`,
's92e22f9319fdb85d': `Configuration warning`,
's1af2337b6d11d4c6': `Data export ready`,
's776d93092ad9ce90': `Review initiated`,
'sad46bcad1a343b51': `Review overdue`,
's59d168d966cecbaf': `Review attested`,
's5158b7f014cecefc': `Review completed`,
'sb94beab52540d2b7': `The CAPTCHA challenge failed to load.`,
's217a96c47caaf73d': `Could not find a suitable CAPTCHA provider.`,
'sf910cca0f06bbc31': `Enter the email address or username associated with your account.`,
'sd5d2b94a1ccba1a9': str`Log in to continue to ${0}.`,
'seb6ab868740e4e36': str`Continue with ${0}`,
's53dddf1733e26c98': `Login sources`,
's05a941e4b4bfca9f': `Additional actions`,
'scd909e0bc55fc548': `Security key`,
'sd0de938d9c37ad5f': `Use a Passkey or security key to prove your identity.`,
's95094b57684716a5': `Failed to validate device.`,
'se99d25eb70c767ef': `Verifying your device...`,
'sdd2ea73c24b40d5d': `Site footer`,
};

View File

@@ -0,0 +1,252 @@
// Do not modify this file by hand!
// Re-generate this file by running lit-localize
import {str} from '@lit/localize';
/* eslint-disable no-irregular-whitespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
export const templates = {
'en': `Inglese`,
'ja-JP': `Giapponese`,
'ko-KR': `Coreano`,
'language-selector-label': `Seleziona lingua`,
'locale-auto-detect-option': `Rilevamento automatico`,
's009bd1c98a9f5de2': `Registrazione fallita`,
's02240309358f557c': `Gravità sconosciuta`,
's0382d73823585617': str`
${0}:
${1}`,
's03f42eea72154959': `Username`,
's042baf59902a711f': `Criterio`,
's04c1210202f48dc9': `Per favore, inserisci il tuo numero di telefono.`,
's06bfe45ffef2cf60': str`Nome fase: ${0}`,
's091d5407b5b32e84': `Oppure`,
's09205907b5b56cda': `No`,
's0e516232f2ab4e04': `Token inviati tramite SMS.`,
's14c552fb0a4c0186': `L'applicazione richiede i seguenti permessi:`,
's197420b40df164f8': `Segui il reindirizzamento`,
's1a635369edaf4dc3': `Account di servizio`,
's1c336c2d6cef77b3': `Ricordami su questo dispositivo`,
's1cd198d689c66e4b': `Accesso API`,
's1cd264012278c047': `Esecuzione flusso`,
's21d95b4651ad7a1e': `Immettere un codice di recupero una tantum per questo utente.`,
's238784fc1dc672ae': `Registrazione...`,
's2543cffd6ebb6803': `Esecuzione attività di sistema`,
's296fbffaaa7c910a': `Richiesto.`,
's2bc8aa1740d3da34': `Ogetto fase`,
's2c8189544e3ea679': `Riprova`,
's2ddbebcb8a49b005': `In attesa di autenticazione...`,
's2e1d5a7d320c25ef': `Immettere il codice dal dispositivo di autenticazione.`,
's2e422519ed38f7d8': `Pass`,
's2f7f35f6a5b733f5': `Mostra password`,
's30d6ff9e15e0a40a': `Verifica...`,
's3108167b562674e2': `Torna alla panoramica`,
's31fba571065f2c87': `Assicurati di tenere questi token in un luogo sicuro.`,
's32f04d33924ce8ad': `Esecuzione criterio`,
's342eccabf83c9bde': `Storia del piano`,
's34be76c6b1eadbef': `Attenzione`,
's363abde8a254ea5f': `Autenticazione fallita. Per favore riprova.`,
's3643189d1abbb7f4': `Codice`,
's38f774cd7e9b9dad': `Registrati.`,
's39002897db60bb28': `Invio notifica push Duo in corso...`,
's3ab772345f78aee0': `Ispezione del flusso`,
's3cd84e82e83e35ad': `Per favore inserisci il tuo codice.`,
's3f8a07912545e72e': `Configura la tua email`,
's4090dd0c0e45988b': `Request ID`,
's420d2cdedcaf8cd0': `Autenticazione con Plex...`,
's452f791e0ff6a13e': `Nascondi password`,
's455a8fc21077e7f9': `Hai autenticato correttamente il tuo dispositivo.`,
's47490298c17b753a': `Ricevi una notifica push sul tuo dispositivo.`,
's47a4983a2c6bb749': `Modello aggiornato`,
's49730f3d5751a433': `Caricamento...`,
's4d7fe7be1c49896c': `Puoi chiudere questa pagina ora.`,
's502884e1977b2c06': `Fase successiva`,
's521681ed1d5ff814': str`Accedi di nuovo a ${0}`,
's5f496533610103f2': `Applicazione autorizzata`,
's5f5bf4ef2bd93c04': `Le mappature dei gruppi possono essere controllate solo se un utente ha già effettuato l'accesso quando tenta di accedere a questa fonte.`,
's61e48919db20538a': `UPN`,
's67749057edb2586b': `Logout`,
's67ac11d47f1ce794': `WebAuthn richiede che questa pagina sia accessibile tramite HTTPS.`,
's6ac670086eb137c6': `Ripristino`,
's6bb30c61df4cf486': `Caps Lock attivo.`,
's6c410fedda2a575f': `Aggiornamento disponibile`,
's6c607d74bdfe9f36': `Le mappature utente possono essere controllate solo se un utente ha già effettuato l'accesso quando tenta di accedere a questa fonte.`,
's6ecfc18dbfeedd76': `Seleziona una delle opzioni qui sotto per continuare.`,
's6fe64b4625517333': `Powered by authentik`,
's7073489bb01b3c24': `L'applicazione ha già accesso alle seguenti autorizzazioni:`,
's708d9a4a0db0be8f': `Verifica stato`,
's721d94ae700b5dfd': `Attivazione Duo`,
's77f572257f69a8db': `Eccezione mappatura proprietà`,
's7abc9d08b0f70fd6': `Token statico`,
's7bda44013984fc48': `Password impostata`,
's7cdd62c100b6b17b': `Inserisci il codice ricevuto via email`,
's7e537ad68d7c16e1': `L'utente è stato scritto in`,
's7fa4e5e409d43573': str`Errore durante la creazione della credenziale:
${0}`,
's81ecf2d4386b8e84': `Continua`,
's81eff3409d572a21': `Eccezione generale di sistema`,
's833cfe815918c143': `Token inviati via email.`,
's844fea0bfb10a72a': `Codice di autenticazione`,
's84fcddede27b8e2a': `Esterno`,
's85366fac18679f28': `Hai dimenticato la password?`,
's858e7ac4b3cf955f': `Token statici`,
's859b2e00391da380': `Seleziona Sì per ridurre il numero di volte in cui ti viene chiesto di effettuare l'accesso.`,
's8939f574b096054a': `Non sei tu?`,
's8a1d9403ca90989b': `Invito usato`,
's8aff572e64b7936b': `Invia di nuovo l'email.`,
's8d857061510fe794': `Notifiche push Duo`,
's90064dd5c4dde2c6': `Scansiona il codice QR sopra utilizzando Microsoft Authenticator, Google Authenticator o altre app di Autenticator sul dispositivo e immettere il codice visualizzato di seguito per terminare l'impostazione del dispositivo MFA.`,
's9117fb5195e75151': `Nota`,
's91ae4b6bf981682b': `Logo di authentik`,
's92ca679592a36b35': `Segreto ruotato`,
's97f2dc19fa556a6a': `SMS`,
's98b1cb8fb62909ec': `Gruppo`,
's98bb2ae796f1ceef': `Seleziona un altro metodo di autenticazione`,
's98dc556f8bf707dc': `L'applicazione richiede le seguenti nuove autorizzazioni:`,
's9bd9ba84819493d4': `Qualcosa è andato storto! Per favore riprova più tardi.`,
's9c6f61dc47bc4f0a': `Modello creato`,
's9c73bd29b279d26b': `Impersonazione conclusa`,
's9d95f09deb601f34': str`Convalida server delle credenziali non riuscita:
${0}`,
's9e568afec3810bfe': `Chiavi di recupero`,
'sa03aa46068460c95': `Hai dimenticato il nome utente o la password?`,
'sa0e0bdd7e244416b': `Richiesta sospetta`,
'sa11e92683c5860c7': `La richiesta è stata negata.`,
'sa13e6c8310000e30': `Session ID`,
'sa1b41e334ad89d94': `Segreto visualizzato`,
'sa266303caf1bd27f': `Email cancellato`,
'sa48f81f001b893d2': `Utente`,
'sa50a6326530d8a0d': `Mostra meno`,
'sac17f177f884e238': `Rimani connesso?`,
'sac315d5bd28d4efa': `Non Passare`,
'sac88482c48453fc8': str`Hai effettuato il logout da ${0}. Puoi tornare alla panoramica per avviare un'altra applicazione o disconnetterti dal tuo account authentik.`,
'sae5d87e99fe081e0': `Richiesto`,
'sb0821a9e92cac5eb': `Registrazione fallita. Per favore riprova.`,
'sb15fe7b9d09bb419': `Se non si apre alcun popup plex, fare clic sul pulsante in basso.`,
'sb166ce92e8e807d6': `Riprova registrazione`,
'sb1c91762ae3a9bee': `Impersonazione iniziata`,
'sb25e689e00c61829': `Utilizzare un autenticatore basato su codice.`,
'sb2c57b2d347203dd': `Mostra altro`,
'sb2f307e79d20bb56': `Contesto del piano attuale`,
'sb3fa80ccfa97ee54': `Nome fase`,
'sb4564c127ab8b921': `Accesso fallito`,
'sb59d68ed12d46377': `Caricamento`,
'sb6d7128df5978cee': `Eccezione criterio`,
'sbc625b4c669b9ce8': `Aprire login`,
'sbd19064fc3f405c1': `Controlla la tua casella di posta per un'email di verifica.`,
'sbea3c1e4f2fd623d': `Tipo fase`,
'sc0a0c87d5c556c38': `Numero di telefono`,
'sc2ec367e3108fe65': `Codice QR di attivazione Duo`,
'sc3e1c4f1fff8e1ca': `Questo flusso è completato.`,
'sc4eedb434536bdb4': `Hai bisogno di un account?`,
'sc5668cb23167e9bb': `In alternativa, se il tuo dispositivo corrente è installato duo, fare clic su questo link:`,
'sc8da3cc71de63832': `Login`,
'sc9f69360b58706c7': `Modello cancellato`,
'scb489a1a173ac3f0': `Si`,
'scedf77e8b75cad5a': `Inserisci il tuo indirizzo email.`,
'scf5ce91bfba10a61': `Per favore inserisci la tua password`,
'sd1f44f1a8bc20e67': `Email`,
'sd2b8c1caa0340ed6': `Autenticazione fallita`,
'sd6a025d66f2637d1': `Autenticatore tradizionale`,
'sd73b202ec04eefd9': `Intent sconosciuto`,
'sd766cdc29b25ff95': `Autenticazione con Apple...`,
'sd8f220c999726151': `Redirect`,
'sdb749e793de55478': str`Esci da ${0}`,
'sdc9e222be9612939': `Sorgente collegata`,
'se2d65e13768468e0': `Interno`,
'se2f258b996f7279c': `Eccezione attività di sistema`,
'se409d01b52c4e12f': `Riprova autenticazione`,
'se5fd752dbbc3cd28': `Usa una chiave di sicurezza`,
'se9e9e1d6799b86a5': `WebAuthn non supportato dal browser.`,
'seb0c08d9f233bbfe': `Per favore, inserisci il codice che hai ricevuto tramite SMS.`,
'sf1ec4acb8d744ed9': `Allarme`,
'sf29883ac9ec43085': `App password`,
'sf6e1665c7022a1f8': `Password`,
'sf8f49cdbf0036343': `Errore di configurazione`,
'sfcfcf85a57eea78a': `Dispositivo TOTP`,
'sfe211545fd02f73e': `Verifica`,
'sfe629863ba1338c2': `Errore di connessione, riconnessione in corso...`,
'sff930bf2834e2201': `Account di servizio (interno)`,
'sffef1a8596bc58bb': `Autenticazione...`,
'zh-Hans': `Cinese`,
'zh-Hant': `Cinese`,
'en-XA': `English (Pseudo-Accents)`,
'locale-option-localized-label': str`${0} (${1})`,
'sa4be93eb7f4e51e3': `Site links`,
's12d6dde9b30c3093': `Dismiss`,
'sdaecc3c29a27c5c5': `An unknown error occurred`,
'se84ba7f105934495': `Please check the browser console for more details.`,
'sdea479482318489d': `Status messages`,
'sb69e43f2f6bd1b54': `Close flow inspector`,
's857cf5aa8955cf5c': `Flow inspector loading`,
's3736936aac1adc2e': `Open flow inspector`,
's15d6fabebb4ef2d8': `User information`,
'avatar.alt-text-for-user': str`Avatar for ${0}`,
'avatar.alt-text': `User avatar`,
'sf376ae7e9ef41c1a': `Authenticating with Telegram...`,
's76ea993fdc8503d8': `Click the button below to start.`,
's6e858c4c4c3b6b76': `You're about to be redirected to the following URL.`,
's7f073c746d0f6324': `Form actions`,
's0b1ffff8bedd6b8a': `Unknown Provider`,
's777e86d562523c85': `Logging out of providers...`,
's4980379bf8461c2d': `Single Logout`,
's23da7320dee28a60': `Device Code`,
's78869b8b2bc26d0d': `SAML Provider`,
'sca83a1f9227f74b9': `SAML logout complete`,
's7b90eab7969ae056': str`Redirecting to SAML provider: ${0}`,
'saa088a2d0f90d5a9': str`Posting logout response to SAML provider: ${0}`,
's3e6174b645d96835': str`Posting logout request to SAML provider: ${0}`,
'flow.navigation.go-back': `Go back`,
'stage.authenticator.email.sent-to-address': str`A verification token has been sent to your configured email address: ${0}`,
'stage.authenticator.email.sent': `A verification token has been sent to your email address.`,
'clipboard.write.success.message.entity': str`${0} copied to clipboard.`,
'clipboard.write.success.generic': `Copied to clipboard.`,
'clipboard.write.failure.description': `Clipboard not available. Please copy the value manually.`,
'totp.config': `TOTP Config`,
'totp.config.clipboard.description': `Paste this URL into your authenticator app to set up a time-based one-time password.`,
'totp.secret': `TOTP Secret`,
'totp.secret.clipboard.description': `Paste this secret into your authenticator app to set up a time-based one-time password.`,
'sc091f75b942ec081': `QR-Code to setup a time-based one-time password`,
's6db67c7681b8be6e': `Copy time-based one-time password configuration`,
's43e859bf711e3599': `Copy TOTP Config`,
'sdf2794b96386c868': `Copy time-based one-time password secret`,
'sc78d16417878afd0': `Copy Secret`,
'sa5562e0115ffbccd': `Time-based one-time password`,
's40f44c0d88807fd5': `TOTP Code`,
's95474cc8c73dd9c0': `Type your TOTP code...`,
's168d0c138b63286d': `Type your time-based one-time password code.`,
's92e22f9319fdb85d': `Configuration warning`,
's1af2337b6d11d4c6': `Data export ready`,
's776d93092ad9ce90': `Review initiated`,
'sad46bcad1a343b51': `Review overdue`,
's59d168d966cecbaf': `Review attested`,
's5158b7f014cecefc': `Review completed`,
's482bc55a78891ef7': str`A code has been sent to your address: ${0}`,
's5afa3fc77ce8d94d': `A code has been sent to your email address.`,
's37f47fa981493c3b': `A one-time use code has been sent to you via SMS text message.`,
'sc92a7248dba5f388': `Open your authenticator app to retrieve a one-time use code.`,
'sb94beab52540d2b7': `The CAPTCHA challenge failed to load.`,
's8d6236ad153d42c0': `CAPTCHA challenge`,
's217a96c47caaf73d': `Could not find a suitable CAPTCHA provider.`,
'sf910cca0f06bbc31': `Enter the email address or username associated with your account.`,
'sd5d2b94a1ccba1a9': str`Log in to continue to ${0}.`,
'seb6ab868740e4e36': str`Continue with ${0}`,
's53dddf1733e26c98': `Login sources`,
's05a941e4b4bfca9f': `Additional actions`,
's14e8ac4d377a1a99': `Type an authentication code...`,
'scd909e0bc55fc548': `Security key`,
'sd0de938d9c37ad5f': `Use a Passkey or security key to prove your identity.`,
's8bb0a1b672b52954': `In case you lose access to your primary authenticators.`,
's76d21e163887ddd1': `Unknown device`,
'sf0ceaf3116e31fd4': `An unknown device class was provided.`,
's610fced3957d0471': `Select an authentication method`,
's958cedec1cb3fc52': `Select a configuration stage`,
's95094b57684716a5': `Failed to validate device.`,
'se99d25eb70c767ef': `Verifying your device...`,
'sdd2ea73c24b40d5d': `Site footer`,
'sa17ce23517e56461': `Authentication form`,
};

View File

@@ -0,0 +1,250 @@
// Do not modify this file by hand!
// Re-generate this file by running lit-localize
import {str} from '@lit/localize';
/* eslint-disable no-irregular-whitespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
export const templates = {
'en': `英語`,
'ja-JP': `日本語`,
'ko-KR': `韓国語`,
'locale-auto-detect-option': `自動検出`,
's009bd1c98a9f5de2': `登録に失敗`,
's02240309358f557c': `不明な重要度`,
's0382d73823585617': str`${0}: ${1}`,
's03f42eea72154959': `ユーザー名`,
's042baf59902a711f': `ポリシー`,
's04c1210202f48dc9': `電話番号を入力してください。`,
's06bfe45ffef2cf60': str`ステージ名: ${0}`,
's091d5407b5b32e84': `または`,
's09205907b5b56cda': `いいえ`,
's0b1ffff8bedd6b8a': `不明なプロバイダー`,
's0e516232f2ab4e04': `SMS 経由で送信されたトークン。`,
's12d6dde9b30c3093': `閉じる`,
's14c552fb0a4c0186': `アプリには以下の権限が必要です:`,
's14e8ac4d377a1a99': `認証コードを入力します...`,
's15d6fabebb4ef2d8': `ユーザー情報`,
's168d0c138b63286d': `時間ベースのワンタイムパスワードコードを入力してください。`,
's197420b40df164f8': `リダイレクトに従う`,
's1a635369edaf4dc3': `サービスアカウント`,
's1c336c2d6cef77b3': `このデバイスで私を覚えている`,
's1cd198d689c66e4b': `APIアクセス`,
's1cd264012278c047': `フロー実行`,
's21d95b4651ad7a1e': `このユーザーのワンタイムリカバリコードを入力してください。`,
's238784fc1dc672ae': `登録中...`,
's23da7320dee28a60': `デバイスコード`,
's2543cffd6ebb6803': `システムタスク実行`,
's296fbffaaa7c910a': `必須。`,
's2bc8aa1740d3da34': `ステージオブジェクト`,
's2c8189544e3ea679': `再試行`,
's2ddbebcb8a49b005': `認証を待機中...`,
's2e1d5a7d320c25ef': `認証デバイスのコードを入力してください。`,
's2e422519ed38f7d8': `合格`,
's2f7f35f6a5b733f5': `パスワードを表示`,
's30d6ff9e15e0a40a': `検証中...`,
's3108167b562674e2': `概要に戻る`,
's31fba571065f2c87': `これらのトークンを安全な場所に保管してください。`,
's32f04d33924ce8ad': `ポリシー実行`,
's342eccabf83c9bde': `計画履歴`,
's34be76c6b1eadbef': `警告`,
's363abde8a254ea5f': `認証に失敗しました。もう一度お試しください。`,
's3643189d1abbb7f4': `コード`,
's3736936aac1adc2e': `フロー インスペクターを開く`,
's37f47fa981493c3b': `ワンタイムコードをSMSで送信しました。`,
's38f774cd7e9b9dad': `登録してください。`,
's39002897db60bb28': `Duo プッシュ通知を送信中...`,
's3ab772345f78aee0': `フロー インスペクター`,
's3cd84e82e83e35ad': `コードを入力してください`,
's3e6174b645d96835': str`SAML プロバイダーへのログアウトリクエストを送信: ${0}`,
's3f8a07912545e72e': `メールを構成`,
's4090dd0c0e45988b': `リクエスト ID`,
's40f44c0d88807fd5': `TOTP コード`,
's420d2cdedcaf8cd0': `Plex で認証中...`,
's43e859bf711e3599': `TOTP 設定をコピー`,
's452f791e0ff6a13e': `パスワードを隠す`,
's455a8fc21077e7f9': `デバイスが正常に認証されました。`,
's47490298c17b753a': `デバイスでプッシュ通知を受け取ります。`,
's47a4983a2c6bb749': `モデルを更新しました`,
's482bc55a78891ef7': str`コードを ${0} に送信しました`,
's49730f3d5751a433': `読み込み中...`,
's4980379bf8461c2d': `シングルログアウト`,
's4d7fe7be1c49896c': `このページを閉じることができます。`,
's502884e1977b2c06': `次のステージ`,
's521681ed1d5ff814': str`${0} に再度ログイン`,
's5afa3fc77ce8d94d': `コードをメールアドレスに送信しました。`,
's5f496533610103f2': `アプリが認証されました`,
's5f5bf4ef2bd93c04': `グループマッピングは、このソースにアクセスしようとするときにユーザーが既にログインしている場合にのみ確認できます。`,
's610fced3957d0471': `認証方法を選択`,
's61e48919db20538a': `UPN`,
's67749057edb2586b': `ログアウト`,
's67ac11d47f1ce794': `WebAuthn はこのページに HTTPS 経由でアクセスする必要があります。`,
's6ac670086eb137c6': `リカバリ`,
's6bb30c61df4cf486': `Caps Lock が有効です。`,
's6c410fedda2a575f': `アップデートが利用可能です`,
's6c607d74bdfe9f36': `ユーザーマッピングは、このソースにアクセスしようとするときにユーザーが既にログインしている場合にのみ確認できます。`,
's6db67c7681b8be6e': `時間ベースのワンタイムパスワード構成をコピー`,
's6ecfc18dbfeedd76': `以下のオプションから 1 つ選択して続行してください。`,
's6fe64b4625517333': `authentik によるパワード`,
's7073489bb01b3c24': `アプリは既に次の権限にアクセスできます:`,
's708d9a4a0db0be8f': `ステータスを確認`,
's721d94ae700b5dfd': `Duo 有効化`,
's76d21e163887ddd1': `不明なデバイス`,
's76ea993fdc8503d8': `下のボタンをクリックして開始します。`,
's777e86d562523c85': `プロバイダーからログアウト中...`,
's77f572257f69a8db': `プロパティマッピング例外`,
's78869b8b2bc26d0d': `SAML プロバイダー`,
's7abc9d08b0f70fd6': `静的トークン`,
's7b90eab7969ae056': str`SAML プロバイダーにリダイレクト: ${0}`,
's7bda44013984fc48': `パスワードが設定されました`,
's7cdd62c100b6b17b': `メール経由で受け取ったコードを入力してください`,
's7e537ad68d7c16e1': `ユーザーが書き込まれました`,
's7f073c746d0f6324': `フォームアクション`,
's7fa4e5e409d43573': str`認証情報の作成エラー: ${0}`,
's81ecf2d4386b8e84': `続行`,
's81eff3409d572a21': `システム例外`,
's833cfe815918c143': `メール経由で送信されたトークン。`,
's844fea0bfb10a72a': `認証コード`,
's84fcddede27b8e2a': `外部`,
's85366fac18679f28': `パスワードをお忘れですか?`,
's857cf5aa8955cf5c': `フロー インスペクター読み込み中`,
's858e7ac4b3cf955f': `静的トークン`,
's859b2e00391da380': `サインインを求められる回数を減らすには [はい] を選択します。`,
's8939f574b096054a': `あなたではありませんか?`,
's8a1d9403ca90989b': `招待が使用されました`,
's8aff572e64b7936b': `メールをもう一度送信してください。`,
's8bb0a1b672b52954': `プライマリ認証器へのアクセスを失った場合に備えて。`,
's8d6236ad153d42c0': `CAPTCHA チャレンジ`,
's8d857061510fe794': `Duo プッシュ通知`,
's90064dd5c4dde2c6': `デバイス上の Microsoft Authenticator、Google Authenticator、または他の認証器アプリを使用して上の QR
コードをスキャンし、MFA デバイスのセットアップを完了するために、デバイスが以下に表示するコードを入力してください。`,
's9117fb5195e75151': `通知`,
's91ae4b6bf981682b': `authentik ロゴ`,
's92ca679592a36b35': `シークレットがローテーションされました`,
's95474cc8c73dd9c0': `TOTP コードを入力します...`,
's958cedec1cb3fc52': `構成ステージを選択`,
's97f2dc19fa556a6a': `SMS`,
's98b1cb8fb62909ec': `グループ`,
's98bb2ae796f1ceef': `別の認証方法を選択`,
's98dc556f8bf707dc': `アプリには以下の新しい権限が必要です:`,
's9bd9ba84819493d4': `エラーが発生しました。しばらく後にもう一度お試しください。`,
's9c6f61dc47bc4f0a': `モデルを作成しました`,
's9c73bd29b279d26b': `なりすましを終了しました`,
's9d95f09deb601f34': str`認証情報のサーバー検証に失敗: ${0}`,
's9e568afec3810bfe': `リカバリーキー`,
'sa03aa46068460c95': `ユーザー名またはパスワードをお忘れですか?`,
'sa0e0bdd7e244416b': `疑わしいリクエスト`,
'sa11e92683c5860c7': `リクエストが拒否されました。`,
'sa13e6c8310000e30': `セッション ID`,
'sa17ce23517e56461': `認証フォーム`,
'sa1b41e334ad89d94': `シークレットが閲覧されました`,
'sa266303caf1bd27f': `メールを送信しました`,
'sa48f81f001b893d2': `ユーザー`,
'sa4be93eb7f4e51e3': `サイトリンク`,
'sa50a6326530d8a0d': `閉じる`,
'sa5562e0115ffbccd': `時間ベースのワンタイムパスワード`,
'sac17f177f884e238': `サインアップしたまま?`,
'sac315d5bd28d4efa': `不合格`,
'sac88482c48453fc8': str`${0} からログアウトしました。
概要に戻って別のアプリを起動するか、authentik アカウントからログアウトできます。`,
'sae5d87e99fe081e0': `必須`,
'sb0821a9e92cac5eb': `登録に失敗しました。もう一度お試しください。`,
'sb15fe7b9d09bb419': `Plex ポップアップが開かない場合は、下のボタンをクリックします。`,
'sb166ce92e8e807d6': `登録を再試行`,
'sb1c91762ae3a9bee': `なりすましを開始しました`,
'sb25e689e00c61829': `コードベースの認証器を使用します。`,
'sb2c57b2d347203dd': `もっと見る`,
'sb2f307e79d20bb56': `現在の計画コンテキスト`,
'sb3fa80ccfa97ee54': `ステージ名`,
'sb4564c127ab8b921': `ログイン失敗`,
'sb59d68ed12d46377': `読み込み中`,
'sb69e43f2f6bd1b54': `フロー インスペクターを閉じる`,
'sb6d7128df5978cee': `ポリシー例外`,
'sbc625b4c669b9ce8': `ログインを開く`,
'sbd19064fc3f405c1': `確認メールについて受信トレイを確認してください。`,
'sbea3c1e4f2fd623d': `ステージの種類`,
'sc091f75b942ec081': `時間ベースのワンタイムパスワードを設定するための QR コード`,
'sc0a0c87d5c556c38': `電話番号`,
'sc2ec367e3108fe65': `Duo 有効化 QR コード`,
'sc3e1c4f1fff8e1ca': `このフローは完了しました。`,
'sc4eedb434536bdb4': `アカウントが必要ですか?`,
'sc5668cb23167e9bb': `または、現在のデバイスに Duo がインストールされている場合は、このリンクをクリックしてください:`,
'sc8da3cc71de63832': `ログイン`,
'sc92a7248dba5f388': `認証アプリを開いてワンタイムコードを取得してください。`,
'sc9f69360b58706c7': `モデルを削除しました`,
'sca83a1f9227f74b9': `SAML ログアウト完了`,
'scb489a1a173ac3f0': `はい`,
'scedf77e8b75cad5a': `メールアドレスを入力してください。`,
'scf5ce91bfba10a61': `パスワードを入力してください`,
'sd1f44f1a8bc20e67': `メール`,
'sd2b8c1caa0340ed6': `認証に失敗`,
'sd6a025d66f2637d1': `従来の認証器`,
'sd73b202ec04eefd9': `不明なインテント`,
'sd766cdc29b25ff95': `Apple で認証中...`,
'sd8f220c999726151': `リダイレクト`,
'sdaecc3c29a27c5c5': `不明なエラーが発生しました`,
'sdb749e793de55478': str`${0} からログアウト`,
'sdc9e222be9612939': `ソースがリンクされました`,
'sdea479482318489d': `ステータスメッセージ`,
'se2d65e13768468e0': `内部`,
'se2f258b996f7279c': `システムタスク例外`,
'se409d01b52c4e12f': `認証を再試行`,
'se5fd752dbbc3cd28': `セキュリティキーを使用`,
'se84ba7f105934495': `詳細については、ブラウザコンソールを確認してください。`,
'se9e9e1d6799b86a5': `WebAuthn はこのブラウザーではサポートされていません。`,
'seb0c08d9f233bbfe': `SMS 経由で受け取ったコードを入力してください`,
'sf0ceaf3116e31fd4': `不明なデバイスクラスが提供されました。`,
'sf1ec4acb8d744ed9': `アラート`,
'sf29883ac9ec43085': `アプリパスワード`,
'sf376ae7e9ef41c1a': `Telegram で認証中...`,
'sf6e1665c7022a1f8': `パスワード`,
'sf8f49cdbf0036343': `設定エラー`,
'sfcfcf85a57eea78a': `TOTPデバイス`,
'sfe211545fd02f73e': `検証`,
'sfe629863ba1338c2': `接続エラー、再接続中...`,
'sff930bf2834e2201': `サービスアカウント(内部)`,
'sffef1a8596bc58bb': `認証中...`,
'zh-Hans': `中国語簡体字`,
'zh-Hant': `中国語繁体字`,
'en-XA': `English (Pseudo-Accents)`,
'locale-option-localized-label': str`${0} (${1})`,
'language-selector-label': `Select language`,
'avatar.alt-text-for-user': str`Avatar for ${0}`,
'avatar.alt-text': `User avatar`,
's6e858c4c4c3b6b76': `You're about to be redirected to the following URL.`,
'saa088a2d0f90d5a9': str`Posting logout response to SAML provider: ${0}`,
'flow.navigation.go-back': `Go back`,
'stage.authenticator.email.sent-to-address': str`A verification token has been sent to your configured email address: ${0}`,
'stage.authenticator.email.sent': `A verification token has been sent to your email address.`,
'clipboard.write.success.message.entity': str`${0} copied to clipboard.`,
'clipboard.write.success.generic': `Copied to clipboard.`,
'clipboard.write.failure.description': `Clipboard not available. Please copy the value manually.`,
'totp.config': `TOTP Config`,
'totp.config.clipboard.description': `Paste this URL into your authenticator app to set up a time-based one-time password.`,
'totp.secret': `TOTP Secret`,
'totp.secret.clipboard.description': `Paste this secret into your authenticator app to set up a time-based one-time password.`,
'sdf2794b96386c868': `Copy time-based one-time password secret`,
'sc78d16417878afd0': `Copy Secret`,
's92e22f9319fdb85d': `Configuration warning`,
's1af2337b6d11d4c6': `Data export ready`,
's776d93092ad9ce90': `Review initiated`,
'sad46bcad1a343b51': `Review overdue`,
's59d168d966cecbaf': `Review attested`,
's5158b7f014cecefc': `Review completed`,
'sb94beab52540d2b7': `The CAPTCHA challenge failed to load.`,
's217a96c47caaf73d': `Could not find a suitable CAPTCHA provider.`,
'sf910cca0f06bbc31': `Enter the email address or username associated with your account.`,
'sd5d2b94a1ccba1a9': str`Log in to continue to ${0}.`,
'seb6ab868740e4e36': str`Continue with ${0}`,
's53dddf1733e26c98': `Login sources`,
's05a941e4b4bfca9f': `Additional actions`,
'scd909e0bc55fc548': `Security key`,
'sd0de938d9c37ad5f': `Use a Passkey or security key to prove your identity.`,
's95094b57684716a5': `Failed to validate device.`,
'se99d25eb70c767ef': `Verifying your device...`,
'sdd2ea73c24b40d5d': `Site footer`,
};

View File

@@ -0,0 +1,248 @@
// Do not modify this file by hand!
// Re-generate this file by running lit-localize
import {str} from '@lit/localize';
/* eslint-disable no-irregular-whitespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
export const templates = {
'en': `영어`,
'ja-JP': `일본어`,
'ko-KR': `한국어`,
'language-selector-label': `언어 선택`,
'locale-auto-detect-option': `자동 감지`,
's009bd1c98a9f5de2': `등록 실패`,
's02240309358f557c': `심각도 불명`,
's03f42eea72154959': `사용자명`,
's042baf59902a711f': `정책`,
's04c1210202f48dc9': `전화번호를 입력하세요.`,
's06bfe45ffef2cf60': str`스테이지 이름: ${0}`,
's091d5407b5b32e84': `혹은`,
's09205907b5b56cda': `아니오`,
's0e516232f2ab4e04': `SMS를 통해 토큰을 전송했습니다.`,
's12d6dde9b30c3093': `무시`,
's14c552fb0a4c0186': `애플리케이션에는 다음 권한이 필요합니다:`,
's197420b40df164f8': `리디렉션 따라가기`,
's1a635369edaf4dc3': `서비스 계정`,
's1c336c2d6cef77b3': `이 기기에서 계정 기억하기`,
's1cd198d689c66e4b': `API 액세스`,
's1cd264012278c047': `플로우 실행`,
's238784fc1dc672ae': `등록하는 중...`,
's2543cffd6ebb6803': `시스템 작업 실행`,
's296fbffaaa7c910a': `필수.`,
's2bc8aa1740d3da34': `스테이지 오브젝트`,
's2c8189544e3ea679': `재시도`,
's2ddbebcb8a49b005': `인증을 기다리는 중...`,
's2e422519ed38f7d8': `통과`,
's2f7f35f6a5b733f5': `비밀번호 보기`,
's30d6ff9e15e0a40a': `검증하는 중...`,
's31fba571065f2c87': `이 토큰은 반드시 안전한 곳에 보관하세요.`,
's32f04d33924ce8ad': `정책 실행`,
's342eccabf83c9bde': `플랜 내역`,
's34be76c6b1eadbef': `주의`,
's363abde8a254ea5f': `인증에 실패했습니다. 다시 시도해주세요.`,
's3643189d1abbb7f4': `코드`,
's38f774cd7e9b9dad': `가입.`,
's3ab772345f78aee0': `플로우 검사기`,
's3cd84e82e83e35ad': `코드를 입력하세요.`,
's4090dd0c0e45988b': `요청 ID`,
's420d2cdedcaf8cd0': `Plex로 인증...`,
's452f791e0ff6a13e': `비밀번호 가리기`,
's455a8fc21077e7f9': `디바이스 인증에 성공했습니다.`,
's47490298c17b753a': `디바이스에서 푸시 알림을 받습니다.`,
's47a4983a2c6bb749': `모델 업데이트함`,
's49730f3d5751a433': `로드 중...`,
's4d7fe7be1c49896c': `이제 이 페이지를 닫아도 됩니다.`,
's502884e1977b2c06': `다음 스테이지`,
's5f496533610103f2': `승인된 애플리케이션`,
's5f5bf4ef2bd93c04': `그룹 매핑은 사용자가 이 소스에 액세스하려고 할 때 이미 로그인한 경우에만 확인할 수 있습니다.`,
's61e48919db20538a': `UPN`,
's67749057edb2586b': `로그아웃`,
's67ac11d47f1ce794': `WebAuthn을 사용하려면 이 페이지에 HTTPS를 통해 액세스해야 합니다.`,
's6ac670086eb137c6': `Recovery`,
's6bb30c61df4cf486': `Caps Lock이 켜져있습니다.`,
's6c410fedda2a575f': `업데이트 가능`,
's6c607d74bdfe9f36': `사용자 매핑은 사용자가 이 소스에 액세스하려고 할 때 이미 로그인한 경우에만 확인할 수 있습니다.`,
's6ecfc18dbfeedd76': `아래 옵션 중 하나를 선택해 계속합니다.`,
's6fe64b4625517333': `Powered by authentik`,
's7073489bb01b3c24': `애플리케이션에 이미 다음 권한에 대한 액세스 권한이 있습니다:`,
's708d9a4a0db0be8f': `상태 확인`,
's721d94ae700b5dfd': `Duo 활성화`,
's77f572257f69a8db': `속성 매핑 예외`,
's7abc9d08b0f70fd6': `정적 토큰`,
's7bda44013984fc48': `비밀번호 설정`,
's7cdd62c100b6b17b': `이메일로 받은 코드를 입력해주세요.`,
's7e537ad68d7c16e1': `사용자가 다음에 기록됨`,
's81ecf2d4386b8e84': `계속`,
's81eff3409d572a21': `일반 시스템 예외`,
's844fea0bfb10a72a': `인증 코드`,
's84fcddede27b8e2a': `외부`,
's85366fac18679f28': `비밀번호를 잊으셨나요?`,
's858e7ac4b3cf955f': `정적 토큰`,
's859b2e00391da380': `로그인 요청 횟수를 줄이려면 예를 선택합니다.`,
's8939f574b096054a': `본인이 아닌가요?`,
's8a1d9403ca90989b': `사용된 초대`,
's8aff572e64b7936b': `이메일을 다시 보냅니다.`,
's8d857061510fe794': `Duo push-알림`,
's90064dd5c4dde2c6': `Microsoft Authenticator, Google Authenticator, 또는 다른 인증기 앱을 사용하여 QR 코드를 인식한 후, 기기에 표시되는 코드를 입력하여 MFA 기기 설정을 완료하세요.`,
's9117fb5195e75151': `공지`,
's91ae4b6bf981682b': `authentik 로고`,
's92ca679592a36b35': `비밀이 회전됨`,
's97f2dc19fa556a6a': `SMS`,
's98b1cb8fb62909ec': `그룹`,
's98bb2ae796f1ceef': `다른 인증 방법 선택`,
's98dc556f8bf707dc': `애플리케이션에는 다음과 같은 새로운 권한이 필요합니다:`,
's9bd9ba84819493d4': `문제가 발생했습니다! 나중에 다시 시도해 주세요.`,
's9c6f61dc47bc4f0a': `모델 생성함`,
's9c73bd29b279d26b': `사용자 위장 종료`,
's9e568afec3810bfe': `복구 키`,
'sa03aa46068460c95': `사용자명이나 비밀번호를 잊으셨나요?`,
'sa0e0bdd7e244416b': `의심스러운 요청`,
'sa11e92683c5860c7': `요청이 거부되었습니다.`,
'sa13e6c8310000e30': `세션 ID`,
'sa1b41e334ad89d94': `비밀이 표시됨`,
'sa266303caf1bd27f': `이메일 보냄`,
'sa48f81f001b893d2': `사용자`,
'sa50a6326530d8a0d': `적게 표시`,
'sac17f177f884e238': `로그인을 유지하시겠습니까?`,
'sae5d87e99fe081e0': `필수`,
'sb0821a9e92cac5eb': `등록에 실패했습니다. 다시 시도해주세요.`,
'sb15fe7b9d09bb419': `Plex 팝업이 열리지 않으면 아래 버튼을 클릭하세요.`,
'sb166ce92e8e807d6': `등록 다시 시도`,
'sb1c91762ae3a9bee': `사용자 위장 시작`,
'sb25e689e00c61829': `코드 기반 인증기를 사용합니다.`,
'sb2c57b2d347203dd': `자세히 보기`,
'sb2f307e79d20bb56': `현재 플랜 컨텍스트`,
'sb3fa80ccfa97ee54': `스테이지 이름`,
'sb4564c127ab8b921': `로그인 실패`,
'sb59d68ed12d46377': `로드 중`,
'sb6d7128df5978cee': `정책 예외`,
'sbc625b4c669b9ce8': `로그인 열기`,
'sbd19064fc3f405c1': `받은 편지함에서 인증 이메일을 확인합니다.`,
'sbea3c1e4f2fd623d': `스테이지 종류`,
'sc0a0c87d5c556c38': `전화 번호`,
'sc2ec367e3108fe65': `Duo 활성화 QR 코드`,
'sc3e1c4f1fff8e1ca': `이 플로우는 완료되었습니다.`,
'sc4eedb434536bdb4': `계정이 필요하신가요?`,
'sc5668cb23167e9bb': `대안으로, 현재 디바이스에 Duo가 설치되어 있는 경우 이 링크를 클릭합니다:`,
'sc8da3cc71de63832': `로그인`,
'sc9f69360b58706c7': `모델 삭제함`,
'scb489a1a173ac3f0': ``,
'scedf77e8b75cad5a': `이메일 주소를 입력해주세요.`,
'scf5ce91bfba10a61': `비밀번호를 입력하세요`,
'sd1f44f1a8bc20e67': `이메일`,
'sd6a025d66f2637d1': `전통적 인증기`,
'sd73b202ec04eefd9': `intent를 알 수 없음 (Unknown intent)`,
'sd766cdc29b25ff95': `Apple로 인증...`,
'sd8f220c999726151': `리디렉트`,
'sdc9e222be9612939': `링크된 소스`,
'se2d65e13768468e0': `내부`,
'se2f258b996f7279c': `시스템 작업 예외`,
'se409d01b52c4e12f': `인증 다시 시도`,
'se5fd752dbbc3cd28': `보안 키 사용`,
'se9e9e1d6799b86a5': `브라우저에서 WebAuthn을 지원하지 않습니다.`,
'seb0c08d9f233bbfe': `SMS로 받은 코드를 입력하세요.`,
'sf1ec4acb8d744ed9': `경고`,
'sf29883ac9ec43085': `앱 비밀번호`,
'sf6e1665c7022a1f8': `비밀번호`,
'sf8f49cdbf0036343': `구성 오류`,
'sfcfcf85a57eea78a': `TOTP 디바이스`,
'sfe211545fd02f73e': `Verification`,
'sfe629863ba1338c2': `연결 오류, 다시 연결 중...`,
'sff930bf2834e2201': `서비스 계정 (내부)`,
'sffef1a8596bc58bb': `인증하는 중...`,
'zh-Hans': `중국어`,
'zh-Hant': `중국어`,
'en-XA': `English (Pseudo-Accents)`,
'locale-option-localized-label': str`${0} (${1})`,
'sa4be93eb7f4e51e3': `Site links`,
'sdaecc3c29a27c5c5': `An unknown error occurred`,
'se84ba7f105934495': `Please check the browser console for more details.`,
'sdea479482318489d': `Status messages`,
'sb69e43f2f6bd1b54': `Close flow inspector`,
's857cf5aa8955cf5c': `Flow inspector loading`,
's3736936aac1adc2e': `Open flow inspector`,
's15d6fabebb4ef2d8': `User information`,
'avatar.alt-text-for-user': str`Avatar for ${0}`,
'avatar.alt-text': `User avatar`,
'sf376ae7e9ef41c1a': `Authenticating with Telegram...`,
's76ea993fdc8503d8': `Click the button below to start.`,
's6e858c4c4c3b6b76': `You're about to be redirected to the following URL.`,
's7f073c746d0f6324': `Form actions`,
's7fa4e5e409d43573': str`Error creating credential: ${0}`,
's9d95f09deb601f34': str`Server validation of credential failed: ${0}`,
's0b1ffff8bedd6b8a': `Unknown Provider`,
's777e86d562523c85': `Logging out of providers...`,
's4980379bf8461c2d': `Single Logout`,
's0382d73823585617': str`${0}: ${1}`,
's23da7320dee28a60': `Device Code`,
's78869b8b2bc26d0d': `SAML Provider`,
'sca83a1f9227f74b9': `SAML logout complete`,
's7b90eab7969ae056': str`Redirecting to SAML provider: ${0}`,
'saa088a2d0f90d5a9': str`Posting logout response to SAML provider: ${0}`,
's3e6174b645d96835': str`Posting logout request to SAML provider: ${0}`,
'flow.navigation.go-back': `Go back`,
's3f8a07912545e72e': `Configure your email`,
'stage.authenticator.email.sent-to-address': str`A verification token has been sent to your configured email address: ${0}`,
'stage.authenticator.email.sent': `A verification token has been sent to your email address.`,
'clipboard.write.success.message.entity': str`${0} copied to clipboard.`,
'clipboard.write.success.generic': `Copied to clipboard.`,
'clipboard.write.failure.description': `Clipboard not available. Please copy the value manually.`,
'totp.config': `TOTP Config`,
'totp.config.clipboard.description': `Paste this URL into your authenticator app to set up a time-based one-time password.`,
'totp.secret': `TOTP Secret`,
'totp.secret.clipboard.description': `Paste this secret into your authenticator app to set up a time-based one-time password.`,
'sc091f75b942ec081': `QR-Code to setup a time-based one-time password`,
's6db67c7681b8be6e': `Copy time-based one-time password configuration`,
's43e859bf711e3599': `Copy TOTP Config`,
'sdf2794b96386c868': `Copy time-based one-time password secret`,
'sc78d16417878afd0': `Copy Secret`,
'sa5562e0115ffbccd': `Time-based one-time password`,
's40f44c0d88807fd5': `TOTP Code`,
's95474cc8c73dd9c0': `Type your TOTP code...`,
's168d0c138b63286d': `Type your time-based one-time password code.`,
's92e22f9319fdb85d': `Configuration warning`,
's1af2337b6d11d4c6': `Data export ready`,
's776d93092ad9ce90': `Review initiated`,
'sad46bcad1a343b51': `Review overdue`,
's59d168d966cecbaf': `Review attested`,
's5158b7f014cecefc': `Review completed`,
's482bc55a78891ef7': str`A code has been sent to your address: ${0}`,
's5afa3fc77ce8d94d': `A code has been sent to your email address.`,
's37f47fa981493c3b': `A one-time use code has been sent to you via SMS text message.`,
'sc92a7248dba5f388': `Open your authenticator app to retrieve a one-time use code.`,
's21d95b4651ad7a1e': `Enter a one-time recovery code for this user.`,
's2e1d5a7d320c25ef': `Enter the code from your authenticator device.`,
'sb94beab52540d2b7': `The CAPTCHA challenge failed to load.`,
's8d6236ad153d42c0': `CAPTCHA challenge`,
's217a96c47caaf73d': `Could not find a suitable CAPTCHA provider.`,
'sac315d5bd28d4efa': `Don't Pass`,
'sf910cca0f06bbc31': `Enter the email address or username associated with your account.`,
'sd5d2b94a1ccba1a9': str`Log in to continue to ${0}.`,
'seb6ab868740e4e36': str`Continue with ${0}`,
's53dddf1733e26c98': `Login sources`,
's05a941e4b4bfca9f': `Additional actions`,
's14e8ac4d377a1a99': `Type an authentication code...`,
's39002897db60bb28': `Sending Duo push notification...`,
'sd2b8c1caa0340ed6': `Failed to authenticate`,
'scd909e0bc55fc548': `Security key`,
'sd0de938d9c37ad5f': `Use a Passkey or security key to prove your identity.`,
's8bb0a1b672b52954': `In case you lose access to your primary authenticators.`,
's833cfe815918c143': `Tokens sent via email.`,
's76d21e163887ddd1': `Unknown device`,
'sf0ceaf3116e31fd4': `An unknown device class was provided.`,
's610fced3957d0471': `Select an authentication method`,
's958cedec1cb3fc52': `Select a configuration stage`,
's95094b57684716a5': `Failed to validate device.`,
'se99d25eb70c767ef': `Verifying your device...`,
'sac88482c48453fc8': str`You've logged out of ${0}. You can go back to the overview to launch another application, or log out of your authentik account.`,
's3108167b562674e2': `Go back to overview`,
'sdb749e793de55478': str`Log out of ${0}`,
's521681ed1d5ff814': str`Log back into ${0}`,
'sdd2ea73c24b40d5d': `Site footer`,
'sa17ce23517e56461': `Authentication form`,
};

View File

@@ -0,0 +1,250 @@
// Do not modify this file by hand!
// Re-generate this file by running lit-localize
import {str} from '@lit/localize';
/* eslint-disable no-irregular-whitespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
export const templates = {
'en': `Engels`,
'ja-JP': `Japans`,
'ko-KR': `Koreaans`,
'language-selector-label': `Taal selecteren`,
'locale-auto-detect-option': `Automatische detectie`,
's02240309358f557c': `Onbekende ernst`,
's0382d73823585617': str`
${0}:
${1}`,
's03f42eea72154959': `Gebruikersnaam`,
's042baf59902a711f': `Beleid`,
's04c1210202f48dc9': `Voer uw telefoonnummer in.`,
's091d5407b5b32e84': `Of`,
's09205907b5b56cda': `Nee`,
's0e516232f2ab4e04': `Tokens verstuurd via SMS.`,
's14c552fb0a4c0186': `Toepassing vereist de volgende rechten:`,
's197420b40df164f8': `Volg omleiding`,
's1cd198d689c66e4b': `API-toegang`,
's1cd264012278c047': `Flowuitvoering`,
's2543cffd6ebb6803': `Systeemtaakuitvoering`,
's296fbffaaa7c910a': `Vereist.`,
's2bc8aa1740d3da34': `Stadium object`,
's2c8189544e3ea679': `Opnieuw proberen`,
's2ddbebcb8a49b005': `Wachten op authenticatie...`,
's31fba571065f2c87': `Zorg ervoor dat u deze tokens op een veilige plaats bewaart.`,
's32f04d33924ce8ad': `Beleidsuitvoering`,
's342eccabf83c9bde': `Plangeschiedenis`,
's34be76c6b1eadbef': `Waarschuwing`,
's3643189d1abbb7f4': `Code`,
's38f774cd7e9b9dad': `Meld u aan.`,
's3ab772345f78aee0': `Flowinspecteur`,
's3cd84e82e83e35ad': `Voer uw code in`,
's4090dd0c0e45988b': `Aanvraag-ID`,
's420d2cdedcaf8cd0': `Authenticatie met Plex...`,
's455a8fc21077e7f9': `U heeft uw apparaat succesvol geauthenticeerd.`,
's47490298c17b753a': `Ontvang een pushmelding op uw apparaat.`,
's47a4983a2c6bb749': `Model bijgewerkt`,
's49730f3d5751a433': `Laden...`,
's4d7fe7be1c49896c': `U kunt deze pagina nu sluiten.`,
's502884e1977b2c06': `Volgende fase`,
's5f496533610103f2': `Applicatie geautoriseerd`,
's5f5bf4ef2bd93c04': `Groeptoewijzingen kunnen alleen worden gecontroleerd als een gebruiker al is aangemeld bij het proberen toegang te krijgen tot deze bron.`,
's61e48919db20538a': `UPN`,
's67749057edb2586b': `Uitloggen`,
's6ac670086eb137c6': `Herstel`,
's6c410fedda2a575f': `Update beschikbaar`,
's6c607d74bdfe9f36': `Gebruikerstoewijzingen kunnen alleen worden gecontroleerd als een gebruiker al is aangemeld bij het proberen toegang te krijgen tot deze bron.`,
's6fe64b4625517333': `Ondersteund door authentik`,
's7073489bb01b3c24': `Toepassing heeft al toegang tot de volgende rechten:`,
's708d9a4a0db0be8f': `Status controleren`,
's721d94ae700b5dfd': `Duo-activering`,
's77f572257f69a8db': `Eigenschapstoewijzingsuitzondering`,
's7abc9d08b0f70fd6': `Statische token`,
's7bda44013984fc48': `Wachtwoord ingesteld`,
's7e537ad68d7c16e1': `Gebruiker is opgeslagen`,
's81ecf2d4386b8e84': `Doorgaan`,
's81eff3409d572a21': `Algemene systeemuitzondering`,
's844fea0bfb10a72a': `Verificatiecode`,
's85366fac18679f28': `Wachtwoord vergeten?`,
's858e7ac4b3cf955f': `Statische tokens`,
's859b2e00391da380': `Selecteer Ja om het aantal keren dat u wordt gevraagd om u aan te melden te verminderen.`,
's8939f574b096054a': `Niet uzelf?`,
's8a1d9403ca90989b': `Uitnodiging is gebruikt`,
's8aff572e64b7936b': `Stuur de e-mail opnieuw.`,
's8d857061510fe794': `Duo pushmeldingen`,
's90064dd5c4dde2c6': `Scan de bovenstaande QR-code met de Microsoft Authenticator, Google Authenticator of een andere authenticator-app op je apparaat. Voer vervolgens de code in die op je apparaat wordt weergegeven om het instellen van de MFA te voltooien.`,
's9117fb5195e75151': `Melding`,
's92ca679592a36b35': `Geheim is gewijzigd`,
's97f2dc19fa556a6a': `SMS`,
's98b1cb8fb62909ec': `Groep`,
's98dc556f8bf707dc': `Toepassing vereist de volgende nieuwe rechten:`,
's9bd9ba84819493d4': `Er is iets fout gegaan! Probeer het later opnieuw.`,
's9c6f61dc47bc4f0a': `Model aangemaakt`,
's9c73bd29b279d26b': `Impersonatie beëindigd`,
's9e568afec3810bfe': `Herstelsleutels`,
'sa03aa46068460c95': `Gebruikersnaam of wachtwoord vergeten?`,
'sa0e0bdd7e244416b': `Verdachte aanvraag`,
'sa11e92683c5860c7': `Aanvraag is geweigerd.`,
'sa13e6c8310000e30': `Sessie-ID`,
'sa1b41e334ad89d94': `Geheim is bekeken`,
'sa266303caf1bd27f': `E-mail verzonden`,
'sa48f81f001b893d2': `Gebruiker`,
'sa50a6326530d8a0d': `Minder weergeven`,
'sac17f177f884e238': `Aangemeld blijven?`,
'sae5d87e99fe081e0': `Verplicht`,
'sb15fe7b9d09bb419': `Als er geen Plex pop-up wordt geopend, klik dan op de onderstaande knop.`,
'sb1c91762ae3a9bee': `Impersonatie gestart`,
'sb25e689e00c61829': `Gebruik een op codes gebaseerde authenticator.`,
'sb2c57b2d347203dd': `Meer weergeven`,
'sb2f307e79d20bb56': `Huidige plancontext`,
'sb3fa80ccfa97ee54': `Fasenaam`,
'sb4564c127ab8b921': `Mislukt inloggen`,
'sb59d68ed12d46377': `Laden`,
'sb6d7128df5978cee': `Beleidsuitzondering`,
'sbc625b4c669b9ce8': `Open aanmelding`,
'sbd19064fc3f405c1': `Controleer uw Postvak IN voor een verificatie-e-mail.`,
'sbea3c1e4f2fd623d': `Fasetype`,
'sc0a0c87d5c556c38': `Telefoonnummer`,
'sc2ec367e3108fe65': `Duo-activerings-QR-code`,
'sc3e1c4f1fff8e1ca': `Deze flow is voltooid.`,
'sc4eedb434536bdb4': `Heeft u een account nodig?`,
'sc5668cb23167e9bb': `Of klik op deze link als uw huidige apparaat Duo geïnstalleerd heeft:`,
'sc8da3cc71de63832': `Inloggen`,
'sc9f69360b58706c7': `Model verwijderd`,
'scb489a1a173ac3f0': `Ja`,
'scf5ce91bfba10a61': `Voer uw wachtwoord in`,
'sd1f44f1a8bc20e67': `E-mail`,
'sd6a025d66f2637d1': `Traditionele authenticator`,
'sd73b202ec04eefd9': `Onbekende intentie`,
'sd766cdc29b25ff95': `Authenticatie met Apple...`,
'sd8f220c999726151': `Doorverwijzing`,
'sdc9e222be9612939': `Bron gekoppeld`,
'se2d65e13768468e0': `Intern`,
'se2f258b996f7279c': `Systeemtaakuitzondering`,
'se409d01b52c4e12f': `Herhaal authenticatie`,
'se5fd752dbbc3cd28': `Gebruik een beveiligingssleutel`,
'seb0c08d9f233bbfe': `Voer de code in die u via sms heeft ontvangen`,
'sf1ec4acb8d744ed9': `Waarschuwing`,
'sf29883ac9ec43085': `App-wachtwoord`,
'sf6e1665c7022a1f8': `Wachtwoord`,
'sf8f49cdbf0036343': `Configuratiefout`,
'sfcfcf85a57eea78a': `TOTP-apparaat`,
'sfe211545fd02f73e': `Verificatie`,
'sfe629863ba1338c2': `Verbindingsfout, opnieuw verbinden...`,
'zh-Hans': `Chinees`,
'zh-Hant': `Chinees`,
'en-XA': `English (Pseudo-Accents)`,
'locale-option-localized-label': str`${0} (${1})`,
'sa4be93eb7f4e51e3': `Site links`,
's12d6dde9b30c3093': `Dismiss`,
'sdaecc3c29a27c5c5': `An unknown error occurred`,
'se84ba7f105934495': `Please check the browser console for more details.`,
'sdea479482318489d': `Status messages`,
'sb69e43f2f6bd1b54': `Close flow inspector`,
's857cf5aa8955cf5c': `Flow inspector loading`,
's3736936aac1adc2e': `Open flow inspector`,
's15d6fabebb4ef2d8': `User information`,
'avatar.alt-text-for-user': str`Avatar for ${0}`,
'avatar.alt-text': `User avatar`,
'sf376ae7e9ef41c1a': `Authenticating with Telegram...`,
's76ea993fdc8503d8': `Click the button below to start.`,
's6e858c4c4c3b6b76': `You're about to be redirected to the following URL.`,
's7f073c746d0f6324': `Form actions`,
's67ac11d47f1ce794': `WebAuthn requires this page to be accessed via HTTPS.`,
'se9e9e1d6799b86a5': `WebAuthn not supported by browser.`,
's7fa4e5e409d43573': str`Error creating credential: ${0}`,
's9d95f09deb601f34': str`Server validation of credential failed: ${0}`,
'sb0821a9e92cac5eb': `Failed to register. Please try again.`,
's238784fc1dc672ae': `Registering...`,
's009bd1c98a9f5de2': `Failed to register`,
'sb166ce92e8e807d6': `Retry registration`,
's0b1ffff8bedd6b8a': `Unknown Provider`,
's777e86d562523c85': `Logging out of providers...`,
's4980379bf8461c2d': `Single Logout`,
's23da7320dee28a60': `Device Code`,
's78869b8b2bc26d0d': `SAML Provider`,
'sca83a1f9227f74b9': `SAML logout complete`,
's7b90eab7969ae056': str`Redirecting to SAML provider: ${0}`,
'saa088a2d0f90d5a9': str`Posting logout response to SAML provider: ${0}`,
's3e6174b645d96835': str`Posting logout request to SAML provider: ${0}`,
'flow.navigation.go-back': `Go back`,
's3f8a07912545e72e': `Configure your email`,
'scedf77e8b75cad5a': `Please enter your email address.`,
'stage.authenticator.email.sent-to-address': str`A verification token has been sent to your configured email address: ${0}`,
'stage.authenticator.email.sent': `A verification token has been sent to your email address.`,
's7cdd62c100b6b17b': `Please enter the code you received via email`,
'clipboard.write.success.message.entity': str`${0} copied to clipboard.`,
'clipboard.write.success.generic': `Copied to clipboard.`,
'clipboard.write.failure.description': `Clipboard not available. Please copy the value manually.`,
'totp.config': `TOTP Config`,
'totp.config.clipboard.description': `Paste this URL into your authenticator app to set up a time-based one-time password.`,
'totp.secret': `TOTP Secret`,
'totp.secret.clipboard.description': `Paste this secret into your authenticator app to set up a time-based one-time password.`,
'sc091f75b942ec081': `QR-Code to setup a time-based one-time password`,
's6db67c7681b8be6e': `Copy time-based one-time password configuration`,
's43e859bf711e3599': `Copy TOTP Config`,
'sdf2794b96386c868': `Copy time-based one-time password secret`,
'sc78d16417878afd0': `Copy Secret`,
'sa5562e0115ffbccd': `Time-based one-time password`,
's40f44c0d88807fd5': `TOTP Code`,
's95474cc8c73dd9c0': `Type your TOTP code...`,
's168d0c138b63286d': `Type your time-based one-time password code.`,
's92e22f9319fdb85d': `Configuration warning`,
's1af2337b6d11d4c6': `Data export ready`,
's776d93092ad9ce90': `Review initiated`,
'sad46bcad1a343b51': `Review overdue`,
's59d168d966cecbaf': `Review attested`,
's5158b7f014cecefc': `Review completed`,
's482bc55a78891ef7': str`A code has been sent to your address: ${0}`,
's5afa3fc77ce8d94d': `A code has been sent to your email address.`,
's37f47fa981493c3b': `A one-time use code has been sent to you via SMS text message.`,
'sc92a7248dba5f388': `Open your authenticator app to retrieve a one-time use code.`,
's21d95b4651ad7a1e': `Enter a one-time recovery code for this user.`,
's2e1d5a7d320c25ef': `Enter the code from your authenticator device.`,
's84fcddede27b8e2a': `External`,
's1a635369edaf4dc3': `Service account`,
'sff930bf2834e2201': `Service account (internal)`,
's98bb2ae796f1ceef': `Select another authentication method`,
's2f7f35f6a5b733f5': `Show password`,
's452f791e0ff6a13e': `Hide password`,
's6bb30c61df4cf486': `Caps Lock is enabled.`,
'sb94beab52540d2b7': `The CAPTCHA challenge failed to load.`,
's8d6236ad153d42c0': `CAPTCHA challenge`,
's30d6ff9e15e0a40a': `Verifying...`,
's217a96c47caaf73d': `Could not find a suitable CAPTCHA provider.`,
's2e422519ed38f7d8': `Pass`,
'sac315d5bd28d4efa': `Don't Pass`,
's1c336c2d6cef77b3': `Remember me on this device`,
'sf910cca0f06bbc31': `Enter the email address or username associated with your account.`,
's6ecfc18dbfeedd76': `Select one of the options below to continue.`,
'sd5d2b94a1ccba1a9': str`Log in to continue to ${0}.`,
'seb6ab868740e4e36': str`Continue with ${0}`,
's53dddf1733e26c98': `Login sources`,
's05a941e4b4bfca9f': `Additional actions`,
's14e8ac4d377a1a99': `Type an authentication code...`,
's39002897db60bb28': `Sending Duo push notification...`,
'sd2b8c1caa0340ed6': `Failed to authenticate`,
's363abde8a254ea5f': `Authentication failed. Please try again.`,
'sffef1a8596bc58bb': `Authenticating...`,
'scd909e0bc55fc548': `Security key`,
'sd0de938d9c37ad5f': `Use a Passkey or security key to prove your identity.`,
's8bb0a1b672b52954': `In case you lose access to your primary authenticators.`,
's833cfe815918c143': `Tokens sent via email.`,
's76d21e163887ddd1': `Unknown device`,
'sf0ceaf3116e31fd4': `An unknown device class was provided.`,
's610fced3957d0471': `Select an authentication method`,
's958cedec1cb3fc52': `Select a configuration stage`,
's06bfe45ffef2cf60': str`Stage name: ${0}`,
's95094b57684716a5': `Failed to validate device.`,
'se99d25eb70c767ef': `Verifying your device...`,
'sac88482c48453fc8': str`You've logged out of ${0}. You can go back to the overview to launch another application, or log out of your authentik account.`,
's3108167b562674e2': `Go back to overview`,
'sdb749e793de55478': str`Log out of ${0}`,
's521681ed1d5ff814': str`Log back into ${0}`,
'sdd2ea73c24b40d5d': `Site footer`,
'sa17ce23517e56461': `Authentication form`,
's91ae4b6bf981682b': `authentik Logo`,
};

View File

@@ -0,0 +1,252 @@
// Do not modify this file by hand!
// Re-generate this file by running lit-localize
import {str} from '@lit/localize';
/* eslint-disable no-irregular-whitespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
export const templates = {
'en': `Angielski`,
'ja-JP': `Japoński`,
'ko-KR': `Koreański`,
'language-selector-label': `Wybierz język`,
'locale-auto-detect-option': `Automatyczne wykrywanie`,
's009bd1c98a9f5de2': `Nie udało się zarejestrować`,
's02240309358f557c': `Nieznana intensywność`,
's0382d73823585617': str`
${0}:
${1}`,
's03f42eea72154959': `Nazwa użytkownika`,
's042baf59902a711f': `Zasada`,
's04c1210202f48dc9': `Podaj swój numer telefonu.`,
's06bfe45ffef2cf60': str`Nazwa etapu: ${0}`,
's091d5407b5b32e84': `Lub`,
's09205907b5b56cda': `Nie`,
's0e516232f2ab4e04': `Tokeny wysyłane SMS-em.`,
's14c552fb0a4c0186': `Aplikacja wymaga następujących uprawnień:`,
's197420b40df164f8': `Śledź przekierowanie`,
's1a635369edaf4dc3': `Konto usługowe`,
's1cd198d689c66e4b': `Dostęp API`,
's1cd264012278c047': `Wykonanie przepływu`,
's238784fc1dc672ae': `Rejestrowanie...`,
's2543cffd6ebb6803': `Wykonywanie zadań systemowych`,
's296fbffaaa7c910a': `Wymagany.`,
's2bc8aa1740d3da34': `Obiekt etapu`,
's2c8189544e3ea679': `Ponów`,
's2ddbebcb8a49b005': `Oczekiwanie na uwierzytelnienie...`,
's2e422519ed38f7d8': `Przepuść`,
's2f7f35f6a5b733f5': `Pokaż hasło`,
's30d6ff9e15e0a40a': `Weryfikowanie...`,
's31fba571065f2c87': `Upewnij się, że przechowujesz te tokeny w bezpiecznym miejscu.`,
's32f04d33924ce8ad': `Wykonanie zasad`,
's342eccabf83c9bde': `Historia planu`,
's34be76c6b1eadbef': `Ostrzeżenie`,
's363abde8a254ea5f': `Uwierzytelnianie nie powiodło się. Spróbuj ponownie.`,
's3643189d1abbb7f4': `Kod`,
's38f774cd7e9b9dad': `Zarejestruj się.`,
's39002897db60bb28': `Wysyłam powiadomienie push Duo`,
's3ab772345f78aee0': `Inspektor przepływu`,
's3cd84e82e83e35ad': `Proszę wprowadź swój kod`,
's4090dd0c0e45988b': `Identyfikator żądania`,
's420d2cdedcaf8cd0': `Uwierzytelnianie z Plex...`,
's452f791e0ff6a13e': `Ukryj hasło`,
's455a8fc21077e7f9': `Pomyślnie uwierzytelniłeś swoje urządzenie.`,
's47490298c17b753a': `Otrzymuj powiadomienia push na swoje urządzenie.`,
's47a4983a2c6bb749': `Zaktualizowano model`,
's49730f3d5751a433': `Ładowanie...`,
's4d7fe7be1c49896c': `Możesz już zamknąć tę stronę.`,
's502884e1977b2c06': `Następny etap`,
'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.`,
's61e48919db20538a': `UPN`,
's67749057edb2586b': `Wyloguj`,
's67ac11d47f1ce794': `WebAuthn wymaga dostępu do tej strony za pośrednictwem protokołu HTTPS.`,
's6ac670086eb137c6': `Odzyskiwanie`,
'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.`,
's6ecfc18dbfeedd76': `Wybierz jedną z poniższych opcji, aby kontynuować.`,
's6fe64b4625517333': `Napędzane przez authentik`,
's7073489bb01b3c24': `Aplikacja ma już dostęp do następujących uprawnień:`,
's708d9a4a0db0be8f': `Sprawdź status`,
's721d94ae700b5dfd': `Aktywacja Duo`,
's77f572257f69a8db': `Wyjątek mapowania właściwości`,
's7abc9d08b0f70fd6': `Token statyczny`,
's7bda44013984fc48': `Hasło ustawione`,
's7e537ad68d7c16e1': `Użytkownik zapisał do`,
's7fa4e5e409d43573': str`Błąd podczas tworzenia poświadczenia:
${0}`,
's81ecf2d4386b8e84': `Kontynuuj`,
's81eff3409d572a21': `Ogólny wyjątek systemowy`,
's844fea0bfb10a72a': `Kod uwierzytelnienia`,
's84fcddede27b8e2a': `Zewnętrzny`,
's85366fac18679f28': `Zapomniałeś hasła?`,
's858e7ac4b3cf955f': `Tokeny statyczne`,
's859b2e00391da380': `Wybierz Tak, aby zmniejszyć liczbę razy kiedy wymagane będzie logowanie.`,
's8939f574b096054a': `Nie ty?`,
's8a1d9403ca90989b': `Wykorzystano zaproszenie`,
's8aff572e64b7936b': `Wyślij e-mail ponownie.`,
's8d857061510fe794': `Powiadomienia push Duo`,
's90064dd5c4dde2c6': `Zeskanuj powyższy kod QR za pomocą aplikacji Microsoft Authenticator, Google Authenticator lub innej aplikacji uwierzytelniającej na swoim urządzeniu i wprowadź kod wyświetlany przez urządzenie poniżej, aby zakończyć konfigurację urządzenia MFA.`,
's9117fb5195e75151': `Uwaga`,
's92ca679592a36b35': `Sekret został obrócony`,
's97f2dc19fa556a6a': `SMS`,
's98b1cb8fb62909ec': `Grupa`,
's98dc556f8bf707dc': `Aplikacja wymaga następujących nowych uprawnień:`,
's9bd9ba84819493d4': `Coś poszło nie tak! Spróbuj ponownie później.`,
's9c6f61dc47bc4f0a': `Utworzono model`,
's9c73bd29b279d26b': `Podszywanie się zostało zakończone`,
's9d95f09deb601f34': str`Weryfikacja poświadczeń serwera nie powiodła się:
${0}`,
's9e568afec3810bfe': `Klucze odzyskiwania`,
'sa03aa46068460c95': `Zapomniałeś nazwy użytkownika lub hasła?`,
'sa0e0bdd7e244416b': `Podejrzane zapytanie`,
'sa11e92683c5860c7': `Żądanie zostało odrzucone.`,
'sa13e6c8310000e30': `ID sesji`,
'sa1b41e334ad89d94': `Sekret został wyświetlony`,
'sa266303caf1bd27f': `Email wysłany`,
'sa48f81f001b893d2': `Użytkownik`,
'sa50a6326530d8a0d': `Pokaż mniej`,
'sac17f177f884e238': `Pozostań zalogowanym?`,
'sae5d87e99fe081e0': `Wymagany`,
'sb0821a9e92cac5eb': `Rejestracja nie powiodła się. Spróbuj ponownie.`,
'sb15fe7b9d09bb419': `Jeśli nie otworzy się wyskakujące okienko Plex, kliknij przycisk poniżej.`,
'sb166ce92e8e807d6': `Ponów rejestrację`,
'sb1c91762ae3a9bee': `Rozpoczęto podszywanie się`,
'sb25e689e00c61829': `Użyj uwierzytelniacza opartego na kodzie.`,
'sb2c57b2d347203dd': `Pokaż więcej`,
'sb2f307e79d20bb56': `Aktualny kontekst planu`,
'sb3fa80ccfa97ee54': `Nazwa etapu`,
'sb4564c127ab8b921': `Nieudane logowanie`,
'sb59d68ed12d46377': `Ładowanie`,
'sb6d7128df5978cee': `Wyjątek zasad`,
'sbc625b4c669b9ce8': `Otwórz logowanie`,
'sbd19064fc3f405c1': `Sprawdź swoją skrzynkę odbiorczą pod kątem e-maila weryfikacyjnego.`,
'sbea3c1e4f2fd623d': `Rodzaj etapu`,
'sc0a0c87d5c556c38': `Numer telefonu`,
'sc2ec367e3108fe65': `Kod QR aktywacji Duo`,
'sc3e1c4f1fff8e1ca': `Ten przepływ jest zakończony.`,
'sc4eedb434536bdb4': `Potrzebujesz konta?`,
'sc5668cb23167e9bb': `Alternatywnie, jeśli na Twoim obecnym urządzeniu jest zainstalowany Duo, kliknij ten link:`,
'sc8da3cc71de63832': `Logowanie`,
'sc9f69360b58706c7': `Model usunięty`,
'scb489a1a173ac3f0': `Tak`,
'scf5ce91bfba10a61': `Wprowadź hasło`,
'sd1f44f1a8bc20e67': `E-mail`,
'sd2b8c1caa0340ed6': `Nie udało się uwierzytelnić`,
'sd6a025d66f2637d1': `Tradycyjny uwierzytelniacz`,
'sd73b202ec04eefd9': `Nieznany zamiar`,
'sd766cdc29b25ff95': `Uwierzytelnianie z Apple...`,
'sd8f220c999726151': `Przekierowanie`,
'sdc9e222be9612939': `Źródło połączone`,
'se2d65e13768468e0': `Wewnętrzny`,
'se2f258b996f7279c': `Wyjątek zadania systemowego`,
'se409d01b52c4e12f': `Ponów uwierzytelnianie`,
'se5fd752dbbc3cd28': `Użyj klucza bezpieczeństwa`,
'se9e9e1d6799b86a5': `WebAuthn nie jest obsługiwany przez przeglądarkę.`,
'seb0c08d9f233bbfe': `Wprowadź kod otrzymany SMS-em`,
'sf1ec4acb8d744ed9': `Alert`,
'sf29883ac9ec43085': `Hasło aplikacji`,
'sf6e1665c7022a1f8': `Hasło`,
'sf8f49cdbf0036343': `Błąd konfiguracji`,
'sfcfcf85a57eea78a': `Urządzenie TOTP`,
'sfe211545fd02f73e': `Weryfikacja`,
'sfe629863ba1338c2': `Błąd połączenia, ponowne łączenie...`,
'sff930bf2834e2201': `Konto usługowe (wewnętrzne)`,
'sffef1a8596bc58bb': `Uwierzytelnianie...`,
'zh-Hans': `Chiński`,
'zh-Hant': `Chiński`,
'en-XA': `English (Pseudo-Accents)`,
'locale-option-localized-label': str`${0} (${1})`,
'sa4be93eb7f4e51e3': `Site links`,
's12d6dde9b30c3093': `Dismiss`,
'sdaecc3c29a27c5c5': `An unknown error occurred`,
'se84ba7f105934495': `Please check the browser console for more details.`,
'sdea479482318489d': `Status messages`,
'sb69e43f2f6bd1b54': `Close flow inspector`,
's857cf5aa8955cf5c': `Flow inspector loading`,
's3736936aac1adc2e': `Open flow inspector`,
's15d6fabebb4ef2d8': `User information`,
'avatar.alt-text-for-user': str`Avatar for ${0}`,
'avatar.alt-text': `User avatar`,
'sf376ae7e9ef41c1a': `Authenticating with Telegram...`,
's76ea993fdc8503d8': `Click the button below to start.`,
's6e858c4c4c3b6b76': `You're about to be redirected to the following URL.`,
's7f073c746d0f6324': `Form actions`,
's0b1ffff8bedd6b8a': `Unknown Provider`,
's777e86d562523c85': `Logging out of providers...`,
's4980379bf8461c2d': `Single Logout`,
's23da7320dee28a60': `Device Code`,
's78869b8b2bc26d0d': `SAML Provider`,
'sca83a1f9227f74b9': `SAML logout complete`,
's7b90eab7969ae056': str`Redirecting to SAML provider: ${0}`,
'saa088a2d0f90d5a9': str`Posting logout response to SAML provider: ${0}`,
's3e6174b645d96835': str`Posting logout request to SAML provider: ${0}`,
'flow.navigation.go-back': `Go back`,
's3f8a07912545e72e': `Configure your email`,
'scedf77e8b75cad5a': `Please enter your email address.`,
'stage.authenticator.email.sent-to-address': str`A verification token has been sent to your configured email address: ${0}`,
'stage.authenticator.email.sent': `A verification token has been sent to your email address.`,
's7cdd62c100b6b17b': `Please enter the code you received via email`,
'clipboard.write.success.message.entity': str`${0} copied to clipboard.`,
'clipboard.write.success.generic': `Copied to clipboard.`,
'clipboard.write.failure.description': `Clipboard not available. Please copy the value manually.`,
'totp.config': `TOTP Config`,
'totp.config.clipboard.description': `Paste this URL into your authenticator app to set up a time-based one-time password.`,
'totp.secret': `TOTP Secret`,
'totp.secret.clipboard.description': `Paste this secret into your authenticator app to set up a time-based one-time password.`,
'sc091f75b942ec081': `QR-Code to setup a time-based one-time password`,
's6db67c7681b8be6e': `Copy time-based one-time password configuration`,
's43e859bf711e3599': `Copy TOTP Config`,
'sdf2794b96386c868': `Copy time-based one-time password secret`,
'sc78d16417878afd0': `Copy Secret`,
'sa5562e0115ffbccd': `Time-based one-time password`,
's40f44c0d88807fd5': `TOTP Code`,
's95474cc8c73dd9c0': `Type your TOTP code...`,
's168d0c138b63286d': `Type your time-based one-time password code.`,
's92e22f9319fdb85d': `Configuration warning`,
's1af2337b6d11d4c6': `Data export ready`,
's776d93092ad9ce90': `Review initiated`,
'sad46bcad1a343b51': `Review overdue`,
's59d168d966cecbaf': `Review attested`,
's5158b7f014cecefc': `Review completed`,
's482bc55a78891ef7': str`A code has been sent to your address: ${0}`,
's5afa3fc77ce8d94d': `A code has been sent to your email address.`,
's37f47fa981493c3b': `A one-time use code has been sent to you via SMS text message.`,
'sc92a7248dba5f388': `Open your authenticator app to retrieve a one-time use code.`,
's21d95b4651ad7a1e': `Enter a one-time recovery code for this user.`,
's2e1d5a7d320c25ef': `Enter the code from your authenticator device.`,
's98bb2ae796f1ceef': `Select another authentication method`,
's6bb30c61df4cf486': `Caps Lock is enabled.`,
'sb94beab52540d2b7': `The CAPTCHA challenge failed to load.`,
's8d6236ad153d42c0': `CAPTCHA challenge`,
's217a96c47caaf73d': `Could not find a suitable CAPTCHA provider.`,
'sac315d5bd28d4efa': `Don't Pass`,
's1c336c2d6cef77b3': `Remember me on this device`,
'sf910cca0f06bbc31': `Enter the email address or username associated with your account.`,
'sd5d2b94a1ccba1a9': str`Log in to continue to ${0}.`,
'seb6ab868740e4e36': str`Continue with ${0}`,
's53dddf1733e26c98': `Login sources`,
's05a941e4b4bfca9f': `Additional actions`,
's14e8ac4d377a1a99': `Type an authentication code...`,
'scd909e0bc55fc548': `Security key`,
'sd0de938d9c37ad5f': `Use a Passkey or security key to prove your identity.`,
's8bb0a1b672b52954': `In case you lose access to your primary authenticators.`,
's833cfe815918c143': `Tokens sent via email.`,
's76d21e163887ddd1': `Unknown device`,
'sf0ceaf3116e31fd4': `An unknown device class was provided.`,
's610fced3957d0471': `Select an authentication method`,
's958cedec1cb3fc52': `Select a configuration stage`,
's95094b57684716a5': `Failed to validate device.`,
'se99d25eb70c767ef': `Verifying your device...`,
'sac88482c48453fc8': str`You've logged out of ${0}. You can go back to the overview to launch another application, or log out of your authentik account.`,
's3108167b562674e2': `Go back to overview`,
'sdb749e793de55478': str`Log out of ${0}`,
's521681ed1d5ff814': str`Log back into ${0}`,
'sdd2ea73c24b40d5d': `Site footer`,
'sa17ce23517e56461': `Authentication form`,
's91ae4b6bf981682b': `authentik Logo`,
};

View File

@@ -0,0 +1,251 @@
// Do not modify this file by hand!
// Re-generate this file by running lit-localize
import {str} from '@lit/localize';
/* eslint-disable no-irregular-whitespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
export const templates = {
'en': `Inglês`,
'ja-JP': `Japonês`,
'ko-KR': `Coreano`,
'language-selector-label': `Selecionar idioma`,
'locale-auto-detect-option': `Detecção automática`,
's009bd1c98a9f5de2': `Falha ao registrar`,
's02240309358f557c': `Severidade desconhecida`,
's0382d73823585617': str`
${0}:
${1}`,
's03f42eea72154959': `Usuário`,
's042baf59902a711f': `Documentação`,
's04c1210202f48dc9': `Por favor, insira seu número de telefone.`,
's06bfe45ffef2cf60': str`Nome da etapa: ${0}`,
's091d5407b5b32e84': `Ou`,
's09205907b5b56cda': `Não`,
's0b1ffff8bedd6b8a': `Provedor Desconhecido`,
's0e516232f2ab4e04': `Tokens enviados via SMS.`,
's12d6dde9b30c3093': `Dispensar`,
's14c552fb0a4c0186': `O aplicativo requer as seguintes permissões:`,
's14e8ac4d377a1a99': `Digite um código de autenticação...`,
's15d6fabebb4ef2d8': `Informações do usuário`,
's168d0c138b63286d': `Digite seu código de senha de uso único baseada em tempo.`,
's197420b40df164f8': `Seguir redirecionamento`,
's1a635369edaf4dc3': `Conta de serviço`,
's1c336c2d6cef77b3': `Lembrar de mim neste dispositivo`,
's1cd198d689c66e4b': `Acesso da API`,
's1cd264012278c047': `Execução do fluxo`,
's21d95b4651ad7a1e': `Insira um código de recuperação de uso único para este usuário.`,
's238784fc1dc672ae': `Registrando...`,
's23da7320dee28a60': `Código do Dispositivo`,
's2543cffd6ebb6803': `Execução de tarefa do sistema`,
's296fbffaaa7c910a': `Necessário.`,
's2bc8aa1740d3da34': `Objeto da etapa`,
's2c8189544e3ea679': `Tentar novamente`,
's2ddbebcb8a49b005': `Aguardando autenticação...`,
's2e1d5a7d320c25ef': `Insira o código do seu dispositivo autenticador.`,
's2e422519ed38f7d8': `Aprovado`,
's2f7f35f6a5b733f5': `Mostrar senha`,
's30d6ff9e15e0a40a': `Verificando...`,
's3108167b562674e2': `Voltar para a visão geral`,
's31fba571065f2c87': `Certifique-se de manter esses tokens em um lugar seguro.`,
's32f04d33924ce8ad': `Execução da política`,
's342eccabf83c9bde': `Histórico do plano`,
's34be76c6b1eadbef': `Aviso`,
's363abde8a254ea5f': `Falha na autenticação. Por favor, tente novamente.`,
's3643189d1abbb7f4': `Código`,
's3736936aac1adc2e': `Abrir inspecionador de fluxo`,
's37f47fa981493c3b': `Um código de uso único foi enviado a você via mensagem SMS.`,
's38f774cd7e9b9dad': `Registre-se.`,
's39002897db60bb28': `Enviando notificação push do Duo...`,
's3ab772345f78aee0': `Inspecionador de fluxo`,
's3cd84e82e83e35ad': `Por favor, insira seu código`,
's3e6174b645d96835': str`Enviando requisição de logout ao provedor SAML: ${0}`,
's3f8a07912545e72e': `Configure seu e-mail`,
's4090dd0c0e45988b': `ID da solicitação`,
's40f44c0d88807fd5': `Código TOTP`,
's420d2cdedcaf8cd0': `Autenticando com Plex...`,
's43e859bf711e3599': `Copiar configuração TOTP`,
's452f791e0ff6a13e': `Esconder senha`,
's455a8fc21077e7f9': `Você autenticou seu dispositivo com sucesso.`,
's47490298c17b753a': `Receber uma notificação push em seu dispositivo.`,
's47a4983a2c6bb749': `Modelo atualizado`,
's482bc55a78891ef7': str`Um código foi enviado para seu email: ${0}`,
's49730f3d5751a433': `Carregando...`,
's4980379bf8461c2d': `Logout Único`,
's4d7fe7be1c49896c': `Você pode fechar esta página agora.`,
's502884e1977b2c06': `Próxima etapa`,
's521681ed1d5ff814': str`Entrar novamente em ${0}`,
's5afa3fc77ce8d94d': `Um código foi enviado para seu endereço de email.`,
's5f496533610103f2': `Aplicação autorizada`,
's5f5bf4ef2bd93c04': `Os mapeamentos de grupo só podem ser verificados se um usuário já estiver logado ao
tentar acessar esta fonte.`,
's610fced3957d0471': `Selecione um método de autenticação`,
's61e48919db20538a': `UPN`,
's67749057edb2586b': `Sair`,
's67ac11d47f1ce794': `WebAuthn requer que esta página seja acessada via HTTPS.`,
's6ac670086eb137c6': `Recuperação`,
's6bb30c61df4cf486': `Caps Lock está ativado.`,
's6c410fedda2a575f': `Atualização disponível`,
's6c607d74bdfe9f36': `Os mapeamentos de usuário só podem ser verificados se um usuário já estiver logado ao tentar acessar esta fonte.`,
's6db67c7681b8be6e': `Copiar configuração de senha de uso único baseada em tempo`,
's6ecfc18dbfeedd76': `Selecione uma das opções abaixo para continuar.`,
's6fe64b4625517333': `Desenvolvido por authentik`,
's7073489bb01b3c24': `O aplicativo já tem acesso às seguintes permissões:`,
's708d9a4a0db0be8f': `Verificar status`,
's721d94ae700b5dfd': `Ativação do Duo`,
's76d21e163887ddd1': `Dispositivo desconhecido`,
's76ea993fdc8503d8': `Clique no botão abaixo para iniciar.`,
's777e86d562523c85': `Saindo dos provedores...`,
's77f572257f69a8db': `Exceção de mapeamento de propriedade`,
's78869b8b2bc26d0d': `Provedor SAML`,
's7abc9d08b0f70fd6': `Token estático`,
's7b90eab7969ae056': str`Redirecionando ao provedor SAML: ${0}`,
's7bda44013984fc48': `Senha definida`,
's7cdd62c100b6b17b': `Por favor, insira o código que você recebeu por e-mail`,
's7e537ad68d7c16e1': `Usuário foi escrito para`,
's7f073c746d0f6324': `Ações do formulário`,
's7fa4e5e409d43573': str`Erro ao criar credencial: ${0}`,
's81ecf2d4386b8e84': `Continuar`,
's81eff3409d572a21': `Exceção geral do sistema`,
's833cfe815918c143': `Tokens enviados por e-mail.`,
's844fea0bfb10a72a': `Código de autenticação`,
's84fcddede27b8e2a': `Externo`,
's85366fac18679f28': `Esqueceu sua senha?`,
's857cf5aa8955cf5c': `Inspecionador de fluxo carregando`,
's858e7ac4b3cf955f': `Tokens estáticos`,
's859b2e00391da380': `Selecione Sim para reduzir o número de vezes que você é solicitado a entrar.`,
's8939f574b096054a': `Não é você?`,
's8a1d9403ca90989b': `Convite usado`,
's8aff572e64b7936b': `Enviar Email novamente.`,
's8bb0a1b672b52954': `Caso você perca acesso ao seu método de autenticação principal.`,
's8d6236ad153d42c0': `Desafio de CAPTCHA`,
's8d857061510fe794': `Notificações push do Duo`,
's90064dd5c4dde2c6': `Por favor, escaneie o código QR acima usando o Microsoft Authenticator, Google Authenticator ou outros aplicativos de autenticação em seu dispositivo e insira o código que o dispositivo exibe abaixo para concluir a configuração do dispositivo MFA.`,
's9117fb5195e75151': `Notificação`,
's91ae4b6bf981682b': `Logo do authentik`,
's92ca679592a36b35': `O segredo foi rotacionado`,
's95474cc8c73dd9c0': `Digite seu código TOTP...`,
's958cedec1cb3fc52': `Selecione um estágio de configuração`,
's97f2dc19fa556a6a': `SMS`,
's98b1cb8fb62909ec': `Grupo`,
's98bb2ae796f1ceef': `Selecionar outro método de autenticação`,
's98dc556f8bf707dc': `O aplicativo requer as seguintes novas permissões:`,
's9bd9ba84819493d4': `Algo deu errado! Por favor, tente novamente mais tarde.`,
's9c6f61dc47bc4f0a': `Modelo criado`,
's9c73bd29b279d26b': `Representação encerrada`,
's9d95f09deb601f34': str`Falha na validação do servidor da credencial: ${0}`,
's9e568afec3810bfe': `Chaves de recuperação`,
'sa03aa46068460c95': `Esqueceu seu usuário ou senha?`,
'sa0e0bdd7e244416b': `Requisição suspeita`,
'sa11e92683c5860c7': `A solicitação foi negada.`,
'sa13e6c8310000e30': `ID da sessão`,
'sa17ce23517e56461': `Formulário de autenticação`,
'sa1b41e334ad89d94': `O segredo foi visualizado`,
'sa266303caf1bd27f': `E-mail enviado`,
'sa48f81f001b893d2': `Usuário`,
'sa4be93eb7f4e51e3': `Links do site`,
'sa50a6326530d8a0d': `Mostrar menos`,
'sa5562e0115ffbccd': `Senha de uso único baseada em tempo`,
'sac17f177f884e238': `Permitir que eu permaneça conectado?`,
'sac315d5bd28d4efa': `Não Passar`,
'sac88482c48453fc8': str`Você saiu de ${0}. Você pode voltar para a visão geral para iniciar outro aplicativo ou sair da sua conta authentik.`,
'sae5d87e99fe081e0': `Necessário`,
'sb0821a9e92cac5eb': `Falha ao registrar. Por favor, tente novamente.`,
'sb15fe7b9d09bb419': `Se nenhuma janela pop-up do Plex abrir, clique no botão abaixo.`,
'sb166ce92e8e807d6': `Tentar registrar novamente`,
'sb1c91762ae3a9bee': `Representação iniciada`,
'sb25e689e00c61829': `Use um autenticador baseado em código.`,
'sb2c57b2d347203dd': `Mostrar mais`,
'sb2f307e79d20bb56': `Contexto do plano atual`,
'sb3fa80ccfa97ee54': `Nome da etapa`,
'sb4564c127ab8b921': `Falha no login`,
'sb59d68ed12d46377': `Carregando`,
'sb69e43f2f6bd1b54': `Fechar inspecionador de fluxo`,
'sb6d7128df5978cee': `Exceção de política`,
'sbc625b4c669b9ce8': `Abrir login`,
'sbd19064fc3f405c1': `Procure na sua Caixa de Entrada um e-mail de verificação.`,
'sbea3c1e4f2fd623d': `Tipo de etapa`,
'sc091f75b942ec081': `QR-Code para configurar uma senha de uso único baseada em tempo`,
'sc0a0c87d5c556c38': `Número de telefone`,
'sc2ec367e3108fe65': `Código QR de ativação do Duo`,
'sc3e1c4f1fff8e1ca': `Este fluxo está completo.`,
'sc4eedb434536bdb4': `Precisa de uma conta?`,
'sc5668cb23167e9bb': `Alternativamente, se o seu dispositivo atual tiver o Duo instalado, clique neste link:`,
'sc8da3cc71de63832': `Login`,
'sc92a7248dba5f388': `Abra seu aplicativo de autenticação para obter um código de uso único.`,
'sc9f69360b58706c7': `Modelo deletado`,
'sca83a1f9227f74b9': `Logout SAML finalizado`,
'scb489a1a173ac3f0': `Sim`,
'scedf77e8b75cad5a': `Por favor, insira seu endereço de e-mail.`,
'scf5ce91bfba10a61': `Por favor, insira sua senha`,
'sd1f44f1a8bc20e67': `Email`,
'sd2b8c1caa0340ed6': `Falha ao autenticar`,
'sd6a025d66f2637d1': `Autenticador tradicional`,
'sd73b202ec04eefd9': `Intenção desconhecida`,
'sd766cdc29b25ff95': `Autenticando com Apple...`,
'sd8f220c999726151': `Redirecionar`,
'sdaecc3c29a27c5c5': `Ocorreu um erro desconhecido`,
'sdb749e793de55478': str`Sair de ${0}`,
'sdc9e222be9612939': `Fonte vinculada`,
'sdea479482318489d': `Mensagens de status`,
'se2d65e13768468e0': `Interno`,
'se2f258b996f7279c': `Exceção de tarefa do sistema`,
'se409d01b52c4e12f': `Tentar novamente a autenticação`,
'se5fd752dbbc3cd28': `Usar uma chave de segurança`,
'se84ba7f105934495': `Por favor, verifique o console do navegador para mais detalhes.`,
'se9e9e1d6799b86a5': `WebAuthn não é suportado pelo navegador.`,
'seb0c08d9f233bbfe': `Por favor, insira o código que você recebeu por SMS`,
'sf0ceaf3116e31fd4': `Uma classe de dispositivo não reconhecida foi fornecida.`,
'sf1ec4acb8d744ed9': `Alerta`,
'sf29883ac9ec43085': `Senha do aplicativo`,
'sf376ae7e9ef41c1a': `Autenticando com Telegram...`,
'sf6e1665c7022a1f8': `Senha`,
'sf8f49cdbf0036343': `Erro de configuração`,
'sfcfcf85a57eea78a': `Dispositivo TOTP`,
'sfe211545fd02f73e': `Verificação`,
'sfe629863ba1338c2': `Erro de conexão, reconectando...`,
'sff930bf2834e2201': `Conta de serviço (interna)`,
'sffef1a8596bc58bb': `Autenticando...`,
'zh-Hans': `Chinês`,
'zh-Hant': `Chinês`,
'en-XA': `English (Pseudo-Accents)`,
'locale-option-localized-label': str`${0} (${1})`,
'avatar.alt-text-for-user': str`Avatar for ${0}`,
'avatar.alt-text': `User avatar`,
's6e858c4c4c3b6b76': `You're about to be redirected to the following URL.`,
'saa088a2d0f90d5a9': str`Posting logout response to SAML provider: ${0}`,
'flow.navigation.go-back': `Go back`,
'stage.authenticator.email.sent-to-address': str`A verification token has been sent to your configured email address: ${0}`,
'stage.authenticator.email.sent': `A verification token has been sent to your email address.`,
'clipboard.write.success.message.entity': str`${0} copied to clipboard.`,
'clipboard.write.success.generic': `Copied to clipboard.`,
'clipboard.write.failure.description': `Clipboard not available. Please copy the value manually.`,
'totp.config': `TOTP Config`,
'totp.config.clipboard.description': `Paste this URL into your authenticator app to set up a time-based one-time password.`,
'totp.secret': `TOTP Secret`,
'totp.secret.clipboard.description': `Paste this secret into your authenticator app to set up a time-based one-time password.`,
'sdf2794b96386c868': `Copy time-based one-time password secret`,
'sc78d16417878afd0': `Copy Secret`,
's92e22f9319fdb85d': `Configuration warning`,
's1af2337b6d11d4c6': `Data export ready`,
's776d93092ad9ce90': `Review initiated`,
'sad46bcad1a343b51': `Review overdue`,
's59d168d966cecbaf': `Review attested`,
's5158b7f014cecefc': `Review completed`,
'sb94beab52540d2b7': `The CAPTCHA challenge failed to load.`,
's217a96c47caaf73d': `Could not find a suitable CAPTCHA provider.`,
'sf910cca0f06bbc31': `Enter the email address or username associated with your account.`,
'sd5d2b94a1ccba1a9': str`Log in to continue to ${0}.`,
'seb6ab868740e4e36': str`Continue with ${0}`,
's53dddf1733e26c98': `Login sources`,
's05a941e4b4bfca9f': `Additional actions`,
'scd909e0bc55fc548': `Security key`,
'sd0de938d9c37ad5f': `Use a Passkey or security key to prove your identity.`,
's95094b57684716a5': `Failed to validate device.`,
'se99d25eb70c767ef': `Verifying your device...`,
'sdd2ea73c24b40d5d': `Site footer`,
};

View File

@@ -0,0 +1,252 @@
// Do not modify this file by hand!
// Re-generate this file by running lit-localize
import {str} from '@lit/localize';
/* eslint-disable no-irregular-whitespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
export const templates = {
'en': `Английский`,
'ja-JP': `Японский`,
'ko-KR': `Корейский`,
'language-selector-label': `Выберите язык`,
'locale-auto-detect-option': `Автоматическое определение`,
's009bd1c98a9f5de2': `Не удалось зарегистрироваться`,
's02240309358f557c': `Неизвестная серьезность`,
's0382d73823585617': str`
${0}:
${1}`,
's03f42eea72154959': `Имя пользователя`,
's042baf59902a711f': `Политика`,
's04c1210202f48dc9': `Пожалуйста, введите номер телефона.`,
's06bfe45ffef2cf60': str`Название этапа: ${0}`,
's091d5407b5b32e84': `Или`,
's09205907b5b56cda': `Нет`,
's0e516232f2ab4e04': `Токены отправляются по SMS.`,
's14c552fb0a4c0186': `Приложению необходимы следующие разрешения:`,
's197420b40df164f8': `Следовать за перенаправлением`,
's1a635369edaf4dc3': `Сервисный аккаунт`,
's1cd198d689c66e4b': `Доступ к API`,
's1cd264012278c047': `Выполнение потока`,
's238784fc1dc672ae': `Регистрация...`,
's2543cffd6ebb6803': `Выполнение системных задач`,
's296fbffaaa7c910a': `Обязательно.`,
's2bc8aa1740d3da34': `Объект этапа`,
's2c8189544e3ea679': `Повторить`,
's2ddbebcb8a49b005': `Ожидание аутентификации...`,
's2e422519ed38f7d8': `Пропуск`,
's2f7f35f6a5b733f5': `Показать пароль`,
's30d6ff9e15e0a40a': `Верификация...`,
's31fba571065f2c87': `Обязательно храните эти токены в надежном месте.`,
's32f04d33924ce8ad': `Политика выполнения`,
's342eccabf83c9bde': `История плана`,
's34be76c6b1eadbef': `Предупреждение`,
's363abde8a254ea5f': `Аутентификация не удалась. Пожалуйста, попробуйте еще раз`,
's3643189d1abbb7f4': `Код`,
's38f774cd7e9b9dad': `Зарегистрироваться.`,
's39002897db60bb28': `Отправка push-уведомления Duo...`,
's3ab772345f78aee0': `Инспектор потока`,
's3cd84e82e83e35ad': `Пожалуйста, введите ваш код`,
's3f8a07912545e72e': `Настройте свою электронную почту`,
's4090dd0c0e45988b': `ИД запроса`,
's420d2cdedcaf8cd0': `Аутентификация с помощью Plex...`,
's452f791e0ff6a13e': `Скрыть пароль`,
's455a8fc21077e7f9': `Вы успешно прошли проверку подлинности своего устройства.`,
's47490298c17b753a': `Получите push-уведомление на свое устройство.`,
's47a4983a2c6bb749': `Модель обновлена`,
's49730f3d5751a433': `Загрузка...`,
's4d7fe7be1c49896c': `Теперь вы можете закрыть эту страницу.`,
's502884e1977b2c06': `Следующий этап`,
's5f496533610103f2': `Приложение авторизированно`,
's5f5bf4ef2bd93c04': `Групповые сопоставления могут быть проверены только в том случае, если пользователь уже вошел в систему при попытке получить доступ к этому источнику.`,
's61e48919db20538a': `UPN`,
's67749057edb2586b': `Выйти`,
's67ac11d47f1ce794': `WebAuthn требует, чтобы доступ к этой странице осуществлялся по протоколу HTTPS.`,
's6ac670086eb137c6': `Восстановление`,
's6bb30c61df4cf486': `Включена функция Caps Lock.`,
's6c410fedda2a575f': `Обновление доступно`,
's6c607d74bdfe9f36': `Пользовательские сопоставления могут быть проверены только в том случае, если пользователь уже вошел в систему при попытке получить доступ к этому источнику.`,
's6ecfc18dbfeedd76': `Выберите один из вариантов ниже, чтобы продолжить.`,
's6fe64b4625517333': `Основано на authentik`,
's7073489bb01b3c24': `Приложение уже имеет доступ к следующим разрешениям:`,
's708d9a4a0db0be8f': `Проверить статус`,
's721d94ae700b5dfd': `Duo активация`,
's77f572257f69a8db': `Исключение из сопоставления свойств`,
's7abc9d08b0f70fd6': `Статический токен`,
's7bda44013984fc48': `Пароль установлен`,
's7cdd62c100b6b17b': `Пожалуйста, введите код, который вы получили по электронной почте`,
's7e537ad68d7c16e1': `Пользователь был записан в`,
's7fa4e5e409d43573': str`Ошибка при создании учетных данных:
${0}`,
's81ecf2d4386b8e84': `Продолжить`,
's81eff3409d572a21': `Общее системное исключение`,
's833cfe815918c143': `Токены, отправлены по электронной почте.`,
's844fea0bfb10a72a': `Код аутентификации`,
's84fcddede27b8e2a': `Внешний`,
's85366fac18679f28': `Забыли пароль?`,
's858e7ac4b3cf955f': `Статические токены`,
's859b2e00391da380': `Выберите Да, чтобы уменьшить количество запросов на вход.`,
's8939f574b096054a': `Не вы?`,
's8a1d9403ca90989b': `Приглашение использовано`,
's8aff572e64b7936b': `Отправить электронное письмо еще раз.`,
's8d857061510fe794': `Duo push-уведомления`,
's90064dd5c4dde2c6': `Пожалуйста, отсканируйте приведенный выше QR-код с помощью Microsoft Authenticator, Google Authenticator или других приложений-аутентификаторов на вашем устройстве и введите код, который устройство отобразит ниже, чтобы завершить настройку устройства MFA.`,
's9117fb5195e75151': `Уведомление`,
's91ae4b6bf981682b': `Логотип authentik`,
's92ca679592a36b35': `Секрет был обновлен`,
's97f2dc19fa556a6a': `СМС`,
's98b1cb8fb62909ec': `Группа`,
's98dc556f8bf707dc': `Приложение требует следующих новых разрешений:`,
's9bd9ba84819493d4': `Что-то пошло не так! Пожалуйста, повторите попытку позже.`,
's9c6f61dc47bc4f0a': `Модель создана`,
's9c73bd29b279d26b': `Имитация пользователя завершилась`,
's9d95f09deb601f34': str`Проверка учетных данных на сервере не удалась:
${0}`,
's9e568afec3810bfe': `Ключи восстановления`,
'sa03aa46068460c95': `Забыли имя пользователя или пароль?`,
'sa0e0bdd7e244416b': `Подозрительный запрос`,
'sa11e92683c5860c7': `Запрос был отклонен.`,
'sa13e6c8310000e30': `ID сессии`,
'sa1b41e334ad89d94': `Секрет просмотрен`,
'sa266303caf1bd27f': `Письмо отправленно`,
'sa48f81f001b893d2': `Пользователь`,
'sa50a6326530d8a0d': `Показать меньше`,
'sac17f177f884e238': `Оставаться в системе?`,
'sae5d87e99fe081e0': `Обязательно`,
'sb0821a9e92cac5eb': `Не удалось зарегистрироваться. Пожалуйста, попробуйте еще раз`,
'sb15fe7b9d09bb419': `Если всплывающее окно Plex не открывается, нажмите кнопку ниже.`,
'sb166ce92e8e807d6': `Повторить регистрацию`,
'sb1c91762ae3a9bee': `Имитация пользователя началась`,
'sb25e689e00c61829': `Используйте аутентификатор на основе кода.`,
'sb2c57b2d347203dd': `Показать больше`,
'sb2f307e79d20bb56': `Контекст текущего плана`,
'sb3fa80ccfa97ee54': `Имя этапа`,
'sb4564c127ab8b921': `Не удалось войти`,
'sb59d68ed12d46377': `Загрузка`,
'sb6d7128df5978cee': `Политика исключения`,
'sbc625b4c669b9ce8': `Открытый логин`,
'sbd19064fc3f405c1': `Проверьте свой почтовый ящик, чтобы получить письмо с подтверждением.`,
'sbea3c1e4f2fd623d': `Вид этапа`,
'sc0a0c87d5c556c38': `Номер телефона`,
'sc2ec367e3108fe65': `QR-код активации Duo`,
'sc3e1c4f1fff8e1ca': `Этот поток завершен.`,
'sc4eedb434536bdb4': `Нужна учетная запись?`,
'sc5668cb23167e9bb': `Кроме того, если на вашем текущем устройстве установлен Duo, перейдите по этой ссылке:`,
'sc8da3cc71de63832': `Вход`,
'sc9f69360b58706c7': `Модель удалена`,
'scb489a1a173ac3f0': `Да`,
'scedf77e8b75cad5a': `Пожалуйста, введите свой адрес электронной почты.`,
'scf5ce91bfba10a61': `Пожалуйста, введите ваш пароль`,
'sd1f44f1a8bc20e67': `Электронная почта`,
'sd2b8c1caa0340ed6': `Не удалось аутентифицироваться`,
'sd6a025d66f2637d1': `Традиционный аутентификатор`,
'sd73b202ec04eefd9': `Неизвестное намерение`,
'sd766cdc29b25ff95': `Аутентификация с помощью Apple...`,
'sd8f220c999726151': `Перенаправление`,
'sdc9e222be9612939': `Источник привязан`,
'se2d65e13768468e0': `Внутренний`,
'se2f258b996f7279c': `Исключение системной задачи`,
'se409d01b52c4e12f': `Повторить аутентификацию`,
'se5fd752dbbc3cd28': `Используйте ключ безопасности`,
'se9e9e1d6799b86a5': `WebAuthn не поддерживается браузером.`,
'seb0c08d9f233bbfe': `Введите код, полученный по SMS`,
'sf1ec4acb8d744ed9': `Оповещение`,
'sf29883ac9ec43085': `Пароль приложения`,
'sf6e1665c7022a1f8': `Пароль`,
'sf8f49cdbf0036343': `Ошибка конфигурации`,
'sfcfcf85a57eea78a': `Устройство TOTP`,
'sfe211545fd02f73e': `Верификация`,
'sfe629863ba1338c2': `Ошибка подключения, повторное подключение...`,
'sff930bf2834e2201': `Сервисный аккаунт (внутренний)`,
'sffef1a8596bc58bb': `Аутентификация...`,
'zh-Hans': `Китайский`,
'zh-Hant': `Китайский`,
'en-XA': `English (Pseudo-Accents)`,
'locale-option-localized-label': str`${0} (${1})`,
'sa4be93eb7f4e51e3': `Site links`,
's12d6dde9b30c3093': `Dismiss`,
'sdaecc3c29a27c5c5': `An unknown error occurred`,
'se84ba7f105934495': `Please check the browser console for more details.`,
'sdea479482318489d': `Status messages`,
'sb69e43f2f6bd1b54': `Close flow inspector`,
's857cf5aa8955cf5c': `Flow inspector loading`,
's3736936aac1adc2e': `Open flow inspector`,
's15d6fabebb4ef2d8': `User information`,
'avatar.alt-text-for-user': str`Avatar for ${0}`,
'avatar.alt-text': `User avatar`,
'sf376ae7e9ef41c1a': `Authenticating with Telegram...`,
's76ea993fdc8503d8': `Click the button below to start.`,
's6e858c4c4c3b6b76': `You're about to be redirected to the following URL.`,
's7f073c746d0f6324': `Form actions`,
's0b1ffff8bedd6b8a': `Unknown Provider`,
's777e86d562523c85': `Logging out of providers...`,
's4980379bf8461c2d': `Single Logout`,
's23da7320dee28a60': `Device Code`,
's78869b8b2bc26d0d': `SAML Provider`,
'sca83a1f9227f74b9': `SAML logout complete`,
's7b90eab7969ae056': str`Redirecting to SAML provider: ${0}`,
'saa088a2d0f90d5a9': str`Posting logout response to SAML provider: ${0}`,
's3e6174b645d96835': str`Posting logout request to SAML provider: ${0}`,
'flow.navigation.go-back': `Go back`,
'stage.authenticator.email.sent-to-address': str`A verification token has been sent to your configured email address: ${0}`,
'stage.authenticator.email.sent': `A verification token has been sent to your email address.`,
'clipboard.write.success.message.entity': str`${0} copied to clipboard.`,
'clipboard.write.success.generic': `Copied to clipboard.`,
'clipboard.write.failure.description': `Clipboard not available. Please copy the value manually.`,
'totp.config': `TOTP Config`,
'totp.config.clipboard.description': `Paste this URL into your authenticator app to set up a time-based one-time password.`,
'totp.secret': `TOTP Secret`,
'totp.secret.clipboard.description': `Paste this secret into your authenticator app to set up a time-based one-time password.`,
'sc091f75b942ec081': `QR-Code to setup a time-based one-time password`,
's6db67c7681b8be6e': `Copy time-based one-time password configuration`,
's43e859bf711e3599': `Copy TOTP Config`,
'sdf2794b96386c868': `Copy time-based one-time password secret`,
'sc78d16417878afd0': `Copy Secret`,
'sa5562e0115ffbccd': `Time-based one-time password`,
's40f44c0d88807fd5': `TOTP Code`,
's95474cc8c73dd9c0': `Type your TOTP code...`,
's168d0c138b63286d': `Type your time-based one-time password code.`,
's92e22f9319fdb85d': `Configuration warning`,
's1af2337b6d11d4c6': `Data export ready`,
's776d93092ad9ce90': `Review initiated`,
'sad46bcad1a343b51': `Review overdue`,
's59d168d966cecbaf': `Review attested`,
's5158b7f014cecefc': `Review completed`,
's482bc55a78891ef7': str`A code has been sent to your address: ${0}`,
's5afa3fc77ce8d94d': `A code has been sent to your email address.`,
's37f47fa981493c3b': `A one-time use code has been sent to you via SMS text message.`,
'sc92a7248dba5f388': `Open your authenticator app to retrieve a one-time use code.`,
's21d95b4651ad7a1e': `Enter a one-time recovery code for this user.`,
's2e1d5a7d320c25ef': `Enter the code from your authenticator device.`,
's98bb2ae796f1ceef': `Select another authentication method`,
'sb94beab52540d2b7': `The CAPTCHA challenge failed to load.`,
's8d6236ad153d42c0': `CAPTCHA challenge`,
's217a96c47caaf73d': `Could not find a suitable CAPTCHA provider.`,
'sac315d5bd28d4efa': `Don't Pass`,
's1c336c2d6cef77b3': `Remember me on this device`,
'sf910cca0f06bbc31': `Enter the email address or username associated with your account.`,
'sd5d2b94a1ccba1a9': str`Log in to continue to ${0}.`,
'seb6ab868740e4e36': str`Continue with ${0}`,
's53dddf1733e26c98': `Login sources`,
's05a941e4b4bfca9f': `Additional actions`,
's14e8ac4d377a1a99': `Type an authentication code...`,
'scd909e0bc55fc548': `Security key`,
'sd0de938d9c37ad5f': `Use a Passkey or security key to prove your identity.`,
's8bb0a1b672b52954': `In case you lose access to your primary authenticators.`,
's76d21e163887ddd1': `Unknown device`,
'sf0ceaf3116e31fd4': `An unknown device class was provided.`,
's610fced3957d0471': `Select an authentication method`,
's958cedec1cb3fc52': `Select a configuration stage`,
's95094b57684716a5': `Failed to validate device.`,
'se99d25eb70c767ef': `Verifying your device...`,
'sac88482c48453fc8': str`You've logged out of ${0}. You can go back to the overview to launch another application, or log out of your authentik account.`,
's3108167b562674e2': `Go back to overview`,
'sdb749e793de55478': str`Log out of ${0}`,
's521681ed1d5ff814': str`Log back into ${0}`,
'sdd2ea73c24b40d5d': `Site footer`,
'sa17ce23517e56461': `Authentication form`,
};

View File

@@ -0,0 +1,248 @@
// Do not modify this file by hand!
// Re-generate this file by running lit-localize
import {str} from '@lit/localize';
/* eslint-disable no-irregular-whitespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
export const templates = {
'en': `İngilizce`,
'ja-JP': `Japonca`,
'ko-KR': `Korece`,
'language-selector-label': `Dili seçin`,
'locale-auto-detect-option': `Otomatik algılama`,
's009bd1c98a9f5de2': `Kayıt başarısız oldu`,
's02240309358f557c': `Bilinmeyen önem derecesi`,
's0382d73823585617': str`${0}: ${1}`,
's03f42eea72154959': `Kullanıcı Adı`,
's042baf59902a711f': `İlke`,
's04c1210202f48dc9': `Lütfen Telefon numaranızı girin.`,
's06bfe45ffef2cf60': str`Aşama adı: ${0}`,
's091d5407b5b32e84': `Veya`,
's09205907b5b56cda': `Hayır`,
's0e516232f2ab4e04': `Belirteçler SMS ile gönderildi.`,
's14c552fb0a4c0186': `Uygulama aşağıdaki izinleri gerektirir:`,
's197420b40df164f8': `Yönlendirmeyi takip et`,
's1a635369edaf4dc3': `Hizmet hesabı`,
's1cd198d689c66e4b': `API Erişimi`,
's1cd264012278c047': `Akış yürütme`,
's21d95b4651ad7a1e': `Bu kullanıcı için tek seferlik bir kurtarma kodu girin.`,
's238784fc1dc672ae': `Kaydediliyor...`,
's2543cffd6ebb6803': `Sistem görevi yürütme`,
's296fbffaaa7c910a': `Zorunlu.`,
's2bc8aa1740d3da34': `Aşama nesnesi`,
's2c8189544e3ea679': `Yeniden dene`,
's2ddbebcb8a49b005': `Kimlik doğrulaması bekleniyor...`,
's2e1d5a7d320c25ef': `Kimlik doğrulama cihazınızdaki kodu girin.`,
's2e422519ed38f7d8': `Geçmek`,
's2f7f35f6a5b733f5': `Şifreyi göster`,
's30d6ff9e15e0a40a': `Doğrulama...`,
's3108167b562674e2': `Genel bakışa geri dön`,
's31fba571065f2c87': `Bu belirteçleri güvenli bir yerde tuttuğunuzdan emin olun.`,
's32f04d33924ce8ad': `İlke yürütme`,
's342eccabf83c9bde': `Plan geçmişi`,
's34be76c6b1eadbef': `Uyarı`,
's363abde8a254ea5f': `Kimlik doğrulaması başarısız oldu. Lütfen tekrar deneyin.`,
's3643189d1abbb7f4': `Kodu`,
's38f774cd7e9b9dad': `Kaydolun.`,
's39002897db60bb28': `Duo push bildirimi gönderiliyor...`,
's3ab772345f78aee0': `Akış denetçisi`,
's3cd84e82e83e35ad': `Lütfen kodunuzu giriniz`,
's4090dd0c0e45988b': `İstek Kimliği`,
's420d2cdedcaf8cd0': `Plex ile kimlik doğrulaması...`,
's452f791e0ff6a13e': `Şifreyi gizle`,
's455a8fc21077e7f9': `Cihazınızın kimliğini başarıyla doğruladınız.`,
's47490298c17b753a': `Cihazınızda anında iletme bildirimi alın.`,
's47a4983a2c6bb749': `Model güncellendi`,
's49730f3d5751a433': `Yükleniyor...`,
's4d7fe7be1c49896c': `Bu sayfayı şimdi kapatabilirsiniz.`,
's502884e1977b2c06': `Sonraki aşama`,
's521681ed1d5ff814': str`${0} oturumuna tekrar giriş yapın`,
's5f496533610103f2': `Başvuru yetkili`,
's5f5bf4ef2bd93c04': `Grup eşlemeleri, yalnızca bir kullanıcı bu kaynağa erişmeye çalışırken zaten oturum açmışsa kontrol edilebilir.`,
's61e48919db20538a': `UPN`,
's67749057edb2586b': `Oturumu Kapa`,
's67ac11d47f1ce794': `WebAuthn, bu sayfaya HTTPS üzerinden erişilmesini gerektirir.`,
's6ac670086eb137c6': `Kurtarma`,
's6c410fedda2a575f': `Güncelleme mevcut`,
's6c607d74bdfe9f36': `Kullanıcı eşlemeleri, yalnızca bir kullanıcı bu kaynağa erişmeye çalışırken zaten oturum açmışsa kontrol edilebilir.`,
's6ecfc18dbfeedd76': `Devam etmek için aşağıdaki seçeneklerden birini belirleyin.`,
's6fe64b4625517333': `Auentik tarafından desteklenmektedir`,
's7073489bb01b3c24': `Uygulamanın zaten aşağıdaki izinlere erişimi var:`,
's708d9a4a0db0be8f': `Durumu kontrol et`,
's721d94ae700b5dfd': `İkili aktivasyon`,
's77f572257f69a8db': `Özellik Eşleme hatası`,
's7abc9d08b0f70fd6': `Statik belirteç`,
's7bda44013984fc48': `Parola seti`,
's7e537ad68d7c16e1': `Kullanıcı yazıldı`,
's7fa4e5e409d43573': str`Kimlik bilgisi oluşturulurken hata oluştu: ${0}`,
's81ecf2d4386b8e84': `Devam Et`,
's81eff3409d572a21': `Genel sistem hatası`,
's844fea0bfb10a72a': `Kimlik doğrulama kodu`,
's84fcddede27b8e2a': `Dış`,
's85366fac18679f28': `Parolanı mi unuttun?`,
's858e7ac4b3cf955f': `Statik belirteçler`,
's859b2e00391da380': `Oturum açmanızın istenme sayısını azaltmak için Evet'i seçin.`,
's8939f574b096054a': `Sen değil mi?`,
's8a1d9403ca90989b': `Kullanılan davetiye`,
's8aff572e64b7936b': `E-postayı tekrar gönder.`,
's8d857061510fe794': `Duo push-bildirimleri`,
's90064dd5c4dde2c6': `Lütfen cihazınızdaki Microsoft Authenticator, Google Authenticator veya diğer kimlik doğrulama uygulamalarını kullanarak yukarıdaki QR kodunu tarayın ve MFA cihazının kurulumunu tamamlamak için cihazın aşağıda görüntülediği kodu girin.`,
's9117fb5195e75151': `Uyarı`,
's92ca679592a36b35': `Sırrı döndürüldü`,
's97f2dc19fa556a6a': `SMS`,
's98b1cb8fb62909ec': `Grup`,
's98bb2ae796f1ceef': `Başka bir kimlik doğrulama yöntemi seçin`,
's98dc556f8bf707dc': `Uygulama aşağıdaki yeni izinleri gerektirir:`,
's9bd9ba84819493d4': `Bir şeyler ters gitti! Lütfen daha sonra tekrar deneyin.`,
's9c6f61dc47bc4f0a': `Model oluşturuldu`,
's9c73bd29b279d26b': `Taklit sona erdi`,
's9d95f09deb601f34': str`Kimlik bilgilerinin sunucu doğrulaması başarısız oldu: ${0}`,
's9e568afec3810bfe': `Kurtarma tuşları`,
'sa03aa46068460c95': `Kullanıcı adı veya parolayı mı unuttunuz?`,
'sa0e0bdd7e244416b': `Şüpheli istek`,
'sa11e92683c5860c7': `İstek reddedildi.`,
'sa13e6c8310000e30': `Oturum Kimliği`,
'sa1b41e334ad89d94': `Sır görüldü`,
'sa266303caf1bd27f': `E-posta gönderildi`,
'sa48f81f001b893d2': `Kullanıcı`,
'sa50a6326530d8a0d': `Daha az göster`,
'sac17f177f884e238': `Oturumunuz açık kaldı mı?`,
'sac88482c48453fc8': str`${0} ourumunu kapattınız. Başka bir uygulama başlatmak için genel bakışa geri dönebilir veya authentik hesabınızdan çıkış yapabilirsiniz.`,
'sae5d87e99fe081e0': `Zorunlu`,
'sb0821a9e92cac5eb': `Kayıt başarısız oldu. Lütfen tekrar deneyin.`,
'sb15fe7b9d09bb419': `Plex açılır penceresi açılmazsa, aşağıdaki düğmeyi tıklayın.`,
'sb166ce92e8e807d6': `Kaydı yeniden deneyin`,
'sb1c91762ae3a9bee': `Kimliğe bürünme başladı`,
'sb25e689e00c61829': `Kod tabanlı kimlik doğrulayıcı kullanın.`,
'sb2c57b2d347203dd': `Daha fazla göster`,
'sb2f307e79d20bb56': `Mevcut plan bağlamı`,
'sb3fa80ccfa97ee54': `Aşama adı`,
'sb4564c127ab8b921': `Başarısız oturum açma`,
'sb59d68ed12d46377': `Yükleniyor`,
'sb6d7128df5978cee': `İlke hatası`,
'sbc625b4c669b9ce8': `Girişi aç`,
'sbd19064fc3f405c1': `Doğrulama e-postası için Gelen Kutunuzu kontrol edin.`,
'sbea3c1e4f2fd623d': `Aşama türü`,
'sc0a0c87d5c556c38': `Telefon numarası`,
'sc2ec367e3108fe65': `Duo aktivasyon QR kodu`,
'sc3e1c4f1fff8e1ca': `Bu akış tamamlandı.`,
'sc4eedb434536bdb4': `Bir hesaba mı ihtiyacınız var?`,
'sc5668cb23167e9bb': `Alternatif olarak, mevcut cihazınızda Duo yüklüyse, şu bağlantıya tıklayın:`,
'sc8da3cc71de63832': `Giriş`,
'sc9f69360b58706c7': `Model silindi`,
'scb489a1a173ac3f0': `Evet`,
'scf5ce91bfba10a61': `Lütfen parolanızı girin`,
'sd1f44f1a8bc20e67': `E-posta`,
'sd2b8c1caa0340ed6': `Kimlik doğrulaması yapılamadı`,
'sd6a025d66f2637d1': `Geleneksel kimlik doğrulayıcı`,
'sd73b202ec04eefd9': `Bilinmeyen niyet`,
'sd766cdc29b25ff95': `Apple ile kimlik doğrulaması...`,
'sd8f220c999726151': `Yönlendirme`,
'sdb749e793de55478': str`${0} oturumunu kapatın`,
'sdc9e222be9612939': `Kaynak bağlantılı`,
'se2d65e13768468e0': `Dahili`,
'se2f258b996f7279c': `Sistem görevi hatası`,
'se409d01b52c4e12f': `Kimlik doğrulamayı yeniden deneyin`,
'se5fd752dbbc3cd28': `Güvenlik anahtarı kullan`,
'se9e9e1d6799b86a5': `WebAuthn tarayıcı tarafından desteklenmiyor.`,
'seb0c08d9f233bbfe': `Lütfen SMS ile aldığınız kodu girin`,
'sf1ec4acb8d744ed9': `Alarm`,
'sf29883ac9ec43085': `Uygulama parolası`,
'sf6e1665c7022a1f8': `Parola`,
'sf8f49cdbf0036343': `Yapılandırma hatası`,
'sfcfcf85a57eea78a': `TOTP Cihazı`,
'sfe211545fd02f73e': `Doğrulama`,
'sfe629863ba1338c2': `Bağlantı hatası, yeniden bağlanıyor...`,
'sff930bf2834e2201': `Hizmet hesabı (dahili)`,
'sffef1a8596bc58bb': `Kimlik doğrulama...`,
'zh-Hans': `Çince`,
'zh-Hant': `Çince`,
'en-XA': `English (Pseudo-Accents)`,
'locale-option-localized-label': str`${0} (${1})`,
'sa4be93eb7f4e51e3': `Site links`,
's12d6dde9b30c3093': `Dismiss`,
'sdaecc3c29a27c5c5': `An unknown error occurred`,
'se84ba7f105934495': `Please check the browser console for more details.`,
'sdea479482318489d': `Status messages`,
'sb69e43f2f6bd1b54': `Close flow inspector`,
's857cf5aa8955cf5c': `Flow inspector loading`,
's3736936aac1adc2e': `Open flow inspector`,
's15d6fabebb4ef2d8': `User information`,
'avatar.alt-text-for-user': str`Avatar for ${0}`,
'avatar.alt-text': `User avatar`,
'sf376ae7e9ef41c1a': `Authenticating with Telegram...`,
's76ea993fdc8503d8': `Click the button below to start.`,
's6e858c4c4c3b6b76': `You're about to be redirected to the following URL.`,
's7f073c746d0f6324': `Form actions`,
's0b1ffff8bedd6b8a': `Unknown Provider`,
's777e86d562523c85': `Logging out of providers...`,
's4980379bf8461c2d': `Single Logout`,
's23da7320dee28a60': `Device Code`,
's78869b8b2bc26d0d': `SAML Provider`,
'sca83a1f9227f74b9': `SAML logout complete`,
's7b90eab7969ae056': str`Redirecting to SAML provider: ${0}`,
'saa088a2d0f90d5a9': str`Posting logout response to SAML provider: ${0}`,
's3e6174b645d96835': str`Posting logout request to SAML provider: ${0}`,
'flow.navigation.go-back': `Go back`,
's3f8a07912545e72e': `Configure your email`,
'scedf77e8b75cad5a': `Please enter your email address.`,
'stage.authenticator.email.sent-to-address': str`A verification token has been sent to your configured email address: ${0}`,
'stage.authenticator.email.sent': `A verification token has been sent to your email address.`,
's7cdd62c100b6b17b': `Please enter the code you received via email`,
'clipboard.write.success.message.entity': str`${0} copied to clipboard.`,
'clipboard.write.success.generic': `Copied to clipboard.`,
'clipboard.write.failure.description': `Clipboard not available. Please copy the value manually.`,
'totp.config': `TOTP Config`,
'totp.config.clipboard.description': `Paste this URL into your authenticator app to set up a time-based one-time password.`,
'totp.secret': `TOTP Secret`,
'totp.secret.clipboard.description': `Paste this secret into your authenticator app to set up a time-based one-time password.`,
'sc091f75b942ec081': `QR-Code to setup a time-based one-time password`,
's6db67c7681b8be6e': `Copy time-based one-time password configuration`,
's43e859bf711e3599': `Copy TOTP Config`,
'sdf2794b96386c868': `Copy time-based one-time password secret`,
'sc78d16417878afd0': `Copy Secret`,
'sa5562e0115ffbccd': `Time-based one-time password`,
's40f44c0d88807fd5': `TOTP Code`,
's95474cc8c73dd9c0': `Type your TOTP code...`,
's168d0c138b63286d': `Type your time-based one-time password code.`,
's92e22f9319fdb85d': `Configuration warning`,
's1af2337b6d11d4c6': `Data export ready`,
's776d93092ad9ce90': `Review initiated`,
'sad46bcad1a343b51': `Review overdue`,
's59d168d966cecbaf': `Review attested`,
's5158b7f014cecefc': `Review completed`,
's482bc55a78891ef7': str`A code has been sent to your address: ${0}`,
's5afa3fc77ce8d94d': `A code has been sent to your email address.`,
's37f47fa981493c3b': `A one-time use code has been sent to you via SMS text message.`,
'sc92a7248dba5f388': `Open your authenticator app to retrieve a one-time use code.`,
's6bb30c61df4cf486': `Caps Lock is enabled.`,
'sb94beab52540d2b7': `The CAPTCHA challenge failed to load.`,
's8d6236ad153d42c0': `CAPTCHA challenge`,
's217a96c47caaf73d': `Could not find a suitable CAPTCHA provider.`,
'sac315d5bd28d4efa': `Don't Pass`,
's1c336c2d6cef77b3': `Remember me on this device`,
'sf910cca0f06bbc31': `Enter the email address or username associated with your account.`,
'sd5d2b94a1ccba1a9': str`Log in to continue to ${0}.`,
'seb6ab868740e4e36': str`Continue with ${0}`,
's53dddf1733e26c98': `Login sources`,
's05a941e4b4bfca9f': `Additional actions`,
's14e8ac4d377a1a99': `Type an authentication code...`,
'scd909e0bc55fc548': `Security key`,
'sd0de938d9c37ad5f': `Use a Passkey or security key to prove your identity.`,
's8bb0a1b672b52954': `In case you lose access to your primary authenticators.`,
's833cfe815918c143': `Tokens sent via email.`,
's76d21e163887ddd1': `Unknown device`,
'sf0ceaf3116e31fd4': `An unknown device class was provided.`,
's610fced3957d0471': `Select an authentication method`,
's958cedec1cb3fc52': `Select a configuration stage`,
's95094b57684716a5': `Failed to validate device.`,
'se99d25eb70c767ef': `Verifying your device...`,
'sdd2ea73c24b40d5d': `Site footer`,
'sa17ce23517e56461': `Authentication form`,
's91ae4b6bf981682b': `authentik Logo`,
};

View File

@@ -0,0 +1,252 @@
// Do not modify this file by hand!
// Re-generate this file by running lit-localize
import {str} from '@lit/localize';
/* eslint-disable no-irregular-whitespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
export const templates = {
'avatar.alt-text': `用户头像`,
'avatar.alt-text-for-user': str`${0} 的头像`,
'en': `英语`,
'en-XA': `英语(伪口音)`,
'flow.navigation.go-back': `返回`,
'ja-JP': `日语`,
'ko-KR': `韩语`,
'language-selector-label': `语言选择`,
'locale-auto-detect-option': `自动检测`,
'locale-option-localized-label': str`${0} (${1})`,
's009bd1c98a9f5de2': `注册失败`,
's02240309358f557c': `未知严重程度`,
's0382d73823585617': str`
${0}
${1}`,
's03f42eea72154959': `用户名`,
's042baf59902a711f': `策略`,
's04c1210202f48dc9': `请输入您的电话号码。`,
's05a941e4b4bfca9f': `更多操作`,
's06bfe45ffef2cf60': str`阶段名称:${0}`,
's091d5407b5b32e84': `或者`,
's09205907b5b56cda': ``,
's0b1ffff8bedd6b8a': `未知提供程序`,
's0e516232f2ab4e04': `通过短信发送的令牌。`,
's12d6dde9b30c3093': `取消`,
's14c552fb0a4c0186': `应用程序需要以下权限:`,
's14e8ac4d377a1a99': `输入身份验证代码...`,
's15d6fabebb4ef2d8': `用户信息`,
's168d0c138b63286d': `输入您的基于时间的一次性密码。`,
's197420b40df164f8': `跟随重定向`,
's1a635369edaf4dc3': `服务账户`,
's1af2337b6d11d4c6': `数据导出就绪`,
's1c336c2d6cef77b3': `在此设备上记住我`,
's1cd198d689c66e4b': `API 访问权限`,
's1cd264012278c047': `流程执行`,
's21d95b4651ad7a1e': `为此用户输入一次性恢复代码。`,
's238784fc1dc672ae': `正在注册...`,
's23da7320dee28a60': `设备代码`,
's2543cffd6ebb6803': `系统任务执行`,
's296fbffaaa7c910a': `必需。`,
's2bc8aa1740d3da34': `阶段对象`,
's2c8189544e3ea679': `重试`,
's2ddbebcb8a49b005': `正在等待身份验证…`,
's2e1d5a7d320c25ef': `请输入来自您身份验证设备的代码。`,
's2e422519ed38f7d8': `通过`,
's2f7f35f6a5b733f5': `显示密码`,
's30d6ff9e15e0a40a': `正在验证...`,
's3108167b562674e2': `返回总览`,
's31fba571065f2c87': `确保将这些令牌保存在安全的地方。`,
's32f04d33924ce8ad': `策略执行`,
's342eccabf83c9bde': `规划历史记录`,
's34be76c6b1eadbef': `警告`,
's363abde8a254ea5f': `身份验证失败。请重试。`,
's3643189d1abbb7f4': `代码`,
's3736936aac1adc2e': `打开流程检视器`,
's37f47fa981493c3b': `一份一次性代码以通过短信发送给您。`,
's38f774cd7e9b9dad': `注册。`,
's39002897db60bb28': `正在发送 Duo 推送通知...`,
's3ab772345f78aee0': `流程检视器`,
's3cd84e82e83e35ad': `请输入您的代码`,
's3e6174b645d96835': str`正在向 SAML 提供程序 ${0} 发送注销请求`,
's3f8a07912545e72e': `配置您的电子邮件`,
's4090dd0c0e45988b': `请求 ID`,
's40f44c0d88807fd5': `TOTP 代码`,
's420d2cdedcaf8cd0': `正在使用 Plex 进行身份验证...`,
's43e859bf711e3599': `复制 TOTP 配置`,
's452f791e0ff6a13e': `隐藏密码`,
's455a8fc21077e7f9': `您成功验证了此设备的身份。`,
's47490298c17b753a': `在您的设备上接收推送通知。`,
's47a4983a2c6bb749': `模型已更新`,
's482bc55a78891ef7': str`一份代码已发送到您的电子邮箱地址:${0}`,
's49730f3d5751a433': `正在加载……`,
's4980379bf8461c2d': `单点登出`,
's4d7fe7be1c49896c': `您可以关闭此页面了。`,
's502884e1977b2c06': `下一阶段`,
's521681ed1d5ff814': str`重新登录 ${0}`,
's53dddf1733e26c98': `登录可用的源`,
's5afa3fc77ce8d94d': `一份代码已发送到您的电子邮箱。`,
's5f496533610103f2': `应用程序已授权`,
's5f5bf4ef2bd93c04': `组绑定仅会在已登录用户访问此源时检查。`,
's610fced3957d0471': `选择身份验证方法`,
's61e48919db20538a': `UPN`,
's67749057edb2586b': `注销`,
's67ac11d47f1ce794': `WebAuthn 需要此页面通过 HTTPS 访问。`,
's6ac670086eb137c6': `恢复`,
's6bb30c61df4cf486': `大写锁定已启用。`,
's6c410fedda2a575f': `更新可用`,
's6c607d74bdfe9f36': `用户绑定仅会在已登录用户访问此源时检查。`,
's6db67c7681b8be6e': `复制基于时间的一次性密码的配置`,
's6ecfc18dbfeedd76': `选择以下选项之一以继续。`,
's6fe64b4625517333': `由 authentik 强力驱动`,
's7073489bb01b3c24': `应用程序已经获得以下权限:`,
's708d9a4a0db0be8f': `检查状态`,
's721d94ae700b5dfd': `Duo 激活`,
's76d21e163887ddd1': `未知设备`,
's76ea993fdc8503d8': `单击下面的按钮开始。`,
's777e86d562523c85': `正在从提供程序登出...`,
's77f572257f69a8db': `属性映射异常`,
's78869b8b2bc26d0d': `SAML 提供程序`,
's7abc9d08b0f70fd6': `静态令牌`,
's7b90eab7969ae056': str`正在重定向到 SAML 提供程序:${0}`,
's7bda44013984fc48': `密码已设置`,
's7cdd62c100b6b17b': `请输入您通过电子邮件收到的代码`,
's7e537ad68d7c16e1': `用户被写入`,
's7f073c746d0f6324': `表单操作`,
's7fa4e5e409d43573': str`创建凭据时出错:
${0}`,
's81ecf2d4386b8e84': `继续`,
's81eff3409d572a21': `一般系统异常`,
's833cfe815918c143': `通过电子邮件发送的令牌。`,
's844fea0bfb10a72a': `身份验证代码`,
's84fcddede27b8e2a': `外部`,
's85366fac18679f28': `忘记密码了吗?`,
's857cf5aa8955cf5c': `正在加载流程检视器`,
's858e7ac4b3cf955f': `静态令牌`,
's859b2e00391da380': `选择“是”以减少您被要求登录的次数。`,
's8939f574b096054a': `不是您?`,
's8a1d9403ca90989b': `已使用邀请`,
's8aff572e64b7936b': `再次发送电子邮件。`,
's8bb0a1b672b52954': `以防您无法访问主要身份验证器。`,
's8d6236ad153d42c0': `CAPTCHA 挑战`,
's8d857061510fe794': `Duo 推送通知`,
's90064dd5c4dde2c6': `请用 Microsoft 身份验证器、Google 身份验证器或您设备上的其他身份验证器应用扫描上面的二维码,然后在下方输入设备上显示的代码,以完成 MFA 设备设置。`,
's9117fb5195e75151': `通知`,
's91ae4b6bf981682b': `authentik 图标`,
's92ca679592a36b35': `Secret 已轮换`,
's95094b57684716a5': `验证设备失败。`,
's95474cc8c73dd9c0': `输入您的 TOTP 代码...`,
's958cedec1cb3fc52': `选择配置阶段`,
's97f2dc19fa556a6a': `短信`,
's98b1cb8fb62909ec': ``,
's98bb2ae796f1ceef': `选择另一种身份验证方法`,
's98dc556f8bf707dc': `应用程序需要以下新权限:`,
's9bd9ba84819493d4': `发生了某些错误!请稍后重试。`,
's9c6f61dc47bc4f0a': `模型已创建`,
's9c73bd29b279d26b': `已结束模拟身份`,
's9d95f09deb601f34': str`服务器验证凭据失败:
${0}`,
's9e568afec3810bfe': `恢复密钥`,
'sa03aa46068460c95': `忘记用户名或密码?`,
'sa0e0bdd7e244416b': `可疑请求`,
'sa11e92683c5860c7': `请求被拒绝。`,
'sa13e6c8310000e30': `会话 ID`,
'sa17ce23517e56461': `身份验证表单`,
'sa1b41e334ad89d94': `Secret 已查看`,
'sa266303caf1bd27f': `已发送电子邮件`,
'sa48f81f001b893d2': `用户`,
'sa4be93eb7f4e51e3': `网站链接`,
'sa50a6326530d8a0d': `显示更少`,
'sa5562e0115ffbccd': `基于时间的一次性密码`,
'sac17f177f884e238': `保持登录?`,
'sac315d5bd28d4efa': `不通过`,
'sac88482c48453fc8': str`您已成功注销 ${0}。现在您可以返回总览页来启动其他应用,或者注销您的 authentik 账户。`,
'sae5d87e99fe081e0': `必需`,
'sb0821a9e92cac5eb': `注册失败。请重试。`,
'sb15fe7b9d09bb419': `如果 Plex 没有弹出窗口,则点击下面的按钮。`,
'sb166ce92e8e807d6': `重试注册`,
'sb1c91762ae3a9bee': `已开始模拟身份`,
'sb25e689e00c61829': `使用基于代码的身份验证器。`,
'sb2c57b2d347203dd': `显示更多`,
'sb2f307e79d20bb56': `当前计划上下文`,
'sb3fa80ccfa97ee54': `阶段名称`,
'sb4564c127ab8b921': `登录失败`,
'sb59d68ed12d46377': `正在加载`,
'sb69e43f2f6bd1b54': `关闭流程检视器`,
'sb6d7128df5978cee': `策略异常`,
'sbc625b4c669b9ce8': `打开登录`,
'sbd19064fc3f405c1': `检查您的收件箱是否有验证电子邮件。`,
'sbea3c1e4f2fd623d': `阶段种类`,
'sc091f75b942ec081': `设置基于时间的一次性密码的二维码`,
'sc0a0c87d5c556c38': `电话号码`,
'sc2ec367e3108fe65': `Duo 激活二维码`,
'sc3e1c4f1fff8e1ca': `此流程已完成。`,
'sc4eedb434536bdb4': `需要一个账户?`,
'sc5668cb23167e9bb': `或者,如果您当前的设备已安装 Duo请点击此链接`,
'sc8da3cc71de63832': `登录`,
'sc92a7248dba5f388': `打开您的两步验证应用收取一次性代码。`,
'sc9f69360b58706c7': `模型已删除`,
'sca83a1f9227f74b9': `SAML 登出完成`,
'scb489a1a173ac3f0': ``,
'scd909e0bc55fc548': `安全密钥`,
'scedf77e8b75cad5a': `请输入您的电子邮件地址。`,
'scf5ce91bfba10a61': `请输入您的密码`,
'sd0de938d9c37ad5f': `使用 passkey 或安全密钥证明您的身份。`,
'sd1f44f1a8bc20e67': `电子邮箱`,
'sd2b8c1caa0340ed6': `身份验证失败`,
'sd6a025d66f2637d1': `传统身份验证器`,
'sd73b202ec04eefd9': `未知意图`,
'sd766cdc29b25ff95': `正在使用 Apple 进行身份验证...`,
'sd8f220c999726151': `重定向`,
'sdaecc3c29a27c5c5': `发生了未知的错误`,
'sdb749e793de55478': str`注销 ${0}`,
'sdc9e222be9612939': `源已链接`,
'sdea479482318489d': `状态消息`,
'se2d65e13768468e0': `内部`,
'se2f258b996f7279c': `系统任务异常`,
'se409d01b52c4e12f': `重试身份验证`,
'se5fd752dbbc3cd28': `使用安全密钥`,
'se84ba7f105934495': `请检查浏览器控制台以获取更多信息。`,
'se99d25eb70c767ef': `正在验证你的设备...`,
'se9e9e1d6799b86a5': `浏览器不支持 WebAuthn。`,
'seb0c08d9f233bbfe': `请输入您通过短信收到的验证码`,
'seb6ab868740e4e36': str`${0} 继续`,
'sf0ceaf3116e31fd4': `提供了位置的设备类型。`,
'sf1ec4acb8d744ed9': `注意`,
'sf29883ac9ec43085': `应用密码`,
'sf376ae7e9ef41c1a': `正在使用 Telegram 进行身份验证...`,
'sf6e1665c7022a1f8': `密码`,
'sf8f49cdbf0036343': `配置错误`,
'sfcfcf85a57eea78a': `TOTP 设备`,
'sfe211545fd02f73e': `验证`,
'sfe629863ba1338c2': `连接错误,正在重新连接……`,
'sff930bf2834e2201': `服务账户(内部)`,
'sffef1a8596bc58bb': `正在验证身份...`,
'stage.authenticator.email.sent': `一份验证代码已发送到您的电子邮箱。`,
'stage.authenticator.email.sent-to-address': str`一份验证代码已发送到您配置的电子邮箱地址:${0}`,
'zh-Hans': `简体中文`,
'zh-Hant': `繁体中文`,
's6e858c4c4c3b6b76': `You're about to be redirected to the following URL.`,
'saa088a2d0f90d5a9': str`Posting logout response to SAML provider: ${0}`,
'clipboard.write.success.message.entity': str`${0} copied to clipboard.`,
'clipboard.write.success.generic': `Copied to clipboard.`,
'clipboard.write.failure.description': `Clipboard not available. Please copy the value manually.`,
'totp.config': `TOTP Config`,
'totp.config.clipboard.description': `Paste this URL into your authenticator app to set up a time-based one-time password.`,
'totp.secret': `TOTP Secret`,
'totp.secret.clipboard.description': `Paste this secret into your authenticator app to set up a time-based one-time password.`,
'sdf2794b96386c868': `Copy time-based one-time password secret`,
'sc78d16417878afd0': `Copy Secret`,
's92e22f9319fdb85d': `Configuration warning`,
's776d93092ad9ce90': `Review initiated`,
'sad46bcad1a343b51': `Review overdue`,
's59d168d966cecbaf': `Review attested`,
's5158b7f014cecefc': `Review completed`,
'sb94beab52540d2b7': `The CAPTCHA challenge failed to load.`,
's217a96c47caaf73d': `Could not find a suitable CAPTCHA provider.`,
'sf910cca0f06bbc31': `Enter the email address or username associated with your account.`,
'sd5d2b94a1ccba1a9': str`Log in to continue to ${0}.`,
'sdd2ea73c24b40d5d': `Site footer`,
};

View File

@@ -0,0 +1,248 @@
// Do not modify this file by hand!
// Re-generate this file by running lit-localize
import {str} from '@lit/localize';
/* eslint-disable no-irregular-whitespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
export const templates = {
'en': `英語`,
'ja-JP': `日語`,
'ko-KR': `韓語`,
'language-selector-label': `選擇語言`,
'locale-auto-detect-option': `自動偵測`,
's02240309358f557c': `嚴重程度未知`,
's03f42eea72154959': `使用者名稱`,
's042baf59902a711f': `政策`,
's04c1210202f48dc9': `請輸入您的電話號碼。`,
's091d5407b5b32e84': ``,
's09205907b5b56cda': ``,
's0e516232f2ab4e04': `通過簡訊傳送權杖。`,
's14c552fb0a4c0186': `應用程式需要以下權限:`,
's197420b40df164f8': `跟隨重新導向`,
's1a635369edaf4dc3': `服務帳號`,
's1cd198d689c66e4b': `API 存取權限`,
's1cd264012278c047': `流程的執行事件`,
's2543cffd6ebb6803': `系統工作執行事件`,
's296fbffaaa7c910a': `必需。`,
's2bc8aa1740d3da34': `階段物件`,
's2c8189544e3ea679': `重試`,
's2ddbebcb8a49b005': `等待身分認證中……`,
's2e422519ed38f7d8': `通過`,
's31fba571065f2c87': `請將這些權杖保存在安全的地方。`,
's32f04d33924ce8ad': `政策的執行事件`,
's342eccabf83c9bde': `計劃歷史紀錄`,
's34be76c6b1eadbef': `警告`,
's3643189d1abbb7f4': `認證碼`,
's38f774cd7e9b9dad': `註冊。`,
's3ab772345f78aee0': `流程檢閱器`,
's3cd84e82e83e35ad': `請輸入您的認證碼`,
's4090dd0c0e45988b': `要求 ID`,
's420d2cdedcaf8cd0': `使用 Plex 進行身分認證中……`,
's455a8fc21077e7f9': `您已成功透過裝置認證。`,
's47490298c17b753a': `在您的裝置上接收推播通知。`,
's47a4983a2c6bb749': `已更新模型`,
's49730f3d5751a433': `載入中……`,
's4d7fe7be1c49896c': `您現在可以關閉這個頁面。`,
's502884e1977b2c06': `下一個階段`,
's5f496533610103f2': `已成功授權應用程式`,
's5f5bf4ef2bd93c04': `僅當已登入的使用者在存取此來源時,才能檢查群組對應。`,
's61e48919db20538a': `UPN`,
's67749057edb2586b': `登出`,
's67ac11d47f1ce794': `WebAuthn 需要使用 HTTPS 存取這個頁面。`,
's6ac670086eb137c6': `救援`,
's6c410fedda2a575f': `有可用更新`,
's6c607d74bdfe9f36': `僅當已登入的使用者在存取此來源時,才能檢查使用者對應。`,
's6fe64b4625517333': `由 authentik 技術支援`,
's7073489bb01b3c24': `應用程式已用擁有已下存取權限:`,
's708d9a4a0db0be8f': `檢查狀態`,
's721d94ae700b5dfd': `Duo 啟用`,
's77f572257f69a8db': `屬性對應例外事件`,
's7abc9d08b0f70fd6': `靜態權杖`,
's7bda44013984fc48': `密碼設定完成`,
's7e537ad68d7c16e1': `使用者已經被寫入到`,
's81ecf2d4386b8e84': `繼續`,
's81eff3409d572a21': `一般系統例外事件`,
's844fea0bfb10a72a': `認證碼`,
's84fcddede27b8e2a': `外部`,
's85366fac18679f28': `忘記密碼`,
's858e7ac4b3cf955f': `靜態權杖`,
's859b2e00391da380': `選擇「是」來減少詢問登入的次數。`,
's8939f574b096054a': `不是您?`,
's8a1d9403ca90989b': `已使用邀請函`,
's8aff572e64b7936b': `再次傳送電子郵件。`,
's8d857061510fe794': `Duo 推播通知`,
's9117fb5195e75151': `注意`,
's92ca679592a36b35': `機密密碼已被輪替`,
's97f2dc19fa556a6a': `簡訊`,
's98b1cb8fb62909ec': `群組`,
's98dc556f8bf707dc': `應用程式需要新增以下權限:`,
's9bd9ba84819493d4': `發生錯誤,請稍後再次嘗試。`,
's9c6f61dc47bc4f0a': `已建立模型`,
's9c73bd29b279d26b': `已結束模擬`,
's9e568afec3810bfe': `救援金鑰`,
'sa03aa46068460c95': `忘記使用者名稱或密碼?`,
'sa0e0bdd7e244416b': `可疑的要求`,
'sa11e92683c5860c7': `要求被拒。`,
'sa13e6c8310000e30': `會談 ID`,
'sa1b41e334ad89d94': `機密密碼已被查看`,
'sa266303caf1bd27f': `已發送電子郵件`,
'sa48f81f001b893d2': `使用者`,
'sa50a6326530d8a0d': `顯示更少`,
'sac17f177f884e238': `繼續保持登入?`,
'sae5d87e99fe081e0': `必需`,
'sb15fe7b9d09bb419': `如果 Plex 彈出視窗未開啟,請點選以下按鈕前往。`,
'sb1c91762ae3a9bee': `已開始模擬`,
'sb25e689e00c61829': `使用基於認證碼的身分認證器。`,
'sb2c57b2d347203dd': `顯示更多`,
'sb2f307e79d20bb56': `目前計劃的上下文`,
'sb3fa80ccfa97ee54': `階段名稱`,
'sb4564c127ab8b921': `登入失敗`,
'sb59d68ed12d46377': `載入中`,
'sb6d7128df5978cee': `政策的例外事件`,
'sbc625b4c669b9ce8': `開啟登入頁面`,
'sbd19064fc3f405c1': `檢查您的收件夾確認是否收到驗證電子郵件。`,
'sbea3c1e4f2fd623d': `階段類型`,
'sc0a0c87d5c556c38': `電話號碼`,
'sc2ec367e3108fe65': `Duo 啟用的二維條碼`,
'sc3e1c4f1fff8e1ca': `此流程已執行完成。`,
'sc4eedb434536bdb4': `需要一個帳號嗎?`,
'sc5668cb23167e9bb': `或者如果您目前裝置已安裝 Duo請點擊此連結`,
'sc8da3cc71de63832': `登入`,
'sc9f69360b58706c7': `已刪除模型`,
'scb489a1a173ac3f0': ``,
'scf5ce91bfba10a61': `請輸入您的密碼`,
'sd1f44f1a8bc20e67': `電子郵件`,
'sd6a025d66f2637d1': `傳統身分認證器`,
'sd73b202ec04eefd9': `未知使用目的`,
'sd766cdc29b25ff95': `使用 Apple 進行身分認證中……`,
'sd8f220c999726151': `重新導向`,
'sdc9e222be9612939': `已連接來源`,
'se2d65e13768468e0': `內部位置`,
'se2f258b996f7279c': `系統工作例外事件`,
'se409d01b52c4e12f': `重試身分認證`,
'se5fd752dbbc3cd28': `使用安全金鑰登入`,
'se9e9e1d6799b86a5': `不支援 WebAuthn 的瀏覽器。`,
'seb0c08d9f233bbfe': `請輸入您簡訊收到的認證碼。`,
'sf1ec4acb8d744ed9': `警報`,
'sf29883ac9ec43085': `應用程式密碼`,
'sf6e1665c7022a1f8': `密碼`,
'sf8f49cdbf0036343': `設定錯誤`,
'sfcfcf85a57eea78a': `TOTP 裝置`,
'sfe211545fd02f73e': `驗證`,
'sfe629863ba1338c2': `連線錯誤,正在重新連線……`,
'sff930bf2834e2201': `服務帳號(內部)`,
'zh-Hans': `簡體中文`,
'zh-Hant': `繁體中文`,
'en-XA': `English (Pseudo-Accents)`,
'locale-option-localized-label': str`${0} (${1})`,
'sa4be93eb7f4e51e3': `Site links`,
's12d6dde9b30c3093': `Dismiss`,
'sdaecc3c29a27c5c5': `An unknown error occurred`,
'se84ba7f105934495': `Please check the browser console for more details.`,
'sdea479482318489d': `Status messages`,
'sb69e43f2f6bd1b54': `Close flow inspector`,
's857cf5aa8955cf5c': `Flow inspector loading`,
's3736936aac1adc2e': `Open flow inspector`,
's15d6fabebb4ef2d8': `User information`,
'avatar.alt-text-for-user': str`Avatar for ${0}`,
'avatar.alt-text': `User avatar`,
'sf376ae7e9ef41c1a': `Authenticating with Telegram...`,
's76ea993fdc8503d8': `Click the button below to start.`,
's6e858c4c4c3b6b76': `You're about to be redirected to the following URL.`,
's7f073c746d0f6324': `Form actions`,
's7fa4e5e409d43573': str`Error creating credential: ${0}`,
's9d95f09deb601f34': str`Server validation of credential failed: ${0}`,
'sb0821a9e92cac5eb': `Failed to register. Please try again.`,
's238784fc1dc672ae': `Registering...`,
's009bd1c98a9f5de2': `Failed to register`,
'sb166ce92e8e807d6': `Retry registration`,
's0b1ffff8bedd6b8a': `Unknown Provider`,
's777e86d562523c85': `Logging out of providers...`,
's4980379bf8461c2d': `Single Logout`,
's0382d73823585617': str`${0}: ${1}`,
's23da7320dee28a60': `Device Code`,
's78869b8b2bc26d0d': `SAML Provider`,
'sca83a1f9227f74b9': `SAML logout complete`,
's7b90eab7969ae056': str`Redirecting to SAML provider: ${0}`,
'saa088a2d0f90d5a9': str`Posting logout response to SAML provider: ${0}`,
's3e6174b645d96835': str`Posting logout request to SAML provider: ${0}`,
'flow.navigation.go-back': `Go back`,
's3f8a07912545e72e': `Configure your email`,
'scedf77e8b75cad5a': `Please enter your email address.`,
'stage.authenticator.email.sent-to-address': str`A verification token has been sent to your configured email address: ${0}`,
'stage.authenticator.email.sent': `A verification token has been sent to your email address.`,
's7cdd62c100b6b17b': `Please enter the code you received via email`,
'clipboard.write.success.message.entity': str`${0} copied to clipboard.`,
'clipboard.write.success.generic': `Copied to clipboard.`,
'clipboard.write.failure.description': `Clipboard not available. Please copy the value manually.`,
'totp.config': `TOTP Config`,
'totp.config.clipboard.description': `Paste this URL into your authenticator app to set up a time-based one-time password.`,
'totp.secret': `TOTP Secret`,
'totp.secret.clipboard.description': `Paste this secret into your authenticator app to set up a time-based one-time password.`,
'sc091f75b942ec081': `QR-Code to setup a time-based one-time password`,
's6db67c7681b8be6e': `Copy time-based one-time password configuration`,
's43e859bf711e3599': `Copy TOTP Config`,
'sdf2794b96386c868': `Copy time-based one-time password secret`,
'sc78d16417878afd0': `Copy Secret`,
's90064dd5c4dde2c6': `Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.`,
'sa5562e0115ffbccd': `Time-based one-time password`,
's40f44c0d88807fd5': `TOTP Code`,
's95474cc8c73dd9c0': `Type your TOTP code...`,
's168d0c138b63286d': `Type your time-based one-time password code.`,
's92e22f9319fdb85d': `Configuration warning`,
's1af2337b6d11d4c6': `Data export ready`,
's776d93092ad9ce90': `Review initiated`,
'sad46bcad1a343b51': `Review overdue`,
's59d168d966cecbaf': `Review attested`,
's5158b7f014cecefc': `Review completed`,
's482bc55a78891ef7': str`A code has been sent to your address: ${0}`,
's5afa3fc77ce8d94d': `A code has been sent to your email address.`,
's37f47fa981493c3b': `A one-time use code has been sent to you via SMS text message.`,
'sc92a7248dba5f388': `Open your authenticator app to retrieve a one-time use code.`,
's21d95b4651ad7a1e': `Enter a one-time recovery code for this user.`,
's2e1d5a7d320c25ef': `Enter the code from your authenticator device.`,
's98bb2ae796f1ceef': `Select another authentication method`,
's2f7f35f6a5b733f5': `Show password`,
's452f791e0ff6a13e': `Hide password`,
's6bb30c61df4cf486': `Caps Lock is enabled.`,
'sb94beab52540d2b7': `The CAPTCHA challenge failed to load.`,
's8d6236ad153d42c0': `CAPTCHA challenge`,
's30d6ff9e15e0a40a': `Verifying...`,
's217a96c47caaf73d': `Could not find a suitable CAPTCHA provider.`,
'sac315d5bd28d4efa': `Don't Pass`,
's1c336c2d6cef77b3': `Remember me on this device`,
'sf910cca0f06bbc31': `Enter the email address or username associated with your account.`,
's6ecfc18dbfeedd76': `Select one of the options below to continue.`,
'sd5d2b94a1ccba1a9': str`Log in to continue to ${0}.`,
'seb6ab868740e4e36': str`Continue with ${0}`,
's53dddf1733e26c98': `Login sources`,
's05a941e4b4bfca9f': `Additional actions`,
's14e8ac4d377a1a99': `Type an authentication code...`,
's39002897db60bb28': `Sending Duo push notification...`,
'sd2b8c1caa0340ed6': `Failed to authenticate`,
's363abde8a254ea5f': `Authentication failed. Please try again.`,
'sffef1a8596bc58bb': `Authenticating...`,
'scd909e0bc55fc548': `Security key`,
'sd0de938d9c37ad5f': `Use a Passkey or security key to prove your identity.`,
's8bb0a1b672b52954': `In case you lose access to your primary authenticators.`,
's833cfe815918c143': `Tokens sent via email.`,
's76d21e163887ddd1': `Unknown device`,
'sf0ceaf3116e31fd4': `An unknown device class was provided.`,
's610fced3957d0471': `Select an authentication method`,
's958cedec1cb3fc52': `Select a configuration stage`,
's06bfe45ffef2cf60': str`Stage name: ${0}`,
's95094b57684716a5': `Failed to validate device.`,
'se99d25eb70c767ef': `Verifying your device...`,
'sac88482c48453fc8': str`You've logged out of ${0}. You can go back to the overview to launch another application, or log out of your authentik account.`,
's3108167b562674e2': `Go back to overview`,
'sdb749e793de55478': str`Log out of ${0}`,
's521681ed1d5ff814': str`Log back into ${0}`,
'sdd2ea73c24b40d5d': `Site footer`,
'sa17ce23517e56461': `Authentication form`,
's91ae4b6bf981682b': `authentik Logo`,
};

View File

@@ -1,4 +1,3 @@
import { TargetLanguageTag } from "#common/ui/locale/definitions";
import {
formatAutoDetectLocaleDisplayName,
formatLocaleDisplayNames,
@@ -19,7 +18,8 @@ import { guard } from "lit/directives/guard.js";
/* eslint-disable lit/no-invalid-html */
export interface LocalePromptProps {
activeLanguageTag: TargetLanguageTag;
activeLanguageTag: Intl.UnicodeBCP47LocaleIdentifier;
languageTags: Iterable<Intl.UnicodeBCP47LocaleIdentifier>;
prompt: StagePrompt;
fieldId: string;
disabled?: boolean;
@@ -28,6 +28,7 @@ export interface LocalePromptProps {
export const LocalePrompt: LitFC<LocalePromptProps> = ({
activeLanguageTag,
languageTags,
prompt,
disabled,
debug,
@@ -42,12 +43,12 @@ export const LocalePrompt: LitFC<LocalePromptProps> = ({
debug,
});
const languagesByTag = new Map<TargetLanguageTag, LocaleDisplay>(
const languagesByTag = new Map<Intl.UnicodeBCP47LocaleIdentifier, LocaleDisplay>(
entries.map((entry) => [entry[0], entry]),
);
const selectedLanguageTag = prompt.initialValue
? getBestMatchLocale(prompt.initialValue)
? getBestMatchLocale(prompt.initialValue, languageTags)
: null;
/**

View File

@@ -0,0 +1,889 @@
<?xml version="1.0"?><xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file target-language="cs-CZ" source-language="en" original="lit-localize-inputs" datatype="plaintext">
<body>
<!-- #region Locales -->
<trans-unit id="en">
<source>English</source>
<target>Angličtina</target>
</trans-unit>
<trans-unit id="ja-JP">
<source>Japanese</source>
<target>Japonština</target>
</trans-unit>
<trans-unit id="ko-KR">
<source>Korean</source>
<target>Korejština</target>
</trans-unit>
<trans-unit id="zh-Hans">
<source>Chinese (Simplified)</source>
<target>Čínština</target>
</trans-unit>
<trans-unit id="zh-Hant">
<source>Chinese (Traditional)</source>
<target>Čínština</target>
</trans-unit>
<!-- #endregion -->
<!-- #region Locale selector -->
<trans-unit id="locale-auto-detect-option">
<source>Auto-detect</source>
<target>Automatická detekce</target>
<note from="lit-localize">Label for the auto-detect locale option in language selection dropdown</note>
</trans-unit>
<trans-unit id="language-selector-label">
<source>Select language</source>
<target>Vybrat jazyk</target>
<note from="lit-localize">Label for the language selection dropdown</note>
</trans-unit>
<trans-unit id="locale-option-localized-label">
<source><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</source>
<note from="lit-localize">Locale option label showing the localized language name along with the native language name in parentheses.</note>
</trans-unit>
<!-- #endregion -->
<trans-unit id="s12d6dde9b30c3093">
<source>Dismiss</source>
<target>Skrýt</target>
</trans-unit>
<trans-unit id="sfe629863ba1338c2">
<source>Connection error, reconnecting...</source>
<target>Chyba spojení, znovu se připojuji...</target>
</trans-unit>
<trans-unit id="sdaecc3c29a27c5c5">
<source>An unknown error occurred</source>
<target>Došlo k neznámé chybě</target>
</trans-unit>
<trans-unit id="se84ba7f105934495">
<source>Please check the browser console for more details.</source>
<target>Pro více informací se podívejte do konzole prohlížeče.</target>
</trans-unit>
<trans-unit id="sdea479482318489d">
<source>Status messages</source>
<target>Stavové zprávy</target>
</trans-unit>
<trans-unit id="s91ae4b6bf981682b">
<source>authentik Logo</source>
<target>Logo authentik</target>
</trans-unit>
<trans-unit id="s49730f3d5751a433">
<source>Loading...</source>
<target>Načítání...</target>
</trans-unit>
<trans-unit id="sa50a6326530d8a0d">
<source>Show less</source>
<target>Zobrazit méně</target>
</trans-unit>
<trans-unit id="sb2c57b2d347203dd">
<source>Show more</source>
<target>Zobrazit více</target>
</trans-unit>
<trans-unit id="sa48f81f001b893d2">
<source>User</source>
<target>Uživatel</target>
</trans-unit>
<trans-unit id="sb59d68ed12d46377">
<source>Loading</source>
<target>Načítání</target>
</trans-unit>
<trans-unit id="s0382d73823585617">
<source><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></source>
<target>
<x id="0" equiv-text="${this.errorMessage}"/>:
<x id="1" equiv-text="${e.toString()}"/></target>
</trans-unit>
<trans-unit id="sae5d87e99fe081e0">
<source>Required</source>
<target>Vyžadováno</target>
</trans-unit>
<trans-unit id="s1cd198d689c66e4b">
<source>API Access</source>
<target>API přístup</target>
</trans-unit>
<trans-unit id="sf29883ac9ec43085">
<source>App password</source>
<target>Heslo aplikace</target>
</trans-unit>
<trans-unit id="s6ac670086eb137c6">
<source>Recovery</source>
<target>Obnovení</target>
</trans-unit>
<trans-unit id="sfe211545fd02f73e">
<source>Verification</source>
<target>Ověření</target>
</trans-unit>
<trans-unit id="sd73b202ec04eefd9">
<source>Unknown intent</source>
<target>Neznámý záměr</target>
</trans-unit>
<trans-unit id="sc8da3cc71de63832">
<source>Login</source>
<target>Přihlášení</target>
</trans-unit>
<trans-unit id="sb4564c127ab8b921">
<source>Failed login</source>
<target>Chybné přihlášení</target>
</trans-unit>
<trans-unit id="s67749057edb2586b">
<source>Logout</source>
<target>Odhlášení</target>
</trans-unit>
<trans-unit id="s7e537ad68d7c16e1">
<source>User was written to</source>
<target>Uživatel byl zapsaný do</target>
</trans-unit>
<trans-unit id="sa0e0bdd7e244416b">
<source>Suspicious request</source>
<target>Podezřelý požadavek</target>
</trans-unit>
<trans-unit id="s7bda44013984fc48">
<source>Password set</source>
<target>Heslo je nastavené</target>
</trans-unit>
<trans-unit id="sa1b41e334ad89d94">
<source>Secret was viewed</source>
<target>Secret byl zobrazený</target>
</trans-unit>
<trans-unit id="s92ca679592a36b35">
<source>Secret was rotated</source>
<target>Secret byl změněn</target>
</trans-unit>
<trans-unit id="s8a1d9403ca90989b">
<source>Invitation used</source>
<target>Pozvánka byla použitá</target>
</trans-unit>
<trans-unit id="s5f496533610103f2">
<source>Application authorized</source>
<target>Aplikace byla autorizovaná</target>
</trans-unit>
<trans-unit id="sdc9e222be9612939">
<source>Source linked</source>
<target>Zdroj propojen</target>
</trans-unit>
<trans-unit id="sb1c91762ae3a9bee">
<source>Impersonation started</source>
<target>Zosobnění bylo spuštěno</target>
</trans-unit>
<trans-unit id="s9c73bd29b279d26b">
<source>Impersonation ended</source>
<target>Zosobnění bylo ukončeno</target>
</trans-unit>
<trans-unit id="s1cd264012278c047">
<source>Flow execution</source>
<target>Spuštění toku</target>
</trans-unit>
<trans-unit id="s32f04d33924ce8ad">
<source>Policy execution</source>
<target>Spuštění zásady</target>
</trans-unit>
<trans-unit id="sb6d7128df5978cee">
<source>Policy exception</source>
<target>Chyba zásady</target>
</trans-unit>
<trans-unit id="s77f572257f69a8db">
<source>Property Mapping exception</source>
<target>Chyba mapování vlastnosti</target>
</trans-unit>
<trans-unit id="s2543cffd6ebb6803">
<source>System task execution</source>
<target>Spuštění systémové úlohy</target>
</trans-unit>
<trans-unit id="se2f258b996f7279c">
<source>System task exception</source>
<target>Chyba systémové úlohy</target>
</trans-unit>
<trans-unit id="s81eff3409d572a21">
<source>General system exception</source>
<target>Obecná systémová chyba</target>
</trans-unit>
<trans-unit id="sf8f49cdbf0036343">
<source>Configuration error</source>
<target>Chyba nastavení</target>
</trans-unit>
<trans-unit id="s9c6f61dc47bc4f0a">
<source>Model created</source>
<target>Model vytvořen</target>
</trans-unit>
<trans-unit id="s47a4983a2c6bb749">
<source>Model updated</source>
<target>Model upraven</target>
</trans-unit>
<trans-unit id="sc9f69360b58706c7">
<source>Model deleted</source>
<target>Model smazán</target>
</trans-unit>
<trans-unit id="sa266303caf1bd27f">
<source>Email sent</source>
<target>Email odeslán</target>
</trans-unit>
<trans-unit id="s6c410fedda2a575f">
<source>Update available</source>
<target>Dostupná aktualizace</target>
</trans-unit>
<trans-unit id="sf1ec4acb8d744ed9">
<source>Alert</source>
<target>Upozornění</target>
</trans-unit>
<trans-unit id="s9117fb5195e75151">
<source>Notice</source>
<target>Poznámka</target>
</trans-unit>
<trans-unit id="s34be76c6b1eadbef">
<source>Warning</source>
<target>Upozornění</target>
</trans-unit>
<trans-unit id="s02240309358f557c">
<source>Unknown severity</source>
<target>Neznámá závažnost</target>
</trans-unit>
<trans-unit id="s858e7ac4b3cf955f">
<source>Static tokens</source>
<target>Statické tokeny</target>
</trans-unit>
<trans-unit id="sfcfcf85a57eea78a">
<source>TOTP Device</source>
<target>TOTP zařízení</target>
</trans-unit>
<trans-unit id="s482bc55a78891ef7">
<source>A code has been sent to your address: <x id="0" equiv-text="${email}"/></source>
</trans-unit>
<trans-unit id="s5afa3fc77ce8d94d">
<source>A code has been sent to your email address.</source>
</trans-unit>
<trans-unit id="s37f47fa981493c3b">
<source>A one-time use code has been sent to you via SMS text message.</source>
</trans-unit>
<trans-unit id="sc92a7248dba5f388">
<source>Open your authenticator app to retrieve a one-time use code.</source>
</trans-unit>
<trans-unit id="s21d95b4651ad7a1e">
<source>Enter a one-time recovery code for this user.</source>
<target>Zadejte jednorázový obnovovací kód pro tohoto uživatele.</target>
</trans-unit>
<trans-unit id="s2e1d5a7d320c25ef">
<source>Enter the code from your authenticator device.</source>
<target>Zadejte kód z vašeho autentizačního zařízení.</target>
</trans-unit>
<trans-unit id="se2d65e13768468e0">
<source>Internal</source>
<target>Interní</target>
</trans-unit>
<trans-unit id="s84fcddede27b8e2a">
<source>External</source>
<target>Externí</target>
</trans-unit>
<trans-unit id="s1a635369edaf4dc3">
<source>Service account</source>
<target>Servisní účet</target>
</trans-unit>
<trans-unit id="sff930bf2834e2201">
<source>Service account (internal)</source>
<target>Servisní účet (interní)</target>
</trans-unit>
<trans-unit id="scb489a1a173ac3f0">
<source>Yes</source>
<target>Ano</target>
</trans-unit>
<trans-unit id="s09205907b5b56cda">
<source>No</source>
<target>Ne</target>
</trans-unit>
<trans-unit id="s7f073c746d0f6324">
<source>Form actions</source>
</trans-unit>
<trans-unit id="s98b1cb8fb62909ec">
<source>Group</source>
<target>Skupina</target>
</trans-unit>
<trans-unit id="s2e422519ed38f7d8">
<source>Pass</source>
<target>Povolit</target>
</trans-unit>
<trans-unit id="sac315d5bd28d4efa">
<source>Don't Pass</source>
<target>Nepovolit</target>
</trans-unit>
<trans-unit id="s042baf59902a711f">
<source>Policy</source>
<target>Zásada</target>
</trans-unit>
<trans-unit id="sd8f220c999726151">
<source>Redirect</source>
<target>Přesměrování</target>
</trans-unit>
<trans-unit id="s03f42eea72154959">
<source>Username</source>
<target>Uživatelské jméno</target>
</trans-unit>
<trans-unit id="s5f5bf4ef2bd93c04">
<source>Group mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Mapování skupin lze zkontrolovat pouze v případě, že je uživatel při pokusu o přístup k tomuto zdroji již přihlášen.</target>
</trans-unit>
<trans-unit id="s6c607d74bdfe9f36">
<source>User mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Mapování uživatelů lze zkontrolovat pouze v případě, že je uživatel při pokusu o přístup k tomuto zdroji již přihlášen.</target>
</trans-unit>
<trans-unit id="sf6e1665c7022a1f8">
<source>Password</source>
<target>Heslo</target>
</trans-unit>
<trans-unit id="sd1f44f1a8bc20e67">
<source>Email</source>
<target>E-mail</target>
</trans-unit>
<trans-unit id="s8939f574b096054a">
<source>Not you?</source>
<target>Nejste to vy?</target>
</trans-unit>
<trans-unit id="s296fbffaaa7c910a">
<source>Required.</source>
<target>Vyžadováno.</target>
</trans-unit>
<trans-unit id="s81ecf2d4386b8e84">
<source>Continue</source>
<target>Pokračovat</target>
</trans-unit>
<trans-unit id="s61e48919db20538a">
<source>UPN</source>
<target>UPN</target>
</trans-unit>
<trans-unit id="s67ac11d47f1ce794">
<source>WebAuthn requires this page to be accessed via HTTPS.</source>
<target>WebAuthn vyžaduje, aby byla tato stránka přístupná přes HTTPS.</target>
</trans-unit>
<trans-unit id="se9e9e1d6799b86a5">
<source>WebAuthn not supported by browser.</source>
<target>WebAuthn není podporováno prohlížečem.</target>
</trans-unit>
<trans-unit id="sa4be93eb7f4e51e3">
<source>Site links</source>
</trans-unit>
<trans-unit id="s6fe64b4625517333">
<source>Powered by authentik</source>
<target>Powered by authentik</target>
</trans-unit>
<trans-unit id="sd766cdc29b25ff95">
<source>Authenticating with Apple...</source>
<target>Probíhá ověřování s Apple...</target>
</trans-unit>
<trans-unit id="s2c8189544e3ea679">
<source>Retry</source>
<target>Znovu</target>
</trans-unit>
<trans-unit id="s420d2cdedcaf8cd0">
<source>Authenticating with Plex...</source>
<target>Probíhá ověřování s Plexem...</target>
</trans-unit>
<trans-unit id="s2ddbebcb8a49b005">
<source>Waiting for authentication...</source>
<target>Čeká se na ověření...</target>
</trans-unit>
<trans-unit id="sb15fe7b9d09bb419">
<source>If no Plex popup opens, click the button below.</source>
<target>Pokud se neotevře okno Plex, klikněte na tlačítko níže.</target>
</trans-unit>
<trans-unit id="sbc625b4c669b9ce8">
<source>Open login</source>
<target>Otevřít přihlášení</target>
</trans-unit>
<trans-unit id="sf376ae7e9ef41c1a">
<source>Authenticating with Telegram...</source>
</trans-unit>
<trans-unit id="s76ea993fdc8503d8">
<source>Click the button below to start.</source>
</trans-unit>
<trans-unit id="s15d6fabebb4ef2d8">
<source>User information</source>
</trans-unit>
<trans-unit id="s9bd9ba84819493d4">
<source>Something went wrong! Please try again later.</source>
<target>Něco se pokazilo! Zkuste to znovu později.</target>
</trans-unit>
<trans-unit id="s4090dd0c0e45988b">
<source>Request ID</source>
<target>ID požadavku</target>
</trans-unit>
<trans-unit id="s4d7fe7be1c49896c">
<source>You may close this page now.</source>
<target>Nyní můžete tuto stránku zavřít.</target>
</trans-unit>
<trans-unit id="s197420b40df164f8">
<source>Follow redirect</source>
<target>Následovat přesměrování</target>
</trans-unit>
<trans-unit id="s3ab772345f78aee0">
<source>Flow inspector</source>
<target>Inspektor toku</target>
</trans-unit>
<trans-unit id="sb69e43f2f6bd1b54">
<source>Close flow inspector</source>
</trans-unit>
<trans-unit id="s502884e1977b2c06">
<source>Next stage</source>
<target>Další krok</target>
</trans-unit>
<trans-unit id="sb3fa80ccfa97ee54">
<source>Stage name</source>
<target>Název kroku</target>
</trans-unit>
<trans-unit id="sbea3c1e4f2fd623d">
<source>Stage kind</source>
<target>Druh kroku</target>
</trans-unit>
<trans-unit id="s2bc8aa1740d3da34">
<source>Stage object</source>
<target>Objekt kroku</target>
</trans-unit>
<trans-unit id="sc3e1c4f1fff8e1ca">
<source>This flow is completed.</source>
<target>Tento tok je dokončen.</target>
</trans-unit>
<trans-unit id="s342eccabf83c9bde">
<source>Plan history</source>
<target>Historie plánu</target>
</trans-unit>
<trans-unit id="sb2f307e79d20bb56">
<source>Current plan context</source>
<target>Aktuální kontext plánu</target>
</trans-unit>
<trans-unit id="sa13e6c8310000e30">
<source>Session ID</source>
<target>ID relace</target>
</trans-unit>
<trans-unit id="s857cf5aa8955cf5c">
<source>Flow inspector loading</source>
</trans-unit>
<trans-unit id="sa11e92683c5860c7">
<source>Request has been denied.</source>
<target>Požadavek byl zamítnut.</target>
</trans-unit>
<trans-unit id="s2f7f35f6a5b733f5">
<source>Show password</source>
<target>Zobrazit heslo</target>
</trans-unit>
<trans-unit id="s452f791e0ff6a13e">
<source>Hide password</source>
<target>Skrýt heslo</target>
</trans-unit>
<trans-unit id="scf5ce91bfba10a61">
<source>Please enter your password</source>
<target>Prosím zadejte své heslo</target>
</trans-unit>
<trans-unit id="s6bb30c61df4cf486">
<source>Caps Lock is enabled.</source>
<target>CapsLock je zapnutý.</target>
</trans-unit>
<trans-unit id="s8d6236ad153d42c0">
<source>CAPTCHA challenge</source>
</trans-unit>
<trans-unit id="s30d6ff9e15e0a40a">
<source>Verifying...</source>
<target>Ověřování...</target>
</trans-unit>
<trans-unit id="s1c336c2d6cef77b3">
<source>Remember me on this device</source>
<target>Zapamatovat na tomto zařízení</target>
</trans-unit>
<trans-unit id="seb6ab868740e4e36">
<source>Continue with <x id="0" equiv-text="${name}"/></source>
</trans-unit>
<trans-unit id="sc4eedb434536bdb4">
<source>Need an account?</source>
<target>Potřebujete účet?</target>
</trans-unit>
<trans-unit id="s38f774cd7e9b9dad">
<source>Sign up.</source>
<target>Zaregistrovat se.</target>
</trans-unit>
<trans-unit id="sa03aa46068460c95">
<source>Forgot username or password?</source>
<target>Zapomněli jste uživatelské jméno nebo heslo?</target>
</trans-unit>
<trans-unit id="s05a941e4b4bfca9f">
<source>Additional actions</source>
</trans-unit>
<trans-unit id="s6ecfc18dbfeedd76">
<source>Select one of the options below to continue.</source>
<target>Vyberte jednu z možností níže pro pokračování.</target>
</trans-unit>
<trans-unit id="s091d5407b5b32e84">
<source>Or</source>
<target>nebo</target>
</trans-unit>
<trans-unit id="se5fd752dbbc3cd28">
<source>Use a security key</source>
<target>Použít bezpečnostní klíč</target>
</trans-unit>
<trans-unit id="s53dddf1733e26c98">
<source>Login sources</source>
</trans-unit>
<trans-unit id="s85366fac18679f28">
<source>Forgot password?</source>
<target>Zapomněli jste heslo?</target>
</trans-unit>
<trans-unit id="s14c552fb0a4c0186">
<source>Application requires following permissions:</source>
<target>Aplikace vyžaduje následující oprávnění:</target>
</trans-unit>
<trans-unit id="s7073489bb01b3c24">
<source>Application already has access to the following permissions:</source>
<target>Aplikace již má přístup k následujícím oprávněním:</target>
</trans-unit>
<trans-unit id="s98dc556f8bf707dc">
<source>Application requires following new permissions:</source>
<target>Aplikace vyžaduje následující nová oprávnění:</target>
</trans-unit>
<trans-unit id="s06bfe45ffef2cf60">
<source>Stage name: <x id="0" equiv-text="${this.challenge?.name}"/></source>
<target>Název kroku: <x id="0" equiv-text="${this.challenge.name}"/></target>
</trans-unit>
<trans-unit id="sbd19064fc3f405c1">
<source>Check your Inbox for a verification email.</source>
<target>Ověřovací email najdete ve Vaší poštovní schránce.</target>
</trans-unit>
<trans-unit id="s8aff572e64b7936b">
<source>Send Email again.</source>
<target>Poslat email znovu.</target>
</trans-unit>
<trans-unit id="sc091f75b942ec081">
<source>QR-Code to setup a time-based one-time password</source>
</trans-unit>
<trans-unit id="s6db67c7681b8be6e">
<source>Copy time-based one-time password configuration</source>
</trans-unit>
<trans-unit id="s43e859bf711e3599">
<source>Copy TOTP Config</source>
</trans-unit>
<trans-unit id="s90064dd5c4dde2c6">
<source>Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.</source>
<target>Naskenujte výše uvedený QR kód pomocí aplikace Microsoft Authenticator, Google Authenticator nebo jiné autentizační aplikace ve svém zařízení a zadejte kód, který zařízení zobrazí níže, pro dokončení nastavení MFA zařízení.</target>
</trans-unit>
<trans-unit id="sa5562e0115ffbccd">
<source>Time-based one-time password</source>
</trans-unit>
<trans-unit id="s40f44c0d88807fd5">
<source>TOTP Code</source>
</trans-unit>
<trans-unit id="s95474cc8c73dd9c0">
<source>Type your TOTP code...</source>
</trans-unit>
<trans-unit id="s168d0c138b63286d">
<source>Type your time-based one-time password code.</source>
</trans-unit>
<trans-unit id="sc2ec367e3108fe65">
<source>Duo activation QR code</source>
<target>QR kód pro aktivaci Duo</target>
</trans-unit>
<trans-unit id="sc5668cb23167e9bb">
<source>Alternatively, if your current device has Duo installed, click on this link:</source>
<target>Alternativně, pokud máte Duo nainstalováno na svém aktuálním zařízení, klikněte na tento odkaz:</target>
</trans-unit>
<trans-unit id="s721d94ae700b5dfd">
<source>Duo activation</source>
<target>Aktivace Duo</target>
</trans-unit>
<trans-unit id="s708d9a4a0db0be8f">
<source>Check status</source>
<target>Zkontrolovat stav</target>
</trans-unit>
<trans-unit id="s31fba571065f2c87">
<source>Make sure to keep these tokens in a safe place.</source>
<target>Ujistěte se, že tyto tokeny uchováváte na bezpečném místě.</target>
</trans-unit>
<trans-unit id="s3f8a07912545e72e">
<source>Configure your email</source>
<target>Nastavte svůj email</target>
</trans-unit>
<trans-unit id="scedf77e8b75cad5a">
<source>Please enter your email address.</source>
<target>Zadejte vaši emailovou adresu.</target>
</trans-unit>
<trans-unit id="s3643189d1abbb7f4">
<source>Code</source>
<target>Kód</target>
</trans-unit>
<trans-unit id="s7cdd62c100b6b17b">
<source>Please enter the code you received via email</source>
<target>Zadejte kód z emailu.</target>
</trans-unit>
<trans-unit id="sc0a0c87d5c556c38">
<source>Phone number</source>
<target>Telefonní číslo</target>
</trans-unit>
<trans-unit id="s04c1210202f48dc9">
<source>Please enter your Phone number.</source>
<target>Prosím zadejte své telefonní číslo.</target>
</trans-unit>
<trans-unit id="seb0c08d9f233bbfe">
<source>Please enter the code you received via SMS</source>
<target>Prosím zadejte kód který vám přišel v SMS</target>
</trans-unit>
<trans-unit id="s98bb2ae796f1ceef">
<source>Select another authentication method</source>
<target>Vyberte jinou metodu ověření</target>
</trans-unit>
<trans-unit id="s844fea0bfb10a72a">
<source>Authentication code</source>
<target>Ověřovací kód</target>
</trans-unit>
<trans-unit id="s7abc9d08b0f70fd6">
<source>Static token</source>
<target>Statický token</target>
</trans-unit>
<trans-unit id="s14e8ac4d377a1a99">
<source>Type an authentication code...</source>
</trans-unit>
<trans-unit id="s39002897db60bb28">
<source>Sending Duo push notification...</source>
<target>Odesílání Duo push oznámení...</target>
</trans-unit>
<trans-unit id="sd2b8c1caa0340ed6">
<source>Failed to authenticate</source>
<target>Ověření se nezdařilo</target>
</trans-unit>
<trans-unit id="s363abde8a254ea5f">
<source>Authentication failed. Please try again.</source>
<target>Ověření selhalo. Zkuste to prosím znovu.</target>
</trans-unit>
<trans-unit id="sffef1a8596bc58bb">
<source>Authenticating...</source>
<target>Ověřování...</target>
</trans-unit>
<trans-unit id="se409d01b52c4e12f">
<source>Retry authentication</source>
<target>Opakovat ověření</target>
</trans-unit>
<trans-unit id="s8d857061510fe794">
<source>Duo push-notifications</source>
<target>Duo push-notifikace</target>
</trans-unit>
<trans-unit id="s47490298c17b753a">
<source>Receive a push notification on your device.</source>
<target>Na své zařízení obdržíte push notifikaci.</target>
</trans-unit>
<trans-unit id="sd6a025d66f2637d1">
<source>Traditional authenticator</source>
<target>Tradiční autentikátor</target>
</trans-unit>
<trans-unit id="sb25e689e00c61829">
<source>Use a code-based authenticator.</source>
<target>Použijte autentikátor založený na kódech.</target>
</trans-unit>
<trans-unit id="s9e568afec3810bfe">
<source>Recovery keys</source>
<target>Klíče pro obnovu</target>
</trans-unit>
<trans-unit id="s8bb0a1b672b52954">
<source>In case you lose access to your primary authenticators.</source>
</trans-unit>
<trans-unit id="s97f2dc19fa556a6a">
<source>SMS</source>
<target>SMS</target>
</trans-unit>
<trans-unit id="s0e516232f2ab4e04">
<source>Tokens sent via SMS.</source>
<target>Tokeny zaslané prostřednictvím SMS.</target>
</trans-unit>
<trans-unit id="s833cfe815918c143">
<source>Tokens sent via email.</source>
<target>Tokeny odeslané e-mailem.</target>
</trans-unit>
<trans-unit id="s76d21e163887ddd1">
<source>Unknown device</source>
</trans-unit>
<trans-unit id="sf0ceaf3116e31fd4">
<source>An unknown device class was provided.</source>
</trans-unit>
<trans-unit id="s610fced3957d0471">
<source>Select an authentication method</source>
</trans-unit>
<trans-unit id="s958cedec1cb3fc52">
<source>Select a configuration stage</source>
</trans-unit>
<trans-unit id="sac17f177f884e238">
<source>Stay signed in?</source>
<target>Zůstat přihlášen?</target>
</trans-unit>
<trans-unit id="s859b2e00391da380">
<source>Select Yes to reduce the number of times you're asked to sign in.</source>
<target>Vyberte Ano, aby se snížil počet žádostí o přihlášení.</target>
</trans-unit>
<trans-unit id="s23da7320dee28a60">
<source>Device Code</source>
<target>Kód zařízení</target>
</trans-unit>
<trans-unit id="s3cd84e82e83e35ad">
<source>Please enter your code</source>
<target>Prosím zadejte svůj kód</target>
</trans-unit>
<trans-unit id="s455a8fc21077e7f9">
<source>You've successfully authenticated your device.</source>
<target>Vaše zařízení bylo úspěšně ověřeno.</target>
</trans-unit>
<trans-unit id="sac88482c48453fc8">
<source>You've logged out of <x id="0" equiv-text="${challenge.applicationName}"/>. You can go back to the overview to launch another application, or log out of your authentik account.</source>
<target>Odhlásili jste se z <x id="0" equiv-text="${this.challenge.applicationName}"/>. Můžete se vrátit na přehled a spustit jinou aplikaci nebo se odhlásit z účtu authentik.</target>
</trans-unit>
<trans-unit id="s3108167b562674e2">
<source>Go back to overview</source>
<target>Vrátit se na přehled</target>
</trans-unit>
<trans-unit id="sdb749e793de55478">
<source>Log out of <x id="0" equiv-text="${challenge.brandName}"/></source>
<target>Odhlásit se z <x id="0" equiv-text="${this.challenge.brandName}"/></target>
</trans-unit>
<trans-unit id="s521681ed1d5ff814">
<source>Log back into <x id="0" equiv-text="${challenge.applicationName}"/></source>
<target>Přihlásit se zpět do <x id="0" equiv-text="${this.challenge.applicationName}"/></target>
</trans-unit>
<trans-unit id="s78869b8b2bc26d0d">
<source>SAML Provider</source>
</trans-unit>
<trans-unit id="sca83a1f9227f74b9">
<source>SAML logout complete</source>
</trans-unit>
<trans-unit id="s7b90eab7969ae056">
<source>Redirecting to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s3e6174b645d96835">
<source>Posting logout request to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s0b1ffff8bedd6b8a">
<source>Unknown Provider</source>
</trans-unit>
<trans-unit id="s777e86d562523c85">
<source>Logging out of providers...</source>
</trans-unit>
<trans-unit id="s4980379bf8461c2d">
<source>Single Logout</source>
</trans-unit>
<trans-unit id="s3736936aac1adc2e">
<source>Open flow inspector</source>
</trans-unit>
<trans-unit id="sa17ce23517e56461">
<source>Authentication form</source>
</trans-unit>
<trans-unit id="s7fa4e5e409d43573">
<source>Error creating credential: <x id="0" equiv-text="${err}"/></source>
<target>Chyba při vytváření přihlašovacích údajů: <x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="s9d95f09deb601f34">
<source>Server validation of credential failed: <x id="0" equiv-text="${err}"/></source>
<target>Ověření přihlašovacích údajů na serveru selhalo: <x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="sb0821a9e92cac5eb">
<source>Failed to register. Please try again.</source>
<target>Registrace se nezdařila. Zkuste to prosím znovu.</target>
</trans-unit>
<trans-unit id="s238784fc1dc672ae">
<source>Registering...</source>
<target>Registrace...</target>
</trans-unit>
<trans-unit id="s009bd1c98a9f5de2">
<source>Failed to register</source>
<target>Registrace se nezdařila</target>
</trans-unit>
<trans-unit id="sb166ce92e8e807d6">
<source>Retry registration</source>
<target>Opakovat registraci</target>
</trans-unit>
<trans-unit id="s95094b57684716a5">
<source>Failed to validate device.</source>
</trans-unit>
<trans-unit id="se99d25eb70c767ef">
<source>Verifying your device...</source>
</trans-unit>
<trans-unit id="s1af2337b6d11d4c6">
<source>Data export ready</source>
</trans-unit>
<trans-unit id="en-XA">
<source>English (Pseudo-Accents)</source>
</trans-unit>
<trans-unit id="avatar.alt-text-for-user">
<source>Avatar for <x id="0" equiv-text="${this.username}"/></source>
</trans-unit>
<trans-unit id="avatar.alt-text">
<source>User avatar</source>
</trans-unit>
<trans-unit id="flow.navigation.go-back">
<source>Go back</source>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent-to-address">
<source>A verification token has been sent to your configured email address: <x id="0" equiv-text="${email}"/></source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's configured email address.</note>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent">
<source>A verification token has been sent to your email address.</source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's email address.</note>
</trans-unit>
<trans-unit id="scd909e0bc55fc548">
<source>Security key</source>
</trans-unit>
<trans-unit id="sd0de938d9c37ad5f">
<source>Use a Passkey or security key to prove your identity.</source>
</trans-unit>
<trans-unit id="sb94beab52540d2b7">
<source>The CAPTCHA challenge failed to load.</source>
</trans-unit>
<trans-unit id="s217a96c47caaf73d">
<source>Could not find a suitable CAPTCHA provider.</source>
</trans-unit>
<trans-unit id="sdf2794b96386c868">
<source>Copy time-based one-time password secret</source>
</trans-unit>
<trans-unit id="sc78d16417878afd0">
<source>Copy Secret</source>
</trans-unit>
<trans-unit id="clipboard.write.success.message.entity">
<source><x id="0" equiv-text="${entityLabel}"/> copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.success.generic">
<source>Copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.failure.description">
<source>Clipboard not available. Please copy the value manually.</source>
</trans-unit>
<trans-unit id="totp.config">
<source>TOTP Config</source>
</trans-unit>
<trans-unit id="totp.config.clipboard.description">
<source>Paste this URL into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="totp.secret">
<source>TOTP Secret</source>
</trans-unit>
<trans-unit id="totp.secret.clipboard.description">
<source>Paste this secret into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="s92e22f9319fdb85d">
<source>Configuration warning</source>
</trans-unit>
<trans-unit id="saa088a2d0f90d5a9">
<source>Posting logout response to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s776d93092ad9ce90">
<source>Review initiated</source>
</trans-unit>
<trans-unit id="sad46bcad1a343b51">
<source>Review overdue</source>
</trans-unit>
<trans-unit id="s59d168d966cecbaf">
<source>Review attested</source>
</trans-unit>
<trans-unit id="s5158b7f014cecefc">
<source>Review completed</source>
</trans-unit>
<trans-unit id="sdd2ea73c24b40d5d">
<source>Site footer</source>
</trans-unit>
<trans-unit id="sf910cca0f06bbc31">
<source>Enter the email address or username associated with your account.</source>
</trans-unit>
<trans-unit id="s6e858c4c4c3b6b76">
<source>You're about to be redirected to the following URL.</source>
</trans-unit>
<trans-unit id="sd5d2b94a1ccba1a9">
<source>Log in to continue to <x id="0" equiv-text="${prelude}"/>.</source>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,892 @@
<?xml version="1.0"?><xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file target-language="de-DE" source-language="en" original="lit-localize-inputs" datatype="plaintext">
<body>
<!-- #region Locales -->
<trans-unit id="en">
<source>English</source>
<target>Englisch</target>
</trans-unit>
<trans-unit id="ja-JP">
<source>Japanese</source>
<target>Japanisch</target>
</trans-unit>
<trans-unit id="ko-KR">
<source>Korean</source>
<target>Koreanisch</target>
</trans-unit>
<trans-unit id="zh-Hans">
<source>Chinese (Simplified)</source>
<target>Chinesisch</target>
</trans-unit>
<trans-unit id="zh-Hant">
<source>Chinese (Traditional)</source>
<target>Chinesisch</target>
</trans-unit>
<!-- #endregion -->
<!-- #region Locale selector -->
<trans-unit id="locale-auto-detect-option">
<source>Auto-detect</source>
<target>Automatische Erkennung</target>
<note from="lit-localize">Label for the auto-detect locale option in language selection dropdown</note>
</trans-unit>
<trans-unit id="language-selector-label">
<source>Select language</source>
<target>Sprache auswählen</target>
<note from="lit-localize">Label for the language selection dropdown</note>
</trans-unit>
<trans-unit id="locale-option-localized-label">
<source><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</source>
<note from="lit-localize">Locale option label showing the localized language name along with the native language name in parentheses.</note>
</trans-unit>
<!-- #endregion -->
<trans-unit id="s12d6dde9b30c3093">
<source>Dismiss</source>
<target>Verwerfen</target>
</trans-unit>
<trans-unit id="sfe629863ba1338c2">
<source>Connection error, reconnecting...</source>
<target>Verbindungsfehler, erneuter Verbindungsaufbau...</target>
</trans-unit>
<trans-unit id="sdaecc3c29a27c5c5">
<source>An unknown error occurred</source>
<target>Ein unbekannter Fehler ist aufgetreten</target>
</trans-unit>
<trans-unit id="se84ba7f105934495">
<source>Please check the browser console for more details.</source>
<target>Bitte prüfe die Browser-Konsole für weitere Details.</target>
</trans-unit>
<trans-unit id="sdea479482318489d">
<source>Status messages</source>
<target>Statusmeldungen</target>
</trans-unit>
<trans-unit id="s91ae4b6bf981682b">
<source>authentik Logo</source>
<target>authentik Logo</target>
</trans-unit>
<trans-unit id="s49730f3d5751a433">
<source>Loading...</source>
<target>Laden...</target>
</trans-unit>
<trans-unit id="sa50a6326530d8a0d">
<source>Show less</source>
<target>Zeige weniger</target>
</trans-unit>
<trans-unit id="sb2c57b2d347203dd">
<source>Show more</source>
<target>Zeige mehr</target>
</trans-unit>
<trans-unit id="sa48f81f001b893d2">
<source>User</source>
<target>Benutzer</target>
</trans-unit>
<trans-unit id="sb59d68ed12d46377">
<source>Loading</source>
<target>Wird geladen</target>
</trans-unit>
<trans-unit id="s0382d73823585617">
<source><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></source>
<target>
<x id="0" equiv-text="${this.errorMessage}"/>:
<x id="1" equiv-text="${e.toString()}"/></target>
</trans-unit>
<trans-unit id="sae5d87e99fe081e0">
<source>Required</source>
<target>Erforderlich</target>
</trans-unit>
<trans-unit id="s1cd198d689c66e4b">
<source>API Access</source>
<target>API Zugriff</target>
</trans-unit>
<trans-unit id="sf29883ac9ec43085">
<source>App password</source>
<target>App Passwort</target>
</trans-unit>
<trans-unit id="s6ac670086eb137c6">
<source>Recovery</source>
<target>Wiederherstellung</target>
</trans-unit>
<trans-unit id="sfe211545fd02f73e">
<source>Verification</source>
<target>Überprüfung</target>
</trans-unit>
<trans-unit id="sd73b202ec04eefd9">
<source>Unknown intent</source>
<target>Unbekannte Absicht</target>
</trans-unit>
<trans-unit id="sc8da3cc71de63832">
<source>Login</source>
<target>Anmeldung</target>
</trans-unit>
<trans-unit id="sb4564c127ab8b921">
<source>Failed login</source>
<target>Fehlgeschlagene Anmeldung</target>
</trans-unit>
<trans-unit id="s67749057edb2586b">
<source>Logout</source>
<target>Abmelden</target>
</trans-unit>
<trans-unit id="s7e537ad68d7c16e1">
<source>User was written to</source>
<target>Benutzer wurde geschrieben nach</target>
</trans-unit>
<trans-unit id="sa0e0bdd7e244416b">
<source>Suspicious request</source>
<target>Verdächtige Anfrage</target>
</trans-unit>
<trans-unit id="s7bda44013984fc48">
<source>Password set</source>
<target>Passwort festgelegt</target>
</trans-unit>
<trans-unit id="sa1b41e334ad89d94">
<source>Secret was viewed</source>
<target>Geheimnis wurde angesehen</target>
</trans-unit>
<trans-unit id="s92ca679592a36b35">
<source>Secret was rotated</source>
<target>Geheimnis wurde rotiert</target>
</trans-unit>
<trans-unit id="s8a1d9403ca90989b">
<source>Invitation used</source>
<target>Einladung verwendet</target>
</trans-unit>
<trans-unit id="s5f496533610103f2">
<source>Application authorized</source>
<target>Anwendung authorisiert</target>
</trans-unit>
<trans-unit id="sdc9e222be9612939">
<source>Source linked</source>
<target>Quelle verknüpft</target>
</trans-unit>
<trans-unit id="sb1c91762ae3a9bee">
<source>Impersonation started</source>
<target>Identitätswechsel gestarted</target>
</trans-unit>
<trans-unit id="s9c73bd29b279d26b">
<source>Impersonation ended</source>
<target>Identitätswechsel beenden</target>
</trans-unit>
<trans-unit id="s1cd264012278c047">
<source>Flow execution</source>
<target>Flow-Ausführung</target>
</trans-unit>
<trans-unit id="s32f04d33924ce8ad">
<source>Policy execution</source>
<target>Richtlinien-Ausführung</target>
</trans-unit>
<trans-unit id="sb6d7128df5978cee">
<source>Policy exception</source>
<target>Richtlinien-Ausnahme</target>
</trans-unit>
<trans-unit id="s77f572257f69a8db">
<source>Property Mapping exception</source>
<target>Ausnahme der Eigenschaftszuordnung</target>
</trans-unit>
<trans-unit id="s2543cffd6ebb6803">
<source>System task execution</source>
<target>Ausführung von Systemtasks</target>
</trans-unit>
<trans-unit id="se2f258b996f7279c">
<source>System task exception</source>
<target>Systemtask-Ausnahme</target>
</trans-unit>
<trans-unit id="s81eff3409d572a21">
<source>General system exception</source>
<target>Allgemeine Systemausnahme</target>
</trans-unit>
<trans-unit id="sf8f49cdbf0036343">
<source>Configuration error</source>
<target>Fehler bei der Konfiguration</target>
</trans-unit>
<trans-unit id="s9c6f61dc47bc4f0a">
<source>Model created</source>
<target>Modell erstellt</target>
</trans-unit>
<trans-unit id="s47a4983a2c6bb749">
<source>Model updated</source>
<target>Modell aktualisiert</target>
</trans-unit>
<trans-unit id="sc9f69360b58706c7">
<source>Model deleted</source>
<target>Modell gelöscht</target>
</trans-unit>
<trans-unit id="sa266303caf1bd27f">
<source>Email sent</source>
<target>E-Mail gesendet</target>
</trans-unit>
<trans-unit id="s6c410fedda2a575f">
<source>Update available</source>
<target>Update verfügbar</target>
</trans-unit>
<trans-unit id="sf1ec4acb8d744ed9">
<source>Alert</source>
<target>Alarm</target>
</trans-unit>
<trans-unit id="s9117fb5195e75151">
<source>Notice</source>
<target>Hinweis</target>
</trans-unit>
<trans-unit id="s34be76c6b1eadbef">
<source>Warning</source>
<target>Warnung</target>
</trans-unit>
<trans-unit id="s02240309358f557c">
<source>Unknown severity</source>
<target>Unbekannter Schweregrad</target>
</trans-unit>
<trans-unit id="s858e7ac4b3cf955f">
<source>Static tokens</source>
<target>Statische Token</target>
</trans-unit>
<trans-unit id="sfcfcf85a57eea78a">
<source>TOTP Device</source>
<target>TOTP-Gerät</target>
</trans-unit>
<trans-unit id="s482bc55a78891ef7">
<source>A code has been sent to your address: <x id="0" equiv-text="${email}"/></source>
</trans-unit>
<trans-unit id="s5afa3fc77ce8d94d">
<source>A code has been sent to your email address.</source>
</trans-unit>
<trans-unit id="s37f47fa981493c3b">
<source>A one-time use code has been sent to you via SMS text message.</source>
</trans-unit>
<trans-unit id="sc92a7248dba5f388">
<source>Open your authenticator app to retrieve a one-time use code.</source>
</trans-unit>
<trans-unit id="s21d95b4651ad7a1e">
<source>Enter a one-time recovery code for this user.</source>
<target>Gib einen einmaligen Wiederherstellungscode für diesen Benutzer ein.</target>
</trans-unit>
<trans-unit id="s2e1d5a7d320c25ef">
<source>Enter the code from your authenticator device.</source>
<target>Gib den Code von deinem Authentifikatorgerät ein.</target>
</trans-unit>
<trans-unit id="se2d65e13768468e0">
<source>Internal</source>
<target>Intern</target>
</trans-unit>
<trans-unit id="s84fcddede27b8e2a">
<source>External</source>
<target>Extern</target>
</trans-unit>
<trans-unit id="s1a635369edaf4dc3">
<source>Service account</source>
<target>Dienstkonto</target>
</trans-unit>
<trans-unit id="sff930bf2834e2201">
<source>Service account (internal)</source>
<target>Dienstkonto (intern)</target>
</trans-unit>
<trans-unit id="scb489a1a173ac3f0">
<source>Yes</source>
<target>Ja</target>
</trans-unit>
<trans-unit id="s09205907b5b56cda">
<source>No</source>
<target>Nein</target>
</trans-unit>
<trans-unit id="s7f073c746d0f6324">
<source>Form actions</source>
</trans-unit>
<trans-unit id="s98b1cb8fb62909ec">
<source>Group</source>
<target>Gruppe</target>
</trans-unit>
<trans-unit id="s2e422519ed38f7d8">
<source>Pass</source>
<target>Bestanden</target>
</trans-unit>
<trans-unit id="sac315d5bd28d4efa">
<source>Don't Pass</source>
<target>Nicht bestehen</target>
</trans-unit>
<trans-unit id="s042baf59902a711f">
<source>Policy</source>
<target>Richtlinie</target>
</trans-unit>
<trans-unit id="sd8f220c999726151">
<source>Redirect</source>
<target>Umleiten</target>
</trans-unit>
<trans-unit id="s03f42eea72154959">
<source>Username</source>
<target>Anmeldename</target>
</trans-unit>
<trans-unit id="s5f5bf4ef2bd93c04">
<source>Group mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Gruppenzuordnungen können nur überprüft werden, wenn der Benutzer beim Zugriff auf diese Quelle bereits angemeldet ist.</target>
</trans-unit>
<trans-unit id="s6c607d74bdfe9f36">
<source>User mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Benutzerzuordnungen können nur überprüft werden, wenn der Benutzer beim Zugriff auf diese Quelle bereits angemeldet ist.</target>
</trans-unit>
<trans-unit id="sf6e1665c7022a1f8">
<source>Password</source>
<target>Passwort</target>
</trans-unit>
<trans-unit id="sd1f44f1a8bc20e67">
<source>Email</source>
<target>E-Mail</target>
</trans-unit>
<trans-unit id="s8939f574b096054a">
<source>Not you?</source>
<target>Nicht Sie?</target>
</trans-unit>
<trans-unit id="s296fbffaaa7c910a">
<source>Required.</source>
<target>Erforderlich</target>
</trans-unit>
<trans-unit id="s81ecf2d4386b8e84">
<source>Continue</source>
<target>Weiter</target>
</trans-unit>
<trans-unit id="s61e48919db20538a">
<source>UPN</source>
<target>UPN</target>
</trans-unit>
<trans-unit id="s67ac11d47f1ce794">
<source>WebAuthn requires this page to be accessed via HTTPS.</source>
<target>WebAuthn verlangt, dass der Zugriff auf diese Seite über HTTPS erfolgt.</target>
</trans-unit>
<trans-unit id="se9e9e1d6799b86a5">
<source>WebAuthn not supported by browser.</source>
<target>WebAuthn wird vom Browser nicht unterstützt.</target>
</trans-unit>
<trans-unit id="sa4be93eb7f4e51e3">
<source>Site links</source>
</trans-unit>
<trans-unit id="s6fe64b4625517333">
<source>Powered by authentik</source>
<target>Erstellt durch Authentik</target>
</trans-unit>
<trans-unit id="sd766cdc29b25ff95">
<source>Authenticating with Apple...</source>
<target>Authentifizierung mit Apple...</target>
</trans-unit>
<trans-unit id="s2c8189544e3ea679">
<source>Retry</source>
<target>Erneut versuchen</target>
</trans-unit>
<trans-unit id="s420d2cdedcaf8cd0">
<source>Authenticating with Plex...</source>
<target>Authentifizierung mit Plex...</target>
</trans-unit>
<trans-unit id="s2ddbebcb8a49b005">
<source>Waiting for authentication...</source>
<target>Warten auf Authentifizierung...</target>
</trans-unit>
<trans-unit id="sb15fe7b9d09bb419">
<source>If no Plex popup opens, click the button below.</source>
<target>Wenn sich kein Plex-Popup öffnet, klicken Sie auf die Schaltfläche unten.</target>
</trans-unit>
<trans-unit id="sbc625b4c669b9ce8">
<source>Open login</source>
<target>Anmeldung öffnen</target>
</trans-unit>
<trans-unit id="sf376ae7e9ef41c1a">
<source>Authenticating with Telegram...</source>
</trans-unit>
<trans-unit id="s76ea993fdc8503d8">
<source>Click the button below to start.</source>
</trans-unit>
<trans-unit id="s15d6fabebb4ef2d8">
<source>User information</source>
</trans-unit>
<trans-unit id="s9bd9ba84819493d4">
<source>Something went wrong! Please try again later.</source>
<target>Etwas ist schiefgelaufen. Bitte probiere es später wieder</target>
</trans-unit>
<trans-unit id="s4090dd0c0e45988b">
<source>Request ID</source>
<target>Anfrage-ID</target>
</trans-unit>
<trans-unit id="s4d7fe7be1c49896c">
<source>You may close this page now.</source>
<target>Sie können diese Seite jetzt schließen.</target>
</trans-unit>
<trans-unit id="s197420b40df164f8">
<source>Follow redirect</source>
<target>Weiterleitung folgen</target>
</trans-unit>
<trans-unit id="s3ab772345f78aee0">
<source>Flow inspector</source>
<target>Flow-Inspektor</target>
</trans-unit>
<trans-unit id="sb69e43f2f6bd1b54">
<source>Close flow inspector</source>
</trans-unit>
<trans-unit id="s502884e1977b2c06">
<source>Next stage</source>
<target>Nächste Stage</target>
</trans-unit>
<trans-unit id="sb3fa80ccfa97ee54">
<source>Stage name</source>
<target>Stage Name</target>
</trans-unit>
<trans-unit id="sbea3c1e4f2fd623d">
<source>Stage kind</source>
<target>Art der Stage</target>
</trans-unit>
<trans-unit id="s2bc8aa1740d3da34">
<source>Stage object</source>
<target>Stage Objekt</target>
</trans-unit>
<trans-unit id="sc3e1c4f1fff8e1ca">
<source>This flow is completed.</source>
<target>Dieser Flow ist abgeschlossen.</target>
</trans-unit>
<trans-unit id="s342eccabf83c9bde">
<source>Plan history</source>
<target>Historie</target>
</trans-unit>
<trans-unit id="sb2f307e79d20bb56">
<source>Current plan context</source>
<target>Aktueller Plankontext</target>
</trans-unit>
<trans-unit id="sa13e6c8310000e30">
<source>Session ID</source>
<target>Sitzungs-ID</target>
</trans-unit>
<trans-unit id="s857cf5aa8955cf5c">
<source>Flow inspector loading</source>
</trans-unit>
<trans-unit id="sa11e92683c5860c7">
<source>Request has been denied.</source>
<target>Anfrage wurde verweigert</target>
</trans-unit>
<trans-unit id="s2f7f35f6a5b733f5">
<source>Show password</source>
<target>Passwort anzeigen</target>
</trans-unit>
<trans-unit id="s452f791e0ff6a13e">
<source>Hide password</source>
<target>Passwort ausblenden</target>
</trans-unit>
<trans-unit id="scf5ce91bfba10a61">
<source>Please enter your password</source>
<target>Bitte geben Sie Ihr Passwort ein</target>
</trans-unit>
<trans-unit id="s6bb30c61df4cf486">
<source>Caps Lock is enabled.</source>
<target>Feststelltaste ist aktiviert.</target>
</trans-unit>
<trans-unit id="s8d6236ad153d42c0">
<source>CAPTCHA challenge</source>
</trans-unit>
<trans-unit id="s30d6ff9e15e0a40a">
<source>Verifying...</source>
<target>Überprüfe…</target>
</trans-unit>
<trans-unit id="s1c336c2d6cef77b3">
<source>Remember me on this device</source>
<target>Angemeldet bleiben auf diesem Gerät</target>
</trans-unit>
<trans-unit id="seb6ab868740e4e36">
<source>Continue with <x id="0" equiv-text="${name}"/></source>
</trans-unit>
<trans-unit id="sc4eedb434536bdb4">
<source>Need an account?</source>
<target>Noch kein Konto?</target>
</trans-unit>
<trans-unit id="s38f774cd7e9b9dad">
<source>Sign up.</source>
<target>Registrieren.</target>
</trans-unit>
<trans-unit id="sa03aa46068460c95">
<source>Forgot username or password?</source>
<target>Benutzername oder Passwort vergessen?</target>
</trans-unit>
<trans-unit id="s05a941e4b4bfca9f">
<source>Additional actions</source>
</trans-unit>
<trans-unit id="s6ecfc18dbfeedd76">
<source>Select one of the options below to continue.</source>
<target>Wählen Sie eine der folgenden Optionen aus, um fortzufahren.</target>
</trans-unit>
<trans-unit id="s091d5407b5b32e84">
<source>Or</source>
<target>Oder</target>
</trans-unit>
<trans-unit id="se5fd752dbbc3cd28">
<source>Use a security key</source>
<target>Einen Sicherheitsschlüssel verwenden</target>
</trans-unit>
<trans-unit id="s53dddf1733e26c98">
<source>Login sources</source>
</trans-unit>
<trans-unit id="s85366fac18679f28">
<source>Forgot password?</source>
<target>Passwort vergessen?</target>
</trans-unit>
<trans-unit id="s14c552fb0a4c0186">
<source>Application requires following permissions:</source>
<target>Anwendung benötigt die folgenden Berechtigungen:</target>
</trans-unit>
<trans-unit id="s7073489bb01b3c24">
<source>Application already has access to the following permissions:</source>
<target>Die Anwendung hat bereits Zugriff auf die folgenden Berechtigungen:</target>
</trans-unit>
<trans-unit id="s98dc556f8bf707dc">
<source>Application requires following new permissions:</source>
<target>Die Anwendung erfordert folgende neue Berechtigungen:</target>
</trans-unit>
<trans-unit id="s06bfe45ffef2cf60">
<source>Stage name: <x id="0" equiv-text="${this.challenge?.name}"/></source>
<target>Stage Name: <x id="0" equiv-text="${this.challenge.name}"/></target>
</trans-unit>
<trans-unit id="sbd19064fc3f405c1">
<source>Check your Inbox for a verification email.</source>
<target>Prüfen Sie Ihren Posteingang auf eine Bestätigungsmail.</target>
</trans-unit>
<trans-unit id="s8aff572e64b7936b">
<source>Send Email again.</source>
<target>E-Mail erneut senden.</target>
</trans-unit>
<trans-unit id="sc091f75b942ec081">
<source>QR-Code to setup a time-based one-time password</source>
</trans-unit>
<trans-unit id="s6db67c7681b8be6e">
<source>Copy time-based one-time password configuration</source>
</trans-unit>
<trans-unit id="s43e859bf711e3599">
<source>Copy TOTP Config</source>
</trans-unit>
<trans-unit id="s90064dd5c4dde2c6">
<source>Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.</source>
<target>Bitte scannen Sie den QR-Code oberhalb mit Microsoft Authenticator, Google Authenticator oder anderen Authenticator-Apps auf Ihrem Gerät ab und geben Sie den angezeigten Code unterhalb ein, um die Einrichtung des MFA-Geräts abzuschließen.</target>
</trans-unit>
<trans-unit id="sa5562e0115ffbccd">
<source>Time-based one-time password</source>
</trans-unit>
<trans-unit id="s40f44c0d88807fd5">
<source>TOTP Code</source>
</trans-unit>
<trans-unit id="s95474cc8c73dd9c0">
<source>Type your TOTP code...</source>
</trans-unit>
<trans-unit id="s168d0c138b63286d">
<source>Type your time-based one-time password code.</source>
</trans-unit>
<trans-unit id="sc2ec367e3108fe65">
<source>Duo activation QR code</source>
<target>QR-Code für die Duo-Aktivierung</target>
</trans-unit>
<trans-unit id="sc5668cb23167e9bb">
<source>Alternatively, if your current device has Duo installed, click on this link:</source>
<target>Alternativ kannst Du auch auf diesen Link klicken, wenn Du Duo auf Deinem Gerät installiert hast:</target>
</trans-unit>
<trans-unit id="s721d94ae700b5dfd">
<source>Duo activation</source>
<target>Duo-Aktivierung</target>
</trans-unit>
<trans-unit id="s708d9a4a0db0be8f">
<source>Check status</source>
<target>Status überprüfen</target>
</trans-unit>
<trans-unit id="s31fba571065f2c87">
<source>Make sure to keep these tokens in a safe place.</source>
<target>Bewahren Sie diese Tokens an einem sicheren Ort auf.</target>
</trans-unit>
<trans-unit id="s3f8a07912545e72e">
<source>Configure your email</source>
<target>Konfiguriere deine E-Mail</target>
</trans-unit>
<trans-unit id="scedf77e8b75cad5a">
<source>Please enter your email address.</source>
<target>Bitte gib deine E-Mail-Adresse ein.</target>
</trans-unit>
<trans-unit id="s3643189d1abbb7f4">
<source>Code</source>
<target>Code</target>
</trans-unit>
<trans-unit id="s7cdd62c100b6b17b">
<source>Please enter the code you received via email</source>
<target>Bitte gib den Code ein, den du per E-Mail erhalten hast.</target>
</trans-unit>
<trans-unit id="sc0a0c87d5c556c38">
<source>Phone number</source>
<target>Telefonnummer</target>
</trans-unit>
<trans-unit id="s04c1210202f48dc9">
<source>Please enter your Phone number.</source>
<target>Bitte geben Sie Ihre Telefonnummer ein.</target>
</trans-unit>
<trans-unit id="seb0c08d9f233bbfe">
<source>Please enter the code you received via SMS</source>
<target>Bitte geben Sie den Code ein, den Sie per SMS erhalten haben</target>
</trans-unit>
<trans-unit id="s98bb2ae796f1ceef">
<source>Select another authentication method</source>
<target>Andere Authentifizierungsmethode auswählen</target>
</trans-unit>
<trans-unit id="s844fea0bfb10a72a">
<source>Authentication code</source>
<target>Authentifizierungscode</target>
</trans-unit>
<trans-unit id="s7abc9d08b0f70fd6">
<source>Static token</source>
<target>Statische Token</target>
</trans-unit>
<trans-unit id="s14e8ac4d377a1a99">
<source>Type an authentication code...</source>
</trans-unit>
<trans-unit id="s39002897db60bb28">
<source>Sending Duo push notification...</source>
<target>Sende Duo-Push-Benachrichtigung …</target>
</trans-unit>
<trans-unit id="sd2b8c1caa0340ed6">
<source>Failed to authenticate</source>
<target>Authentifizierung fehlgeschlagen</target>
</trans-unit>
<trans-unit id="s363abde8a254ea5f">
<source>Authentication failed. Please try again.</source>
<target>Authentifizierung fehlgeschlagen. Bitte versuchen Sie es erneut.</target>
</trans-unit>
<trans-unit id="sffef1a8596bc58bb">
<source>Authenticating...</source>
<target>Authentifiziere…</target>
</trans-unit>
<trans-unit id="se409d01b52c4e12f">
<source>Retry authentication</source>
<target>Authentifizierung erneut versuchen</target>
</trans-unit>
<trans-unit id="s8d857061510fe794">
<source>Duo push-notifications</source>
<target>Duo Push-Benachrichtigungen</target>
</trans-unit>
<trans-unit id="s47490298c17b753a">
<source>Receive a push notification on your device.</source>
<target>Erhalten Sie eine Push-Benachrichtigung auf Ihrem Gerät.</target>
</trans-unit>
<trans-unit id="sd6a025d66f2637d1">
<source>Traditional authenticator</source>
<target>Traditioneller Authentifikator</target>
</trans-unit>
<trans-unit id="sb25e689e00c61829">
<source>Use a code-based authenticator.</source>
<target>Verwenden Sie einen Code-basierten Authentifikator</target>
</trans-unit>
<trans-unit id="s9e568afec3810bfe">
<source>Recovery keys</source>
<target>Wiederherstellungsschlüssel</target>
</trans-unit>
<trans-unit id="s8bb0a1b672b52954">
<source>In case you lose access to your primary authenticators.</source>
</trans-unit>
<trans-unit id="s97f2dc19fa556a6a">
<source>SMS</source>
<target>SMS</target>
</trans-unit>
<trans-unit id="s0e516232f2ab4e04">
<source>Tokens sent via SMS.</source>
<target>Per SMS versendete Token.</target>
</trans-unit>
<trans-unit id="s833cfe815918c143">
<source>Tokens sent via email.</source>
<target>Tokens per E-Mail gesendet.</target>
</trans-unit>
<trans-unit id="s76d21e163887ddd1">
<source>Unknown device</source>
</trans-unit>
<trans-unit id="sf0ceaf3116e31fd4">
<source>An unknown device class was provided.</source>
</trans-unit>
<trans-unit id="s610fced3957d0471">
<source>Select an authentication method</source>
</trans-unit>
<trans-unit id="s958cedec1cb3fc52">
<source>Select a configuration stage</source>
</trans-unit>
<trans-unit id="sac17f177f884e238">
<source>Stay signed in?</source>
<target>Eingeloggt bleiben?</target>
</trans-unit>
<trans-unit id="s859b2e00391da380">
<source>Select Yes to reduce the number of times you're asked to sign in.</source>
<target>Wähle 'Ja' um die Anzahl der Anmeldeaufforderungen zu reduzieren.</target>
</trans-unit>
<trans-unit id="s23da7320dee28a60">
<source>Device Code</source>
<target>Geräte Code</target>
</trans-unit>
<trans-unit id="s3cd84e82e83e35ad">
<source>Please enter your code</source>
<target>Bitte geben Sie Ihren Code ein</target>
</trans-unit>
<trans-unit id="s455a8fc21077e7f9">
<source>You've successfully authenticated your device.</source>
<target>Sie haben Ihr Gerät erfolgreich authentifiziert.</target>
</trans-unit>
<trans-unit id="sac88482c48453fc8">
<source>You've logged out of <x id="0" equiv-text="${challenge.applicationName}"/>. You can go back to the overview to launch another application, or log out of your authentik account.</source>
<target>Sie sind von <x id="0" equiv-text="${this.challenge.applicationName}"/> abgemeldet. Sie können zurück zu Übersicht gehen, um eine andere Anwendung zu starten, oder sich ausloggen.</target>
</trans-unit>
<trans-unit id="s3108167b562674e2">
<source>Go back to overview</source>
<target>Zurück zur Übersicht</target>
</trans-unit>
<trans-unit id="sdb749e793de55478">
<source>Log out of <x id="0" equiv-text="${challenge.brandName}"/></source>
<target>Abmelden von <x id="0" equiv-text="${this.challenge.brandName}"/></target>
</trans-unit>
<trans-unit id="s521681ed1d5ff814">
<source>Log back into <x id="0" equiv-text="${challenge.applicationName}"/></source>
<target>Erneut anmelden bei <x id="0" equiv-text="${this.challenge.applicationName}"/></target>
</trans-unit>
<trans-unit id="s78869b8b2bc26d0d">
<source>SAML Provider</source>
</trans-unit>
<trans-unit id="sca83a1f9227f74b9">
<source>SAML logout complete</source>
</trans-unit>
<trans-unit id="s7b90eab7969ae056">
<source>Redirecting to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s3e6174b645d96835">
<source>Posting logout request to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s0b1ffff8bedd6b8a">
<source>Unknown Provider</source>
</trans-unit>
<trans-unit id="s777e86d562523c85">
<source>Logging out of providers...</source>
</trans-unit>
<trans-unit id="s4980379bf8461c2d">
<source>Single Logout</source>
</trans-unit>
<trans-unit id="s3736936aac1adc2e">
<source>Open flow inspector</source>
</trans-unit>
<trans-unit id="sa17ce23517e56461">
<source>Authentication form</source>
</trans-unit>
<trans-unit id="s7fa4e5e409d43573">
<source>Error creating credential: <x id="0" equiv-text="${err}"/></source>
<target>Fehler beim Erstellen der Anmeldeinformationen:
<x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="s9d95f09deb601f34">
<source>Server validation of credential failed: <x id="0" equiv-text="${err}"/></source>
<target>Servervalidierung der Anmeldedaten fehlgeschlagen:
<x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="sb0821a9e92cac5eb">
<source>Failed to register. Please try again.</source>
<target>Registrierung fehlgeschlagen. Bitte versuchen Sie es erneut.</target>
</trans-unit>
<trans-unit id="s238784fc1dc672ae">
<source>Registering...</source>
<target>Registriere…</target>
</trans-unit>
<trans-unit id="s009bd1c98a9f5de2">
<source>Failed to register</source>
<target>Registrierung fehlgeschlagen</target>
</trans-unit>
<trans-unit id="sb166ce92e8e807d6">
<source>Retry registration</source>
<target>Registrierung erneut versuchen</target>
</trans-unit>
<trans-unit id="s95094b57684716a5">
<source>Failed to validate device.</source>
</trans-unit>
<trans-unit id="se99d25eb70c767ef">
<source>Verifying your device...</source>
</trans-unit>
<trans-unit id="s1af2337b6d11d4c6">
<source>Data export ready</source>
</trans-unit>
<trans-unit id="en-XA">
<source>English (Pseudo-Accents)</source>
</trans-unit>
<trans-unit id="avatar.alt-text-for-user">
<source>Avatar for <x id="0" equiv-text="${this.username}"/></source>
</trans-unit>
<trans-unit id="avatar.alt-text">
<source>User avatar</source>
</trans-unit>
<trans-unit id="flow.navigation.go-back">
<source>Go back</source>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent-to-address">
<source>A verification token has been sent to your configured email address: <x id="0" equiv-text="${email}"/></source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's configured email address.</note>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent">
<source>A verification token has been sent to your email address.</source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's email address.</note>
</trans-unit>
<trans-unit id="scd909e0bc55fc548">
<source>Security key</source>
</trans-unit>
<trans-unit id="sd0de938d9c37ad5f">
<source>Use a Passkey or security key to prove your identity.</source>
</trans-unit>
<trans-unit id="sb94beab52540d2b7">
<source>The CAPTCHA challenge failed to load.</source>
</trans-unit>
<trans-unit id="s217a96c47caaf73d">
<source>Could not find a suitable CAPTCHA provider.</source>
</trans-unit>
<trans-unit id="sdf2794b96386c868">
<source>Copy time-based one-time password secret</source>
</trans-unit>
<trans-unit id="sc78d16417878afd0">
<source>Copy Secret</source>
</trans-unit>
<trans-unit id="clipboard.write.success.message.entity">
<source><x id="0" equiv-text="${entityLabel}"/> copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.success.generic">
<source>Copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.failure.description">
<source>Clipboard not available. Please copy the value manually.</source>
</trans-unit>
<trans-unit id="totp.config">
<source>TOTP Config</source>
</trans-unit>
<trans-unit id="totp.config.clipboard.description">
<source>Paste this URL into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="totp.secret">
<source>TOTP Secret</source>
</trans-unit>
<trans-unit id="totp.secret.clipboard.description">
<source>Paste this secret into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="s92e22f9319fdb85d">
<source>Configuration warning</source>
</trans-unit>
<trans-unit id="saa088a2d0f90d5a9">
<source>Posting logout response to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s776d93092ad9ce90">
<source>Review initiated</source>
</trans-unit>
<trans-unit id="sad46bcad1a343b51">
<source>Review overdue</source>
</trans-unit>
<trans-unit id="s59d168d966cecbaf">
<source>Review attested</source>
</trans-unit>
<trans-unit id="s5158b7f014cecefc">
<source>Review completed</source>
</trans-unit>
<trans-unit id="sdd2ea73c24b40d5d">
<source>Site footer</source>
</trans-unit>
<trans-unit id="sf910cca0f06bbc31">
<source>Enter the email address or username associated with your account.</source>
</trans-unit>
<trans-unit id="s6e858c4c4c3b6b76">
<source>You're about to be redirected to the following URL.</source>
</trans-unit>
<trans-unit id="sd5d2b94a1ccba1a9">
<source>Log in to continue to <x id="0" equiv-text="${prelude}"/>.</source>
</trans-unit>
</body>
</file>
</xliff>

723
web/src/flow/xliff/en.xlf Normal file
View File

@@ -0,0 +1,723 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file target-language="en" source-language="en" original="lit-localize-inputs" datatype="plaintext">
<body>
<!-- #region Locales -->
<trans-unit id="en">
<source>English</source>
</trans-unit>
<trans-unit id="ja-JP">
<source>Japanese</source>
</trans-unit>
<trans-unit id="ko-KR">
<source>Korean</source>
</trans-unit>
<trans-unit id="zh-Hans">
<source>Chinese (Simplified)</source>
</trans-unit>
<trans-unit id="zh-Hant">
<source>Chinese (Traditional)</source>
</trans-unit>
<!-- #endregion -->
<!-- #region Locale selector -->
<trans-unit id="locale-auto-detect-option">
<source>Auto-detect</source>
<note from="lit-localize">Label for the auto-detect locale option in language selection dropdown</note>
</trans-unit>
<trans-unit id="language-selector-label">
<source>Select language</source>
<note from="lit-localize">Label for the language selection dropdown</note>
</trans-unit>
<trans-unit id="locale-option-localized-label">
<source><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</source>
<note from="lit-localize">Locale option label showing the localized language name along with the native language name in parentheses.</note>
</trans-unit>
<!-- #endregion -->
<trans-unit id="s12d6dde9b30c3093">
<source>Dismiss</source>
</trans-unit>
<trans-unit id="sfe629863ba1338c2">
<source>Connection error, reconnecting...</source>
</trans-unit>
<trans-unit id="sdaecc3c29a27c5c5">
<source>An unknown error occurred</source>
</trans-unit>
<trans-unit id="se84ba7f105934495">
<source>Please check the browser console for more details.</source>
</trans-unit>
<trans-unit id="sdea479482318489d">
<source>Status messages</source>
</trans-unit>
<trans-unit id="s91ae4b6bf981682b">
<source>authentik Logo</source>
</trans-unit>
<trans-unit id="s49730f3d5751a433">
<source>Loading...</source>
</trans-unit>
<trans-unit id="sa50a6326530d8a0d">
<source>Show less</source>
</trans-unit>
<trans-unit id="sb2c57b2d347203dd">
<source>Show more</source>
</trans-unit>
<trans-unit id="sa48f81f001b893d2">
<source>User</source>
</trans-unit>
<trans-unit id="sb59d68ed12d46377">
<source>Loading</source>
</trans-unit>
<trans-unit id="s0382d73823585617">
<source><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></source>
</trans-unit>
<trans-unit id="sae5d87e99fe081e0">
<source>Required</source>
</trans-unit>
<trans-unit id="s1cd198d689c66e4b">
<source>API Access</source>
</trans-unit>
<trans-unit id="sf29883ac9ec43085">
<source>App password</source>
</trans-unit>
<trans-unit id="s6ac670086eb137c6">
<source>Recovery</source>
</trans-unit>
<trans-unit id="sfe211545fd02f73e">
<source>Verification</source>
</trans-unit>
<trans-unit id="sd73b202ec04eefd9">
<source>Unknown intent</source>
</trans-unit>
<trans-unit id="sc8da3cc71de63832">
<source>Login</source>
</trans-unit>
<trans-unit id="sb4564c127ab8b921">
<source>Failed login</source>
</trans-unit>
<trans-unit id="s67749057edb2586b">
<source>Logout</source>
</trans-unit>
<trans-unit id="s7e537ad68d7c16e1">
<source>User was written to</source>
</trans-unit>
<trans-unit id="sa0e0bdd7e244416b">
<source>Suspicious request</source>
</trans-unit>
<trans-unit id="s7bda44013984fc48">
<source>Password set</source>
</trans-unit>
<trans-unit id="sa1b41e334ad89d94">
<source>Secret was viewed</source>
</trans-unit>
<trans-unit id="s92ca679592a36b35">
<source>Secret was rotated</source>
</trans-unit>
<trans-unit id="s8a1d9403ca90989b">
<source>Invitation used</source>
</trans-unit>
<trans-unit id="s5f496533610103f2">
<source>Application authorized</source>
</trans-unit>
<trans-unit id="sdc9e222be9612939">
<source>Source linked</source>
</trans-unit>
<trans-unit id="sb1c91762ae3a9bee">
<source>Impersonation started</source>
</trans-unit>
<trans-unit id="s9c73bd29b279d26b">
<source>Impersonation ended</source>
</trans-unit>
<trans-unit id="s1cd264012278c047">
<source>Flow execution</source>
</trans-unit>
<trans-unit id="s32f04d33924ce8ad">
<source>Policy execution</source>
</trans-unit>
<trans-unit id="sb6d7128df5978cee">
<source>Policy exception</source>
</trans-unit>
<trans-unit id="s77f572257f69a8db">
<source>Property Mapping exception</source>
</trans-unit>
<trans-unit id="s2543cffd6ebb6803">
<source>System task execution</source>
</trans-unit>
<trans-unit id="se2f258b996f7279c">
<source>System task exception</source>
</trans-unit>
<trans-unit id="s81eff3409d572a21">
<source>General system exception</source>
</trans-unit>
<trans-unit id="sf8f49cdbf0036343">
<source>Configuration error</source>
</trans-unit>
<trans-unit id="s9c6f61dc47bc4f0a">
<source>Model created</source>
</trans-unit>
<trans-unit id="s47a4983a2c6bb749">
<source>Model updated</source>
</trans-unit>
<trans-unit id="sc9f69360b58706c7">
<source>Model deleted</source>
</trans-unit>
<trans-unit id="sa266303caf1bd27f">
<source>Email sent</source>
</trans-unit>
<trans-unit id="s6c410fedda2a575f">
<source>Update available</source>
</trans-unit>
<trans-unit id="sf1ec4acb8d744ed9">
<source>Alert</source>
</trans-unit>
<trans-unit id="s9117fb5195e75151">
<source>Notice</source>
</trans-unit>
<trans-unit id="s34be76c6b1eadbef">
<source>Warning</source>
</trans-unit>
<trans-unit id="s02240309358f557c">
<source>Unknown severity</source>
</trans-unit>
<trans-unit id="s858e7ac4b3cf955f">
<source>Static tokens</source>
</trans-unit>
<trans-unit id="sfcfcf85a57eea78a">
<source>TOTP Device</source>
</trans-unit>
<trans-unit id="s482bc55a78891ef7">
<source>A code has been sent to your address: <x id="0" equiv-text="${email}"/></source>
</trans-unit>
<trans-unit id="s5afa3fc77ce8d94d">
<source>A code has been sent to your email address.</source>
</trans-unit>
<trans-unit id="s37f47fa981493c3b">
<source>A one-time use code has been sent to you via SMS text message.</source>
</trans-unit>
<trans-unit id="sc92a7248dba5f388">
<source>Open your authenticator app to retrieve a one-time use code.</source>
</trans-unit>
<trans-unit id="s21d95b4651ad7a1e">
<source>Enter a one-time recovery code for this user.</source>
</trans-unit>
<trans-unit id="s2e1d5a7d320c25ef">
<source>Enter the code from your authenticator device.</source>
</trans-unit>
<trans-unit id="se2d65e13768468e0">
<source>Internal</source>
</trans-unit>
<trans-unit id="s84fcddede27b8e2a">
<source>External</source>
</trans-unit>
<trans-unit id="s1a635369edaf4dc3">
<source>Service account</source>
</trans-unit>
<trans-unit id="sff930bf2834e2201">
<source>Service account (internal)</source>
</trans-unit>
<trans-unit id="scb489a1a173ac3f0">
<source>Yes</source>
</trans-unit>
<trans-unit id="s09205907b5b56cda">
<source>No</source>
</trans-unit>
<trans-unit id="s7f073c746d0f6324">
<source>Form actions</source>
</trans-unit>
<trans-unit id="s98b1cb8fb62909ec">
<source>Group</source>
</trans-unit>
<trans-unit id="s2e422519ed38f7d8">
<source>Pass</source>
</trans-unit>
<trans-unit id="sac315d5bd28d4efa">
<source>Don't Pass</source>
</trans-unit>
<trans-unit id="s042baf59902a711f">
<source>Policy</source>
</trans-unit>
<trans-unit id="sd8f220c999726151">
<source>Redirect</source>
</trans-unit>
<trans-unit id="s03f42eea72154959">
<source>Username</source>
</trans-unit>
<trans-unit id="s5f5bf4ef2bd93c04">
<source>Group mappings can only be checked if a user is already logged in when trying to access this source.</source>
</trans-unit>
<trans-unit id="s6c607d74bdfe9f36">
<source>User mappings can only be checked if a user is already logged in when trying to access this source.</source>
</trans-unit>
<trans-unit id="sf6e1665c7022a1f8">
<source>Password</source>
</trans-unit>
<trans-unit id="sd1f44f1a8bc20e67">
<source>Email</source>
</trans-unit>
<trans-unit id="s8939f574b096054a">
<source>Not you?</source>
</trans-unit>
<trans-unit id="s296fbffaaa7c910a">
<source>Required.</source>
</trans-unit>
<trans-unit id="s81ecf2d4386b8e84">
<source>Continue</source>
</trans-unit>
<trans-unit id="s61e48919db20538a">
<source>UPN</source>
</trans-unit>
<trans-unit id="s67ac11d47f1ce794">
<source>WebAuthn requires this page to be accessed via HTTPS.</source>
</trans-unit>
<trans-unit id="se9e9e1d6799b86a5">
<source>WebAuthn not supported by browser.</source>
</trans-unit>
<trans-unit id="sa4be93eb7f4e51e3">
<source>Site links</source>
</trans-unit>
<trans-unit id="s6fe64b4625517333">
<source>Powered by authentik</source>
</trans-unit>
<trans-unit id="sd766cdc29b25ff95">
<source>Authenticating with Apple...</source>
</trans-unit>
<trans-unit id="s2c8189544e3ea679">
<source>Retry</source>
</trans-unit>
<trans-unit id="s420d2cdedcaf8cd0">
<source>Authenticating with Plex...</source>
</trans-unit>
<trans-unit id="s2ddbebcb8a49b005">
<source>Waiting for authentication...</source>
</trans-unit>
<trans-unit id="sb15fe7b9d09bb419">
<source>If no Plex popup opens, click the button below.</source>
</trans-unit>
<trans-unit id="sbc625b4c669b9ce8">
<source>Open login</source>
</trans-unit>
<trans-unit id="sf376ae7e9ef41c1a">
<source>Authenticating with Telegram...</source>
</trans-unit>
<trans-unit id="s76ea993fdc8503d8">
<source>Click the button below to start.</source>
</trans-unit>
<trans-unit id="s15d6fabebb4ef2d8">
<source>User information</source>
</trans-unit>
<trans-unit id="s9bd9ba84819493d4">
<source>Something went wrong! Please try again later.</source>
</trans-unit>
<trans-unit id="s4090dd0c0e45988b">
<source>Request ID</source>
</trans-unit>
<trans-unit id="s4d7fe7be1c49896c">
<source>You may close this page now.</source>
</trans-unit>
<trans-unit id="s197420b40df164f8">
<source>Follow redirect</source>
</trans-unit>
<trans-unit id="s3ab772345f78aee0">
<source>Flow inspector</source>
</trans-unit>
<trans-unit id="sb69e43f2f6bd1b54">
<source>Close flow inspector</source>
</trans-unit>
<trans-unit id="s502884e1977b2c06">
<source>Next stage</source>
</trans-unit>
<trans-unit id="sb3fa80ccfa97ee54">
<source>Stage name</source>
</trans-unit>
<trans-unit id="sbea3c1e4f2fd623d">
<source>Stage kind</source>
</trans-unit>
<trans-unit id="s2bc8aa1740d3da34">
<source>Stage object</source>
</trans-unit>
<trans-unit id="sc3e1c4f1fff8e1ca">
<source>This flow is completed.</source>
</trans-unit>
<trans-unit id="s342eccabf83c9bde">
<source>Plan history</source>
</trans-unit>
<trans-unit id="sb2f307e79d20bb56">
<source>Current plan context</source>
</trans-unit>
<trans-unit id="sa13e6c8310000e30">
<source>Session ID</source>
</trans-unit>
<trans-unit id="s857cf5aa8955cf5c">
<source>Flow inspector loading</source>
</trans-unit>
<trans-unit id="sa11e92683c5860c7">
<source>Request has been denied.</source>
</trans-unit>
<trans-unit id="s2f7f35f6a5b733f5">
<source>Show password</source>
</trans-unit>
<trans-unit id="s452f791e0ff6a13e">
<source>Hide password</source>
</trans-unit>
<trans-unit id="scf5ce91bfba10a61">
<source>Please enter your password</source>
</trans-unit>
<trans-unit id="s6bb30c61df4cf486">
<source>Caps Lock is enabled.</source>
</trans-unit>
<trans-unit id="s8d6236ad153d42c0">
<source>CAPTCHA challenge</source>
</trans-unit>
<trans-unit id="s30d6ff9e15e0a40a">
<source>Verifying...</source>
</trans-unit>
<trans-unit id="s1c336c2d6cef77b3">
<source>Remember me on this device</source>
</trans-unit>
<trans-unit id="seb6ab868740e4e36">
<source>Continue with <x id="0" equiv-text="${name}"/></source>
</trans-unit>
<trans-unit id="sc4eedb434536bdb4">
<source>Need an account?</source>
</trans-unit>
<trans-unit id="s38f774cd7e9b9dad">
<source>Sign up.</source>
</trans-unit>
<trans-unit id="sa03aa46068460c95">
<source>Forgot username or password?</source>
</trans-unit>
<trans-unit id="s05a941e4b4bfca9f">
<source>Additional actions</source>
</trans-unit>
<trans-unit id="s6ecfc18dbfeedd76">
<source>Select one of the options below to continue.</source>
</trans-unit>
<trans-unit id="s091d5407b5b32e84">
<source>Or</source>
</trans-unit>
<trans-unit id="se5fd752dbbc3cd28">
<source>Use a security key</source>
</trans-unit>
<trans-unit id="s53dddf1733e26c98">
<source>Login sources</source>
</trans-unit>
<trans-unit id="s85366fac18679f28">
<source>Forgot password?</source>
</trans-unit>
<trans-unit id="s14c552fb0a4c0186">
<source>Application requires following permissions:</source>
</trans-unit>
<trans-unit id="s7073489bb01b3c24">
<source>Application already has access to the following permissions:</source>
</trans-unit>
<trans-unit id="s98dc556f8bf707dc">
<source>Application requires following new permissions:</source>
</trans-unit>
<trans-unit id="s06bfe45ffef2cf60">
<source>Stage name: <x id="0" equiv-text="${this.challenge?.name}"/></source>
</trans-unit>
<trans-unit id="sbd19064fc3f405c1">
<source>Check your Inbox for a verification email.</source>
</trans-unit>
<trans-unit id="s8aff572e64b7936b">
<source>Send Email again.</source>
</trans-unit>
<trans-unit id="sc091f75b942ec081">
<source>QR-Code to setup a time-based one-time password</source>
</trans-unit>
<trans-unit id="s6db67c7681b8be6e">
<source>Copy time-based one-time password configuration</source>
</trans-unit>
<trans-unit id="s43e859bf711e3599">
<source>Copy TOTP Config</source>
</trans-unit>
<trans-unit id="s90064dd5c4dde2c6">
<source>Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.</source>
</trans-unit>
<trans-unit id="sa5562e0115ffbccd">
<source>Time-based one-time password</source>
</trans-unit>
<trans-unit id="s40f44c0d88807fd5">
<source>TOTP Code</source>
</trans-unit>
<trans-unit id="s95474cc8c73dd9c0">
<source>Type your TOTP code...</source>
</trans-unit>
<trans-unit id="s168d0c138b63286d">
<source>Type your time-based one-time password code.</source>
</trans-unit>
<trans-unit id="sc2ec367e3108fe65">
<source>Duo activation QR code</source>
</trans-unit>
<trans-unit id="sc5668cb23167e9bb">
<source>Alternatively, if your current device has Duo installed, click on this link:</source>
</trans-unit>
<trans-unit id="s721d94ae700b5dfd">
<source>Duo activation</source>
</trans-unit>
<trans-unit id="s708d9a4a0db0be8f">
<source>Check status</source>
</trans-unit>
<trans-unit id="s31fba571065f2c87">
<source>Make sure to keep these tokens in a safe place.</source>
</trans-unit>
<trans-unit id="s3f8a07912545e72e">
<source>Configure your email</source>
</trans-unit>
<trans-unit id="scedf77e8b75cad5a">
<source>Please enter your email address.</source>
</trans-unit>
<trans-unit id="s3643189d1abbb7f4">
<source>Code</source>
</trans-unit>
<trans-unit id="s7cdd62c100b6b17b">
<source>Please enter the code you received via email</source>
</trans-unit>
<trans-unit id="sc0a0c87d5c556c38">
<source>Phone number</source>
</trans-unit>
<trans-unit id="s04c1210202f48dc9">
<source>Please enter your Phone number.</source>
</trans-unit>
<trans-unit id="seb0c08d9f233bbfe">
<source>Please enter the code you received via SMS</source>
</trans-unit>
<trans-unit id="s98bb2ae796f1ceef">
<source>Select another authentication method</source>
</trans-unit>
<trans-unit id="s844fea0bfb10a72a">
<source>Authentication code</source>
</trans-unit>
<trans-unit id="s7abc9d08b0f70fd6">
<source>Static token</source>
</trans-unit>
<trans-unit id="s14e8ac4d377a1a99">
<source>Type an authentication code...</source>
</trans-unit>
<trans-unit id="s39002897db60bb28">
<source>Sending Duo push notification...</source>
</trans-unit>
<trans-unit id="sd2b8c1caa0340ed6">
<source>Failed to authenticate</source>
</trans-unit>
<trans-unit id="s363abde8a254ea5f">
<source>Authentication failed. Please try again.</source>
</trans-unit>
<trans-unit id="sffef1a8596bc58bb">
<source>Authenticating...</source>
</trans-unit>
<trans-unit id="se409d01b52c4e12f">
<source>Retry authentication</source>
</trans-unit>
<trans-unit id="s8d857061510fe794">
<source>Duo push-notifications</source>
</trans-unit>
<trans-unit id="s47490298c17b753a">
<source>Receive a push notification on your device.</source>
</trans-unit>
<trans-unit id="sd6a025d66f2637d1">
<source>Traditional authenticator</source>
</trans-unit>
<trans-unit id="sb25e689e00c61829">
<source>Use a code-based authenticator.</source>
</trans-unit>
<trans-unit id="s9e568afec3810bfe">
<source>Recovery keys</source>
</trans-unit>
<trans-unit id="s8bb0a1b672b52954">
<source>In case you lose access to your primary authenticators.</source>
</trans-unit>
<trans-unit id="s97f2dc19fa556a6a">
<source>SMS</source>
</trans-unit>
<trans-unit id="s0e516232f2ab4e04">
<source>Tokens sent via SMS.</source>
</trans-unit>
<trans-unit id="s833cfe815918c143">
<source>Tokens sent via email.</source>
</trans-unit>
<trans-unit id="s76d21e163887ddd1">
<source>Unknown device</source>
</trans-unit>
<trans-unit id="sf0ceaf3116e31fd4">
<source>An unknown device class was provided.</source>
</trans-unit>
<trans-unit id="s610fced3957d0471">
<source>Select an authentication method</source>
</trans-unit>
<trans-unit id="s958cedec1cb3fc52">
<source>Select a configuration stage</source>
</trans-unit>
<trans-unit id="sac17f177f884e238">
<source>Stay signed in?</source>
</trans-unit>
<trans-unit id="s859b2e00391da380">
<source>Select Yes to reduce the number of times you're asked to sign in.</source>
</trans-unit>
<trans-unit id="s23da7320dee28a60">
<source>Device Code</source>
</trans-unit>
<trans-unit id="s3cd84e82e83e35ad">
<source>Please enter your code</source>
</trans-unit>
<trans-unit id="s455a8fc21077e7f9">
<source>You've successfully authenticated your device.</source>
</trans-unit>
<trans-unit id="sac88482c48453fc8">
<source>You've logged out of <x id="0" equiv-text="${challenge.applicationName}"/>. You can go back to the overview to launch another application, or log out of your authentik account.</source>
</trans-unit>
<trans-unit id="s3108167b562674e2">
<source>Go back to overview</source>
</trans-unit>
<trans-unit id="sdb749e793de55478">
<source>Log out of <x id="0" equiv-text="${challenge.brandName}"/></source>
</trans-unit>
<trans-unit id="s521681ed1d5ff814">
<source>Log back into <x id="0" equiv-text="${challenge.applicationName}"/></source>
</trans-unit>
<trans-unit id="s78869b8b2bc26d0d">
<source>SAML Provider</source>
</trans-unit>
<trans-unit id="sca83a1f9227f74b9">
<source>SAML logout complete</source>
</trans-unit>
<trans-unit id="s7b90eab7969ae056">
<source>Redirecting to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s3e6174b645d96835">
<source>Posting logout request to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s0b1ffff8bedd6b8a">
<source>Unknown Provider</source>
</trans-unit>
<trans-unit id="s777e86d562523c85">
<source>Logging out of providers...</source>
</trans-unit>
<trans-unit id="s4980379bf8461c2d">
<source>Single Logout</source>
</trans-unit>
<trans-unit id="s3736936aac1adc2e">
<source>Open flow inspector</source>
</trans-unit>
<trans-unit id="sa17ce23517e56461">
<source>Authentication form</source>
</trans-unit>
<trans-unit id="s7fa4e5e409d43573">
<source>Error creating credential: <x id="0" equiv-text="${err}"/></source>
</trans-unit>
<trans-unit id="s9d95f09deb601f34">
<source>Server validation of credential failed: <x id="0" equiv-text="${err}"/></source>
</trans-unit>
<trans-unit id="sb0821a9e92cac5eb">
<source>Failed to register. Please try again.</source>
</trans-unit>
<trans-unit id="s238784fc1dc672ae">
<source>Registering...</source>
</trans-unit>
<trans-unit id="s009bd1c98a9f5de2">
<source>Failed to register</source>
</trans-unit>
<trans-unit id="sb166ce92e8e807d6">
<source>Retry registration</source>
</trans-unit>
<trans-unit id="s95094b57684716a5">
<source>Failed to validate device.</source>
</trans-unit>
<trans-unit id="se99d25eb70c767ef">
<source>Verifying your device...</source>
</trans-unit>
<trans-unit id="s1af2337b6d11d4c6">
<source>Data export ready</source>
</trans-unit>
<trans-unit id="en-XA">
<source>English (Pseudo-Accents)</source>
</trans-unit>
<trans-unit id="avatar.alt-text-for-user">
<source>Avatar for <x id="0" equiv-text="${this.username}"/></source>
</trans-unit>
<trans-unit id="avatar.alt-text">
<source>User avatar</source>
</trans-unit>
<trans-unit id="flow.navigation.go-back">
<source>Go back</source>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent-to-address">
<source>A verification token has been sent to your configured email address: <x id="0" equiv-text="${email}"/></source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's configured email address.</note>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent">
<source>A verification token has been sent to your email address.</source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's email address.</note>
</trans-unit>
<trans-unit id="scd909e0bc55fc548">
<source>Security key</source>
</trans-unit>
<trans-unit id="sd0de938d9c37ad5f">
<source>Use a Passkey or security key to prove your identity.</source>
</trans-unit>
<trans-unit id="sb94beab52540d2b7">
<source>The CAPTCHA challenge failed to load.</source>
</trans-unit>
<trans-unit id="s217a96c47caaf73d">
<source>Could not find a suitable CAPTCHA provider.</source>
</trans-unit>
<trans-unit id="sdf2794b96386c868">
<source>Copy time-based one-time password secret</source>
</trans-unit>
<trans-unit id="sc78d16417878afd0">
<source>Copy Secret</source>
</trans-unit>
<trans-unit id="clipboard.write.success.message.entity">
<source><x id="0" equiv-text="${entityLabel}"/> copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.success.generic">
<source>Copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.failure.description">
<source>Clipboard not available. Please copy the value manually.</source>
</trans-unit>
<trans-unit id="totp.config">
<source>TOTP Config</source>
</trans-unit>
<trans-unit id="totp.config.clipboard.description">
<source>Paste this URL into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="totp.secret">
<source>TOTP Secret</source>
</trans-unit>
<trans-unit id="totp.secret.clipboard.description">
<source>Paste this secret into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="s92e22f9319fdb85d">
<source>Configuration warning</source>
</trans-unit>
<trans-unit id="saa088a2d0f90d5a9">
<source>Posting logout response to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s776d93092ad9ce90">
<source>Review initiated</source>
</trans-unit>
<trans-unit id="sad46bcad1a343b51">
<source>Review overdue</source>
</trans-unit>
<trans-unit id="s59d168d966cecbaf">
<source>Review attested</source>
</trans-unit>
<trans-unit id="s5158b7f014cecefc">
<source>Review completed</source>
</trans-unit>
<trans-unit id="sdd2ea73c24b40d5d">
<source>Site footer</source>
</trans-unit>
<trans-unit id="sf910cca0f06bbc31">
<source>Enter the email address or username associated with your account.</source>
</trans-unit>
<trans-unit id="s6e858c4c4c3b6b76">
<source>You're about to be redirected to the following URL.</source>
</trans-unit>
<trans-unit id="sd5d2b94a1ccba1a9">
<source>Log in to continue to <x id="0" equiv-text="${prelude}"/>.</source>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,889 @@
<?xml version="1.0"?><xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file target-language="es-ES" source-language="en" original="lit-localize-inputs" datatype="plaintext">
<body>
<!-- #region Locales -->
<trans-unit id="en">
<source>English</source>
<target>Inglés</target>
</trans-unit>
<trans-unit id="ja-JP">
<source>Japanese</source>
<target>Japonés</target>
</trans-unit>
<trans-unit id="ko-KR">
<source>Korean</source>
<target>Coreano</target>
</trans-unit>
<trans-unit id="zh-Hans">
<source>Chinese (Simplified)</source>
<target>Chino</target>
</trans-unit>
<trans-unit id="zh-Hant">
<source>Chinese (Traditional)</source>
<target>Chino</target>
</trans-unit>
<!-- #endregion -->
<!-- #region Locale selector -->
<trans-unit id="locale-auto-detect-option">
<source>Auto-detect</source>
<target>Detección automática</target>
<note from="lit-localize">Label for the auto-detect locale option in language selection dropdown</note>
</trans-unit>
<trans-unit id="language-selector-label">
<source>Select language</source>
<target>Seleccionar idioma</target>
<note from="lit-localize">Label for the language selection dropdown</note>
</trans-unit>
<trans-unit id="locale-option-localized-label">
<source><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</source>
<note from="lit-localize">Locale option label showing the localized language name along with the native language name in parentheses.</note>
</trans-unit>
<!-- #endregion -->
<trans-unit id="s12d6dde9b30c3093">
<source>Dismiss</source>
<target>Desestimar</target>
</trans-unit>
<trans-unit id="sfe629863ba1338c2">
<source>Connection error, reconnecting...</source>
<target>Error de conexión, reconexión...</target>
</trans-unit>
<trans-unit id="sdaecc3c29a27c5c5">
<source>An unknown error occurred</source>
</trans-unit>
<trans-unit id="se84ba7f105934495">
<source>Please check the browser console for more details.</source>
</trans-unit>
<trans-unit id="sdea479482318489d">
<source>Status messages</source>
<target>Mensaje de estado</target>
</trans-unit>
<trans-unit id="s91ae4b6bf981682b">
<source>authentik Logo</source>
<target>Logotipo de authentik</target>
</trans-unit>
<trans-unit id="s49730f3d5751a433">
<source>Loading...</source>
<target>Cargando...</target>
</trans-unit>
<trans-unit id="sa50a6326530d8a0d">
<source>Show less</source>
<target>Mostrar menos</target>
</trans-unit>
<trans-unit id="sb2c57b2d347203dd">
<source>Show more</source>
<target>Mostrar más</target>
</trans-unit>
<trans-unit id="sa48f81f001b893d2">
<source>User</source>
<target>Usuario</target>
</trans-unit>
<trans-unit id="sb59d68ed12d46377">
<source>Loading</source>
<target>Cargando</target>
</trans-unit>
<trans-unit id="s0382d73823585617">
<source><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></source>
<target>
<x id="0" equiv-text="${this.errorMessage}"/>:
<x id="1" equiv-text="${e.toString()}"/></target>
</trans-unit>
<trans-unit id="sae5d87e99fe081e0">
<source>Required</source>
<target>Requerido</target>
</trans-unit>
<trans-unit id="s1cd198d689c66e4b">
<source>API Access</source>
<target>Acceso a la API</target>
</trans-unit>
<trans-unit id="sf29883ac9ec43085">
<source>App password</source>
<target>contraseña de la aplicación</target>
</trans-unit>
<trans-unit id="s6ac670086eb137c6">
<source>Recovery</source>
<target>Recuperación</target>
</trans-unit>
<trans-unit id="sfe211545fd02f73e">
<source>Verification</source>
<target>Verificación</target>
</trans-unit>
<trans-unit id="sd73b202ec04eefd9">
<source>Unknown intent</source>
<target>Intento desconocido</target>
</trans-unit>
<trans-unit id="sc8da3cc71de63832">
<source>Login</source>
<target>Iniciar sesión</target>
</trans-unit>
<trans-unit id="sb4564c127ab8b921">
<source>Failed login</source>
<target>Inicio de sesión incorrecto</target>
</trans-unit>
<trans-unit id="s67749057edb2586b">
<source>Logout</source>
<target>Cerrar sesión</target>
</trans-unit>
<trans-unit id="s7e537ad68d7c16e1">
<source>User was written to</source>
<target>Se escribió al usuario a</target>
</trans-unit>
<trans-unit id="sa0e0bdd7e244416b">
<source>Suspicious request</source>
<target>Solicitud sospechosa</target>
</trans-unit>
<trans-unit id="s7bda44013984fc48">
<source>Password set</source>
<target>Conjunto de contraseñas</target>
</trans-unit>
<trans-unit id="sa1b41e334ad89d94">
<source>Secret was viewed</source>
<target>Se ha visto el secreto</target>
</trans-unit>
<trans-unit id="s92ca679592a36b35">
<source>Secret was rotated</source>
<target>Se ha rotado el</target>
</trans-unit>
<trans-unit id="s8a1d9403ca90989b">
<source>Invitation used</source>
<target>Invitación utilizada</target>
</trans-unit>
<trans-unit id="s5f496533610103f2">
<source>Application authorized</source>
<target>Solicitud autorizada</target>
</trans-unit>
<trans-unit id="sdc9e222be9612939">
<source>Source linked</source>
<target>Fuente enlazada</target>
</trans-unit>
<trans-unit id="sb1c91762ae3a9bee">
<source>Impersonation started</source>
<target>Inició la personificación</target>
</trans-unit>
<trans-unit id="s9c73bd29b279d26b">
<source>Impersonation ended</source>
<target>Finalizó la personificación</target>
</trans-unit>
<trans-unit id="s1cd264012278c047">
<source>Flow execution</source>
<target>Ejecución de flujo</target>
</trans-unit>
<trans-unit id="s32f04d33924ce8ad">
<source>Policy execution</source>
<target>Ejecución de políticas</target>
</trans-unit>
<trans-unit id="sb6d7128df5978cee">
<source>Policy exception</source>
<target>Excepción de política</target>
</trans-unit>
<trans-unit id="s77f572257f69a8db">
<source>Property Mapping exception</source>
<target>Excepción de Asignación de Propiedades</target>
</trans-unit>
<trans-unit id="s2543cffd6ebb6803">
<source>System task execution</source>
<target>Ejecución de tarea del sistema</target>
</trans-unit>
<trans-unit id="se2f258b996f7279c">
<source>System task exception</source>
<target>Excepción tarea del sistema</target>
</trans-unit>
<trans-unit id="s81eff3409d572a21">
<source>General system exception</source>
<target>Excepción general del sistema</target>
</trans-unit>
<trans-unit id="sf8f49cdbf0036343">
<source>Configuration error</source>
<target>Error de configuración</target>
</trans-unit>
<trans-unit id="s9c6f61dc47bc4f0a">
<source>Model created</source>
<target>Modelo creado</target>
</trans-unit>
<trans-unit id="s47a4983a2c6bb749">
<source>Model updated</source>
<target>Modelo actualizado</target>
</trans-unit>
<trans-unit id="sc9f69360b58706c7">
<source>Model deleted</source>
<target>Modelo eliminado</target>
</trans-unit>
<trans-unit id="sa266303caf1bd27f">
<source>Email sent</source>
<target>Correo electrónico enviado</target>
</trans-unit>
<trans-unit id="s6c410fedda2a575f">
<source>Update available</source>
<target>Actualización disponible</target>
</trans-unit>
<trans-unit id="sf1ec4acb8d744ed9">
<source>Alert</source>
<target>Alerta</target>
</trans-unit>
<trans-unit id="s9117fb5195e75151">
<source>Notice</source>
<target>Notificación</target>
</trans-unit>
<trans-unit id="s34be76c6b1eadbef">
<source>Warning</source>
<target>Aviso</target>
</trans-unit>
<trans-unit id="s02240309358f557c">
<source>Unknown severity</source>
<target>Gravedad desconocida</target>
</trans-unit>
<trans-unit id="s858e7ac4b3cf955f">
<source>Static tokens</source>
<target>Fichas estáticas</target>
</trans-unit>
<trans-unit id="sfcfcf85a57eea78a">
<source>TOTP Device</source>
<target>Dispositivo TOTP</target>
</trans-unit>
<trans-unit id="s482bc55a78891ef7">
<source>A code has been sent to your address: <x id="0" equiv-text="${email}"/></source>
</trans-unit>
<trans-unit id="s5afa3fc77ce8d94d">
<source>A code has been sent to your email address.</source>
</trans-unit>
<trans-unit id="s37f47fa981493c3b">
<source>A one-time use code has been sent to you via SMS text message.</source>
</trans-unit>
<trans-unit id="sc92a7248dba5f388">
<source>Open your authenticator app to retrieve a one-time use code.</source>
</trans-unit>
<trans-unit id="s21d95b4651ad7a1e">
<source>Enter a one-time recovery code for this user.</source>
<target>Introduzca un código de recuperación único para este usuario.</target>
</trans-unit>
<trans-unit id="s2e1d5a7d320c25ef">
<source>Enter the code from your authenticator device.</source>
<target>Ingresa el código de tu dispositivo autenticador.</target>
</trans-unit>
<trans-unit id="se2d65e13768468e0">
<source>Internal</source>
<target>Interno</target>
</trans-unit>
<trans-unit id="s84fcddede27b8e2a">
<source>External</source>
<target>Externo</target>
</trans-unit>
<trans-unit id="s1a635369edaf4dc3">
<source>Service account</source>
<target>Cuenta de servicio</target>
</trans-unit>
<trans-unit id="sff930bf2834e2201">
<source>Service account (internal)</source>
<target>Cuenta de servicio (interna)</target>
</trans-unit>
<trans-unit id="scb489a1a173ac3f0">
<source>Yes</source>
<target>Sí</target>
</trans-unit>
<trans-unit id="s09205907b5b56cda">
<source>No</source>
<target>No</target>
</trans-unit>
<trans-unit id="s7f073c746d0f6324">
<source>Form actions</source>
</trans-unit>
<trans-unit id="s98b1cb8fb62909ec">
<source>Group</source>
<target>Grupo</target>
</trans-unit>
<trans-unit id="s2e422519ed38f7d8">
<source>Pass</source>
<target>Aprobado</target>
</trans-unit>
<trans-unit id="sac315d5bd28d4efa">
<source>Don't Pass</source>
<target>No Pasa</target>
</trans-unit>
<trans-unit id="s042baf59902a711f">
<source>Policy</source>
<target>Política</target>
</trans-unit>
<trans-unit id="sd8f220c999726151">
<source>Redirect</source>
<target>Redirigir</target>
</trans-unit>
<trans-unit id="s03f42eea72154959">
<source>Username</source>
<target>Nombre usuario</target>
</trans-unit>
<trans-unit id="s5f5bf4ef2bd93c04">
<source>Group mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Las asignaciones de grupo solo puede verificarse si un usuario ya ha iniciado sesión al intentar acceder a esta fuente.</target>
</trans-unit>
<trans-unit id="s6c607d74bdfe9f36">
<source>User mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Las asignaciones de usuario solo puede verificarse si un usuario ya ha iniciado sesión al intentar acceder a esta fuente.</target>
</trans-unit>
<trans-unit id="sf6e1665c7022a1f8">
<source>Password</source>
<target>Contraseña</target>
</trans-unit>
<trans-unit id="sd1f44f1a8bc20e67">
<source>Email</source>
<target>Correo</target>
</trans-unit>
<trans-unit id="s8939f574b096054a">
<source>Not you?</source>
<target>¿No eres tú?</target>
</trans-unit>
<trans-unit id="s296fbffaaa7c910a">
<source>Required.</source>
<target>Necesario.</target>
</trans-unit>
<trans-unit id="s81ecf2d4386b8e84">
<source>Continue</source>
<target>Continuar</target>
</trans-unit>
<trans-unit id="s61e48919db20538a">
<source>UPN</source>
<target>UPN</target>
</trans-unit>
<trans-unit id="s67ac11d47f1ce794">
<source>WebAuthn requires this page to be accessed via HTTPS.</source>
<target>WebAuthn requiere que esta página se acceda a través de HTTPS.</target>
</trans-unit>
<trans-unit id="se9e9e1d6799b86a5">
<source>WebAuthn not supported by browser.</source>
<target>WebAuthn no es compatible con el navegador.</target>
</trans-unit>
<trans-unit id="sa4be93eb7f4e51e3">
<source>Site links</source>
</trans-unit>
<trans-unit id="s6fe64b4625517333">
<source>Powered by authentik</source>
<target>Desarrollado por authentik</target>
</trans-unit>
<trans-unit id="sd766cdc29b25ff95">
<source>Authenticating with Apple...</source>
<target>Autenticando con Apple...</target>
</trans-unit>
<trans-unit id="s2c8189544e3ea679">
<source>Retry</source>
<target>Intentar de nuevo</target>
</trans-unit>
<trans-unit id="s420d2cdedcaf8cd0">
<source>Authenticating with Plex...</source>
<target>Autenticando con Plex...</target>
</trans-unit>
<trans-unit id="s2ddbebcb8a49b005">
<source>Waiting for authentication...</source>
<target>Esperando autenticación...</target>
</trans-unit>
<trans-unit id="sb15fe7b9d09bb419">
<source>If no Plex popup opens, click the button below.</source>
<target>Si no se abre una ventana emergente de Plex, haga clic en el botón de abajo.</target>
</trans-unit>
<trans-unit id="sbc625b4c669b9ce8">
<source>Open login</source>
<target>Abrir inicio de sesión</target>
</trans-unit>
<trans-unit id="sf376ae7e9ef41c1a">
<source>Authenticating with Telegram...</source>
</trans-unit>
<trans-unit id="s76ea993fdc8503d8">
<source>Click the button below to start.</source>
</trans-unit>
<trans-unit id="s15d6fabebb4ef2d8">
<source>User information</source>
</trans-unit>
<trans-unit id="s9bd9ba84819493d4">
<source>Something went wrong! Please try again later.</source>
<target>¡Algo salió mal! Inténtelo de nuevo más tarde.</target>
</trans-unit>
<trans-unit id="s4090dd0c0e45988b">
<source>Request ID</source>
<target>ID de Solicitud</target>
</trans-unit>
<trans-unit id="s4d7fe7be1c49896c">
<source>You may close this page now.</source>
<target>Puedes cerrar esta página ahora.</target>
</trans-unit>
<trans-unit id="s197420b40df164f8">
<source>Follow redirect</source>
<target>Seguir la redirección</target>
</trans-unit>
<trans-unit id="s3ab772345f78aee0">
<source>Flow inspector</source>
<target>inspector de flujo</target>
</trans-unit>
<trans-unit id="sb69e43f2f6bd1b54">
<source>Close flow inspector</source>
</trans-unit>
<trans-unit id="s502884e1977b2c06">
<source>Next stage</source>
<target>Próxima etapa</target>
</trans-unit>
<trans-unit id="sb3fa80ccfa97ee54">
<source>Stage name</source>
<target>Nombre artístico</target>
</trans-unit>
<trans-unit id="sbea3c1e4f2fd623d">
<source>Stage kind</source>
<target>Tipo de escenario</target>
</trans-unit>
<trans-unit id="s2bc8aa1740d3da34">
<source>Stage object</source>
<target>Objeto escénico</target>
</trans-unit>
<trans-unit id="sc3e1c4f1fff8e1ca">
<source>This flow is completed.</source>
<target>Este flujo se ha completado.</target>
</trans-unit>
<trans-unit id="s342eccabf83c9bde">
<source>Plan history</source>
<target>Historial del plan</target>
</trans-unit>
<trans-unit id="sb2f307e79d20bb56">
<source>Current plan context</source>
<target>Contexto actual del plan</target>
</trans-unit>
<trans-unit id="sa13e6c8310000e30">
<source>Session ID</source>
<target>ID de sesión</target>
</trans-unit>
<trans-unit id="s857cf5aa8955cf5c">
<source>Flow inspector loading</source>
</trans-unit>
<trans-unit id="sa11e92683c5860c7">
<source>Request has been denied.</source>
<target>Se ha denegado la solicitud.</target>
</trans-unit>
<trans-unit id="s2f7f35f6a5b733f5">
<source>Show password</source>
<target>Mostrar contraseña</target>
</trans-unit>
<trans-unit id="s452f791e0ff6a13e">
<source>Hide password</source>
<target>Ocultar contraseña</target>
</trans-unit>
<trans-unit id="scf5ce91bfba10a61">
<source>Please enter your password</source>
<target>Por favor, introduzca su contraseña</target>
</trans-unit>
<trans-unit id="s6bb30c61df4cf486">
<source>Caps Lock is enabled.</source>
<target>Bloqueo de mayúsculas activado.</target>
</trans-unit>
<trans-unit id="s8d6236ad153d42c0">
<source>CAPTCHA challenge</source>
</trans-unit>
<trans-unit id="s30d6ff9e15e0a40a">
<source>Verifying...</source>
<target>Verificando...</target>
</trans-unit>
<trans-unit id="s1c336c2d6cef77b3">
<source>Remember me on this device</source>
<target>Recuérdame en este dispositivo</target>
</trans-unit>
<trans-unit id="seb6ab868740e4e36">
<source>Continue with <x id="0" equiv-text="${name}"/></source>
</trans-unit>
<trans-unit id="sc4eedb434536bdb4">
<source>Need an account?</source>
<target>¿Necesitas una cuenta?</target>
</trans-unit>
<trans-unit id="s38f774cd7e9b9dad">
<source>Sign up.</source>
<target>Inscríbete.</target>
</trans-unit>
<trans-unit id="sa03aa46068460c95">
<source>Forgot username or password?</source>
<target>¿Olvidaste tu nombre de usuario o contraseña?</target>
</trans-unit>
<trans-unit id="s05a941e4b4bfca9f">
<source>Additional actions</source>
</trans-unit>
<trans-unit id="s6ecfc18dbfeedd76">
<source>Select one of the options below to continue.</source>
<target>Selecciona una de las opciones siguientes para continuar.</target>
</trans-unit>
<trans-unit id="s091d5407b5b32e84">
<source>Or</source>
<target>O</target>
</trans-unit>
<trans-unit id="se5fd752dbbc3cd28">
<source>Use a security key</source>
<target>Use una llave de seguridad</target>
</trans-unit>
<trans-unit id="s53dddf1733e26c98">
<source>Login sources</source>
</trans-unit>
<trans-unit id="s85366fac18679f28">
<source>Forgot password?</source>
<target>¿Has olvidado tu contraseña</target>
</trans-unit>
<trans-unit id="s14c552fb0a4c0186">
<source>Application requires following permissions:</source>
<target>La aplicación requiere los siguientes permisos:</target>
</trans-unit>
<trans-unit id="s7073489bb01b3c24">
<source>Application already has access to the following permissions:</source>
<target>La aplicación ya tiene acceso a los siguientes permisos:</target>
</trans-unit>
<trans-unit id="s98dc556f8bf707dc">
<source>Application requires following new permissions:</source>
<target>La aplicación requiere los siguientes permisos nuevos:</target>
</trans-unit>
<trans-unit id="s06bfe45ffef2cf60">
<source>Stage name: <x id="0" equiv-text="${this.challenge?.name}"/></source>
<target>Nombre de etapa: <x id="0" equiv-text="${this.challenge.name}"/></target>
</trans-unit>
<trans-unit id="sbd19064fc3f405c1">
<source>Check your Inbox for a verification email.</source>
<target>Busca un correo electrónico de verificación en tu bandeja de entrada.</target>
</trans-unit>
<trans-unit id="s8aff572e64b7936b">
<source>Send Email again.</source>
<target>Vuelve a enviar el correo electrónico.</target>
</trans-unit>
<trans-unit id="sc091f75b942ec081">
<source>QR-Code to setup a time-based one-time password</source>
</trans-unit>
<trans-unit id="s6db67c7681b8be6e">
<source>Copy time-based one-time password configuration</source>
</trans-unit>
<trans-unit id="s43e859bf711e3599">
<source>Copy TOTP Config</source>
</trans-unit>
<trans-unit id="s90064dd5c4dde2c6">
<source>Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.</source>
<target>Escanee el código QR de arriba usando Microsoft Authenticator, Google Authenticator u otras aplicaciones de autenticación en su dispositivo, e ingresa el código que muestra a continuación para terminar de configurar el dispositivo MFA.</target>
</trans-unit>
<trans-unit id="sa5562e0115ffbccd">
<source>Time-based one-time password</source>
</trans-unit>
<trans-unit id="s40f44c0d88807fd5">
<source>TOTP Code</source>
</trans-unit>
<trans-unit id="s95474cc8c73dd9c0">
<source>Type your TOTP code...</source>
</trans-unit>
<trans-unit id="s168d0c138b63286d">
<source>Type your time-based one-time password code.</source>
</trans-unit>
<trans-unit id="sc2ec367e3108fe65">
<source>Duo activation QR code</source>
<target>Código QR de activación de Duo</target>
</trans-unit>
<trans-unit id="sc5668cb23167e9bb">
<source>Alternatively, if your current device has Duo installed, click on this link:</source>
<target>Como alternativa, si su dispositivo actual tiene instalado Duo, haga clic en este enlace:</target>
</trans-unit>
<trans-unit id="s721d94ae700b5dfd">
<source>Duo activation</source>
<target>Activación dúo</target>
</trans-unit>
<trans-unit id="s708d9a4a0db0be8f">
<source>Check status</source>
<target>Comprobar el estado</target>
</trans-unit>
<trans-unit id="s31fba571065f2c87">
<source>Make sure to keep these tokens in a safe place.</source>
<target>Asegúrese de guardar estas fichas en un lugar seguro.</target>
</trans-unit>
<trans-unit id="s3f8a07912545e72e">
<source>Configure your email</source>
<target>Configura tu correo electrónico</target>
</trans-unit>
<trans-unit id="scedf77e8b75cad5a">
<source>Please enter your email address.</source>
<target>Por favor, ingresa tu dirección de correo electrónico.</target>
</trans-unit>
<trans-unit id="s3643189d1abbb7f4">
<source>Code</source>
<target>Código</target>
</trans-unit>
<trans-unit id="s7cdd62c100b6b17b">
<source>Please enter the code you received via email</source>
<target>Por favor, ingresa el código que recibiste por correo electrónico</target>
</trans-unit>
<trans-unit id="sc0a0c87d5c556c38">
<source>Phone number</source>
<target>Número de teléfono</target>
</trans-unit>
<trans-unit id="s04c1210202f48dc9">
<source>Please enter your Phone number.</source>
<target>Por favor, introduzca su número de teléfono.</target>
</trans-unit>
<trans-unit id="seb0c08d9f233bbfe">
<source>Please enter the code you received via SMS</source>
<target>Por favor, ingresa el código que recibiste por SMS.</target>
</trans-unit>
<trans-unit id="s98bb2ae796f1ceef">
<source>Select another authentication method</source>
<target>Seleccione otro método de autenticación</target>
</trans-unit>
<trans-unit id="s844fea0bfb10a72a">
<source>Authentication code</source>
<target>Código de autenticación</target>
</trans-unit>
<trans-unit id="s7abc9d08b0f70fd6">
<source>Static token</source>
<target>Token estático</target>
</trans-unit>
<trans-unit id="s14e8ac4d377a1a99">
<source>Type an authentication code...</source>
</trans-unit>
<trans-unit id="s39002897db60bb28">
<source>Sending Duo push notification...</source>
<target>Enviando notificación push de Duo</target>
</trans-unit>
<trans-unit id="sd2b8c1caa0340ed6">
<source>Failed to authenticate</source>
<target>No se pudo autenticar</target>
</trans-unit>
<trans-unit id="s363abde8a254ea5f">
<source>Authentication failed. Please try again.</source>
<target>Falló la autenticación. Por favor inténtalo de nuevo.</target>
</trans-unit>
<trans-unit id="sffef1a8596bc58bb">
<source>Authenticating...</source>
<target>Autenticando...</target>
</trans-unit>
<trans-unit id="se409d01b52c4e12f">
<source>Retry authentication</source>
<target>Reintentar la autenticación</target>
</trans-unit>
<trans-unit id="s8d857061510fe794">
<source>Duo push-notifications</source>
<target>Notificaciones push dúo</target>
</trans-unit>
<trans-unit id="s47490298c17b753a">
<source>Receive a push notification on your device.</source>
<target>Reciba una notificación push en su dispositivo.</target>
</trans-unit>
<trans-unit id="sd6a025d66f2637d1">
<source>Traditional authenticator</source>
<target>Autenticador Tradicional</target>
</trans-unit>
<trans-unit id="sb25e689e00c61829">
<source>Use a code-based authenticator.</source>
<target>Use un autenticador basado en código.</target>
</trans-unit>
<trans-unit id="s9e568afec3810bfe">
<source>Recovery keys</source>
<target>Teclas de recuperación</target>
</trans-unit>
<trans-unit id="s8bb0a1b672b52954">
<source>In case you lose access to your primary authenticators.</source>
</trans-unit>
<trans-unit id="s97f2dc19fa556a6a">
<source>SMS</source>
<target>SMS</target>
</trans-unit>
<trans-unit id="s0e516232f2ab4e04">
<source>Tokens sent via SMS.</source>
<target>Tokens enviados por SMS.</target>
</trans-unit>
<trans-unit id="s833cfe815918c143">
<source>Tokens sent via email.</source>
<target>Tokens enviados por correo electrónico.</target>
</trans-unit>
<trans-unit id="s76d21e163887ddd1">
<source>Unknown device</source>
</trans-unit>
<trans-unit id="sf0ceaf3116e31fd4">
<source>An unknown device class was provided.</source>
</trans-unit>
<trans-unit id="s610fced3957d0471">
<source>Select an authentication method</source>
</trans-unit>
<trans-unit id="s958cedec1cb3fc52">
<source>Select a configuration stage</source>
</trans-unit>
<trans-unit id="sac17f177f884e238">
<source>Stay signed in?</source>
<target>¿Mantener sesión iniciada?</target>
</trans-unit>
<trans-unit id="s859b2e00391da380">
<source>Select Yes to reduce the number of times you're asked to sign in.</source>
<target>Seleccione Sí para reducir la cantidad de veces que se le solicita iniciar sesión.</target>
</trans-unit>
<trans-unit id="s23da7320dee28a60">
<source>Device Code</source>
</trans-unit>
<trans-unit id="s3cd84e82e83e35ad">
<source>Please enter your code</source>
<target>Por favor, introduzca su código</target>
</trans-unit>
<trans-unit id="s455a8fc21077e7f9">
<source>You've successfully authenticated your device.</source>
<target>Has autenticado tu dispositivo correctamente.</target>
</trans-unit>
<trans-unit id="sac88482c48453fc8">
<source>You've logged out of <x id="0" equiv-text="${challenge.applicationName}"/>. You can go back to the overview to launch another application, or log out of your authentik account.</source>
<target>Has cerrado sesión de <x id="0" equiv-text="${this.challenge.applicationName}"/>. Puede volver a la descripción general para iniciar otra aplicación o cerrar sesión en su cuenta de authentik.</target>
</trans-unit>
<trans-unit id="s3108167b562674e2">
<source>Go back to overview</source>
<target>Volver a la vista general</target>
</trans-unit>
<trans-unit id="sdb749e793de55478">
<source>Log out of <x id="0" equiv-text="${challenge.brandName}"/></source>
<target>Cerrar sesión de <x id="0" equiv-text="${this.challenge.brandName}"/></target>
</trans-unit>
<trans-unit id="s521681ed1d5ff814">
<source>Log back into <x id="0" equiv-text="${challenge.applicationName}"/></source>
<target>Volver a iniciar sesión <x id="0" equiv-text="${this.challenge.applicationName}"/></target>
</trans-unit>
<trans-unit id="s78869b8b2bc26d0d">
<source>SAML Provider</source>
</trans-unit>
<trans-unit id="sca83a1f9227f74b9">
<source>SAML logout complete</source>
</trans-unit>
<trans-unit id="s7b90eab7969ae056">
<source>Redirecting to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s3e6174b645d96835">
<source>Posting logout request to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s0b1ffff8bedd6b8a">
<source>Unknown Provider</source>
</trans-unit>
<trans-unit id="s777e86d562523c85">
<source>Logging out of providers...</source>
</trans-unit>
<trans-unit id="s4980379bf8461c2d">
<source>Single Logout</source>
</trans-unit>
<trans-unit id="s3736936aac1adc2e">
<source>Open flow inspector</source>
</trans-unit>
<trans-unit id="sa17ce23517e56461">
<source>Authentication form</source>
</trans-unit>
<trans-unit id="s7fa4e5e409d43573">
<source>Error creating credential: <x id="0" equiv-text="${err}"/></source>
<target>Error al crear la credencial:
<x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="s9d95f09deb601f34">
<source>Server validation of credential failed: <x id="0" equiv-text="${err}"/></source>
<target>La validación del servidor de la credencial falló:
<x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="sb0821a9e92cac5eb">
<source>Failed to register. Please try again.</source>
<target>Error al registrarse. Por favor, inténtalo de nuevo.</target>
</trans-unit>
<trans-unit id="s238784fc1dc672ae">
<source>Registering...</source>
<target>Registrando...</target>
</trans-unit>
<trans-unit id="s009bd1c98a9f5de2">
<source>Failed to register</source>
<target>No se pudo registrar</target>
</trans-unit>
<trans-unit id="sb166ce92e8e807d6">
<source>Retry registration</source>
<target>Reintentar registro</target>
</trans-unit>
<trans-unit id="s95094b57684716a5">
<source>Failed to validate device.</source>
</trans-unit>
<trans-unit id="se99d25eb70c767ef">
<source>Verifying your device...</source>
</trans-unit>
<trans-unit id="s1af2337b6d11d4c6">
<source>Data export ready</source>
</trans-unit>
<trans-unit id="en-XA">
<source>English (Pseudo-Accents)</source>
</trans-unit>
<trans-unit id="avatar.alt-text-for-user">
<source>Avatar for <x id="0" equiv-text="${this.username}"/></source>
</trans-unit>
<trans-unit id="avatar.alt-text">
<source>User avatar</source>
</trans-unit>
<trans-unit id="flow.navigation.go-back">
<source>Go back</source>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent-to-address">
<source>A verification token has been sent to your configured email address: <x id="0" equiv-text="${email}"/></source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's configured email address.</note>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent">
<source>A verification token has been sent to your email address.</source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's email address.</note>
</trans-unit>
<trans-unit id="scd909e0bc55fc548">
<source>Security key</source>
</trans-unit>
<trans-unit id="sd0de938d9c37ad5f">
<source>Use a Passkey or security key to prove your identity.</source>
</trans-unit>
<trans-unit id="sb94beab52540d2b7">
<source>The CAPTCHA challenge failed to load.</source>
</trans-unit>
<trans-unit id="s217a96c47caaf73d">
<source>Could not find a suitable CAPTCHA provider.</source>
</trans-unit>
<trans-unit id="sdf2794b96386c868">
<source>Copy time-based one-time password secret</source>
</trans-unit>
<trans-unit id="sc78d16417878afd0">
<source>Copy Secret</source>
</trans-unit>
<trans-unit id="clipboard.write.success.message.entity">
<source><x id="0" equiv-text="${entityLabel}"/> copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.success.generic">
<source>Copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.failure.description">
<source>Clipboard not available. Please copy the value manually.</source>
</trans-unit>
<trans-unit id="totp.config">
<source>TOTP Config</source>
</trans-unit>
<trans-unit id="totp.config.clipboard.description">
<source>Paste this URL into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="totp.secret">
<source>TOTP Secret</source>
</trans-unit>
<trans-unit id="totp.secret.clipboard.description">
<source>Paste this secret into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="s92e22f9319fdb85d">
<source>Configuration warning</source>
</trans-unit>
<trans-unit id="saa088a2d0f90d5a9">
<source>Posting logout response to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s776d93092ad9ce90">
<source>Review initiated</source>
</trans-unit>
<trans-unit id="sad46bcad1a343b51">
<source>Review overdue</source>
</trans-unit>
<trans-unit id="s59d168d966cecbaf">
<source>Review attested</source>
</trans-unit>
<trans-unit id="s5158b7f014cecefc">
<source>Review completed</source>
</trans-unit>
<trans-unit id="sdd2ea73c24b40d5d">
<source>Site footer</source>
</trans-unit>
<trans-unit id="sf910cca0f06bbc31">
<source>Enter the email address or username associated with your account.</source>
</trans-unit>
<trans-unit id="s6e858c4c4c3b6b76">
<source>You're about to be redirected to the following URL.</source>
</trans-unit>
<trans-unit id="sd5d2b94a1ccba1a9">
<source>Log in to continue to <x id="0" equiv-text="${prelude}"/>.</source>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,925 @@
<?xml version="1.0"?><xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file target-language="fi-FI" source-language="en" original="lit-localize-inputs" datatype="plaintext">
<body>
<!-- #region Locales -->
<trans-unit id="en">
<source>English</source>
<target>Englanti</target>
</trans-unit>
<trans-unit id="ja-JP">
<source>Japanese</source>
<target>Japani</target>
</trans-unit>
<trans-unit id="ko-KR">
<source>Korean</source>
<target>Korea</target>
</trans-unit>
<trans-unit id="zh-Hans">
<source>Chinese (Simplified)</source>
<target>Kiina</target>
</trans-unit>
<trans-unit id="zh-Hant">
<source>Chinese (Traditional)</source>
<target>Kiina</target>
</trans-unit>
<!-- #endregion -->
<!-- #region Locale selector -->
<trans-unit id="locale-auto-detect-option">
<source>Auto-detect</source>
<target>Tunnista automaattisesti</target>
<note from="lit-localize">Label for the auto-detect locale option in language selection dropdown</note>
</trans-unit>
<trans-unit id="language-selector-label">
<source>Select language</source>
<target>Valitse kieli</target>
<note from="lit-localize">Label for the language selection dropdown</note>
</trans-unit>
<trans-unit id="locale-option-localized-label">
<source><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</source>
<note from="lit-localize">Locale option label showing the localized language name along with the native language name in parentheses.</note>
</trans-unit>
<!-- #endregion -->
<trans-unit id="s12d6dde9b30c3093">
<source>Dismiss</source>
<target>Sulje</target>
</trans-unit>
<trans-unit id="sfe629863ba1338c2">
<source>Connection error, reconnecting...</source>
<target>Yhteysvirhe, yhdistetään uudelleen...</target>
</trans-unit>
<trans-unit id="sdaecc3c29a27c5c5">
<source>An unknown error occurred</source>
<target>Tapahtui tuntematon virhe</target>
</trans-unit>
<trans-unit id="se84ba7f105934495">
<source>Please check the browser console for more details.</source>
<target>Katso lisätietoja selaimen konsolista.</target>
</trans-unit>
<trans-unit id="sdea479482318489d">
<source>Status messages</source>
<target>Tilaviestit</target>
</trans-unit>
<trans-unit id="s91ae4b6bf981682b">
<source>authentik Logo</source>
<target>authentik Logo</target>
</trans-unit>
<trans-unit id="s49730f3d5751a433">
<source>Loading...</source>
<target>Lataa...</target>
</trans-unit>
<trans-unit id="sa50a6326530d8a0d">
<source>Show less</source>
<target>Näytä vähemmän</target>
</trans-unit>
<trans-unit id="sb2c57b2d347203dd">
<source>Show more</source>
<target>Näytä enemmän</target>
</trans-unit>
<trans-unit id="sa48f81f001b893d2">
<source>User</source>
<target>Käyttäjä</target>
</trans-unit>
<trans-unit id="sb59d68ed12d46377">
<source>Loading</source>
<target>Ladataan</target>
</trans-unit>
<trans-unit id="s0382d73823585617">
<source><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></source>
<target>
<x id="0" equiv-text="${this.errorMessage}"/>:
<x id="1" equiv-text="${e.toString()}"/></target>
</trans-unit>
<trans-unit id="sae5d87e99fe081e0">
<source>Required</source>
<target>Pakollinen</target>
</trans-unit>
<trans-unit id="s1cd198d689c66e4b">
<source>API Access</source>
<target>Rajapintapääsy</target>
</trans-unit>
<trans-unit id="sf29883ac9ec43085">
<source>App password</source>
<target>Sovelluksen salasana</target>
</trans-unit>
<trans-unit id="s6ac670086eb137c6">
<source>Recovery</source>
<target>Palautus</target>
</trans-unit>
<trans-unit id="sfe211545fd02f73e">
<source>Verification</source>
<target>Vahvistus</target>
</trans-unit>
<trans-unit id="sd73b202ec04eefd9">
<source>Unknown intent</source>
<target>Tuntematon aikomus</target>
</trans-unit>
<trans-unit id="sc8da3cc71de63832">
<source>Login</source>
<target>Kirjaudu</target>
</trans-unit>
<trans-unit id="sb4564c127ab8b921">
<source>Failed login</source>
<target>Kirjautuminen epäonnistui</target>
</trans-unit>
<trans-unit id="s67749057edb2586b">
<source>Logout</source>
<target>Kirjaudu ulos</target>
</trans-unit>
<trans-unit id="s7e537ad68d7c16e1">
<source>User was written to</source>
<target>Käyttäjä kirjoitettiin</target>
</trans-unit>
<trans-unit id="sa0e0bdd7e244416b">
<source>Suspicious request</source>
<target>Epäilyttävä pyyntö</target>
</trans-unit>
<trans-unit id="s7bda44013984fc48">
<source>Password set</source>
<target>Salasana asetettu</target>
</trans-unit>
<trans-unit id="sa1b41e334ad89d94">
<source>Secret was viewed</source>
<target>Salaisuus katsottiin</target>
</trans-unit>
<trans-unit id="s92ca679592a36b35">
<source>Secret was rotated</source>
<target>Salaisuus kierrätettiin</target>
</trans-unit>
<trans-unit id="s8a1d9403ca90989b">
<source>Invitation used</source>
<target>Kutsua käytetty</target>
</trans-unit>
<trans-unit id="s5f496533610103f2">
<source>Application authorized</source>
<target>Sovellus valtuutettu</target>
</trans-unit>
<trans-unit id="sdc9e222be9612939">
<source>Source linked</source>
<target>Lähde yhdistetty</target>
</trans-unit>
<trans-unit id="sb1c91762ae3a9bee">
<source>Impersonation started</source>
<target>Toisena käyttäjänä esiintyminen aloitettu</target>
</trans-unit>
<trans-unit id="s9c73bd29b279d26b">
<source>Impersonation ended</source>
<target>Toisena käyttäjänä esiintyminen lopetettu</target>
</trans-unit>
<trans-unit id="s1cd264012278c047">
<source>Flow execution</source>
<target>Prosessin suoritus</target>
</trans-unit>
<trans-unit id="s32f04d33924ce8ad">
<source>Policy execution</source>
<target>Käytännön suoritus</target>
</trans-unit>
<trans-unit id="sb6d7128df5978cee">
<source>Policy exception</source>
<target>Käytännön virhe</target>
</trans-unit>
<trans-unit id="s77f572257f69a8db">
<source>Property Mapping exception</source>
<target>Ominaisuuskytkennän virhe</target>
</trans-unit>
<trans-unit id="s2543cffd6ebb6803">
<source>System task execution</source>
<target>Järjestelmän tehtävän suoritus</target>
</trans-unit>
<trans-unit id="se2f258b996f7279c">
<source>System task exception</source>
<target>Järjestelmän tehtävän virhe</target>
</trans-unit>
<trans-unit id="s81eff3409d572a21">
<source>General system exception</source>
<target>Yleinen järjestelmävirhe</target>
</trans-unit>
<trans-unit id="sf8f49cdbf0036343">
<source>Configuration error</source>
<target>Konfiguraatiovirhe</target>
</trans-unit>
<trans-unit id="s9c6f61dc47bc4f0a">
<source>Model created</source>
<target>Malli luotu</target>
</trans-unit>
<trans-unit id="s47a4983a2c6bb749">
<source>Model updated</source>
<target>Malli päivitetty</target>
</trans-unit>
<trans-unit id="sc9f69360b58706c7">
<source>Model deleted</source>
<target>Malli poistettu</target>
</trans-unit>
<trans-unit id="sa266303caf1bd27f">
<source>Email sent</source>
<target>Sähköposti lähetetty</target>
</trans-unit>
<trans-unit id="s6c410fedda2a575f">
<source>Update available</source>
<target>Päivitys saatavilla</target>
</trans-unit>
<trans-unit id="sf1ec4acb8d744ed9">
<source>Alert</source>
<target>Hälytys</target>
</trans-unit>
<trans-unit id="s9117fb5195e75151">
<source>Notice</source>
<target>Huomio</target>
</trans-unit>
<trans-unit id="s34be76c6b1eadbef">
<source>Warning</source>
<target>Varoitus</target>
</trans-unit>
<trans-unit id="s02240309358f557c">
<source>Unknown severity</source>
<target>Tuntematon vakavuusaste</target>
</trans-unit>
<trans-unit id="s858e7ac4b3cf955f">
<source>Static tokens</source>
<target>Staattiset tunnisteet</target>
</trans-unit>
<trans-unit id="sfcfcf85a57eea78a">
<source>TOTP Device</source>
<target>TOTP-laite</target>
</trans-unit>
<trans-unit id="s482bc55a78891ef7">
<source>A code has been sent to your address: <x id="0" equiv-text="${email}"/></source>
<target>Koodi on lähetetty osoitteeseesi: <x id="0" equiv-text="${email}"/></target>
</trans-unit>
<trans-unit id="s5afa3fc77ce8d94d">
<source>A code has been sent to your email address.</source>
<target>Koodi on lähetetty sähköpostiosoitteeseesi.</target>
</trans-unit>
<trans-unit id="s37f47fa981493c3b">
<source>A one-time use code has been sent to you via SMS text message.</source>
<target>Kertakäyttöinen koodi on lähetetty sinulle tekstiviestinä.</target>
</trans-unit>
<trans-unit id="sc92a7248dba5f388">
<source>Open your authenticator app to retrieve a one-time use code.</source>
<target>Avaa todennussovellus hakeaksesi kertakäyttöisen koodin.</target>
</trans-unit>
<trans-unit id="s21d95b4651ad7a1e">
<source>Enter a one-time recovery code for this user.</source>
<target>Kirjoita kertakäyttöinen palautuskoodi tälle käyttäjälle.</target>
</trans-unit>
<trans-unit id="s2e1d5a7d320c25ef">
<source>Enter the code from your authenticator device.</source>
<target>Kirjoita koodi todentajalaitteeltasi.</target>
</trans-unit>
<trans-unit id="se2d65e13768468e0">
<source>Internal</source>
<target>Sisäinen</target>
</trans-unit>
<trans-unit id="s84fcddede27b8e2a">
<source>External</source>
<target>Ulkoinen</target>
</trans-unit>
<trans-unit id="s1a635369edaf4dc3">
<source>Service account</source>
<target>Palvelutili</target>
</trans-unit>
<trans-unit id="sff930bf2834e2201">
<source>Service account (internal)</source>
<target>Palvelutili (sisäinen)</target>
</trans-unit>
<trans-unit id="scb489a1a173ac3f0">
<source>Yes</source>
<target>Kyllä</target>
</trans-unit>
<trans-unit id="s09205907b5b56cda">
<source>No</source>
<target>Ei</target>
</trans-unit>
<trans-unit id="s7f073c746d0f6324">
<source>Form actions</source>
<target>Lomakkeen toiminnot</target>
</trans-unit>
<trans-unit id="s98b1cb8fb62909ec">
<source>Group</source>
<target>Ryhmä</target>
</trans-unit>
<trans-unit id="s2e422519ed38f7d8">
<source>Pass</source>
<target>Päästä läpi</target>
</trans-unit>
<trans-unit id="sac315d5bd28d4efa">
<source>Don't Pass</source>
<target>Estä</target>
</trans-unit>
<trans-unit id="s042baf59902a711f">
<source>Policy</source>
<target>Käytäntö</target>
</trans-unit>
<trans-unit id="sd8f220c999726151">
<source>Redirect</source>
<target>Uudelleenohjaa</target>
</trans-unit>
<trans-unit id="s03f42eea72154959">
<source>Username</source>
<target>Käyttäjätunnus</target>
</trans-unit>
<trans-unit id="s5f5bf4ef2bd93c04">
<source>Group mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Ryhmien kytkennät voidaan tarkistaa vain jos käyttäjä on jo kirjautunut yrittäessään käyttää tätä lähdettä.</target>
</trans-unit>
<trans-unit id="s6c607d74bdfe9f36">
<source>User mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Käyttäjien kytkennät voidaan tarkistaa vain jos käyttäjä on jo kirjautunut yrittäessään käyttää tätä lähdettä.</target>
</trans-unit>
<trans-unit id="sf6e1665c7022a1f8">
<source>Password</source>
<target>Salasana</target>
</trans-unit>
<trans-unit id="sd1f44f1a8bc20e67">
<source>Email</source>
<target>Sähköposti</target>
</trans-unit>
<trans-unit id="s8939f574b096054a">
<source>Not you?</source>
<target>Et sinä?</target>
</trans-unit>
<trans-unit id="s296fbffaaa7c910a">
<source>Required.</source>
<target>Pakollinen.</target>
</trans-unit>
<trans-unit id="s81ecf2d4386b8e84">
<source>Continue</source>
<target>Jatka</target>
</trans-unit>
<trans-unit id="s61e48919db20538a">
<source>UPN</source>
<target>UPN</target>
</trans-unit>
<trans-unit id="s67ac11d47f1ce794">
<source>WebAuthn requires this page to be accessed via HTTPS.</source>
<target>WebAuthn edellyttää, että tämä sivu on käytettävissä HTTPS:n yli</target>
</trans-unit>
<trans-unit id="se9e9e1d6799b86a5">
<source>WebAuthn not supported by browser.</source>
<target>Selain ei tue WebAuthn:ää.</target>
</trans-unit>
<trans-unit id="sa4be93eb7f4e51e3">
<source>Site links</source>
<target>Sivuston linkit</target>
</trans-unit>
<trans-unit id="s6fe64b4625517333">
<source>Powered by authentik</source>
<target>Käyttää authentikiä</target>
</trans-unit>
<trans-unit id="sd766cdc29b25ff95">
<source>Authenticating with Apple...</source>
<target>Tunnistaudutaan Applella...</target>
</trans-unit>
<trans-unit id="s2c8189544e3ea679">
<source>Retry</source>
<target>Yritä uudelleen</target>
</trans-unit>
<trans-unit id="s420d2cdedcaf8cd0">
<source>Authenticating with Plex...</source>
<target>Tunnistaudutaan Plexillä...</target>
</trans-unit>
<trans-unit id="s2ddbebcb8a49b005">
<source>Waiting for authentication...</source>
<target>Odotetaan tunnistautumista...</target>
</trans-unit>
<trans-unit id="sb15fe7b9d09bb419">
<source>If no Plex popup opens, click the button below.</source>
<target>Jos Plex-ponnahdusikkuna ei aukea, klikkaa alla olevaa painiketta.</target>
</trans-unit>
<trans-unit id="sbc625b4c669b9ce8">
<source>Open login</source>
<target>Avaa kirjautuminen</target>
</trans-unit>
<trans-unit id="sf376ae7e9ef41c1a">
<source>Authenticating with Telegram...</source>
<target>Todennetaan Telegramilla...</target>
</trans-unit>
<trans-unit id="s76ea993fdc8503d8">
<source>Click the button below to start.</source>
<target>Napauta alla olevaa painiketta aloittaaksesi.</target>
</trans-unit>
<trans-unit id="s15d6fabebb4ef2d8">
<source>User information</source>
<target>Käyttäjän tiedot</target>
</trans-unit>
<trans-unit id="s9bd9ba84819493d4">
<source>Something went wrong! Please try again later.</source>
<target>Jokin meni pieleen! Yritä myöhemmin uudelleen.</target>
</trans-unit>
<trans-unit id="s4090dd0c0e45988b">
<source>Request ID</source>
<target>Pyynnön ID</target>
</trans-unit>
<trans-unit id="s4d7fe7be1c49896c">
<source>You may close this page now.</source>
<target>Voit sulkea tämän sivun nyt.</target>
</trans-unit>
<trans-unit id="s197420b40df164f8">
<source>Follow redirect</source>
<target>Seuraa uudelleenohjausta</target>
</trans-unit>
<trans-unit id="s3ab772345f78aee0">
<source>Flow inspector</source>
<target>Prosessin tarkastaja</target>
</trans-unit>
<trans-unit id="sb69e43f2f6bd1b54">
<source>Close flow inspector</source>
<target>Sulje prosessin tarkastaja</target>
</trans-unit>
<trans-unit id="s502884e1977b2c06">
<source>Next stage</source>
<target>Seuraava vaihe</target>
</trans-unit>
<trans-unit id="sb3fa80ccfa97ee54">
<source>Stage name</source>
<target>Vaiheen nimi</target>
</trans-unit>
<trans-unit id="sbea3c1e4f2fd623d">
<source>Stage kind</source>
<target>Vaiheen tyyppi</target>
</trans-unit>
<trans-unit id="s2bc8aa1740d3da34">
<source>Stage object</source>
<target>Vaiheobjekti</target>
</trans-unit>
<trans-unit id="sc3e1c4f1fff8e1ca">
<source>This flow is completed.</source>
<target>Tämä prosessi on suoritettu.</target>
</trans-unit>
<trans-unit id="s342eccabf83c9bde">
<source>Plan history</source>
<target>Suunnitelman historia</target>
</trans-unit>
<trans-unit id="sb2f307e79d20bb56">
<source>Current plan context</source>
<target>Tämänhetkinen suunnitelman konteksti</target>
</trans-unit>
<trans-unit id="sa13e6c8310000e30">
<source>Session ID</source>
<target>Istunnon ID</target>
</trans-unit>
<trans-unit id="s857cf5aa8955cf5c">
<source>Flow inspector loading</source>
<target>Prosessin tarkastajaa ladataan</target>
</trans-unit>
<trans-unit id="sa11e92683c5860c7">
<source>Request has been denied.</source>
<target>Pyyntö on estetty.</target>
</trans-unit>
<trans-unit id="s2f7f35f6a5b733f5">
<source>Show password</source>
<target>Näytä salasana</target>
</trans-unit>
<trans-unit id="s452f791e0ff6a13e">
<source>Hide password</source>
<target>Piilota salasana</target>
</trans-unit>
<trans-unit id="scf5ce91bfba10a61">
<source>Please enter your password</source>
<target>Kirjoita salasanasi</target>
</trans-unit>
<trans-unit id="s6bb30c61df4cf486">
<source>Caps Lock is enabled.</source>
<target>Caps Lock on päällä.</target>
</trans-unit>
<trans-unit id="s8d6236ad153d42c0">
<source>CAPTCHA challenge</source>
<target>CAPTCHA-haaste</target>
</trans-unit>
<trans-unit id="s30d6ff9e15e0a40a">
<source>Verifying...</source>
<target>Vahvistetaan...</target>
</trans-unit>
<trans-unit id="s1c336c2d6cef77b3">
<source>Remember me on this device</source>
<target>Muista minut tällä laitteella</target>
</trans-unit>
<trans-unit id="seb6ab868740e4e36">
<source>Continue with <x id="0" equiv-text="${name}"/></source>
</trans-unit>
<trans-unit id="sc4eedb434536bdb4">
<source>Need an account?</source>
<target>Tarvitsetko tilin?</target>
</trans-unit>
<trans-unit id="s38f774cd7e9b9dad">
<source>Sign up.</source>
<target>Luo tunnus.</target>
</trans-unit>
<trans-unit id="sa03aa46068460c95">
<source>Forgot username or password?</source>
<target>Unohditko käyttäjätunnuksesi tai salasanasi?</target>
</trans-unit>
<trans-unit id="s05a941e4b4bfca9f">
<source>Additional actions</source>
</trans-unit>
<trans-unit id="s6ecfc18dbfeedd76">
<source>Select one of the options below to continue.</source>
<target>Valitse yksi alla olevista vaihtoehdoista jatkaaksesi.</target>
</trans-unit>
<trans-unit id="s091d5407b5b32e84">
<source>Or</source>
<target>Tai</target>
</trans-unit>
<trans-unit id="se5fd752dbbc3cd28">
<source>Use a security key</source>
<target>Käytä turva-avainta</target>
</trans-unit>
<trans-unit id="s53dddf1733e26c98">
<source>Login sources</source>
</trans-unit>
<trans-unit id="s85366fac18679f28">
<source>Forgot password?</source>
<target>Unohditko salasanasi?</target>
</trans-unit>
<trans-unit id="s14c552fb0a4c0186">
<source>Application requires following permissions:</source>
<target>Sovellus tarvitsee seuraavat käyttöoikeudet:</target>
</trans-unit>
<trans-unit id="s7073489bb01b3c24">
<source>Application already has access to the following permissions:</source>
<target>Sovelluksella on jo seuraavat käyttöoikeudet:</target>
</trans-unit>
<trans-unit id="s98dc556f8bf707dc">
<source>Application requires following new permissions:</source>
<target>Sovellus tarvitsee seuraavat uudet käyttöoikeudet:</target>
</trans-unit>
<trans-unit id="s06bfe45ffef2cf60">
<source>Stage name: <x id="0" equiv-text="${this.challenge?.name}"/></source>
<target>Vaiheen nimi: <x id="0" equiv-text="${this.challenge.name}"/></target>
</trans-unit>
<trans-unit id="sbd19064fc3f405c1">
<source>Check your Inbox for a verification email.</source>
<target>Vahvistusviesti löytyy sähköpostistasi.</target>
</trans-unit>
<trans-unit id="s8aff572e64b7936b">
<source>Send Email again.</source>
<target>Lähetä sähköposti uudelleen.</target>
</trans-unit>
<trans-unit id="sc091f75b942ec081">
<source>QR-Code to setup a time-based one-time password</source>
<target>QR-koodi, jolla määritellään aikaperusteinen kertakäyttösalasana</target>
</trans-unit>
<trans-unit id="s6db67c7681b8be6e">
<source>Copy time-based one-time password configuration</source>
<target>Kopioi aikaperusteisen kertakäyttösalasanan konfiguraatio</target>
</trans-unit>
<trans-unit id="s43e859bf711e3599">
<source>Copy TOTP Config</source>
<target>Kopioi TOTP-konfiguraatio</target>
</trans-unit>
<trans-unit id="s90064dd5c4dde2c6">
<source>Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.</source>
<target>Skannaa yllä oleva QR-koodi Microsoft Authenticatorilla, Google Authenticatorilla tai jollakin muulla laitteeltasi löytyvällä todentajasovelluksella, ja syötä koodi, jonka laite näyttää alla olevaan kenttään suorittaaksesi MFA-laitteen asennuksen loppuun.</target>
</trans-unit>
<trans-unit id="sa5562e0115ffbccd">
<source>Time-based one-time password</source>
<target>Aikaperusteinen kertakäyttösalasana</target>
</trans-unit>
<trans-unit id="s40f44c0d88807fd5">
<source>TOTP Code</source>
<target>TOTP-koodi</target>
</trans-unit>
<trans-unit id="s95474cc8c73dd9c0">
<source>Type your TOTP code...</source>
<target>Kirjoita TOTP-koodisi...</target>
</trans-unit>
<trans-unit id="s168d0c138b63286d">
<source>Type your time-based one-time password code.</source>
<target>Kirjoita aikaperusteinen kertakäyttösalasanasi.</target>
</trans-unit>
<trans-unit id="sc2ec367e3108fe65">
<source>Duo activation QR code</source>
<target>Duo-aktivoinnin QR-koodi</target>
</trans-unit>
<trans-unit id="sc5668cb23167e9bb">
<source>Alternatively, if your current device has Duo installed, click on this link:</source>
<target>Vaihtoehtoisesti, jos Duo on asennettu tälle laitteelle, klikkaa tätä linkkiä:</target>
</trans-unit>
<trans-unit id="s721d94ae700b5dfd">
<source>Duo activation</source>
<target>Duo-aktivointi</target>
</trans-unit>
<trans-unit id="s708d9a4a0db0be8f">
<source>Check status</source>
<target>Tarkista tila</target>
</trans-unit>
<trans-unit id="s31fba571065f2c87">
<source>Make sure to keep these tokens in a safe place.</source>
<target>Pidä nämä tunnisteet turvallisessa paikassa.</target>
</trans-unit>
<trans-unit id="s3f8a07912545e72e">
<source>Configure your email</source>
<target>Määritä sähköpostisi</target>
</trans-unit>
<trans-unit id="scedf77e8b75cad5a">
<source>Please enter your email address.</source>
<target>Kirjoita sähköpostiosoitteesi.</target>
</trans-unit>
<trans-unit id="s3643189d1abbb7f4">
<source>Code</source>
<target>Koodi</target>
</trans-unit>
<trans-unit id="s7cdd62c100b6b17b">
<source>Please enter the code you received via email</source>
<target>Kirjoita koodi, jonka sait sähköpostilla</target>
</trans-unit>
<trans-unit id="sc0a0c87d5c556c38">
<source>Phone number</source>
<target>Puhelinnumero</target>
</trans-unit>
<trans-unit id="s04c1210202f48dc9">
<source>Please enter your Phone number.</source>
<target>Kirjoita puhelinnumerosi.</target>
</trans-unit>
<trans-unit id="seb0c08d9f233bbfe">
<source>Please enter the code you received via SMS</source>
<target>Kirjoita koodi, jonka sait tekstiviestinä</target>
</trans-unit>
<trans-unit id="s98bb2ae796f1ceef">
<source>Select another authentication method</source>
<target>Valitse toinen tunnistautumistapa</target>
</trans-unit>
<trans-unit id="s844fea0bfb10a72a">
<source>Authentication code</source>
<target>Todennuskoodi</target>
</trans-unit>
<trans-unit id="s7abc9d08b0f70fd6">
<source>Static token</source>
<target>Staattinen tunniste</target>
</trans-unit>
<trans-unit id="s14e8ac4d377a1a99">
<source>Type an authentication code...</source>
<target>Kirjoita todennuskoodi...</target>
</trans-unit>
<trans-unit id="s39002897db60bb28">
<source>Sending Duo push notification...</source>
<target>Lähetetään Duo-push-notifikaatiota...</target>
</trans-unit>
<trans-unit id="sd2b8c1caa0340ed6">
<source>Failed to authenticate</source>
<target>Tunnistautuminen epäonnistui</target>
</trans-unit>
<trans-unit id="s363abde8a254ea5f">
<source>Authentication failed. Please try again.</source>
<target>Tunnistautuminen epäonnistui. Yritä uudelleen.</target>
</trans-unit>
<trans-unit id="sffef1a8596bc58bb">
<source>Authenticating...</source>
<target>Tunnistaudutaan...</target>
</trans-unit>
<trans-unit id="se409d01b52c4e12f">
<source>Retry authentication</source>
<target>Yritä tunnistautumista uudelleen</target>
</trans-unit>
<trans-unit id="s8d857061510fe794">
<source>Duo push-notifications</source>
<target>Duo:n push-notifikaatiot</target>
</trans-unit>
<trans-unit id="s47490298c17b753a">
<source>Receive a push notification on your device.</source>
<target>Vastaanota push-notifikaatio laitteellasi.</target>
</trans-unit>
<trans-unit id="sd6a025d66f2637d1">
<source>Traditional authenticator</source>
<target>Perinteinen todentaja</target>
</trans-unit>
<trans-unit id="sb25e689e00c61829">
<source>Use a code-based authenticator.</source>
<target>Käytä koodipohjaista todentajaa</target>
</trans-unit>
<trans-unit id="s9e568afec3810bfe">
<source>Recovery keys</source>
<target>Palautusavaimet</target>
</trans-unit>
<trans-unit id="s8bb0a1b672b52954">
<source>In case you lose access to your primary authenticators.</source>
<target>Siltä varalta, että menetät pääsyn ensisijaisiin todentajiisi.</target>
</trans-unit>
<trans-unit id="s97f2dc19fa556a6a">
<source>SMS</source>
<target>SMS</target>
</trans-unit>
<trans-unit id="s0e516232f2ab4e04">
<source>Tokens sent via SMS.</source>
<target>Tunnisteet lähetetty tekstiviestinä.</target>
</trans-unit>
<trans-unit id="s833cfe815918c143">
<source>Tokens sent via email.</source>
<target>Tunnisteet lähetetty sähköpostina.</target>
</trans-unit>
<trans-unit id="s76d21e163887ddd1">
<source>Unknown device</source>
<target>Tuntematon laite</target>
</trans-unit>
<trans-unit id="sf0ceaf3116e31fd4">
<source>An unknown device class was provided.</source>
<target>Tuntematon laiteluokka annettiin.</target>
</trans-unit>
<trans-unit id="s610fced3957d0471">
<source>Select an authentication method</source>
<target>Valitse todennustapa</target>
</trans-unit>
<trans-unit id="s958cedec1cb3fc52">
<source>Select a configuration stage</source>
<target>Valitse konfiguraatiovaihe</target>
</trans-unit>
<trans-unit id="sac17f177f884e238">
<source>Stay signed in?</source>
<target>Pysy sisäänkirjautuneena?</target>
</trans-unit>
<trans-unit id="s859b2e00391da380">
<source>Select Yes to reduce the number of times you're asked to sign in.</source>
<target>Valitse kyllä vähentääksesi sitä, kuinka usein sinua pyydetään kirjautumaan sisään.</target>
</trans-unit>
<trans-unit id="s23da7320dee28a60">
<source>Device Code</source>
<target>Laitekoodi</target>
</trans-unit>
<trans-unit id="s3cd84e82e83e35ad">
<source>Please enter your code</source>
<target>Kirjoita koodisi</target>
</trans-unit>
<trans-unit id="s455a8fc21077e7f9">
<source>You've successfully authenticated your device.</source>
<target>Olet tunnistautunut laitteellasi.</target>
</trans-unit>
<trans-unit id="sac88482c48453fc8">
<source>You've logged out of <x id="0" equiv-text="${challenge.applicationName}"/>. You can go back to the overview to launch another application, or log out of your authentik account.</source>
<target>Olet kirjautunut ulos palvelusta <x id="0" equiv-text="${this.challenge.applicationName}"/>. Voit palata yleisnäkymään käynnistääksesi jonkun toisen sovelluksen, tai voit kirjautu ulos authentik-tililtäsi.</target>
</trans-unit>
<trans-unit id="s3108167b562674e2">
<source>Go back to overview</source>
<target>Palaa yleisnäkymään</target>
</trans-unit>
<trans-unit id="sdb749e793de55478">
<source>Log out of <x id="0" equiv-text="${challenge.brandName}"/></source>
<target>Kirjaudu ulos palvelusta <x id="0" equiv-text="${this.challenge.brandName}"/></target>
</trans-unit>
<trans-unit id="s521681ed1d5ff814">
<source>Log back into <x id="0" equiv-text="${challenge.applicationName}"/></source>
<target>Kirjaudu takaisin palveluun <x id="0" equiv-text="${this.challenge.applicationName}"/></target>
</trans-unit>
<trans-unit id="s78869b8b2bc26d0d">
<source>SAML Provider</source>
<target>SAML-palveluntarjoaja</target>
</trans-unit>
<trans-unit id="sca83a1f9227f74b9">
<source>SAML logout complete</source>
<target>SAML-uloskirjautuminen valmis</target>
</trans-unit>
<trans-unit id="s7b90eab7969ae056">
<source>Redirecting to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
<target>Ohjataan SAML-palveluntarjoajaan: <x id="0" equiv-text="${providerName}"/></target>
</trans-unit>
<trans-unit id="s3e6174b645d96835">
<source>Posting logout request to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
<target>Uloskirjautumispyyntö lähetetään SAML-palveluntarjoajalle: <x id="0" equiv-text="${providerName}"/></target>
</trans-unit>
<trans-unit id="s0b1ffff8bedd6b8a">
<source>Unknown Provider</source>
<target>Tuntematon palveluntarjoaja</target>
</trans-unit>
<trans-unit id="s777e86d562523c85">
<source>Logging out of providers...</source>
<target>Kirjaudutaan ulos palveluntarjoajilta...</target>
</trans-unit>
<trans-unit id="s4980379bf8461c2d">
<source>Single Logout</source>
<target>Kertauloskirjautuminen</target>
</trans-unit>
<trans-unit id="s3736936aac1adc2e">
<source>Open flow inspector</source>
<target>Avaa prosessin tarkastaja</target>
</trans-unit>
<trans-unit id="sa17ce23517e56461">
<source>Authentication form</source>
<target>Todennuslomake</target>
</trans-unit>
<trans-unit id="s7fa4e5e409d43573">
<source>Error creating credential: <x id="0" equiv-text="${err}"/></source>
<target>Valtuutuksen luonti epäonnistui:
<x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="s9d95f09deb601f34">
<source>Server validation of credential failed: <x id="0" equiv-text="${err}"/></source>
<target>Valtuutuksen palvelintarkastus epäonnistui:
<x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="sb0821a9e92cac5eb">
<source>Failed to register. Please try again.</source>
<target>Rekisteröityminen epäonnistui. Yritä uudelleen.</target>
</trans-unit>
<trans-unit id="s238784fc1dc672ae">
<source>Registering...</source>
<target>Rekisteröidään...</target>
</trans-unit>
<trans-unit id="s009bd1c98a9f5de2">
<source>Failed to register</source>
<target>Rekisteröityminen epäonnistui</target>
</trans-unit>
<trans-unit id="sb166ce92e8e807d6">
<source>Retry registration</source>
<target>Yritä rekisteröitymistä uudelleen</target>
</trans-unit>
<trans-unit id="s95094b57684716a5">
<source>Failed to validate device.</source>
</trans-unit>
<trans-unit id="se99d25eb70c767ef">
<source>Verifying your device...</source>
</trans-unit>
<trans-unit id="s1af2337b6d11d4c6">
<source>Data export ready</source>
</trans-unit>
<trans-unit id="en-XA">
<source>English (Pseudo-Accents)</source>
</trans-unit>
<trans-unit id="avatar.alt-text-for-user">
<source>Avatar for <x id="0" equiv-text="${this.username}"/></source>
</trans-unit>
<trans-unit id="avatar.alt-text">
<source>User avatar</source>
</trans-unit>
<trans-unit id="flow.navigation.go-back">
<source>Go back</source>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent-to-address">
<source>A verification token has been sent to your configured email address: <x id="0" equiv-text="${email}"/></source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's configured email address.</note>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent">
<source>A verification token has been sent to your email address.</source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's email address.</note>
</trans-unit>
<trans-unit id="scd909e0bc55fc548">
<source>Security key</source>
</trans-unit>
<trans-unit id="sd0de938d9c37ad5f">
<source>Use a Passkey or security key to prove your identity.</source>
</trans-unit>
<trans-unit id="sb94beab52540d2b7">
<source>The CAPTCHA challenge failed to load.</source>
</trans-unit>
<trans-unit id="s217a96c47caaf73d">
<source>Could not find a suitable CAPTCHA provider.</source>
</trans-unit>
<trans-unit id="sdf2794b96386c868">
<source>Copy time-based one-time password secret</source>
</trans-unit>
<trans-unit id="sc78d16417878afd0">
<source>Copy Secret</source>
</trans-unit>
<trans-unit id="clipboard.write.success.message.entity">
<source><x id="0" equiv-text="${entityLabel}"/> copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.success.generic">
<source>Copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.failure.description">
<source>Clipboard not available. Please copy the value manually.</source>
</trans-unit>
<trans-unit id="totp.config">
<source>TOTP Config</source>
</trans-unit>
<trans-unit id="totp.config.clipboard.description">
<source>Paste this URL into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="totp.secret">
<source>TOTP Secret</source>
</trans-unit>
<trans-unit id="totp.secret.clipboard.description">
<source>Paste this secret into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="s92e22f9319fdb85d">
<source>Configuration warning</source>
</trans-unit>
<trans-unit id="saa088a2d0f90d5a9">
<source>Posting logout response to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s776d93092ad9ce90">
<source>Review initiated</source>
</trans-unit>
<trans-unit id="sad46bcad1a343b51">
<source>Review overdue</source>
</trans-unit>
<trans-unit id="s59d168d966cecbaf">
<source>Review attested</source>
</trans-unit>
<trans-unit id="s5158b7f014cecefc">
<source>Review completed</source>
</trans-unit>
<trans-unit id="sdd2ea73c24b40d5d">
<source>Site footer</source>
</trans-unit>
<trans-unit id="sf910cca0f06bbc31">
<source>Enter the email address or username associated with your account.</source>
</trans-unit>
<trans-unit id="s6e858c4c4c3b6b76">
<source>You're about to be redirected to the following URL.</source>
</trans-unit>
<trans-unit id="sd5d2b94a1ccba1a9">
<source>Log in to continue to <x id="0" equiv-text="${prelude}"/>.</source>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,926 @@
<?xml version="1.0"?><xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file target-language="fr-FR" source-language="en" original="lit-localize-inputs" datatype="plaintext">
<body>
<!-- #region Locales -->
<trans-unit id="en">
<source>English</source>
<target>Anglais</target>
</trans-unit>
<trans-unit id="ja-JP">
<source>Japanese</source>
<target>Japonais</target>
</trans-unit>
<trans-unit id="ko-KR">
<source>Korean</source>
<target>Coréen</target>
</trans-unit>
<trans-unit id="zh-Hans">
<source>Chinese (Simplified)</source>
<target>Chinois</target>
</trans-unit>
<trans-unit id="zh-Hant">
<source>Chinese (Traditional)</source>
<target>Chinois</target>
</trans-unit>
<!-- #endregion -->
<!-- #region Locale selector -->
<trans-unit id="locale-auto-detect-option">
<source>Auto-detect</source>
<target>Détection automatique</target>
<note from="lit-localize">Label for the auto-detect locale option in language selection dropdown</note>
</trans-unit>
<trans-unit id="language-selector-label">
<source>Select language</source>
<target>Sélectionner la langue</target>
<note from="lit-localize">Label for the language selection dropdown</note>
</trans-unit>
<trans-unit id="locale-option-localized-label">
<source><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</source>
<note from="lit-localize">Locale option label showing the localized language name along with the native language name in parentheses.</note>
</trans-unit>
<!-- #endregion -->
<trans-unit id="s12d6dde9b30c3093">
<source>Dismiss</source>
<target>Fermer</target>
</trans-unit>
<trans-unit id="sfe629863ba1338c2">
<source>Connection error, reconnecting...</source>
<target>Erreur de connexion, nouvelle tentative...</target>
</trans-unit>
<trans-unit id="sdaecc3c29a27c5c5">
<source>An unknown error occurred</source>
<target>Une erreur inconnue est parvenue</target>
</trans-unit>
<trans-unit id="se84ba7f105934495">
<source>Please check the browser console for more details.</source>
<target>Veuillez consulter la console du navigateur pour plus de détails.</target>
</trans-unit>
<trans-unit id="sdea479482318489d">
<source>Status messages</source>
<target>Messages d'état</target>
</trans-unit>
<trans-unit id="s91ae4b6bf981682b">
<source>authentik Logo</source>
<target>Logo authentik</target>
</trans-unit>
<trans-unit id="s49730f3d5751a433">
<source>Loading...</source>
<target>Chargement en cours...</target>
</trans-unit>
<trans-unit id="sa50a6326530d8a0d">
<source>Show less</source>
<target>Montrer moins</target>
</trans-unit>
<trans-unit id="sb2c57b2d347203dd">
<source>Show more</source>
<target>Montrer plus</target>
</trans-unit>
<trans-unit id="sa48f81f001b893d2">
<source>User</source>
<target>Utilisateur</target>
</trans-unit>
<trans-unit id="sb59d68ed12d46377">
<source>Loading</source>
<target>Chargement en cours</target>
</trans-unit>
<trans-unit id="s0382d73823585617">
<source><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></source>
<target>
<x id="0" equiv-text="${this.errorMessage}"/>:
<x id="1" equiv-text="${e.toString()}"/></target>
</trans-unit>
<trans-unit id="sae5d87e99fe081e0">
<source>Required</source>
<target>Obligatoire</target>
</trans-unit>
<trans-unit id="s1cd198d689c66e4b">
<source>API Access</source>
<target>Accès à l'API</target>
</trans-unit>
<trans-unit id="sf29883ac9ec43085">
<source>App password</source>
<target>Mot de passe de l'App</target>
</trans-unit>
<trans-unit id="s6ac670086eb137c6">
<source>Recovery</source>
<target>Récupération</target>
</trans-unit>
<trans-unit id="sfe211545fd02f73e">
<source>Verification</source>
<target>Vérification</target>
</trans-unit>
<trans-unit id="sd73b202ec04eefd9">
<source>Unknown intent</source>
<target>Intention inconnue</target>
</trans-unit>
<trans-unit id="sc8da3cc71de63832">
<source>Login</source>
<target>Connexion</target>
</trans-unit>
<trans-unit id="sb4564c127ab8b921">
<source>Failed login</source>
<target>Échec de la connexion</target>
</trans-unit>
<trans-unit id="s67749057edb2586b">
<source>Logout</source>
<target>Déconnexion</target>
</trans-unit>
<trans-unit id="s7e537ad68d7c16e1">
<source>User was written to</source>
<target>L'utilisateur a été écrit vers</target>
</trans-unit>
<trans-unit id="sa0e0bdd7e244416b">
<source>Suspicious request</source>
<target>Requête suspecte</target>
</trans-unit>
<trans-unit id="s7bda44013984fc48">
<source>Password set</source>
<target>Mot de passe défini</target>
</trans-unit>
<trans-unit id="sa1b41e334ad89d94">
<source>Secret was viewed</source>
<target>Le secret a été vu</target>
</trans-unit>
<trans-unit id="s92ca679592a36b35">
<source>Secret was rotated</source>
<target>Rotation du secret effectuée</target>
</trans-unit>
<trans-unit id="s8a1d9403ca90989b">
<source>Invitation used</source>
<target>Invitation utilisée</target>
</trans-unit>
<trans-unit id="s5f496533610103f2">
<source>Application authorized</source>
<target>Application autorisé</target>
</trans-unit>
<trans-unit id="sdc9e222be9612939">
<source>Source linked</source>
<target>Source liée</target>
</trans-unit>
<trans-unit id="sb1c91762ae3a9bee">
<source>Impersonation started</source>
<target>Début de l'usurpation d'identité</target>
</trans-unit>
<trans-unit id="s9c73bd29b279d26b">
<source>Impersonation ended</source>
<target>Fin de l'usurpation d'identité</target>
</trans-unit>
<trans-unit id="s1cd264012278c047">
<source>Flow execution</source>
<target>Exécution du flux</target>
</trans-unit>
<trans-unit id="s32f04d33924ce8ad">
<source>Policy execution</source>
<target>Exécution de politique</target>
</trans-unit>
<trans-unit id="sb6d7128df5978cee">
<source>Policy exception</source>
<target>Exception de politique</target>
</trans-unit>
<trans-unit id="s77f572257f69a8db">
<source>Property Mapping exception</source>
<target>Erreur de mappage de propriété</target>
</trans-unit>
<trans-unit id="s2543cffd6ebb6803">
<source>System task execution</source>
<target>Exécution de tâche système</target>
</trans-unit>
<trans-unit id="se2f258b996f7279c">
<source>System task exception</source>
<target>Erreur de tâche système</target>
</trans-unit>
<trans-unit id="s81eff3409d572a21">
<source>General system exception</source>
<target>Exception générale du systèm</target>
</trans-unit>
<trans-unit id="sf8f49cdbf0036343">
<source>Configuration error</source>
<target>Erreur de configuration</target>
</trans-unit>
<trans-unit id="s9c6f61dc47bc4f0a">
<source>Model created</source>
<target>Modèle créé</target>
</trans-unit>
<trans-unit id="s47a4983a2c6bb749">
<source>Model updated</source>
<target>Modèle mis à jour</target>
</trans-unit>
<trans-unit id="sc9f69360b58706c7">
<source>Model deleted</source>
<target>Modèle supprimé</target>
</trans-unit>
<trans-unit id="sa266303caf1bd27f">
<source>Email sent</source>
<target>Courriel envoyé</target>
</trans-unit>
<trans-unit id="s6c410fedda2a575f">
<source>Update available</source>
<target>Mise à jour disponibl</target>
</trans-unit>
<trans-unit id="sf1ec4acb8d744ed9">
<source>Alert</source>
<target>Alerte</target>
</trans-unit>
<trans-unit id="s9117fb5195e75151">
<source>Notice</source>
<target>Note</target>
</trans-unit>
<trans-unit id="s34be76c6b1eadbef">
<source>Warning</source>
<target>Avertissement</target>
</trans-unit>
<trans-unit id="s02240309358f557c">
<source>Unknown severity</source>
<target>Sévérité inconnue</target>
</trans-unit>
<trans-unit id="s858e7ac4b3cf955f">
<source>Static tokens</source>
<target>Jetons statiques</target>
</trans-unit>
<trans-unit id="sfcfcf85a57eea78a">
<source>TOTP Device</source>
<target>Appareil TOTP</target>
</trans-unit>
<trans-unit id="s482bc55a78891ef7">
<source>A code has been sent to your address: <x id="0" equiv-text="${email}"/></source>
<target>Un code a été envoyé à votre adresse : <x id="0" equiv-text="${email}"/></target>
</trans-unit>
<trans-unit id="s5afa3fc77ce8d94d">
<source>A code has been sent to your email address.</source>
<target>Un code a été envoyé à votre adresse courriel.</target>
</trans-unit>
<trans-unit id="s37f47fa981493c3b">
<source>A one-time use code has been sent to you via SMS text message.</source>
<target>Un code à usage unique vous a été envoyé par SMS.</target>
</trans-unit>
<trans-unit id="sc92a7248dba5f388">
<source>Open your authenticator app to retrieve a one-time use code.</source>
<target>Ouvrez votre application d'authentification à deux facteurs pour récupérer votre code à usage unique.</target>
</trans-unit>
<trans-unit id="s21d95b4651ad7a1e">
<source>Enter a one-time recovery code for this user.</source>
<target>Entrer un code de récupération à usage unique pour cette utilisateur.</target>
</trans-unit>
<trans-unit id="s2e1d5a7d320c25ef">
<source>Enter the code from your authenticator device.</source>
<target>Entrer le code sur votre appareil d'authentification.</target>
</trans-unit>
<trans-unit id="se2d65e13768468e0">
<source>Internal</source>
<target>Interne</target>
</trans-unit>
<trans-unit id="s84fcddede27b8e2a">
<source>External</source>
<target>Externe</target>
</trans-unit>
<trans-unit id="s1a635369edaf4dc3">
<source>Service account</source>
<target>Compte de service</target>
</trans-unit>
<trans-unit id="sff930bf2834e2201">
<source>Service account (internal)</source>
<target>Compte de service (interne)</target>
</trans-unit>
<trans-unit id="scb489a1a173ac3f0">
<source>Yes</source>
<target>Oui</target>
</trans-unit>
<trans-unit id="s09205907b5b56cda">
<source>No</source>
<target>Non</target>
</trans-unit>
<trans-unit id="s7f073c746d0f6324">
<source>Form actions</source>
<target>Actions du formulaire</target>
</trans-unit>
<trans-unit id="s98b1cb8fb62909ec">
<source>Group</source>
<target>Group</target>
</trans-unit>
<trans-unit id="s2e422519ed38f7d8">
<source>Pass</source>
<target>Réussir</target>
</trans-unit>
<trans-unit id="sac315d5bd28d4efa">
<source>Don't Pass</source>
<target>Échouer</target>
</trans-unit>
<trans-unit id="s042baf59902a711f">
<source>Policy</source>
<target>Politique</target>
</trans-unit>
<trans-unit id="sd8f220c999726151">
<source>Redirect</source>
<target>Redirection</target>
</trans-unit>
<trans-unit id="s03f42eea72154959">
<source>Username</source>
<target>Nom d'utilisateur</target>
</trans-unit>
<trans-unit id="s5f5bf4ef2bd93c04">
<source>Group mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>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.</target>
</trans-unit>
<trans-unit id="s6c607d74bdfe9f36">
<source>User mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>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.</target>
</trans-unit>
<trans-unit id="sf6e1665c7022a1f8">
<source>Password</source>
<target>Mot de passe</target>
</trans-unit>
<trans-unit id="sd1f44f1a8bc20e67">
<source>Email</source>
<target>Courriel</target>
</trans-unit>
<trans-unit id="s8939f574b096054a">
<source>Not you?</source>
<target>Pas vous ?</target>
</trans-unit>
<trans-unit id="s296fbffaaa7c910a">
<source>Required.</source>
<target>Obligatoire.</target>
</trans-unit>
<trans-unit id="s81ecf2d4386b8e84">
<source>Continue</source>
<target>Continuer</target>
</trans-unit>
<trans-unit id="s61e48919db20538a">
<source>UPN</source>
<target>UPN</target>
</trans-unit>
<trans-unit id="s67ac11d47f1ce794">
<source>WebAuthn requires this page to be accessed via HTTPS.</source>
<target>WebAuthn requirt que cette page soit accessible via HTTPS.</target>
</trans-unit>
<trans-unit id="se9e9e1d6799b86a5">
<source>WebAuthn not supported by browser.</source>
<target>WebAuthn n'est pas supporté pas ce navigateur.</target>
</trans-unit>
<trans-unit id="sa4be93eb7f4e51e3">
<source>Site links</source>
<target>Liens du site</target>
</trans-unit>
<trans-unit id="s6fe64b4625517333">
<source>Powered by authentik</source>
<target>Propulsé par authentik</target>
</trans-unit>
<trans-unit id="sd766cdc29b25ff95">
<source>Authenticating with Apple...</source>
<target>Authentification avec Apple...</target>
</trans-unit>
<trans-unit id="s2c8189544e3ea679">
<source>Retry</source>
<target>Recommencer</target>
</trans-unit>
<trans-unit id="s420d2cdedcaf8cd0">
<source>Authenticating with Plex...</source>
<target>Authentification avec Plex...</target>
</trans-unit>
<trans-unit id="s2ddbebcb8a49b005">
<source>Waiting for authentication...</source>
<target>En attente de l'authentification...</target>
</trans-unit>
<trans-unit id="sb15fe7b9d09bb419">
<source>If no Plex popup opens, click the button below.</source>
<target>Si aucune fenêtre contextuelle Plex ne s'ouvre, cliquez sur le bouton ci-dessous.</target>
</trans-unit>
<trans-unit id="sbc625b4c669b9ce8">
<source>Open login</source>
<target>Ouvrir la connexion</target>
</trans-unit>
<trans-unit id="sf376ae7e9ef41c1a">
<source>Authenticating with Telegram...</source>
<target>Authentification avec Telegram...</target>
</trans-unit>
<trans-unit id="s76ea993fdc8503d8">
<source>Click the button below to start.</source>
<target>Cliquer le bouton ci-dessous pour démarrer.</target>
</trans-unit>
<trans-unit id="s15d6fabebb4ef2d8">
<source>User information</source>
<target>Informations utilisateur</target>
</trans-unit>
<trans-unit id="s9bd9ba84819493d4">
<source>Something went wrong! Please try again later.</source>
<target>Une erreur s'est produite ! Veuillez réessayer plus tard.</target>
</trans-unit>
<trans-unit id="s4090dd0c0e45988b">
<source>Request ID</source>
<target>ID de requête</target>
</trans-unit>
<trans-unit id="s4d7fe7be1c49896c">
<source>You may close this page now.</source>
<target>Vous pouvez maintenant fermer cette page.</target>
</trans-unit>
<trans-unit id="s197420b40df164f8">
<source>Follow redirect</source>
<target>Suivre la redirection</target>
</trans-unit>
<trans-unit id="s3ab772345f78aee0">
<source>Flow inspector</source>
<target>Inspecteur de flux</target>
</trans-unit>
<trans-unit id="sb69e43f2f6bd1b54">
<source>Close flow inspector</source>
<target>Fermer l'inspecteur de flux</target>
</trans-unit>
<trans-unit id="s502884e1977b2c06">
<source>Next stage</source>
<target>Étape suivante</target>
</trans-unit>
<trans-unit id="sb3fa80ccfa97ee54">
<source>Stage name</source>
<target>Nom de l'étape</target>
</trans-unit>
<trans-unit id="sbea3c1e4f2fd623d">
<source>Stage kind</source>
<target>Type d'étap</target>
</trans-unit>
<trans-unit id="s2bc8aa1740d3da34">
<source>Stage object</source>
<target>Objet étap</target>
</trans-unit>
<trans-unit id="sc3e1c4f1fff8e1ca">
<source>This flow is completed.</source>
<target>Ce flux est terminé.</target>
</trans-unit>
<trans-unit id="s342eccabf83c9bde">
<source>Plan history</source>
<target>Historique du plan</target>
</trans-unit>
<trans-unit id="sb2f307e79d20bb56">
<source>Current plan context</source>
<target>Contexte du plan courant</target>
</trans-unit>
<trans-unit id="sa13e6c8310000e30">
<source>Session ID</source>
<target>ID de session</target>
</trans-unit>
<trans-unit id="s857cf5aa8955cf5c">
<source>Flow inspector loading</source>
<target>Chargement de l'inspecteur de flux</target>
</trans-unit>
<trans-unit id="sa11e92683c5860c7">
<source>Request has been denied.</source>
<target>La requête a été refusée.</target>
</trans-unit>
<trans-unit id="s2f7f35f6a5b733f5">
<source>Show password</source>
<target>Montrer le mot de passe</target>
</trans-unit>
<trans-unit id="s452f791e0ff6a13e">
<source>Hide password</source>
<target>Cacher le mot de passe</target>
</trans-unit>
<trans-unit id="scf5ce91bfba10a61">
<source>Please enter your password</source>
<target>Veuillez saisir votre mot de passe</target>
</trans-unit>
<trans-unit id="s6bb30c61df4cf486">
<source>Caps Lock is enabled.</source>
<target>La touche Verr Maj est activée.</target>
</trans-unit>
<trans-unit id="s8d6236ad153d42c0">
<source>CAPTCHA challenge</source>
<target>Challenge CAPTCHA</target>
</trans-unit>
<trans-unit id="s30d6ff9e15e0a40a">
<source>Verifying...</source>
<target>Vérification...</target>
</trans-unit>
<trans-unit id="s1c336c2d6cef77b3">
<source>Remember me on this device</source>
<target>Se souvenir de moi sur cet appareil</target>
</trans-unit>
<trans-unit id="seb6ab868740e4e36">
<source>Continue with <x id="0" equiv-text="${name}"/></source>
</trans-unit>
<trans-unit id="sc4eedb434536bdb4">
<source>Need an account?</source>
<target>Besoin d'un compte ?</target>
</trans-unit>
<trans-unit id="s38f774cd7e9b9dad">
<source>Sign up.</source>
<target>S'enregistrer.</target>
</trans-unit>
<trans-unit id="sa03aa46068460c95">
<source>Forgot username or password?</source>
<target>Mot de passe ou nom d'utilisateur oublié ?</target>
</trans-unit>
<trans-unit id="s05a941e4b4bfca9f">
<source>Additional actions</source>
</trans-unit>
<trans-unit id="s6ecfc18dbfeedd76">
<source>Select one of the options below to continue.</source>
<target>Sélectionner une des options suivantes pour continuer.</target>
</trans-unit>
<trans-unit id="s091d5407b5b32e84">
<source>Or</source>
<target>Ou</target>
</trans-unit>
<trans-unit id="se5fd752dbbc3cd28">
<source>Use a security key</source>
<target>Utiliser une clé de sécurité</target>
</trans-unit>
<trans-unit id="s53dddf1733e26c98">
<source>Login sources</source>
</trans-unit>
<trans-unit id="s85366fac18679f28">
<source>Forgot password?</source>
<target>Mot de passe oublié ?</target>
</trans-unit>
<trans-unit id="s14c552fb0a4c0186">
<source>Application requires following permissions:</source>
<target>Cette application requiert les permissions suivantes :</target>
</trans-unit>
<trans-unit id="s7073489bb01b3c24">
<source>Application already has access to the following permissions:</source>
<target>Lapplication a déjà accès aux permissions suivantes :</target>
</trans-unit>
<trans-unit id="s98dc556f8bf707dc">
<source>Application requires following new permissions:</source>
<target>Cette application requiert de nouvelles permissions :</target>
</trans-unit>
<trans-unit id="s06bfe45ffef2cf60">
<source>Stage name: <x id="0" equiv-text="${this.challenge?.name}"/></source>
<target>Nom de l'étape : <x id="0" equiv-text="${this.challenge.name}"/></target>
</trans-unit>
<trans-unit id="sbd19064fc3f405c1">
<source>Check your Inbox for a verification email.</source>
<target>Vérifiez votre boite de réception pour un courriel de vérification.</target>
</trans-unit>
<trans-unit id="s8aff572e64b7936b">
<source>Send Email again.</source>
<target>Renvoyer le courriel.</target>
</trans-unit>
<trans-unit id="sc091f75b942ec081">
<source>QR-Code to setup a time-based one-time password</source>
<target>Code QR pour configurer un mot de passe à usage unique basé sur le temps</target>
</trans-unit>
<trans-unit id="s6db67c7681b8be6e">
<source>Copy time-based one-time password configuration</source>
<target>Copier la configuration du mot de passe à usage unique basé sur le temps</target>
</trans-unit>
<trans-unit id="s43e859bf711e3599">
<source>Copy TOTP Config</source>
<target>Copier la configuration TOTP</target>
</trans-unit>
<trans-unit id="s90064dd5c4dde2c6">
<source>Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.</source>
<target>Merci de scanner le QR code ci-dessus avec Microsoft Authenticator, Google Authenticator ou une autre application d'authentification à deux facteurs sur votre appareil, et entrer le code que l'appareil affiche ci-dessous pour finir la configuration de votre appareil MFA.</target>
</trans-unit>
<trans-unit id="sa5562e0115ffbccd">
<source>Time-based one-time password</source>
<target>Mot de passe à usage unique basé sur le temps</target>
</trans-unit>
<trans-unit id="s40f44c0d88807fd5">
<source>TOTP Code</source>
<target>Code TOTP</target>
</trans-unit>
<trans-unit id="s95474cc8c73dd9c0">
<source>Type your TOTP code...</source>
<target>Saisissez votre code TOTP...</target>
</trans-unit>
<trans-unit id="s168d0c138b63286d">
<source>Type your time-based one-time password code.</source>
<target>Saisissez votre code de mot de passe à usage unique basé sur le temps.</target>
</trans-unit>
<trans-unit id="sc2ec367e3108fe65">
<source>Duo activation QR code</source>
<target>Code QR d'activation Duo</target>
</trans-unit>
<trans-unit id="sc5668cb23167e9bb">
<source>Alternatively, if your current device has Duo installed, click on this link:</source>
<target>Sinon, si Duo est installé sur cet appareil, cliquez sur ce lien :</target>
</trans-unit>
<trans-unit id="s721d94ae700b5dfd">
<source>Duo activation</source>
<target>Activation Duo</target>
</trans-unit>
<trans-unit id="s708d9a4a0db0be8f">
<source>Check status</source>
<target>Vérifier le statut</target>
</trans-unit>
<trans-unit id="s31fba571065f2c87">
<source>Make sure to keep these tokens in a safe place.</source>
<target>Veuillez à conserver ces jetons dans un endroit sûr.</target>
</trans-unit>
<trans-unit id="s3f8a07912545e72e">
<source>Configure your email</source>
<target>Configurer votre courriel</target>
</trans-unit>
<trans-unit id="scedf77e8b75cad5a">
<source>Please enter your email address.</source>
<target>Veuillez entrer votre adresse courriel.</target>
</trans-unit>
<trans-unit id="s3643189d1abbb7f4">
<source>Code</source>
<target>Code</target>
</trans-unit>
<trans-unit id="s7cdd62c100b6b17b">
<source>Please enter the code you received via email</source>
<target>Veuillez entrer le code que vous avez reçu par courriel</target>
</trans-unit>
<trans-unit id="sc0a0c87d5c556c38">
<source>Phone number</source>
<target>Numéro de téléphone</target>
</trans-unit>
<trans-unit id="s04c1210202f48dc9">
<source>Please enter your Phone number.</source>
<target>Veuillez entrer votre numéro de téléphone</target>
</trans-unit>
<trans-unit id="seb0c08d9f233bbfe">
<source>Please enter the code you received via SMS</source>
<target>Veuillez entrer le code que vous avez reçu par SMS</target>
</trans-unit>
<trans-unit id="s98bb2ae796f1ceef">
<source>Select another authentication method</source>
<target>Sélectionnez une autre méthode d'authentification</target>
</trans-unit>
<trans-unit id="s844fea0bfb10a72a">
<source>Authentication code</source>
<target>Code d'authentification</target>
</trans-unit>
<trans-unit id="s7abc9d08b0f70fd6">
<source>Static token</source>
<target>Jeton statique</target>
</trans-unit>
<trans-unit id="s14e8ac4d377a1a99">
<source>Type an authentication code...</source>
<target>Saisissez un code d'authentification...</target>
</trans-unit>
<trans-unit id="s39002897db60bb28">
<source>Sending Duo push notification...</source>
<target>Envoi de la notification push Duo</target>
</trans-unit>
<trans-unit id="sd2b8c1caa0340ed6">
<source>Failed to authenticate</source>
<target>Échec d'authentification</target>
</trans-unit>
<trans-unit id="s363abde8a254ea5f">
<source>Authentication failed. Please try again.</source>
<target>Échec d'authentification. Veuillez réessayer.</target>
</trans-unit>
<trans-unit id="sffef1a8596bc58bb">
<source>Authenticating...</source>
<target>Authentification en cours...</target>
</trans-unit>
<trans-unit id="se409d01b52c4e12f">
<source>Retry authentication</source>
<target>Réessayer l'authentification</target>
</trans-unit>
<trans-unit id="s8d857061510fe794">
<source>Duo push-notifications</source>
<target>Notification push Duo</target>
</trans-unit>
<trans-unit id="s47490298c17b753a">
<source>Receive a push notification on your device.</source>
<target>Recevoir une notification push sur votre appareil.</target>
</trans-unit>
<trans-unit id="sd6a025d66f2637d1">
<source>Traditional authenticator</source>
<target>Authentificateur traditionnel</target>
</trans-unit>
<trans-unit id="sb25e689e00c61829">
<source>Use a code-based authenticator.</source>
<target>Utiliser un authentifieur à code.</target>
</trans-unit>
<trans-unit id="s9e568afec3810bfe">
<source>Recovery keys</source>
<target>Clés de récupération</target>
</trans-unit>
<trans-unit id="s8bb0a1b672b52954">
<source>In case you lose access to your primary authenticators.</source>
<target>Au cas où vous perdriez l'accès à vos authentificateurs principaux.</target>
</trans-unit>
<trans-unit id="s97f2dc19fa556a6a">
<source>SMS</source>
<target>SMS</target>
</trans-unit>
<trans-unit id="s0e516232f2ab4e04">
<source>Tokens sent via SMS.</source>
<target>Jetons envoyés par SMS.</target>
</trans-unit>
<trans-unit id="s833cfe815918c143">
<source>Tokens sent via email.</source>
<target>Jetons envoyés par courriel.</target>
</trans-unit>
<trans-unit id="s76d21e163887ddd1">
<source>Unknown device</source>
<target>Périphérique inconnu</target>
</trans-unit>
<trans-unit id="sf0ceaf3116e31fd4">
<source>An unknown device class was provided.</source>
<target>Une classe de périphérique inconnue a été fournie.</target>
</trans-unit>
<trans-unit id="s610fced3957d0471">
<source>Select an authentication method</source>
<target>Sélectionnez une méthode d'authentification</target>
</trans-unit>
<trans-unit id="s958cedec1cb3fc52">
<source>Select a configuration stage</source>
<target>Sélectionnez une étape de configuration</target>
</trans-unit>
<trans-unit id="sac17f177f884e238">
<source>Stay signed in?</source>
<target>Rester connecté ?</target>
</trans-unit>
<trans-unit id="s859b2e00391da380">
<source>Select Yes to reduce the number of times you're asked to sign in.</source>
<target>Sélectionnez Oui pour réduire le nombre de fois où l'on vous demande de vous connecter.</target>
</trans-unit>
<trans-unit id="s23da7320dee28a60">
<source>Device Code</source>
<target>Code d'équipement</target>
</trans-unit>
<trans-unit id="s3cd84e82e83e35ad">
<source>Please enter your code</source>
<target>Veuillez saisir votre code</target>
</trans-unit>
<trans-unit id="s455a8fc21077e7f9">
<source>You've successfully authenticated your device.</source>
<target>Vous avez authentifié votre appareil avec succès.</target>
</trans-unit>
<trans-unit id="sac88482c48453fc8">
<source>You've logged out of <x id="0" equiv-text="${challenge.applicationName}"/>. You can go back to the overview to launch another application, or log out of your authentik account.</source>
<target>Vous vous êtes déconnecté de <x id="0" equiv-text="${this.challenge.applicationName}"/>. Vous pouvez retourner à la vue d'ensemble pour lancer une autre application, ou vous déconnecter de votre compte authentik.</target>
</trans-unit>
<trans-unit id="s3108167b562674e2">
<source>Go back to overview</source>
<target>Retourner à la vue d'ensemble</target>
</trans-unit>
<trans-unit id="sdb749e793de55478">
<source>Log out of <x id="0" equiv-text="${challenge.brandName}"/></source>
<target>Se déconnecter de <x id="0" equiv-text="${this.challenge.brandName}"/></target>
</trans-unit>
<trans-unit id="s521681ed1d5ff814">
<source>Log back into <x id="0" equiv-text="${challenge.applicationName}"/></source>
<target>Se reconnecter à <x id="0" equiv-text="${this.challenge.applicationName}"/></target>
</trans-unit>
<trans-unit id="s78869b8b2bc26d0d">
<source>SAML Provider</source>
<target>Fournisseur SAML</target>
</trans-unit>
<trans-unit id="sca83a1f9227f74b9">
<source>SAML logout complete</source>
<target>Déconnexion SAML terminée</target>
</trans-unit>
<trans-unit id="s7b90eab7969ae056">
<source>Redirecting to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
<target>Redirection version le fournisseur SAML : <x id="0" equiv-text="${providerName}"/></target>
</trans-unit>
<trans-unit id="s3e6174b645d96835">
<source>Posting logout request to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
<target>Envoi de la demande de déconnexion au fournisseur SAML : <x id="0" equiv-text="${providerName}"/></target>
</trans-unit>
<trans-unit id="s0b1ffff8bedd6b8a">
<source>Unknown Provider</source>
<target>Fournisseur inconnu</target>
</trans-unit>
<trans-unit id="s777e86d562523c85">
<source>Logging out of providers...</source>
<target>Déconnexion auprès des fournisseurs...</target>
</trans-unit>
<trans-unit id="s4980379bf8461c2d">
<source>Single Logout</source>
<target>Déconnexion unifiée</target>
</trans-unit>
<trans-unit id="s3736936aac1adc2e">
<source>Open flow inspector</source>
<target>Ouvrir l'inspecteur de flux</target>
</trans-unit>
<trans-unit id="sa17ce23517e56461">
<source>Authentication form</source>
<target>Formulaire d'authentification</target>
</trans-unit>
<trans-unit id="s7fa4e5e409d43573">
<source>Error creating credential: <x id="0" equiv-text="${err}"/></source>
<target>Erreur lors de la création des identifiants :
<x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="s9d95f09deb601f34">
<source>Server validation of credential failed: <x id="0" equiv-text="${err}"/></source>
<target>Erreur lors de la validation des identifiants par le serveur :
<x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="sb0821a9e92cac5eb">
<source>Failed to register. Please try again.</source>
<target>Échec d'enregistrement. Veuillez réessayer.</target>
</trans-unit>
<trans-unit id="s238784fc1dc672ae">
<source>Registering...</source>
<target>Enregistrement...</target>
</trans-unit>
<trans-unit id="s009bd1c98a9f5de2">
<source>Failed to register</source>
<target>Échec de l'enregistrement</target>
</trans-unit>
<trans-unit id="sb166ce92e8e807d6">
<source>Retry registration</source>
<target>Réessayer l'enregistrement</target>
</trans-unit>
<trans-unit id="s95094b57684716a5">
<source>Failed to validate device.</source>
</trans-unit>
<trans-unit id="se99d25eb70c767ef">
<source>Verifying your device...</source>
</trans-unit>
<trans-unit id="s1af2337b6d11d4c6">
<source>Data export ready</source>
</trans-unit>
<trans-unit id="en-XA">
<source>English (Pseudo-Accents)</source>
</trans-unit>
<trans-unit id="avatar.alt-text-for-user">
<source>Avatar for <x id="0" equiv-text="${this.username}"/></source>
</trans-unit>
<trans-unit id="avatar.alt-text">
<source>User avatar</source>
</trans-unit>
<trans-unit id="flow.navigation.go-back">
<source>Go back</source>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent-to-address">
<source>A verification token has been sent to your configured email address: <x id="0" equiv-text="${email}"/></source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's configured email address.</note>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent">
<source>A verification token has been sent to your email address.</source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's email address.</note>
</trans-unit>
<trans-unit id="scd909e0bc55fc548">
<source>Security key</source>
</trans-unit>
<trans-unit id="sd0de938d9c37ad5f">
<source>Use a Passkey or security key to prove your identity.</source>
</trans-unit>
<trans-unit id="sb94beab52540d2b7">
<source>The CAPTCHA challenge failed to load.</source>
</trans-unit>
<trans-unit id="s217a96c47caaf73d">
<source>Could not find a suitable CAPTCHA provider.</source>
</trans-unit>
<trans-unit id="sdf2794b96386c868">
<source>Copy time-based one-time password secret</source>
</trans-unit>
<trans-unit id="sc78d16417878afd0">
<source>Copy Secret</source>
</trans-unit>
<trans-unit id="clipboard.write.success.message.entity">
<source><x id="0" equiv-text="${entityLabel}"/> copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.success.generic">
<source>Copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.failure.description">
<source>Clipboard not available. Please copy the value manually.</source>
</trans-unit>
<trans-unit id="totp.config">
<source>TOTP Config</source>
</trans-unit>
<trans-unit id="totp.config.clipboard.description">
<source>Paste this URL into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="totp.secret">
<source>TOTP Secret</source>
</trans-unit>
<trans-unit id="totp.secret.clipboard.description">
<source>Paste this secret into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="s92e22f9319fdb85d">
<source>Configuration warning</source>
</trans-unit>
<trans-unit id="saa088a2d0f90d5a9">
<source>Posting logout response to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s776d93092ad9ce90">
<source>Review initiated</source>
</trans-unit>
<trans-unit id="sad46bcad1a343b51">
<source>Review overdue</source>
</trans-unit>
<trans-unit id="s59d168d966cecbaf">
<source>Review attested</source>
</trans-unit>
<trans-unit id="s5158b7f014cecefc">
<source>Review completed</source>
</trans-unit>
<trans-unit id="sdd2ea73c24b40d5d">
<source>Site footer</source>
</trans-unit>
<trans-unit id="sf910cca0f06bbc31">
<source>Enter the email address or username associated with your account.</source>
</trans-unit>
<trans-unit id="s6e858c4c4c3b6b76">
<source>You're about to be redirected to the following URL.</source>
</trans-unit>
<trans-unit id="sd5d2b94a1ccba1a9">
<source>Log in to continue to <x id="0" equiv-text="${prelude}"/>.</source>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,886 @@
<?xml version="1.0"?><xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file target-language="it-IT" source-language="en" original="lit-localize-inputs" datatype="plaintext">
<body>
<!-- #region Locales -->
<trans-unit id="en">
<source>English</source>
<target>Inglese</target>
</trans-unit>
<trans-unit id="ja-JP">
<source>Japanese</source>
<target>Giapponese</target>
</trans-unit>
<trans-unit id="ko-KR">
<source>Korean</source>
<target>Coreano</target>
</trans-unit>
<trans-unit id="zh-Hans">
<source>Chinese (Simplified)</source>
<target>Cinese</target>
</trans-unit>
<trans-unit id="zh-Hant">
<source>Chinese (Traditional)</source>
<target>Cinese</target>
</trans-unit>
<!-- #endregion -->
<!-- #region Locale selector -->
<trans-unit id="locale-auto-detect-option">
<source>Auto-detect</source>
<target>Rilevamento automatico</target>
<note from="lit-localize">Label for the auto-detect locale option in language selection dropdown</note>
</trans-unit>
<trans-unit id="language-selector-label">
<source>Select language</source>
<target>Seleziona lingua</target>
<note from="lit-localize">Label for the language selection dropdown</note>
</trans-unit>
<trans-unit id="locale-option-localized-label">
<source><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</source>
<note from="lit-localize">Locale option label showing the localized language name along with the native language name in parentheses.</note>
</trans-unit>
<!-- #endregion -->
<trans-unit id="s12d6dde9b30c3093">
<source>Dismiss</source>
</trans-unit>
<trans-unit id="sfe629863ba1338c2">
<source>Connection error, reconnecting...</source>
<target>Errore di connessione, riconnessione in corso...</target>
</trans-unit>
<trans-unit id="sdaecc3c29a27c5c5">
<source>An unknown error occurred</source>
</trans-unit>
<trans-unit id="se84ba7f105934495">
<source>Please check the browser console for more details.</source>
</trans-unit>
<trans-unit id="sdea479482318489d">
<source>Status messages</source>
</trans-unit>
<trans-unit id="s91ae4b6bf981682b">
<source>authentik Logo</source>
<target>Logo di authentik</target>
</trans-unit>
<trans-unit id="s49730f3d5751a433">
<source>Loading...</source>
<target>Caricamento...</target>
</trans-unit>
<trans-unit id="sa50a6326530d8a0d">
<source>Show less</source>
<target>Mostra meno</target>
</trans-unit>
<trans-unit id="sb2c57b2d347203dd">
<source>Show more</source>
<target>Mostra altro</target>
</trans-unit>
<trans-unit id="sa48f81f001b893d2">
<source>User</source>
<target>Utente</target>
</trans-unit>
<trans-unit id="sb59d68ed12d46377">
<source>Loading</source>
<target>Caricamento</target>
</trans-unit>
<trans-unit id="s0382d73823585617">
<source><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></source>
<target>
<x id="0" equiv-text="${this.errorMessage}"/>:
<x id="1" equiv-text="${e.toString()}"/></target>
</trans-unit>
<trans-unit id="sae5d87e99fe081e0">
<source>Required</source>
<target>Richiesto</target>
</trans-unit>
<trans-unit id="s1cd198d689c66e4b">
<source>API Access</source>
<target>Accesso API</target>
</trans-unit>
<trans-unit id="sf29883ac9ec43085">
<source>App password</source>
<target>App password</target>
</trans-unit>
<trans-unit id="s6ac670086eb137c6">
<source>Recovery</source>
<target>Ripristino</target>
</trans-unit>
<trans-unit id="sfe211545fd02f73e">
<source>Verification</source>
<target>Verifica</target>
</trans-unit>
<trans-unit id="sd73b202ec04eefd9">
<source>Unknown intent</source>
<target>Intent sconosciuto</target>
</trans-unit>
<trans-unit id="sc8da3cc71de63832">
<source>Login</source>
<target>Login</target>
</trans-unit>
<trans-unit id="sb4564c127ab8b921">
<source>Failed login</source>
<target>Accesso fallito</target>
</trans-unit>
<trans-unit id="s67749057edb2586b">
<source>Logout</source>
<target>Logout</target>
</trans-unit>
<trans-unit id="s7e537ad68d7c16e1">
<source>User was written to</source>
<target>L'utente è stato scritto in</target>
</trans-unit>
<trans-unit id="sa0e0bdd7e244416b">
<source>Suspicious request</source>
<target>Richiesta sospetta</target>
</trans-unit>
<trans-unit id="s7bda44013984fc48">
<source>Password set</source>
<target>Password impostata</target>
</trans-unit>
<trans-unit id="sa1b41e334ad89d94">
<source>Secret was viewed</source>
<target>Segreto visualizzato</target>
</trans-unit>
<trans-unit id="s92ca679592a36b35">
<source>Secret was rotated</source>
<target>Segreto ruotato</target>
</trans-unit>
<trans-unit id="s8a1d9403ca90989b">
<source>Invitation used</source>
<target>Invito usato</target>
</trans-unit>
<trans-unit id="s5f496533610103f2">
<source>Application authorized</source>
<target>Applicazione autorizzata</target>
</trans-unit>
<trans-unit id="sdc9e222be9612939">
<source>Source linked</source>
<target>Sorgente collegata</target>
</trans-unit>
<trans-unit id="sb1c91762ae3a9bee">
<source>Impersonation started</source>
<target>Impersonazione iniziata</target>
</trans-unit>
<trans-unit id="s9c73bd29b279d26b">
<source>Impersonation ended</source>
<target>Impersonazione conclusa</target>
</trans-unit>
<trans-unit id="s1cd264012278c047">
<source>Flow execution</source>
<target>Esecuzione flusso</target>
</trans-unit>
<trans-unit id="s32f04d33924ce8ad">
<source>Policy execution</source>
<target>Esecuzione criterio</target>
</trans-unit>
<trans-unit id="sb6d7128df5978cee">
<source>Policy exception</source>
<target>Eccezione criterio</target>
</trans-unit>
<trans-unit id="s77f572257f69a8db">
<source>Property Mapping exception</source>
<target>Eccezione mappatura proprietà</target>
</trans-unit>
<trans-unit id="s2543cffd6ebb6803">
<source>System task execution</source>
<target>Esecuzione attività di sistema</target>
</trans-unit>
<trans-unit id="se2f258b996f7279c">
<source>System task exception</source>
<target>Eccezione attività di sistema</target>
</trans-unit>
<trans-unit id="s81eff3409d572a21">
<source>General system exception</source>
<target>Eccezione generale di sistema</target>
</trans-unit>
<trans-unit id="sf8f49cdbf0036343">
<source>Configuration error</source>
<target>Errore di configurazione</target>
</trans-unit>
<trans-unit id="s9c6f61dc47bc4f0a">
<source>Model created</source>
<target>Modello creato</target>
</trans-unit>
<trans-unit id="s47a4983a2c6bb749">
<source>Model updated</source>
<target>Modello aggiornato</target>
</trans-unit>
<trans-unit id="sc9f69360b58706c7">
<source>Model deleted</source>
<target>Modello cancellato</target>
</trans-unit>
<trans-unit id="sa266303caf1bd27f">
<source>Email sent</source>
<target>Email cancellato</target>
</trans-unit>
<trans-unit id="s6c410fedda2a575f">
<source>Update available</source>
<target>Aggiornamento disponibile</target>
</trans-unit>
<trans-unit id="sf1ec4acb8d744ed9">
<source>Alert</source>
<target>Allarme</target>
</trans-unit>
<trans-unit id="s9117fb5195e75151">
<source>Notice</source>
<target>Nota</target>
</trans-unit>
<trans-unit id="s34be76c6b1eadbef">
<source>Warning</source>
<target>Attenzione</target>
</trans-unit>
<trans-unit id="s02240309358f557c">
<source>Unknown severity</source>
<target>Gravità sconosciuta</target>
</trans-unit>
<trans-unit id="s858e7ac4b3cf955f">
<source>Static tokens</source>
<target>Token statici</target>
</trans-unit>
<trans-unit id="sfcfcf85a57eea78a">
<source>TOTP Device</source>
<target>Dispositivo TOTP</target>
</trans-unit>
<trans-unit id="s482bc55a78891ef7">
<source>A code has been sent to your address: <x id="0" equiv-text="${email}"/></source>
</trans-unit>
<trans-unit id="s5afa3fc77ce8d94d">
<source>A code has been sent to your email address.</source>
</trans-unit>
<trans-unit id="s37f47fa981493c3b">
<source>A one-time use code has been sent to you via SMS text message.</source>
</trans-unit>
<trans-unit id="sc92a7248dba5f388">
<source>Open your authenticator app to retrieve a one-time use code.</source>
</trans-unit>
<trans-unit id="s21d95b4651ad7a1e">
<source>Enter a one-time recovery code for this user.</source>
<target>Immettere un codice di recupero una tantum per questo utente.</target>
</trans-unit>
<trans-unit id="s2e1d5a7d320c25ef">
<source>Enter the code from your authenticator device.</source>
<target>Immettere il codice dal dispositivo di autenticazione.</target>
</trans-unit>
<trans-unit id="se2d65e13768468e0">
<source>Internal</source>
<target>Interno</target>
</trans-unit>
<trans-unit id="s84fcddede27b8e2a">
<source>External</source>
<target>Esterno</target>
</trans-unit>
<trans-unit id="s1a635369edaf4dc3">
<source>Service account</source>
<target>Account di servizio</target>
</trans-unit>
<trans-unit id="sff930bf2834e2201">
<source>Service account (internal)</source>
<target>Account di servizio (interno)</target>
</trans-unit>
<trans-unit id="scb489a1a173ac3f0">
<source>Yes</source>
<target>Si</target>
</trans-unit>
<trans-unit id="s09205907b5b56cda">
<source>No</source>
<target>No</target>
</trans-unit>
<trans-unit id="s7f073c746d0f6324">
<source>Form actions</source>
</trans-unit>
<trans-unit id="s98b1cb8fb62909ec">
<source>Group</source>
<target>Gruppo</target>
</trans-unit>
<trans-unit id="s2e422519ed38f7d8">
<source>Pass</source>
<target>Pass</target>
</trans-unit>
<trans-unit id="sac315d5bd28d4efa">
<source>Don't Pass</source>
<target>Non Passare</target>
</trans-unit>
<trans-unit id="s042baf59902a711f">
<source>Policy</source>
<target>Criterio</target>
</trans-unit>
<trans-unit id="sd8f220c999726151">
<source>Redirect</source>
<target>Redirect</target>
</trans-unit>
<trans-unit id="s03f42eea72154959">
<source>Username</source>
<target>Username</target>
</trans-unit>
<trans-unit id="s5f5bf4ef2bd93c04">
<source>Group mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Le mappature dei gruppi possono essere controllate solo se un utente ha già effettuato l'accesso quando tenta di accedere a questa fonte.</target>
</trans-unit>
<trans-unit id="s6c607d74bdfe9f36">
<source>User mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Le mappature utente possono essere controllate solo se un utente ha già effettuato l'accesso quando tenta di accedere a questa fonte.</target>
</trans-unit>
<trans-unit id="sf6e1665c7022a1f8">
<source>Password</source>
<target>Password</target>
</trans-unit>
<trans-unit id="sd1f44f1a8bc20e67">
<source>Email</source>
<target>Email</target>
</trans-unit>
<trans-unit id="s8939f574b096054a">
<source>Not you?</source>
<target>Non sei tu?</target>
</trans-unit>
<trans-unit id="s296fbffaaa7c910a">
<source>Required.</source>
<target>Richiesto.</target>
</trans-unit>
<trans-unit id="s81ecf2d4386b8e84">
<source>Continue</source>
<target>Continua</target>
</trans-unit>
<trans-unit id="s61e48919db20538a">
<source>UPN</source>
<target>UPN</target>
</trans-unit>
<trans-unit id="s67ac11d47f1ce794">
<source>WebAuthn requires this page to be accessed via HTTPS.</source>
<target>WebAuthn richiede che questa pagina sia accessibile tramite HTTPS.</target>
</trans-unit>
<trans-unit id="se9e9e1d6799b86a5">
<source>WebAuthn not supported by browser.</source>
<target>WebAuthn non supportato dal browser.</target>
</trans-unit>
<trans-unit id="sa4be93eb7f4e51e3">
<source>Site links</source>
</trans-unit>
<trans-unit id="s6fe64b4625517333">
<source>Powered by authentik</source>
<target>Powered by authentik</target>
</trans-unit>
<trans-unit id="sd766cdc29b25ff95">
<source>Authenticating with Apple...</source>
<target>Autenticazione con Apple...</target>
</trans-unit>
<trans-unit id="s2c8189544e3ea679">
<source>Retry</source>
<target>Riprova</target>
</trans-unit>
<trans-unit id="s420d2cdedcaf8cd0">
<source>Authenticating with Plex...</source>
<target>Autenticazione con Plex...</target>
</trans-unit>
<trans-unit id="s2ddbebcb8a49b005">
<source>Waiting for authentication...</source>
<target>In attesa di autenticazione...</target>
</trans-unit>
<trans-unit id="sb15fe7b9d09bb419">
<source>If no Plex popup opens, click the button below.</source>
<target>Se non si apre alcun popup plex, fare clic sul pulsante in basso.</target>
</trans-unit>
<trans-unit id="sbc625b4c669b9ce8">
<source>Open login</source>
<target>Aprire login</target>
</trans-unit>
<trans-unit id="sf376ae7e9ef41c1a">
<source>Authenticating with Telegram...</source>
</trans-unit>
<trans-unit id="s76ea993fdc8503d8">
<source>Click the button below to start.</source>
</trans-unit>
<trans-unit id="s15d6fabebb4ef2d8">
<source>User information</source>
</trans-unit>
<trans-unit id="s9bd9ba84819493d4">
<source>Something went wrong! Please try again later.</source>
<target>Qualcosa è andato storto! Per favore riprova più tardi.</target>
</trans-unit>
<trans-unit id="s4090dd0c0e45988b">
<source>Request ID</source>
<target>Request ID</target>
</trans-unit>
<trans-unit id="s4d7fe7be1c49896c">
<source>You may close this page now.</source>
<target>Puoi chiudere questa pagina ora.</target>
</trans-unit>
<trans-unit id="s197420b40df164f8">
<source>Follow redirect</source>
<target>Segui il reindirizzamento</target>
</trans-unit>
<trans-unit id="s3ab772345f78aee0">
<source>Flow inspector</source>
<target>Ispezione del flusso</target>
</trans-unit>
<trans-unit id="sb69e43f2f6bd1b54">
<source>Close flow inspector</source>
</trans-unit>
<trans-unit id="s502884e1977b2c06">
<source>Next stage</source>
<target>Fase successiva</target>
</trans-unit>
<trans-unit id="sb3fa80ccfa97ee54">
<source>Stage name</source>
<target>Nome fase</target>
</trans-unit>
<trans-unit id="sbea3c1e4f2fd623d">
<source>Stage kind</source>
<target>Tipo fase</target>
</trans-unit>
<trans-unit id="s2bc8aa1740d3da34">
<source>Stage object</source>
<target>Ogetto fase</target>
</trans-unit>
<trans-unit id="sc3e1c4f1fff8e1ca">
<source>This flow is completed.</source>
<target>Questo flusso è completato.</target>
</trans-unit>
<trans-unit id="s342eccabf83c9bde">
<source>Plan history</source>
<target>Storia del piano</target>
</trans-unit>
<trans-unit id="sb2f307e79d20bb56">
<source>Current plan context</source>
<target>Contesto del piano attuale</target>
</trans-unit>
<trans-unit id="sa13e6c8310000e30">
<source>Session ID</source>
<target>Session ID</target>
</trans-unit>
<trans-unit id="s857cf5aa8955cf5c">
<source>Flow inspector loading</source>
</trans-unit>
<trans-unit id="sa11e92683c5860c7">
<source>Request has been denied.</source>
<target>La richiesta è stata negata.</target>
</trans-unit>
<trans-unit id="s2f7f35f6a5b733f5">
<source>Show password</source>
<target>Mostra password</target>
</trans-unit>
<trans-unit id="s452f791e0ff6a13e">
<source>Hide password</source>
<target>Nascondi password</target>
</trans-unit>
<trans-unit id="scf5ce91bfba10a61">
<source>Please enter your password</source>
<target>Per favore inserisci la tua password</target>
</trans-unit>
<trans-unit id="s6bb30c61df4cf486">
<source>Caps Lock is enabled.</source>
<target>Caps Lock attivo.</target>
</trans-unit>
<trans-unit id="s8d6236ad153d42c0">
<source>CAPTCHA challenge</source>
</trans-unit>
<trans-unit id="s30d6ff9e15e0a40a">
<source>Verifying...</source>
<target>Verifica...</target>
</trans-unit>
<trans-unit id="s1c336c2d6cef77b3">
<source>Remember me on this device</source>
<target>Ricordami su questo dispositivo</target>
</trans-unit>
<trans-unit id="seb6ab868740e4e36">
<source>Continue with <x id="0" equiv-text="${name}"/></source>
</trans-unit>
<trans-unit id="sc4eedb434536bdb4">
<source>Need an account?</source>
<target>Hai bisogno di un account?</target>
</trans-unit>
<trans-unit id="s38f774cd7e9b9dad">
<source>Sign up.</source>
<target>Registrati.</target>
</trans-unit>
<trans-unit id="sa03aa46068460c95">
<source>Forgot username or password?</source>
<target>Hai dimenticato il nome utente o la password?</target>
</trans-unit>
<trans-unit id="s05a941e4b4bfca9f">
<source>Additional actions</source>
</trans-unit>
<trans-unit id="s6ecfc18dbfeedd76">
<source>Select one of the options below to continue.</source>
<target>Seleziona una delle opzioni qui sotto per continuare.</target>
</trans-unit>
<trans-unit id="s091d5407b5b32e84">
<source>Or</source>
<target>Oppure</target>
</trans-unit>
<trans-unit id="se5fd752dbbc3cd28">
<source>Use a security key</source>
<target>Usa una chiave di sicurezza</target>
</trans-unit>
<trans-unit id="s53dddf1733e26c98">
<source>Login sources</source>
</trans-unit>
<trans-unit id="s85366fac18679f28">
<source>Forgot password?</source>
<target>Hai dimenticato la password?</target>
</trans-unit>
<trans-unit id="s14c552fb0a4c0186">
<source>Application requires following permissions:</source>
<target>L'applicazione richiede i seguenti permessi:</target>
</trans-unit>
<trans-unit id="s7073489bb01b3c24">
<source>Application already has access to the following permissions:</source>
<target>L'applicazione ha già accesso alle seguenti autorizzazioni:</target>
</trans-unit>
<trans-unit id="s98dc556f8bf707dc">
<source>Application requires following new permissions:</source>
<target>L'applicazione richiede le seguenti nuove autorizzazioni:</target>
</trans-unit>
<trans-unit id="s06bfe45ffef2cf60">
<source>Stage name: <x id="0" equiv-text="${this.challenge?.name}"/></source>
<target>Nome fase: <x id="0" equiv-text="${this.challenge.name}"/></target>
</trans-unit>
<trans-unit id="sbd19064fc3f405c1">
<source>Check your Inbox for a verification email.</source>
<target>Controlla la tua casella di posta per un'email di verifica.</target>
</trans-unit>
<trans-unit id="s8aff572e64b7936b">
<source>Send Email again.</source>
<target>Invia di nuovo l'email.</target>
</trans-unit>
<trans-unit id="sc091f75b942ec081">
<source>QR-Code to setup a time-based one-time password</source>
</trans-unit>
<trans-unit id="s6db67c7681b8be6e">
<source>Copy time-based one-time password configuration</source>
</trans-unit>
<trans-unit id="s43e859bf711e3599">
<source>Copy TOTP Config</source>
</trans-unit>
<trans-unit id="s90064dd5c4dde2c6">
<source>Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.</source>
<target>Scansiona il codice QR sopra utilizzando Microsoft Authenticator, Google Authenticator o altre app di Autenticator sul dispositivo e immettere il codice visualizzato di seguito per terminare l'impostazione del dispositivo MFA.</target>
</trans-unit>
<trans-unit id="sa5562e0115ffbccd">
<source>Time-based one-time password</source>
</trans-unit>
<trans-unit id="s40f44c0d88807fd5">
<source>TOTP Code</source>
</trans-unit>
<trans-unit id="s95474cc8c73dd9c0">
<source>Type your TOTP code...</source>
</trans-unit>
<trans-unit id="s168d0c138b63286d">
<source>Type your time-based one-time password code.</source>
</trans-unit>
<trans-unit id="sc2ec367e3108fe65">
<source>Duo activation QR code</source>
<target>Codice QR di attivazione Duo</target>
</trans-unit>
<trans-unit id="sc5668cb23167e9bb">
<source>Alternatively, if your current device has Duo installed, click on this link:</source>
<target>In alternativa, se il tuo dispositivo corrente è installato duo, fare clic su questo link:</target>
</trans-unit>
<trans-unit id="s721d94ae700b5dfd">
<source>Duo activation</source>
<target>Attivazione Duo</target>
</trans-unit>
<trans-unit id="s708d9a4a0db0be8f">
<source>Check status</source>
<target>Verifica stato</target>
</trans-unit>
<trans-unit id="s31fba571065f2c87">
<source>Make sure to keep these tokens in a safe place.</source>
<target>Assicurati di tenere questi token in un luogo sicuro.</target>
</trans-unit>
<trans-unit id="s3f8a07912545e72e">
<source>Configure your email</source>
<target>Configura la tua email</target>
</trans-unit>
<trans-unit id="scedf77e8b75cad5a">
<source>Please enter your email address.</source>
<target>Inserisci il tuo indirizzo email.</target>
</trans-unit>
<trans-unit id="s3643189d1abbb7f4">
<source>Code</source>
<target>Codice</target>
</trans-unit>
<trans-unit id="s7cdd62c100b6b17b">
<source>Please enter the code you received via email</source>
<target>Inserisci il codice ricevuto via email</target>
</trans-unit>
<trans-unit id="sc0a0c87d5c556c38">
<source>Phone number</source>
<target>Numero di telefono</target>
</trans-unit>
<trans-unit id="s04c1210202f48dc9">
<source>Please enter your Phone number.</source>
<target>Per favore, inserisci il tuo numero di telefono.</target>
</trans-unit>
<trans-unit id="seb0c08d9f233bbfe">
<source>Please enter the code you received via SMS</source>
<target>Per favore, inserisci il codice che hai ricevuto tramite SMS.</target>
</trans-unit>
<trans-unit id="s98bb2ae796f1ceef">
<source>Select another authentication method</source>
<target>Seleziona un altro metodo di autenticazione</target>
</trans-unit>
<trans-unit id="s844fea0bfb10a72a">
<source>Authentication code</source>
<target>Codice di autenticazione</target>
</trans-unit>
<trans-unit id="s7abc9d08b0f70fd6">
<source>Static token</source>
<target>Token statico</target>
</trans-unit>
<trans-unit id="s14e8ac4d377a1a99">
<source>Type an authentication code...</source>
</trans-unit>
<trans-unit id="s39002897db60bb28">
<source>Sending Duo push notification...</source>
<target>Invio notifica push Duo in corso...</target>
</trans-unit>
<trans-unit id="sd2b8c1caa0340ed6">
<source>Failed to authenticate</source>
<target>Autenticazione fallita</target>
</trans-unit>
<trans-unit id="s363abde8a254ea5f">
<source>Authentication failed. Please try again.</source>
<target>Autenticazione fallita. Per favore riprova.</target>
</trans-unit>
<trans-unit id="sffef1a8596bc58bb">
<source>Authenticating...</source>
<target>Autenticazione...</target>
</trans-unit>
<trans-unit id="se409d01b52c4e12f">
<source>Retry authentication</source>
<target>Riprova autenticazione</target>
</trans-unit>
<trans-unit id="s8d857061510fe794">
<source>Duo push-notifications</source>
<target>Notifiche push Duo</target>
</trans-unit>
<trans-unit id="s47490298c17b753a">
<source>Receive a push notification on your device.</source>
<target>Ricevi una notifica push sul tuo dispositivo.</target>
</trans-unit>
<trans-unit id="sd6a025d66f2637d1">
<source>Traditional authenticator</source>
<target>Autenticatore tradizionale</target>
</trans-unit>
<trans-unit id="sb25e689e00c61829">
<source>Use a code-based authenticator.</source>
<target>Utilizzare un autenticatore basato su codice.</target>
</trans-unit>
<trans-unit id="s9e568afec3810bfe">
<source>Recovery keys</source>
<target>Chiavi di recupero</target>
</trans-unit>
<trans-unit id="s8bb0a1b672b52954">
<source>In case you lose access to your primary authenticators.</source>
</trans-unit>
<trans-unit id="s97f2dc19fa556a6a">
<source>SMS</source>
<target>SMS</target>
</trans-unit>
<trans-unit id="s0e516232f2ab4e04">
<source>Tokens sent via SMS.</source>
<target>Token inviati tramite SMS.</target>
</trans-unit>
<trans-unit id="s833cfe815918c143">
<source>Tokens sent via email.</source>
<target>Token inviati via email.</target>
</trans-unit>
<trans-unit id="s76d21e163887ddd1">
<source>Unknown device</source>
</trans-unit>
<trans-unit id="sf0ceaf3116e31fd4">
<source>An unknown device class was provided.</source>
</trans-unit>
<trans-unit id="s610fced3957d0471">
<source>Select an authentication method</source>
</trans-unit>
<trans-unit id="s958cedec1cb3fc52">
<source>Select a configuration stage</source>
</trans-unit>
<trans-unit id="sac17f177f884e238">
<source>Stay signed in?</source>
<target>Rimani connesso?</target>
</trans-unit>
<trans-unit id="s859b2e00391da380">
<source>Select Yes to reduce the number of times you're asked to sign in.</source>
<target>Seleziona Sì per ridurre il numero di volte in cui ti viene chiesto di effettuare l'accesso.</target>
</trans-unit>
<trans-unit id="s23da7320dee28a60">
<source>Device Code</source>
</trans-unit>
<trans-unit id="s3cd84e82e83e35ad">
<source>Please enter your code</source>
<target>Per favore inserisci il tuo codice.</target>
</trans-unit>
<trans-unit id="s455a8fc21077e7f9">
<source>You've successfully authenticated your device.</source>
<target>Hai autenticato correttamente il tuo dispositivo.</target>
</trans-unit>
<trans-unit id="sac88482c48453fc8">
<source>You've logged out of <x id="0" equiv-text="${challenge.applicationName}"/>. You can go back to the overview to launch another application, or log out of your authentik account.</source>
<target>Hai effettuato il logout da <x id="0" equiv-text="${this.challenge.applicationName}"/>. Puoi tornare alla panoramica per avviare un'altra applicazione o disconnetterti dal tuo account authentik.</target>
</trans-unit>
<trans-unit id="s3108167b562674e2">
<source>Go back to overview</source>
<target>Torna alla panoramica</target>
</trans-unit>
<trans-unit id="sdb749e793de55478">
<source>Log out of <x id="0" equiv-text="${challenge.brandName}"/></source>
<target>Esci da <x id="0" equiv-text="${this.challenge.brandName}"/></target>
</trans-unit>
<trans-unit id="s521681ed1d5ff814">
<source>Log back into <x id="0" equiv-text="${challenge.applicationName}"/></source>
<target>Accedi di nuovo a <x id="0" equiv-text="${this.challenge.applicationName}"/></target>
</trans-unit>
<trans-unit id="s78869b8b2bc26d0d">
<source>SAML Provider</source>
</trans-unit>
<trans-unit id="sca83a1f9227f74b9">
<source>SAML logout complete</source>
</trans-unit>
<trans-unit id="s7b90eab7969ae056">
<source>Redirecting to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s3e6174b645d96835">
<source>Posting logout request to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s0b1ffff8bedd6b8a">
<source>Unknown Provider</source>
</trans-unit>
<trans-unit id="s777e86d562523c85">
<source>Logging out of providers...</source>
</trans-unit>
<trans-unit id="s4980379bf8461c2d">
<source>Single Logout</source>
</trans-unit>
<trans-unit id="s3736936aac1adc2e">
<source>Open flow inspector</source>
</trans-unit>
<trans-unit id="sa17ce23517e56461">
<source>Authentication form</source>
</trans-unit>
<trans-unit id="s7fa4e5e409d43573">
<source>Error creating credential: <x id="0" equiv-text="${err}"/></source>
<target>Errore durante la creazione della credenziale:
<x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="s9d95f09deb601f34">
<source>Server validation of credential failed: <x id="0" equiv-text="${err}"/></source>
<target>Convalida server delle credenziali non riuscita:
<x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="sb0821a9e92cac5eb">
<source>Failed to register. Please try again.</source>
<target>Registrazione fallita. Per favore riprova.</target>
</trans-unit>
<trans-unit id="s238784fc1dc672ae">
<source>Registering...</source>
<target>Registrazione...</target>
</trans-unit>
<trans-unit id="s009bd1c98a9f5de2">
<source>Failed to register</source>
<target>Registrazione fallita</target>
</trans-unit>
<trans-unit id="sb166ce92e8e807d6">
<source>Retry registration</source>
<target>Riprova registrazione</target>
</trans-unit>
<trans-unit id="s95094b57684716a5">
<source>Failed to validate device.</source>
</trans-unit>
<trans-unit id="se99d25eb70c767ef">
<source>Verifying your device...</source>
</trans-unit>
<trans-unit id="s1af2337b6d11d4c6">
<source>Data export ready</source>
</trans-unit>
<trans-unit id="en-XA">
<source>English (Pseudo-Accents)</source>
</trans-unit>
<trans-unit id="avatar.alt-text-for-user">
<source>Avatar for <x id="0" equiv-text="${this.username}"/></source>
</trans-unit>
<trans-unit id="avatar.alt-text">
<source>User avatar</source>
</trans-unit>
<trans-unit id="flow.navigation.go-back">
<source>Go back</source>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent-to-address">
<source>A verification token has been sent to your configured email address: <x id="0" equiv-text="${email}"/></source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's configured email address.</note>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent">
<source>A verification token has been sent to your email address.</source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's email address.</note>
</trans-unit>
<trans-unit id="scd909e0bc55fc548">
<source>Security key</source>
</trans-unit>
<trans-unit id="sd0de938d9c37ad5f">
<source>Use a Passkey or security key to prove your identity.</source>
</trans-unit>
<trans-unit id="sb94beab52540d2b7">
<source>The CAPTCHA challenge failed to load.</source>
</trans-unit>
<trans-unit id="s217a96c47caaf73d">
<source>Could not find a suitable CAPTCHA provider.</source>
</trans-unit>
<trans-unit id="sdf2794b96386c868">
<source>Copy time-based one-time password secret</source>
</trans-unit>
<trans-unit id="sc78d16417878afd0">
<source>Copy Secret</source>
</trans-unit>
<trans-unit id="clipboard.write.success.message.entity">
<source><x id="0" equiv-text="${entityLabel}"/> copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.success.generic">
<source>Copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.failure.description">
<source>Clipboard not available. Please copy the value manually.</source>
</trans-unit>
<trans-unit id="totp.config">
<source>TOTP Config</source>
</trans-unit>
<trans-unit id="totp.config.clipboard.description">
<source>Paste this URL into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="totp.secret">
<source>TOTP Secret</source>
</trans-unit>
<trans-unit id="totp.secret.clipboard.description">
<source>Paste this secret into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="s92e22f9319fdb85d">
<source>Configuration warning</source>
</trans-unit>
<trans-unit id="saa088a2d0f90d5a9">
<source>Posting logout response to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s776d93092ad9ce90">
<source>Review initiated</source>
</trans-unit>
<trans-unit id="sad46bcad1a343b51">
<source>Review overdue</source>
</trans-unit>
<trans-unit id="s59d168d966cecbaf">
<source>Review attested</source>
</trans-unit>
<trans-unit id="s5158b7f014cecefc">
<source>Review completed</source>
</trans-unit>
<trans-unit id="sdd2ea73c24b40d5d">
<source>Site footer</source>
</trans-unit>
<trans-unit id="sf910cca0f06bbc31">
<source>Enter the email address or username associated with your account.</source>
</trans-unit>
<trans-unit id="s6e858c4c4c3b6b76">
<source>You're about to be redirected to the following URL.</source>
</trans-unit>
<trans-unit id="sd5d2b94a1ccba1a9">
<source>Log in to continue to <x id="0" equiv-text="${prelude}"/>.</source>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,922 @@
<?xml version="1.0"?><xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file target-language="ja-JP" source-language="en" original="lit-localize-inputs" datatype="plaintext">
<body>
<!-- #region Locales -->
<trans-unit id="en">
<source>English</source>
<target>英語</target>
</trans-unit>
<trans-unit id="ja-JP">
<source>Japanese</source>
<target>日本語</target>
</trans-unit>
<trans-unit id="ko-KR">
<source>Korean</source>
<target>韓国語</target>
</trans-unit>
<trans-unit id="zh-Hans">
<source>Chinese (Simplified)</source>
<target>中国語簡体字</target>
</trans-unit>
<trans-unit id="zh-Hant">
<source>Chinese (Traditional)</source>
<target>中国語繁体字</target>
</trans-unit>
<!-- #endregion -->
<!-- #region Locale selector -->
<trans-unit id="locale-auto-detect-option">
<source>Auto-detect</source>
<target>自動検出</target>
<note from="lit-localize">Label for the auto-detect locale option in language selection dropdown</note>
</trans-unit>
<trans-unit id="language-selector-label">
<source>Select language</source>
<note from="lit-localize">Label for the language selection dropdown</note>
</trans-unit>
<trans-unit id="locale-option-localized-label">
<source><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</source>
<note from="lit-localize">Locale option label showing the localized language name along with the native language name in parentheses.</note>
</trans-unit>
<!-- #endregion -->
<trans-unit id="s12d6dde9b30c3093">
<source>Dismiss</source>
<target>閉じる</target>
</trans-unit>
<trans-unit id="sfe629863ba1338c2">
<source>Connection error, reconnecting...</source>
<target>接続エラー、再接続中...</target>
</trans-unit>
<trans-unit id="sdaecc3c29a27c5c5">
<source>An unknown error occurred</source>
<target>不明なエラーが発生しました</target>
</trans-unit>
<trans-unit id="se84ba7f105934495">
<source>Please check the browser console for more details.</source>
<target>詳細については、ブラウザコンソールを確認してください。</target>
</trans-unit>
<trans-unit id="sdea479482318489d">
<source>Status messages</source>
<target>ステータスメッセージ</target>
</trans-unit>
<trans-unit id="s91ae4b6bf981682b">
<source>authentik Logo</source>
<target>authentik ロゴ</target>
</trans-unit>
<trans-unit id="s49730f3d5751a433">
<source>Loading...</source>
<target>読み込み中...</target>
</trans-unit>
<trans-unit id="sa50a6326530d8a0d">
<source>Show less</source>
<target>閉じる</target>
</trans-unit>
<trans-unit id="sb2c57b2d347203dd">
<source>Show more</source>
<target>もっと見る</target>
</trans-unit>
<trans-unit id="sa48f81f001b893d2">
<source>User</source>
<target>ユーザー</target>
</trans-unit>
<trans-unit id="sb59d68ed12d46377">
<source>Loading</source>
<target>読み込み中</target>
</trans-unit>
<trans-unit id="s0382d73823585617">
<source><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></source>
<target><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></target>
</trans-unit>
<trans-unit id="sae5d87e99fe081e0">
<source>Required</source>
<target>必須</target>
</trans-unit>
<trans-unit id="s1cd198d689c66e4b">
<source>API Access</source>
<target>APIアクセス</target>
</trans-unit>
<trans-unit id="sf29883ac9ec43085">
<source>App password</source>
<target>アプリパスワード</target>
</trans-unit>
<trans-unit id="s6ac670086eb137c6">
<source>Recovery</source>
<target>リカバリ</target>
</trans-unit>
<trans-unit id="sfe211545fd02f73e">
<source>Verification</source>
<target>検証</target>
</trans-unit>
<trans-unit id="sd73b202ec04eefd9">
<source>Unknown intent</source>
<target>不明なインテント</target>
</trans-unit>
<trans-unit id="sc8da3cc71de63832">
<source>Login</source>
<target>ログイン</target>
</trans-unit>
<trans-unit id="sb4564c127ab8b921">
<source>Failed login</source>
<target>ログイン失敗</target>
</trans-unit>
<trans-unit id="s67749057edb2586b">
<source>Logout</source>
<target>ログアウト</target>
</trans-unit>
<trans-unit id="s7e537ad68d7c16e1">
<source>User was written to</source>
<target>ユーザーが書き込まれました</target>
</trans-unit>
<trans-unit id="sa0e0bdd7e244416b">
<source>Suspicious request</source>
<target>疑わしいリクエスト</target>
</trans-unit>
<trans-unit id="s7bda44013984fc48">
<source>Password set</source>
<target>パスワードが設定されました</target>
</trans-unit>
<trans-unit id="sa1b41e334ad89d94">
<source>Secret was viewed</source>
<target>シークレットが閲覧されました</target>
</trans-unit>
<trans-unit id="s92ca679592a36b35">
<source>Secret was rotated</source>
<target>シークレットがローテーションされました</target>
</trans-unit>
<trans-unit id="s8a1d9403ca90989b">
<source>Invitation used</source>
<target>招待が使用されました</target>
</trans-unit>
<trans-unit id="s5f496533610103f2">
<source>Application authorized</source>
<target>アプリが認証されました</target>
</trans-unit>
<trans-unit id="sdc9e222be9612939">
<source>Source linked</source>
<target>ソースがリンクされました</target>
</trans-unit>
<trans-unit id="sb1c91762ae3a9bee">
<source>Impersonation started</source>
<target>なりすましを開始しました</target>
</trans-unit>
<trans-unit id="s9c73bd29b279d26b">
<source>Impersonation ended</source>
<target>なりすましを終了しました</target>
</trans-unit>
<trans-unit id="s1cd264012278c047">
<source>Flow execution</source>
<target>フロー実行</target>
</trans-unit>
<trans-unit id="s32f04d33924ce8ad">
<source>Policy execution</source>
<target>ポリシー実行</target>
</trans-unit>
<trans-unit id="sb6d7128df5978cee">
<source>Policy exception</source>
<target>ポリシー例外</target>
</trans-unit>
<trans-unit id="s77f572257f69a8db">
<source>Property Mapping exception</source>
<target>プロパティマッピング例外</target>
</trans-unit>
<trans-unit id="s2543cffd6ebb6803">
<source>System task execution</source>
<target>システムタスク実行</target>
</trans-unit>
<trans-unit id="se2f258b996f7279c">
<source>System task exception</source>
<target>システムタスク例外</target>
</trans-unit>
<trans-unit id="s81eff3409d572a21">
<source>General system exception</source>
<target>システム例外</target>
</trans-unit>
<trans-unit id="sf8f49cdbf0036343">
<source>Configuration error</source>
<target>設定エラー</target>
</trans-unit>
<trans-unit id="s9c6f61dc47bc4f0a">
<source>Model created</source>
<target>モデルを作成しました</target>
</trans-unit>
<trans-unit id="s47a4983a2c6bb749">
<source>Model updated</source>
<target>モデルを更新しました</target>
</trans-unit>
<trans-unit id="sc9f69360b58706c7">
<source>Model deleted</source>
<target>モデルを削除しました</target>
</trans-unit>
<trans-unit id="sa266303caf1bd27f">
<source>Email sent</source>
<target>メールを送信しました</target>
</trans-unit>
<trans-unit id="s6c410fedda2a575f">
<source>Update available</source>
<target>アップデートが利用可能です</target>
</trans-unit>
<trans-unit id="sf1ec4acb8d744ed9">
<source>Alert</source>
<target>アラート</target>
</trans-unit>
<trans-unit id="s9117fb5195e75151">
<source>Notice</source>
<target>通知</target>
</trans-unit>
<trans-unit id="s34be76c6b1eadbef">
<source>Warning</source>
<target>警告</target>
</trans-unit>
<trans-unit id="s02240309358f557c">
<source>Unknown severity</source>
<target>不明な重要度</target>
</trans-unit>
<trans-unit id="s858e7ac4b3cf955f">
<source>Static tokens</source>
<target>静的トークン</target>
</trans-unit>
<trans-unit id="sfcfcf85a57eea78a">
<source>TOTP Device</source>
<target>TOTPデバイス</target>
</trans-unit>
<trans-unit id="s482bc55a78891ef7">
<source>A code has been sent to your address: <x id="0" equiv-text="${email}"/></source>
<target>コードを <x id="0" equiv-text="${email}"/> に送信しました</target>
</trans-unit>
<trans-unit id="s5afa3fc77ce8d94d">
<source>A code has been sent to your email address.</source>
<target>コードをメールアドレスに送信しました。</target>
</trans-unit>
<trans-unit id="s37f47fa981493c3b">
<source>A one-time use code has been sent to you via SMS text message.</source>
<target>ワンタイムコードをSMSで送信しました。</target>
</trans-unit>
<trans-unit id="sc92a7248dba5f388">
<source>Open your authenticator app to retrieve a one-time use code.</source>
<target>認証アプリを開いてワンタイムコードを取得してください。</target>
</trans-unit>
<trans-unit id="s21d95b4651ad7a1e">
<source>Enter a one-time recovery code for this user.</source>
<target>このユーザーのワンタイムリカバリコードを入力してください。</target>
</trans-unit>
<trans-unit id="s2e1d5a7d320c25ef">
<source>Enter the code from your authenticator device.</source>
<target>認証デバイスのコードを入力してください。</target>
</trans-unit>
<trans-unit id="se2d65e13768468e0">
<source>Internal</source>
<target>内部</target>
</trans-unit>
<trans-unit id="s84fcddede27b8e2a">
<source>External</source>
<target>外部</target>
</trans-unit>
<trans-unit id="s1a635369edaf4dc3">
<source>Service account</source>
<target>サービスアカウント</target>
</trans-unit>
<trans-unit id="sff930bf2834e2201">
<source>Service account (internal)</source>
<target>サービスアカウント(内部)</target>
</trans-unit>
<trans-unit id="scb489a1a173ac3f0">
<source>Yes</source>
<target>はい</target>
</trans-unit>
<trans-unit id="s09205907b5b56cda">
<source>No</source>
<target>いいえ</target>
</trans-unit>
<trans-unit id="s7f073c746d0f6324">
<source>Form actions</source>
<target>フォームアクション</target>
</trans-unit>
<trans-unit id="s98b1cb8fb62909ec">
<source>Group</source>
<target>グループ</target>
</trans-unit>
<trans-unit id="s2e422519ed38f7d8">
<source>Pass</source>
<target>合格</target>
</trans-unit>
<trans-unit id="sac315d5bd28d4efa">
<source>Don't Pass</source>
<target>不合格</target>
</trans-unit>
<trans-unit id="s042baf59902a711f">
<source>Policy</source>
<target>ポリシー</target>
</trans-unit>
<trans-unit id="sd8f220c999726151">
<source>Redirect</source>
<target>リダイレクト</target>
</trans-unit>
<trans-unit id="s03f42eea72154959">
<source>Username</source>
<target>ユーザー名</target>
</trans-unit>
<trans-unit id="s5f5bf4ef2bd93c04">
<source>Group mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>グループマッピングは、このソースにアクセスしようとするときにユーザーが既にログインしている場合にのみ確認できます。</target>
</trans-unit>
<trans-unit id="s6c607d74bdfe9f36">
<source>User mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>ユーザーマッピングは、このソースにアクセスしようとするときにユーザーが既にログインしている場合にのみ確認できます。</target>
</trans-unit>
<trans-unit id="sf6e1665c7022a1f8">
<source>Password</source>
<target>パスワード</target>
</trans-unit>
<trans-unit id="sd1f44f1a8bc20e67">
<source>Email</source>
<target>メール</target>
</trans-unit>
<trans-unit id="s8939f574b096054a">
<source>Not you?</source>
<target>あなたではありませんか?</target>
</trans-unit>
<trans-unit id="s296fbffaaa7c910a">
<source>Required.</source>
<target>必須。</target>
</trans-unit>
<trans-unit id="s81ecf2d4386b8e84">
<source>Continue</source>
<target>続行</target>
</trans-unit>
<trans-unit id="s61e48919db20538a">
<source>UPN</source>
<target>UPN</target>
</trans-unit>
<trans-unit id="s67ac11d47f1ce794">
<source>WebAuthn requires this page to be accessed via HTTPS.</source>
<target>WebAuthn はこのページに HTTPS 経由でアクセスする必要があります。</target>
</trans-unit>
<trans-unit id="se9e9e1d6799b86a5">
<source>WebAuthn not supported by browser.</source>
<target>WebAuthn はこのブラウザーではサポートされていません。</target>
</trans-unit>
<trans-unit id="sa4be93eb7f4e51e3">
<source>Site links</source>
<target>サイトリンク</target>
</trans-unit>
<trans-unit id="s6fe64b4625517333">
<source>Powered by authentik</source>
<target>authentik によるパワード</target>
</trans-unit>
<trans-unit id="sd766cdc29b25ff95">
<source>Authenticating with Apple...</source>
<target>Apple で認証中...</target>
</trans-unit>
<trans-unit id="s2c8189544e3ea679">
<source>Retry</source>
<target>再試行</target>
</trans-unit>
<trans-unit id="s420d2cdedcaf8cd0">
<source>Authenticating with Plex...</source>
<target>Plex で認証中...</target>
</trans-unit>
<trans-unit id="s2ddbebcb8a49b005">
<source>Waiting for authentication...</source>
<target>認証を待機中...</target>
</trans-unit>
<trans-unit id="sb15fe7b9d09bb419">
<source>If no Plex popup opens, click the button below.</source>
<target>Plex ポップアップが開かない場合は、下のボタンをクリックします。</target>
</trans-unit>
<trans-unit id="sbc625b4c669b9ce8">
<source>Open login</source>
<target>ログインを開く</target>
</trans-unit>
<trans-unit id="sf376ae7e9ef41c1a">
<source>Authenticating with Telegram...</source>
<target>Telegram で認証中...</target>
</trans-unit>
<trans-unit id="s76ea993fdc8503d8">
<source>Click the button below to start.</source>
<target>下のボタンをクリックして開始します。</target>
</trans-unit>
<trans-unit id="s15d6fabebb4ef2d8">
<source>User information</source>
<target>ユーザー情報</target>
</trans-unit>
<trans-unit id="s9bd9ba84819493d4">
<source>Something went wrong! Please try again later.</source>
<target>エラーが発生しました。しばらく後にもう一度お試しください。</target>
</trans-unit>
<trans-unit id="s4090dd0c0e45988b">
<source>Request ID</source>
<target>リクエスト ID</target>
</trans-unit>
<trans-unit id="s4d7fe7be1c49896c">
<source>You may close this page now.</source>
<target>このページを閉じることができます。</target>
</trans-unit>
<trans-unit id="s197420b40df164f8">
<source>Follow redirect</source>
<target>リダイレクトに従う</target>
</trans-unit>
<trans-unit id="s3ab772345f78aee0">
<source>Flow inspector</source>
<target>フロー インスペクター</target>
</trans-unit>
<trans-unit id="sb69e43f2f6bd1b54">
<source>Close flow inspector</source>
<target>フロー インスペクターを閉じる</target>
</trans-unit>
<trans-unit id="s502884e1977b2c06">
<source>Next stage</source>
<target>次のステージ</target>
</trans-unit>
<trans-unit id="sb3fa80ccfa97ee54">
<source>Stage name</source>
<target>ステージ名</target>
</trans-unit>
<trans-unit id="sbea3c1e4f2fd623d">
<source>Stage kind</source>
<target>ステージの種類</target>
</trans-unit>
<trans-unit id="s2bc8aa1740d3da34">
<source>Stage object</source>
<target>ステージオブジェクト</target>
</trans-unit>
<trans-unit id="sc3e1c4f1fff8e1ca">
<source>This flow is completed.</source>
<target>このフローは完了しました。</target>
</trans-unit>
<trans-unit id="s342eccabf83c9bde">
<source>Plan history</source>
<target>計画履歴</target>
</trans-unit>
<trans-unit id="sb2f307e79d20bb56">
<source>Current plan context</source>
<target>現在の計画コンテキスト</target>
</trans-unit>
<trans-unit id="sa13e6c8310000e30">
<source>Session ID</source>
<target>セッション ID</target>
</trans-unit>
<trans-unit id="s857cf5aa8955cf5c">
<source>Flow inspector loading</source>
<target>フロー インスペクター読み込み中</target>
</trans-unit>
<trans-unit id="sa11e92683c5860c7">
<source>Request has been denied.</source>
<target>リクエストが拒否されました。</target>
</trans-unit>
<trans-unit id="s2f7f35f6a5b733f5">
<source>Show password</source>
<target>パスワードを表示</target>
</trans-unit>
<trans-unit id="s452f791e0ff6a13e">
<source>Hide password</source>
<target>パスワードを隠す</target>
</trans-unit>
<trans-unit id="scf5ce91bfba10a61">
<source>Please enter your password</source>
<target>パスワードを入力してください</target>
</trans-unit>
<trans-unit id="s6bb30c61df4cf486">
<source>Caps Lock is enabled.</source>
<target>Caps Lock が有効です。</target>
</trans-unit>
<trans-unit id="s8d6236ad153d42c0">
<source>CAPTCHA challenge</source>
<target>CAPTCHA チャレンジ</target>
</trans-unit>
<trans-unit id="s30d6ff9e15e0a40a">
<source>Verifying...</source>
<target>検証中...</target>
</trans-unit>
<trans-unit id="s1c336c2d6cef77b3">
<source>Remember me on this device</source>
<target>このデバイスで私を覚えている</target>
</trans-unit>
<trans-unit id="seb6ab868740e4e36">
<source>Continue with <x id="0" equiv-text="${name}"/></source>
</trans-unit>
<trans-unit id="sc4eedb434536bdb4">
<source>Need an account?</source>
<target>アカウントが必要ですか?</target>
</trans-unit>
<trans-unit id="s38f774cd7e9b9dad">
<source>Sign up.</source>
<target>登録してください。</target>
</trans-unit>
<trans-unit id="sa03aa46068460c95">
<source>Forgot username or password?</source>
<target>ユーザー名またはパスワードをお忘れですか?</target>
</trans-unit>
<trans-unit id="s05a941e4b4bfca9f">
<source>Additional actions</source>
</trans-unit>
<trans-unit id="s6ecfc18dbfeedd76">
<source>Select one of the options below to continue.</source>
<target>以下のオプションから 1 つ選択して続行してください。</target>
</trans-unit>
<trans-unit id="s091d5407b5b32e84">
<source>Or</source>
<target>または</target>
</trans-unit>
<trans-unit id="se5fd752dbbc3cd28">
<source>Use a security key</source>
<target>セキュリティキーを使用</target>
</trans-unit>
<trans-unit id="s53dddf1733e26c98">
<source>Login sources</source>
</trans-unit>
<trans-unit id="s85366fac18679f28">
<source>Forgot password?</source>
<target>パスワードをお忘れですか?</target>
</trans-unit>
<trans-unit id="s14c552fb0a4c0186">
<source>Application requires following permissions:</source>
<target>アプリには以下の権限が必要です:</target>
</trans-unit>
<trans-unit id="s7073489bb01b3c24">
<source>Application already has access to the following permissions:</source>
<target>アプリは既に次の権限にアクセスできます:</target>
</trans-unit>
<trans-unit id="s98dc556f8bf707dc">
<source>Application requires following new permissions:</source>
<target>アプリには以下の新しい権限が必要です:</target>
</trans-unit>
<trans-unit id="s06bfe45ffef2cf60">
<source>Stage name: <x id="0" equiv-text="${this.challenge?.name}"/></source>
<target>ステージ名: <x id="0" equiv-text="${this.challenge.name}"/></target>
</trans-unit>
<trans-unit id="sbd19064fc3f405c1">
<source>Check your Inbox for a verification email.</source>
<target>確認メールについて受信トレイを確認してください。</target>
</trans-unit>
<trans-unit id="s8aff572e64b7936b">
<source>Send Email again.</source>
<target>メールをもう一度送信してください。</target>
</trans-unit>
<trans-unit id="sc091f75b942ec081">
<source>QR-Code to setup a time-based one-time password</source>
<target>時間ベースのワンタイムパスワードを設定するための QR コード</target>
</trans-unit>
<trans-unit id="s6db67c7681b8be6e">
<source>Copy time-based one-time password configuration</source>
<target>時間ベースのワンタイムパスワード構成をコピー</target>
</trans-unit>
<trans-unit id="s43e859bf711e3599">
<source>Copy TOTP Config</source>
<target>TOTP 設定をコピー</target>
</trans-unit>
<trans-unit id="s90064dd5c4dde2c6">
<source>Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.</source>
<target>デバイス上の Microsoft Authenticator、Google Authenticator、または他の認証器アプリを使用して上の QR
コードをスキャンし、MFA デバイスのセットアップを完了するために、デバイスが以下に表示するコードを入力してください。</target>
</trans-unit>
<trans-unit id="sa5562e0115ffbccd">
<source>Time-based one-time password</source>
<target>時間ベースのワンタイムパスワード</target>
</trans-unit>
<trans-unit id="s40f44c0d88807fd5">
<source>TOTP Code</source>
<target>TOTP コード</target>
</trans-unit>
<trans-unit id="s95474cc8c73dd9c0">
<source>Type your TOTP code...</source>
<target>TOTP コードを入力します...</target>
</trans-unit>
<trans-unit id="s168d0c138b63286d">
<source>Type your time-based one-time password code.</source>
<target>時間ベースのワンタイムパスワードコードを入力してください。</target>
</trans-unit>
<trans-unit id="sc2ec367e3108fe65">
<source>Duo activation QR code</source>
<target>Duo 有効化 QR コード</target>
</trans-unit>
<trans-unit id="sc5668cb23167e9bb">
<source>Alternatively, if your current device has Duo installed, click on this link:</source>
<target>または、現在のデバイスに Duo がインストールされている場合は、このリンクをクリックしてください:</target>
</trans-unit>
<trans-unit id="s721d94ae700b5dfd">
<source>Duo activation</source>
<target>Duo 有効化</target>
</trans-unit>
<trans-unit id="s708d9a4a0db0be8f">
<source>Check status</source>
<target>ステータスを確認</target>
</trans-unit>
<trans-unit id="s31fba571065f2c87">
<source>Make sure to keep these tokens in a safe place.</source>
<target>これらのトークンを安全な場所に保管してください。</target>
</trans-unit>
<trans-unit id="s3f8a07912545e72e">
<source>Configure your email</source>
<target>メールを構成</target>
</trans-unit>
<trans-unit id="scedf77e8b75cad5a">
<source>Please enter your email address.</source>
<target>メールアドレスを入力してください。</target>
</trans-unit>
<trans-unit id="s3643189d1abbb7f4">
<source>Code</source>
<target>コード</target>
</trans-unit>
<trans-unit id="s7cdd62c100b6b17b">
<source>Please enter the code you received via email</source>
<target>メール経由で受け取ったコードを入力してください</target>
</trans-unit>
<trans-unit id="sc0a0c87d5c556c38">
<source>Phone number</source>
<target>電話番号</target>
</trans-unit>
<trans-unit id="s04c1210202f48dc9">
<source>Please enter your Phone number.</source>
<target>電話番号を入力してください。</target>
</trans-unit>
<trans-unit id="seb0c08d9f233bbfe">
<source>Please enter the code you received via SMS</source>
<target>SMS 経由で受け取ったコードを入力してください</target>
</trans-unit>
<trans-unit id="s98bb2ae796f1ceef">
<source>Select another authentication method</source>
<target>別の認証方法を選択</target>
</trans-unit>
<trans-unit id="s844fea0bfb10a72a">
<source>Authentication code</source>
<target>認証コード</target>
</trans-unit>
<trans-unit id="s7abc9d08b0f70fd6">
<source>Static token</source>
<target>静的トークン</target>
</trans-unit>
<trans-unit id="s14e8ac4d377a1a99">
<source>Type an authentication code...</source>
<target>認証コードを入力します...</target>
</trans-unit>
<trans-unit id="s39002897db60bb28">
<source>Sending Duo push notification...</source>
<target>Duo プッシュ通知を送信中...</target>
</trans-unit>
<trans-unit id="sd2b8c1caa0340ed6">
<source>Failed to authenticate</source>
<target>認証に失敗</target>
</trans-unit>
<trans-unit id="s363abde8a254ea5f">
<source>Authentication failed. Please try again.</source>
<target>認証に失敗しました。もう一度お試しください。</target>
</trans-unit>
<trans-unit id="sffef1a8596bc58bb">
<source>Authenticating...</source>
<target>認証中...</target>
</trans-unit>
<trans-unit id="se409d01b52c4e12f">
<source>Retry authentication</source>
<target>認証を再試行</target>
</trans-unit>
<trans-unit id="s8d857061510fe794">
<source>Duo push-notifications</source>
<target>Duo プッシュ通知</target>
</trans-unit>
<trans-unit id="s47490298c17b753a">
<source>Receive a push notification on your device.</source>
<target>デバイスでプッシュ通知を受け取ります。</target>
</trans-unit>
<trans-unit id="sd6a025d66f2637d1">
<source>Traditional authenticator</source>
<target>従来の認証器</target>
</trans-unit>
<trans-unit id="sb25e689e00c61829">
<source>Use a code-based authenticator.</source>
<target>コードベースの認証器を使用します。</target>
</trans-unit>
<trans-unit id="s9e568afec3810bfe">
<source>Recovery keys</source>
<target>リカバリーキー</target>
</trans-unit>
<trans-unit id="s8bb0a1b672b52954">
<source>In case you lose access to your primary authenticators.</source>
<target>プライマリ認証器へのアクセスを失った場合に備えて。</target>
</trans-unit>
<trans-unit id="s97f2dc19fa556a6a">
<source>SMS</source>
<target>SMS</target>
</trans-unit>
<trans-unit id="s0e516232f2ab4e04">
<source>Tokens sent via SMS.</source>
<target>SMS 経由で送信されたトークン。</target>
</trans-unit>
<trans-unit id="s833cfe815918c143">
<source>Tokens sent via email.</source>
<target>メール経由で送信されたトークン。</target>
</trans-unit>
<trans-unit id="s76d21e163887ddd1">
<source>Unknown device</source>
<target>不明なデバイス</target>
</trans-unit>
<trans-unit id="sf0ceaf3116e31fd4">
<source>An unknown device class was provided.</source>
<target>不明なデバイスクラスが提供されました。</target>
</trans-unit>
<trans-unit id="s610fced3957d0471">
<source>Select an authentication method</source>
<target>認証方法を選択</target>
</trans-unit>
<trans-unit id="s958cedec1cb3fc52">
<source>Select a configuration stage</source>
<target>構成ステージを選択</target>
</trans-unit>
<trans-unit id="sac17f177f884e238">
<source>Stay signed in?</source>
<target>サインアップしたまま?</target>
</trans-unit>
<trans-unit id="s859b2e00391da380">
<source>Select Yes to reduce the number of times you're asked to sign in.</source>
<target>サインインを求められる回数を減らすには [はい] を選択します。</target>
</trans-unit>
<trans-unit id="s23da7320dee28a60">
<source>Device Code</source>
<target>デバイスコード</target>
</trans-unit>
<trans-unit id="s3cd84e82e83e35ad">
<source>Please enter your code</source>
<target>コードを入力してください</target>
</trans-unit>
<trans-unit id="s455a8fc21077e7f9">
<source>You've successfully authenticated your device.</source>
<target>デバイスが正常に認証されました。</target>
</trans-unit>
<trans-unit id="sac88482c48453fc8">
<source>You've logged out of <x id="0" equiv-text="${challenge.applicationName}"/>. You can go back to the overview to launch another application, or log out of your authentik account.</source>
<target><x id="0" equiv-text="${this.challenge.applicationName}"/> からログアウトしました。
概要に戻って別のアプリを起動するか、authentik アカウントからログアウトできます。</target>
</trans-unit>
<trans-unit id="s3108167b562674e2">
<source>Go back to overview</source>
<target>概要に戻る</target>
</trans-unit>
<trans-unit id="sdb749e793de55478">
<source>Log out of <x id="0" equiv-text="${challenge.brandName}"/></source>
<target><x id="0" equiv-text="${this.challenge.brandName}"/> からログアウト</target>
</trans-unit>
<trans-unit id="s521681ed1d5ff814">
<source>Log back into <x id="0" equiv-text="${challenge.applicationName}"/></source>
<target><x id="0" equiv-text="${this.challenge.applicationName}"/> に再度ログイン</target>
</trans-unit>
<trans-unit id="s78869b8b2bc26d0d">
<source>SAML Provider</source>
<target>SAML プロバイダー</target>
</trans-unit>
<trans-unit id="sca83a1f9227f74b9">
<source>SAML logout complete</source>
<target>SAML ログアウト完了</target>
</trans-unit>
<trans-unit id="s7b90eab7969ae056">
<source>Redirecting to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
<target>SAML プロバイダーにリダイレクト: <x id="0" equiv-text="${providerName}"/></target>
</trans-unit>
<trans-unit id="s3e6174b645d96835">
<source>Posting logout request to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
<target>SAML プロバイダーへのログアウトリクエストを送信: <x id="0" equiv-text="${providerName}"/></target>
</trans-unit>
<trans-unit id="s0b1ffff8bedd6b8a">
<source>Unknown Provider</source>
<target>不明なプロバイダー</target>
</trans-unit>
<trans-unit id="s777e86d562523c85">
<source>Logging out of providers...</source>
<target>プロバイダーからログアウト中...</target>
</trans-unit>
<trans-unit id="s4980379bf8461c2d">
<source>Single Logout</source>
<target>シングルログアウト</target>
</trans-unit>
<trans-unit id="s3736936aac1adc2e">
<source>Open flow inspector</source>
<target>フロー インスペクターを開く</target>
</trans-unit>
<trans-unit id="sa17ce23517e56461">
<source>Authentication form</source>
<target>認証フォーム</target>
</trans-unit>
<trans-unit id="s7fa4e5e409d43573">
<source>Error creating credential: <x id="0" equiv-text="${err}"/></source>
<target>認証情報の作成エラー: <x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="s9d95f09deb601f34">
<source>Server validation of credential failed: <x id="0" equiv-text="${err}"/></source>
<target>認証情報のサーバー検証に失敗: <x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="sb0821a9e92cac5eb">
<source>Failed to register. Please try again.</source>
<target>登録に失敗しました。もう一度お試しください。</target>
</trans-unit>
<trans-unit id="s238784fc1dc672ae">
<source>Registering...</source>
<target>登録中...</target>
</trans-unit>
<trans-unit id="s009bd1c98a9f5de2">
<source>Failed to register</source>
<target>登録に失敗</target>
</trans-unit>
<trans-unit id="sb166ce92e8e807d6">
<source>Retry registration</source>
<target>登録を再試行</target>
</trans-unit>
<trans-unit id="s95094b57684716a5">
<source>Failed to validate device.</source>
</trans-unit>
<trans-unit id="se99d25eb70c767ef">
<source>Verifying your device...</source>
</trans-unit>
<trans-unit id="s1af2337b6d11d4c6">
<source>Data export ready</source>
</trans-unit>
<trans-unit id="en-XA">
<source>English (Pseudo-Accents)</source>
</trans-unit>
<trans-unit id="avatar.alt-text-for-user">
<source>Avatar for <x id="0" equiv-text="${this.username}"/></source>
</trans-unit>
<trans-unit id="avatar.alt-text">
<source>User avatar</source>
</trans-unit>
<trans-unit id="flow.navigation.go-back">
<source>Go back</source>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent-to-address">
<source>A verification token has been sent to your configured email address: <x id="0" equiv-text="${email}"/></source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's configured email address.</note>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent">
<source>A verification token has been sent to your email address.</source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's email address.</note>
</trans-unit>
<trans-unit id="scd909e0bc55fc548">
<source>Security key</source>
</trans-unit>
<trans-unit id="sd0de938d9c37ad5f">
<source>Use a Passkey or security key to prove your identity.</source>
</trans-unit>
<trans-unit id="sb94beab52540d2b7">
<source>The CAPTCHA challenge failed to load.</source>
</trans-unit>
<trans-unit id="s217a96c47caaf73d">
<source>Could not find a suitable CAPTCHA provider.</source>
</trans-unit>
<trans-unit id="sdf2794b96386c868">
<source>Copy time-based one-time password secret</source>
</trans-unit>
<trans-unit id="sc78d16417878afd0">
<source>Copy Secret</source>
</trans-unit>
<trans-unit id="clipboard.write.success.message.entity">
<source><x id="0" equiv-text="${entityLabel}"/> copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.success.generic">
<source>Copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.failure.description">
<source>Clipboard not available. Please copy the value manually.</source>
</trans-unit>
<trans-unit id="totp.config">
<source>TOTP Config</source>
</trans-unit>
<trans-unit id="totp.config.clipboard.description">
<source>Paste this URL into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="totp.secret">
<source>TOTP Secret</source>
</trans-unit>
<trans-unit id="totp.secret.clipboard.description">
<source>Paste this secret into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="s92e22f9319fdb85d">
<source>Configuration warning</source>
</trans-unit>
<trans-unit id="saa088a2d0f90d5a9">
<source>Posting logout response to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s776d93092ad9ce90">
<source>Review initiated</source>
</trans-unit>
<trans-unit id="sad46bcad1a343b51">
<source>Review overdue</source>
</trans-unit>
<trans-unit id="s59d168d966cecbaf">
<source>Review attested</source>
</trans-unit>
<trans-unit id="s5158b7f014cecefc">
<source>Review completed</source>
</trans-unit>
<trans-unit id="sdd2ea73c24b40d5d">
<source>Site footer</source>
</trans-unit>
<trans-unit id="sf910cca0f06bbc31">
<source>Enter the email address or username associated with your account.</source>
</trans-unit>
<trans-unit id="s6e858c4c4c3b6b76">
<source>You're about to be redirected to the following URL.</source>
</trans-unit>
<trans-unit id="sd5d2b94a1ccba1a9">
<source>Log in to continue to <x id="0" equiv-text="${prelude}"/>.</source>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,869 @@
<?xml version="1.0"?><xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file target-language="ko-KR" source-language="en" original="lit-localize-inputs" datatype="plaintext">
<body>
<!-- #region Locales -->
<trans-unit id="en">
<source>English</source>
<target>영어</target>
</trans-unit>
<trans-unit id="ja-JP">
<source>Japanese</source>
<target>일본어</target>
</trans-unit>
<trans-unit id="ko-KR">
<source>Korean</source>
<target>한국어</target>
</trans-unit>
<trans-unit id="zh-Hans">
<source>Chinese (Simplified)</source>
<target>중국어</target>
</trans-unit>
<trans-unit id="zh-Hant">
<source>Chinese (Traditional)</source>
<target>중국어</target>
</trans-unit>
<!-- #endregion -->
<!-- #region Locale selector -->
<trans-unit id="locale-auto-detect-option">
<source>Auto-detect</source>
<target>자동 감지</target>
<note from="lit-localize">Label for the auto-detect locale option in language selection dropdown</note>
</trans-unit>
<trans-unit id="language-selector-label">
<source>Select language</source>
<target>언어 선택</target>
<note from="lit-localize">Label for the language selection dropdown</note>
</trans-unit>
<trans-unit id="locale-option-localized-label">
<source><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</source>
<note from="lit-localize">Locale option label showing the localized language name along with the native language name in parentheses.</note>
</trans-unit>
<!-- #endregion -->
<trans-unit id="s12d6dde9b30c3093">
<source>Dismiss</source>
<target>무시</target>
</trans-unit>
<trans-unit id="sfe629863ba1338c2">
<source>Connection error, reconnecting...</source>
<target>연결 오류, 다시 연결 중...</target>
</trans-unit>
<trans-unit id="sdaecc3c29a27c5c5">
<source>An unknown error occurred</source>
</trans-unit>
<trans-unit id="se84ba7f105934495">
<source>Please check the browser console for more details.</source>
</trans-unit>
<trans-unit id="sdea479482318489d">
<source>Status messages</source>
</trans-unit>
<trans-unit id="s91ae4b6bf981682b">
<source>authentik Logo</source>
<target>authentik 로고</target>
</trans-unit>
<trans-unit id="s49730f3d5751a433">
<source>Loading...</source>
<target>로드 중...</target>
</trans-unit>
<trans-unit id="sa50a6326530d8a0d">
<source>Show less</source>
<target>적게 표시</target>
</trans-unit>
<trans-unit id="sb2c57b2d347203dd">
<source>Show more</source>
<target>자세히 보기</target>
</trans-unit>
<trans-unit id="sa48f81f001b893d2">
<source>User</source>
<target>사용자</target>
</trans-unit>
<trans-unit id="sb59d68ed12d46377">
<source>Loading</source>
<target>로드 중</target>
</trans-unit>
<trans-unit id="s0382d73823585617">
<source><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></source>
</trans-unit>
<trans-unit id="sae5d87e99fe081e0">
<source>Required</source>
<target>필수</target>
</trans-unit>
<trans-unit id="s1cd198d689c66e4b">
<source>API Access</source>
<target>API 액세스</target>
</trans-unit>
<trans-unit id="sf29883ac9ec43085">
<source>App password</source>
<target>앱 비밀번호</target>
</trans-unit>
<trans-unit id="s6ac670086eb137c6">
<source>Recovery</source>
<target>Recovery</target>
</trans-unit>
<trans-unit id="sfe211545fd02f73e">
<source>Verification</source>
<target>Verification</target>
</trans-unit>
<trans-unit id="sd73b202ec04eefd9">
<source>Unknown intent</source>
<target>intent를 알 수 없음 (Unknown intent)</target>
</trans-unit>
<trans-unit id="sc8da3cc71de63832">
<source>Login</source>
<target>로그인</target>
</trans-unit>
<trans-unit id="sb4564c127ab8b921">
<source>Failed login</source>
<target>로그인 실패</target>
</trans-unit>
<trans-unit id="s67749057edb2586b">
<source>Logout</source>
<target>로그아웃</target>
</trans-unit>
<trans-unit id="s7e537ad68d7c16e1">
<source>User was written to</source>
<target>사용자가 다음에 기록됨</target>
</trans-unit>
<trans-unit id="sa0e0bdd7e244416b">
<source>Suspicious request</source>
<target>의심스러운 요청</target>
</trans-unit>
<trans-unit id="s7bda44013984fc48">
<source>Password set</source>
<target>비밀번호 설정</target>
</trans-unit>
<trans-unit id="sa1b41e334ad89d94">
<source>Secret was viewed</source>
<target>비밀이 표시됨</target>
</trans-unit>
<trans-unit id="s92ca679592a36b35">
<source>Secret was rotated</source>
<target>비밀이 회전됨</target>
</trans-unit>
<trans-unit id="s8a1d9403ca90989b">
<source>Invitation used</source>
<target>사용된 초대</target>
</trans-unit>
<trans-unit id="s5f496533610103f2">
<source>Application authorized</source>
<target>승인된 애플리케이션</target>
</trans-unit>
<trans-unit id="sdc9e222be9612939">
<source>Source linked</source>
<target>링크된 소스</target>
</trans-unit>
<trans-unit id="sb1c91762ae3a9bee">
<source>Impersonation started</source>
<target>사용자 위장 시작</target>
</trans-unit>
<trans-unit id="s9c73bd29b279d26b">
<source>Impersonation ended</source>
<target>사용자 위장 종료</target>
</trans-unit>
<trans-unit id="s1cd264012278c047">
<source>Flow execution</source>
<target>플로우 실행</target>
</trans-unit>
<trans-unit id="s32f04d33924ce8ad">
<source>Policy execution</source>
<target>정책 실행</target>
</trans-unit>
<trans-unit id="sb6d7128df5978cee">
<source>Policy exception</source>
<target>정책 예외</target>
</trans-unit>
<trans-unit id="s77f572257f69a8db">
<source>Property Mapping exception</source>
<target>속성 매핑 예외</target>
</trans-unit>
<trans-unit id="s2543cffd6ebb6803">
<source>System task execution</source>
<target>시스템 작업 실행</target>
</trans-unit>
<trans-unit id="se2f258b996f7279c">
<source>System task exception</source>
<target>시스템 작업 예외</target>
</trans-unit>
<trans-unit id="s81eff3409d572a21">
<source>General system exception</source>
<target>일반 시스템 예외</target>
</trans-unit>
<trans-unit id="sf8f49cdbf0036343">
<source>Configuration error</source>
<target>구성 오류</target>
</trans-unit>
<trans-unit id="s9c6f61dc47bc4f0a">
<source>Model created</source>
<target>모델 생성함</target>
</trans-unit>
<trans-unit id="s47a4983a2c6bb749">
<source>Model updated</source>
<target>모델 업데이트함</target>
</trans-unit>
<trans-unit id="sc9f69360b58706c7">
<source>Model deleted</source>
<target>모델 삭제함</target>
</trans-unit>
<trans-unit id="sa266303caf1bd27f">
<source>Email sent</source>
<target>이메일 보냄</target>
</trans-unit>
<trans-unit id="s6c410fedda2a575f">
<source>Update available</source>
<target>업데이트 가능</target>
</trans-unit>
<trans-unit id="sf1ec4acb8d744ed9">
<source>Alert</source>
<target>경고</target>
</trans-unit>
<trans-unit id="s9117fb5195e75151">
<source>Notice</source>
<target>공지</target>
</trans-unit>
<trans-unit id="s34be76c6b1eadbef">
<source>Warning</source>
<target>주의</target>
</trans-unit>
<trans-unit id="s02240309358f557c">
<source>Unknown severity</source>
<target>심각도 불명</target>
</trans-unit>
<trans-unit id="s858e7ac4b3cf955f">
<source>Static tokens</source>
<target>정적 토큰</target>
</trans-unit>
<trans-unit id="sfcfcf85a57eea78a">
<source>TOTP Device</source>
<target>TOTP 디바이스</target>
</trans-unit>
<trans-unit id="s482bc55a78891ef7">
<source>A code has been sent to your address: <x id="0" equiv-text="${email}"/></source>
</trans-unit>
<trans-unit id="s5afa3fc77ce8d94d">
<source>A code has been sent to your email address.</source>
</trans-unit>
<trans-unit id="s37f47fa981493c3b">
<source>A one-time use code has been sent to you via SMS text message.</source>
</trans-unit>
<trans-unit id="sc92a7248dba5f388">
<source>Open your authenticator app to retrieve a one-time use code.</source>
</trans-unit>
<trans-unit id="s21d95b4651ad7a1e">
<source>Enter a one-time recovery code for this user.</source>
</trans-unit>
<trans-unit id="s2e1d5a7d320c25ef">
<source>Enter the code from your authenticator device.</source>
</trans-unit>
<trans-unit id="se2d65e13768468e0">
<source>Internal</source>
<target>내부</target>
</trans-unit>
<trans-unit id="s84fcddede27b8e2a">
<source>External</source>
<target>외부</target>
</trans-unit>
<trans-unit id="s1a635369edaf4dc3">
<source>Service account</source>
<target>서비스 계정</target>
</trans-unit>
<trans-unit id="sff930bf2834e2201">
<source>Service account (internal)</source>
<target>서비스 계정 (내부)</target>
</trans-unit>
<trans-unit id="scb489a1a173ac3f0">
<source>Yes</source>
<target>네</target>
</trans-unit>
<trans-unit id="s09205907b5b56cda">
<source>No</source>
<target>아니오</target>
</trans-unit>
<trans-unit id="s7f073c746d0f6324">
<source>Form actions</source>
</trans-unit>
<trans-unit id="s98b1cb8fb62909ec">
<source>Group</source>
<target>그룹</target>
</trans-unit>
<trans-unit id="s2e422519ed38f7d8">
<source>Pass</source>
<target>통과</target>
</trans-unit>
<trans-unit id="sac315d5bd28d4efa">
<source>Don't Pass</source>
</trans-unit>
<trans-unit id="s042baf59902a711f">
<source>Policy</source>
<target>정책</target>
</trans-unit>
<trans-unit id="sd8f220c999726151">
<source>Redirect</source>
<target>리디렉트</target>
</trans-unit>
<trans-unit id="s03f42eea72154959">
<source>Username</source>
<target>사용자명</target>
</trans-unit>
<trans-unit id="s5f5bf4ef2bd93c04">
<source>Group mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>그룹 매핑은 사용자가 이 소스에 액세스하려고 할 때 이미 로그인한 경우에만 확인할 수 있습니다.</target>
</trans-unit>
<trans-unit id="s6c607d74bdfe9f36">
<source>User mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>사용자 매핑은 사용자가 이 소스에 액세스하려고 할 때 이미 로그인한 경우에만 확인할 수 있습니다.</target>
</trans-unit>
<trans-unit id="sf6e1665c7022a1f8">
<source>Password</source>
<target>비밀번호</target>
</trans-unit>
<trans-unit id="sd1f44f1a8bc20e67">
<source>Email</source>
<target>이메일</target>
</trans-unit>
<trans-unit id="s8939f574b096054a">
<source>Not you?</source>
<target>본인이 아닌가요?</target>
</trans-unit>
<trans-unit id="s296fbffaaa7c910a">
<source>Required.</source>
<target>필수.</target>
</trans-unit>
<trans-unit id="s81ecf2d4386b8e84">
<source>Continue</source>
<target>계속</target>
</trans-unit>
<trans-unit id="s61e48919db20538a">
<source>UPN</source>
<target>UPN</target>
</trans-unit>
<trans-unit id="s67ac11d47f1ce794">
<source>WebAuthn requires this page to be accessed via HTTPS.</source>
<target>WebAuthn을 사용하려면 이 페이지에 HTTPS를 통해 액세스해야 합니다.</target>
</trans-unit>
<trans-unit id="se9e9e1d6799b86a5">
<source>WebAuthn not supported by browser.</source>
<target>브라우저에서 WebAuthn을 지원하지 않습니다.</target>
</trans-unit>
<trans-unit id="sa4be93eb7f4e51e3">
<source>Site links</source>
</trans-unit>
<trans-unit id="s6fe64b4625517333">
<source>Powered by authentik</source>
<target>Powered by authentik</target>
</trans-unit>
<trans-unit id="sd766cdc29b25ff95">
<source>Authenticating with Apple...</source>
<target>Apple로 인증...</target>
</trans-unit>
<trans-unit id="s2c8189544e3ea679">
<source>Retry</source>
<target>재시도</target>
</trans-unit>
<trans-unit id="s420d2cdedcaf8cd0">
<source>Authenticating with Plex...</source>
<target>Plex로 인증...</target>
</trans-unit>
<trans-unit id="s2ddbebcb8a49b005">
<source>Waiting for authentication...</source>
<target>인증을 기다리는 중...</target>
</trans-unit>
<trans-unit id="sb15fe7b9d09bb419">
<source>If no Plex popup opens, click the button below.</source>
<target>Plex 팝업이 열리지 않으면 아래 버튼을 클릭하세요.</target>
</trans-unit>
<trans-unit id="sbc625b4c669b9ce8">
<source>Open login</source>
<target>로그인 열기</target>
</trans-unit>
<trans-unit id="sf376ae7e9ef41c1a">
<source>Authenticating with Telegram...</source>
</trans-unit>
<trans-unit id="s76ea993fdc8503d8">
<source>Click the button below to start.</source>
</trans-unit>
<trans-unit id="s15d6fabebb4ef2d8">
<source>User information</source>
</trans-unit>
<trans-unit id="s9bd9ba84819493d4">
<source>Something went wrong! Please try again later.</source>
<target>문제가 발생했습니다! 나중에 다시 시도해 주세요.</target>
</trans-unit>
<trans-unit id="s4090dd0c0e45988b">
<source>Request ID</source>
<target>요청 ID</target>
</trans-unit>
<trans-unit id="s4d7fe7be1c49896c">
<source>You may close this page now.</source>
<target>이제 이 페이지를 닫아도 됩니다.</target>
</trans-unit>
<trans-unit id="s197420b40df164f8">
<source>Follow redirect</source>
<target>리디렉션 따라가기</target>
</trans-unit>
<trans-unit id="s3ab772345f78aee0">
<source>Flow inspector</source>
<target>플로우 검사기</target>
</trans-unit>
<trans-unit id="sb69e43f2f6bd1b54">
<source>Close flow inspector</source>
</trans-unit>
<trans-unit id="s502884e1977b2c06">
<source>Next stage</source>
<target>다음 스테이지</target>
</trans-unit>
<trans-unit id="sb3fa80ccfa97ee54">
<source>Stage name</source>
<target>스테이지 이름</target>
</trans-unit>
<trans-unit id="sbea3c1e4f2fd623d">
<source>Stage kind</source>
<target>스테이지 종류</target>
</trans-unit>
<trans-unit id="s2bc8aa1740d3da34">
<source>Stage object</source>
<target>스테이지 오브젝트</target>
</trans-unit>
<trans-unit id="sc3e1c4f1fff8e1ca">
<source>This flow is completed.</source>
<target>이 플로우는 완료되었습니다.</target>
</trans-unit>
<trans-unit id="s342eccabf83c9bde">
<source>Plan history</source>
<target>플랜 내역</target>
</trans-unit>
<trans-unit id="sb2f307e79d20bb56">
<source>Current plan context</source>
<target>현재 플랜 컨텍스트</target>
</trans-unit>
<trans-unit id="sa13e6c8310000e30">
<source>Session ID</source>
<target>세션 ID</target>
</trans-unit>
<trans-unit id="s857cf5aa8955cf5c">
<source>Flow inspector loading</source>
</trans-unit>
<trans-unit id="sa11e92683c5860c7">
<source>Request has been denied.</source>
<target>요청이 거부되었습니다.</target>
</trans-unit>
<trans-unit id="s2f7f35f6a5b733f5">
<source>Show password</source>
<target>비밀번호 보기</target>
</trans-unit>
<trans-unit id="s452f791e0ff6a13e">
<source>Hide password</source>
<target>비밀번호 가리기</target>
</trans-unit>
<trans-unit id="scf5ce91bfba10a61">
<source>Please enter your password</source>
<target>비밀번호를 입력하세요</target>
</trans-unit>
<trans-unit id="s6bb30c61df4cf486">
<source>Caps Lock is enabled.</source>
<target>Caps Lock이 켜져있습니다.</target>
</trans-unit>
<trans-unit id="s8d6236ad153d42c0">
<source>CAPTCHA challenge</source>
</trans-unit>
<trans-unit id="s30d6ff9e15e0a40a">
<source>Verifying...</source>
<target>검증하는 중...</target>
</trans-unit>
<trans-unit id="s1c336c2d6cef77b3">
<source>Remember me on this device</source>
<target>이 기기에서 계정 기억하기</target>
</trans-unit>
<trans-unit id="seb6ab868740e4e36">
<source>Continue with <x id="0" equiv-text="${name}"/></source>
</trans-unit>
<trans-unit id="sc4eedb434536bdb4">
<source>Need an account?</source>
<target>계정이 필요하신가요?</target>
</trans-unit>
<trans-unit id="s38f774cd7e9b9dad">
<source>Sign up.</source>
<target>가입.</target>
</trans-unit>
<trans-unit id="sa03aa46068460c95">
<source>Forgot username or password?</source>
<target>사용자명이나 비밀번호를 잊으셨나요?</target>
</trans-unit>
<trans-unit id="s05a941e4b4bfca9f">
<source>Additional actions</source>
</trans-unit>
<trans-unit id="s6ecfc18dbfeedd76">
<source>Select one of the options below to continue.</source>
<target>아래 옵션 중 하나를 선택해 계속합니다.</target>
</trans-unit>
<trans-unit id="s091d5407b5b32e84">
<source>Or</source>
<target>혹은</target>
</trans-unit>
<trans-unit id="se5fd752dbbc3cd28">
<source>Use a security key</source>
<target>보안 키 사용</target>
</trans-unit>
<trans-unit id="s53dddf1733e26c98">
<source>Login sources</source>
</trans-unit>
<trans-unit id="s85366fac18679f28">
<source>Forgot password?</source>
<target>비밀번호를 잊으셨나요?</target>
</trans-unit>
<trans-unit id="s14c552fb0a4c0186">
<source>Application requires following permissions:</source>
<target>애플리케이션에는 다음 권한이 필요합니다:</target>
</trans-unit>
<trans-unit id="s7073489bb01b3c24">
<source>Application already has access to the following permissions:</source>
<target>애플리케이션에 이미 다음 권한에 대한 액세스 권한이 있습니다:</target>
</trans-unit>
<trans-unit id="s98dc556f8bf707dc">
<source>Application requires following new permissions:</source>
<target>애플리케이션에는 다음과 같은 새로운 권한이 필요합니다:</target>
</trans-unit>
<trans-unit id="s06bfe45ffef2cf60">
<source>Stage name: <x id="0" equiv-text="${this.challenge?.name}"/></source>
<target>스테이지 이름: <x id="0" equiv-text="${this.challenge.name}"/></target>
</trans-unit>
<trans-unit id="sbd19064fc3f405c1">
<source>Check your Inbox for a verification email.</source>
<target>받은 편지함에서 인증 이메일을 확인합니다.</target>
</trans-unit>
<trans-unit id="s8aff572e64b7936b">
<source>Send Email again.</source>
<target>이메일을 다시 보냅니다.</target>
</trans-unit>
<trans-unit id="sc091f75b942ec081">
<source>QR-Code to setup a time-based one-time password</source>
</trans-unit>
<trans-unit id="s6db67c7681b8be6e">
<source>Copy time-based one-time password configuration</source>
</trans-unit>
<trans-unit id="s43e859bf711e3599">
<source>Copy TOTP Config</source>
</trans-unit>
<trans-unit id="s90064dd5c4dde2c6">
<source>Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.</source>
<target>Microsoft Authenticator, Google Authenticator, 또는 다른 인증기 앱을 사용하여 QR 코드를 인식한 후, 기기에 표시되는 코드를 입력하여 MFA 기기 설정을 완료하세요.</target>
</trans-unit>
<trans-unit id="sa5562e0115ffbccd">
<source>Time-based one-time password</source>
</trans-unit>
<trans-unit id="s40f44c0d88807fd5">
<source>TOTP Code</source>
</trans-unit>
<trans-unit id="s95474cc8c73dd9c0">
<source>Type your TOTP code...</source>
</trans-unit>
<trans-unit id="s168d0c138b63286d">
<source>Type your time-based one-time password code.</source>
</trans-unit>
<trans-unit id="sc2ec367e3108fe65">
<source>Duo activation QR code</source>
<target>Duo 활성화 QR 코드</target>
</trans-unit>
<trans-unit id="sc5668cb23167e9bb">
<source>Alternatively, if your current device has Duo installed, click on this link:</source>
<target>대안으로, 현재 디바이스에 Duo가 설치되어 있는 경우 이 링크를 클릭합니다:</target>
</trans-unit>
<trans-unit id="s721d94ae700b5dfd">
<source>Duo activation</source>
<target>Duo 활성화</target>
</trans-unit>
<trans-unit id="s708d9a4a0db0be8f">
<source>Check status</source>
<target>상태 확인</target>
</trans-unit>
<trans-unit id="s31fba571065f2c87">
<source>Make sure to keep these tokens in a safe place.</source>
<target>이 토큰은 반드시 안전한 곳에 보관하세요.</target>
</trans-unit>
<trans-unit id="s3f8a07912545e72e">
<source>Configure your email</source>
</trans-unit>
<trans-unit id="scedf77e8b75cad5a">
<source>Please enter your email address.</source>
<target>이메일 주소를 입력해주세요.</target>
</trans-unit>
<trans-unit id="s3643189d1abbb7f4">
<source>Code</source>
<target>코드</target>
</trans-unit>
<trans-unit id="s7cdd62c100b6b17b">
<source>Please enter the code you received via email</source>
<target>이메일로 받은 코드를 입력해주세요.</target>
</trans-unit>
<trans-unit id="sc0a0c87d5c556c38">
<source>Phone number</source>
<target>전화 번호</target>
</trans-unit>
<trans-unit id="s04c1210202f48dc9">
<source>Please enter your Phone number.</source>
<target>전화번호를 입력하세요.</target>
</trans-unit>
<trans-unit id="seb0c08d9f233bbfe">
<source>Please enter the code you received via SMS</source>
<target>SMS로 받은 코드를 입력하세요.</target>
</trans-unit>
<trans-unit id="s98bb2ae796f1ceef">
<source>Select another authentication method</source>
<target>다른 인증 방법 선택</target>
</trans-unit>
<trans-unit id="s844fea0bfb10a72a">
<source>Authentication code</source>
<target>인증 코드</target>
</trans-unit>
<trans-unit id="s7abc9d08b0f70fd6">
<source>Static token</source>
<target>정적 토큰</target>
</trans-unit>
<trans-unit id="s14e8ac4d377a1a99">
<source>Type an authentication code...</source>
</trans-unit>
<trans-unit id="s39002897db60bb28">
<source>Sending Duo push notification...</source>
</trans-unit>
<trans-unit id="sd2b8c1caa0340ed6">
<source>Failed to authenticate</source>
</trans-unit>
<trans-unit id="s363abde8a254ea5f">
<source>Authentication failed. Please try again.</source>
<target>인증에 실패했습니다. 다시 시도해주세요.</target>
</trans-unit>
<trans-unit id="sffef1a8596bc58bb">
<source>Authenticating...</source>
<target>인증하는 중...</target>
</trans-unit>
<trans-unit id="se409d01b52c4e12f">
<source>Retry authentication</source>
<target>인증 다시 시도</target>
</trans-unit>
<trans-unit id="s8d857061510fe794">
<source>Duo push-notifications</source>
<target>Duo push-알림</target>
</trans-unit>
<trans-unit id="s47490298c17b753a">
<source>Receive a push notification on your device.</source>
<target>디바이스에서 푸시 알림을 받습니다.</target>
</trans-unit>
<trans-unit id="sd6a025d66f2637d1">
<source>Traditional authenticator</source>
<target>전통적 인증기</target>
</trans-unit>
<trans-unit id="sb25e689e00c61829">
<source>Use a code-based authenticator.</source>
<target>코드 기반 인증기를 사용합니다.</target>
</trans-unit>
<trans-unit id="s9e568afec3810bfe">
<source>Recovery keys</source>
<target>복구 키</target>
</trans-unit>
<trans-unit id="s8bb0a1b672b52954">
<source>In case you lose access to your primary authenticators.</source>
</trans-unit>
<trans-unit id="s97f2dc19fa556a6a">
<source>SMS</source>
<target>SMS</target>
</trans-unit>
<trans-unit id="s0e516232f2ab4e04">
<source>Tokens sent via SMS.</source>
<target>SMS를 통해 토큰을 전송했습니다.</target>
</trans-unit>
<trans-unit id="s833cfe815918c143">
<source>Tokens sent via email.</source>
</trans-unit>
<trans-unit id="s76d21e163887ddd1">
<source>Unknown device</source>
</trans-unit>
<trans-unit id="sf0ceaf3116e31fd4">
<source>An unknown device class was provided.</source>
</trans-unit>
<trans-unit id="s610fced3957d0471">
<source>Select an authentication method</source>
</trans-unit>
<trans-unit id="s958cedec1cb3fc52">
<source>Select a configuration stage</source>
</trans-unit>
<trans-unit id="sac17f177f884e238">
<source>Stay signed in?</source>
<target>로그인을 유지하시겠습니까?</target>
</trans-unit>
<trans-unit id="s859b2e00391da380">
<source>Select Yes to reduce the number of times you're asked to sign in.</source>
<target>로그인 요청 횟수를 줄이려면 예를 선택합니다.</target>
</trans-unit>
<trans-unit id="s23da7320dee28a60">
<source>Device Code</source>
</trans-unit>
<trans-unit id="s3cd84e82e83e35ad">
<source>Please enter your code</source>
<target>코드를 입력하세요.</target>
</trans-unit>
<trans-unit id="s455a8fc21077e7f9">
<source>You've successfully authenticated your device.</source>
<target>디바이스 인증에 성공했습니다.</target>
</trans-unit>
<trans-unit id="sac88482c48453fc8">
<source>You've logged out of <x id="0" equiv-text="${challenge.applicationName}"/>. You can go back to the overview to launch another application, or log out of your authentik account.</source>
</trans-unit>
<trans-unit id="s3108167b562674e2">
<source>Go back to overview</source>
</trans-unit>
<trans-unit id="sdb749e793de55478">
<source>Log out of <x id="0" equiv-text="${challenge.brandName}"/></source>
</trans-unit>
<trans-unit id="s521681ed1d5ff814">
<source>Log back into <x id="0" equiv-text="${challenge.applicationName}"/></source>
</trans-unit>
<trans-unit id="s78869b8b2bc26d0d">
<source>SAML Provider</source>
</trans-unit>
<trans-unit id="sca83a1f9227f74b9">
<source>SAML logout complete</source>
</trans-unit>
<trans-unit id="s7b90eab7969ae056">
<source>Redirecting to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s3e6174b645d96835">
<source>Posting logout request to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s0b1ffff8bedd6b8a">
<source>Unknown Provider</source>
</trans-unit>
<trans-unit id="s777e86d562523c85">
<source>Logging out of providers...</source>
</trans-unit>
<trans-unit id="s4980379bf8461c2d">
<source>Single Logout</source>
</trans-unit>
<trans-unit id="s3736936aac1adc2e">
<source>Open flow inspector</source>
</trans-unit>
<trans-unit id="sa17ce23517e56461">
<source>Authentication form</source>
</trans-unit>
<trans-unit id="s7fa4e5e409d43573">
<source>Error creating credential: <x id="0" equiv-text="${err}"/></source>
</trans-unit>
<trans-unit id="s9d95f09deb601f34">
<source>Server validation of credential failed: <x id="0" equiv-text="${err}"/></source>
</trans-unit>
<trans-unit id="sb0821a9e92cac5eb">
<source>Failed to register. Please try again.</source>
<target>등록에 실패했습니다. 다시 시도해주세요.</target>
</trans-unit>
<trans-unit id="s238784fc1dc672ae">
<source>Registering...</source>
<target>등록하는 중...</target>
</trans-unit>
<trans-unit id="s009bd1c98a9f5de2">
<source>Failed to register</source>
<target>등록 실패</target>
</trans-unit>
<trans-unit id="sb166ce92e8e807d6">
<source>Retry registration</source>
<target>등록 다시 시도</target>
</trans-unit>
<trans-unit id="s95094b57684716a5">
<source>Failed to validate device.</source>
</trans-unit>
<trans-unit id="se99d25eb70c767ef">
<source>Verifying your device...</source>
</trans-unit>
<trans-unit id="s1af2337b6d11d4c6">
<source>Data export ready</source>
</trans-unit>
<trans-unit id="en-XA">
<source>English (Pseudo-Accents)</source>
</trans-unit>
<trans-unit id="avatar.alt-text-for-user">
<source>Avatar for <x id="0" equiv-text="${this.username}"/></source>
</trans-unit>
<trans-unit id="avatar.alt-text">
<source>User avatar</source>
</trans-unit>
<trans-unit id="flow.navigation.go-back">
<source>Go back</source>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent-to-address">
<source>A verification token has been sent to your configured email address: <x id="0" equiv-text="${email}"/></source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's configured email address.</note>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent">
<source>A verification token has been sent to your email address.</source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's email address.</note>
</trans-unit>
<trans-unit id="scd909e0bc55fc548">
<source>Security key</source>
</trans-unit>
<trans-unit id="sd0de938d9c37ad5f">
<source>Use a Passkey or security key to prove your identity.</source>
</trans-unit>
<trans-unit id="sb94beab52540d2b7">
<source>The CAPTCHA challenge failed to load.</source>
</trans-unit>
<trans-unit id="s217a96c47caaf73d">
<source>Could not find a suitable CAPTCHA provider.</source>
</trans-unit>
<trans-unit id="sdf2794b96386c868">
<source>Copy time-based one-time password secret</source>
</trans-unit>
<trans-unit id="sc78d16417878afd0">
<source>Copy Secret</source>
</trans-unit>
<trans-unit id="clipboard.write.success.message.entity">
<source><x id="0" equiv-text="${entityLabel}"/> copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.success.generic">
<source>Copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.failure.description">
<source>Clipboard not available. Please copy the value manually.</source>
</trans-unit>
<trans-unit id="totp.config">
<source>TOTP Config</source>
</trans-unit>
<trans-unit id="totp.config.clipboard.description">
<source>Paste this URL into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="totp.secret">
<source>TOTP Secret</source>
</trans-unit>
<trans-unit id="totp.secret.clipboard.description">
<source>Paste this secret into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="s92e22f9319fdb85d">
<source>Configuration warning</source>
</trans-unit>
<trans-unit id="saa088a2d0f90d5a9">
<source>Posting logout response to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s776d93092ad9ce90">
<source>Review initiated</source>
</trans-unit>
<trans-unit id="sad46bcad1a343b51">
<source>Review overdue</source>
</trans-unit>
<trans-unit id="s59d168d966cecbaf">
<source>Review attested</source>
</trans-unit>
<trans-unit id="s5158b7f014cecefc">
<source>Review completed</source>
</trans-unit>
<trans-unit id="sdd2ea73c24b40d5d">
<source>Site footer</source>
</trans-unit>
<trans-unit id="sf910cca0f06bbc31">
<source>Enter the email address or username associated with your account.</source>
</trans-unit>
<trans-unit id="s6e858c4c4c3b6b76">
<source>You're about to be redirected to the following URL.</source>
</trans-unit>
<trans-unit id="sd5d2b94a1ccba1a9">
<source>Log in to continue to <x id="0" equiv-text="${prelude}"/>.</source>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,848 @@
<?xml version="1.0"?><xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file target-language="nl-NL" source-language="en" original="lit-localize-inputs" datatype="plaintext">
<body>
<!-- #region Locales -->
<trans-unit id="en">
<source>English</source>
<target>Engels</target>
</trans-unit>
<trans-unit id="ja-JP">
<source>Japanese</source>
<target>Japans</target>
</trans-unit>
<trans-unit id="ko-KR">
<source>Korean</source>
<target>Koreaans</target>
</trans-unit>
<trans-unit id="zh-Hans">
<source>Chinese (Simplified)</source>
<target>Chinees</target>
</trans-unit>
<trans-unit id="zh-Hant">
<source>Chinese (Traditional)</source>
<target>Chinees</target>
</trans-unit>
<!-- #endregion -->
<!-- #region Locale selector -->
<trans-unit id="locale-auto-detect-option">
<source>Auto-detect</source>
<target>Automatische detectie</target>
<note from="lit-localize">Label for the auto-detect locale option in language selection dropdown</note>
</trans-unit>
<trans-unit id="language-selector-label">
<source>Select language</source>
<target>Taal selecteren</target>
<note from="lit-localize">Label for the language selection dropdown</note>
</trans-unit>
<trans-unit id="locale-option-localized-label">
<source><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</source>
<note from="lit-localize">Locale option label showing the localized language name along with the native language name in parentheses.</note>
</trans-unit>
<!-- #endregion -->
<trans-unit id="s12d6dde9b30c3093">
<source>Dismiss</source>
</trans-unit>
<trans-unit id="sfe629863ba1338c2">
<source>Connection error, reconnecting...</source>
<target>Verbindingsfout, opnieuw verbinden...</target>
</trans-unit>
<trans-unit id="sdaecc3c29a27c5c5">
<source>An unknown error occurred</source>
</trans-unit>
<trans-unit id="se84ba7f105934495">
<source>Please check the browser console for more details.</source>
</trans-unit>
<trans-unit id="sdea479482318489d">
<source>Status messages</source>
</trans-unit>
<trans-unit id="s91ae4b6bf981682b">
<source>authentik Logo</source>
</trans-unit>
<trans-unit id="s49730f3d5751a433">
<source>Loading...</source>
<target>Laden...</target>
</trans-unit>
<trans-unit id="sa50a6326530d8a0d">
<source>Show less</source>
<target>Minder weergeven</target>
</trans-unit>
<trans-unit id="sb2c57b2d347203dd">
<source>Show more</source>
<target>Meer weergeven</target>
</trans-unit>
<trans-unit id="sa48f81f001b893d2">
<source>User</source>
<target>Gebruiker</target>
</trans-unit>
<trans-unit id="sb59d68ed12d46377">
<source>Loading</source>
<target>Laden</target>
</trans-unit>
<trans-unit id="s0382d73823585617">
<source><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></source>
<target>
<x id="0" equiv-text="${this.errorMessage}"/>:
<x id="1" equiv-text="${e.toString()}"/></target>
</trans-unit>
<trans-unit id="sae5d87e99fe081e0">
<source>Required</source>
<target>Verplicht</target>
</trans-unit>
<trans-unit id="s1cd198d689c66e4b">
<source>API Access</source>
<target>API-toegang</target>
</trans-unit>
<trans-unit id="sf29883ac9ec43085">
<source>App password</source>
<target>App-wachtwoord</target>
</trans-unit>
<trans-unit id="s6ac670086eb137c6">
<source>Recovery</source>
<target>Herstel</target>
</trans-unit>
<trans-unit id="sfe211545fd02f73e">
<source>Verification</source>
<target>Verificatie</target>
</trans-unit>
<trans-unit id="sd73b202ec04eefd9">
<source>Unknown intent</source>
<target>Onbekende intentie</target>
</trans-unit>
<trans-unit id="sc8da3cc71de63832">
<source>Login</source>
<target>Inloggen</target>
</trans-unit>
<trans-unit id="sb4564c127ab8b921">
<source>Failed login</source>
<target>Mislukt inloggen</target>
</trans-unit>
<trans-unit id="s67749057edb2586b">
<source>Logout</source>
<target>Uitloggen</target>
</trans-unit>
<trans-unit id="s7e537ad68d7c16e1">
<source>User was written to</source>
<target>Gebruiker is opgeslagen</target>
</trans-unit>
<trans-unit id="sa0e0bdd7e244416b">
<source>Suspicious request</source>
<target>Verdachte aanvraag</target>
</trans-unit>
<trans-unit id="s7bda44013984fc48">
<source>Password set</source>
<target>Wachtwoord ingesteld</target>
</trans-unit>
<trans-unit id="sa1b41e334ad89d94">
<source>Secret was viewed</source>
<target>Geheim is bekeken</target>
</trans-unit>
<trans-unit id="s92ca679592a36b35">
<source>Secret was rotated</source>
<target>Geheim is gewijzigd</target>
</trans-unit>
<trans-unit id="s8a1d9403ca90989b">
<source>Invitation used</source>
<target>Uitnodiging is gebruikt</target>
</trans-unit>
<trans-unit id="s5f496533610103f2">
<source>Application authorized</source>
<target>Applicatie geautoriseerd</target>
</trans-unit>
<trans-unit id="sdc9e222be9612939">
<source>Source linked</source>
<target>Bron gekoppeld</target>
</trans-unit>
<trans-unit id="sb1c91762ae3a9bee">
<source>Impersonation started</source>
<target>Impersonatie gestart</target>
</trans-unit>
<trans-unit id="s9c73bd29b279d26b">
<source>Impersonation ended</source>
<target>Impersonatie beëindigd</target>
</trans-unit>
<trans-unit id="s1cd264012278c047">
<source>Flow execution</source>
<target>Flowuitvoering</target>
</trans-unit>
<trans-unit id="s32f04d33924ce8ad">
<source>Policy execution</source>
<target>Beleidsuitvoering</target>
</trans-unit>
<trans-unit id="sb6d7128df5978cee">
<source>Policy exception</source>
<target>Beleidsuitzondering</target>
</trans-unit>
<trans-unit id="s77f572257f69a8db">
<source>Property Mapping exception</source>
<target>Eigenschapstoewijzingsuitzondering</target>
</trans-unit>
<trans-unit id="s2543cffd6ebb6803">
<source>System task execution</source>
<target>Systeemtaakuitvoering</target>
</trans-unit>
<trans-unit id="se2f258b996f7279c">
<source>System task exception</source>
<target>Systeemtaakuitzondering</target>
</trans-unit>
<trans-unit id="s81eff3409d572a21">
<source>General system exception</source>
<target>Algemene systeemuitzondering</target>
</trans-unit>
<trans-unit id="sf8f49cdbf0036343">
<source>Configuration error</source>
<target>Configuratiefout</target>
</trans-unit>
<trans-unit id="s9c6f61dc47bc4f0a">
<source>Model created</source>
<target>Model aangemaakt</target>
</trans-unit>
<trans-unit id="s47a4983a2c6bb749">
<source>Model updated</source>
<target>Model bijgewerkt</target>
</trans-unit>
<trans-unit id="sc9f69360b58706c7">
<source>Model deleted</source>
<target>Model verwijderd</target>
</trans-unit>
<trans-unit id="sa266303caf1bd27f">
<source>Email sent</source>
<target>E-mail verzonden</target>
</trans-unit>
<trans-unit id="s6c410fedda2a575f">
<source>Update available</source>
<target>Update beschikbaar</target>
</trans-unit>
<trans-unit id="sf1ec4acb8d744ed9">
<source>Alert</source>
<target>Waarschuwing</target>
</trans-unit>
<trans-unit id="s9117fb5195e75151">
<source>Notice</source>
<target>Melding</target>
</trans-unit>
<trans-unit id="s34be76c6b1eadbef">
<source>Warning</source>
<target>Waarschuwing</target>
</trans-unit>
<trans-unit id="s02240309358f557c">
<source>Unknown severity</source>
<target>Onbekende ernst</target>
</trans-unit>
<trans-unit id="s858e7ac4b3cf955f">
<source>Static tokens</source>
<target>Statische tokens</target>
</trans-unit>
<trans-unit id="sfcfcf85a57eea78a">
<source>TOTP Device</source>
<target>TOTP-apparaat</target>
</trans-unit>
<trans-unit id="s482bc55a78891ef7">
<source>A code has been sent to your address: <x id="0" equiv-text="${email}"/></source>
</trans-unit>
<trans-unit id="s5afa3fc77ce8d94d">
<source>A code has been sent to your email address.</source>
</trans-unit>
<trans-unit id="s37f47fa981493c3b">
<source>A one-time use code has been sent to you via SMS text message.</source>
</trans-unit>
<trans-unit id="sc92a7248dba5f388">
<source>Open your authenticator app to retrieve a one-time use code.</source>
</trans-unit>
<trans-unit id="s21d95b4651ad7a1e">
<source>Enter a one-time recovery code for this user.</source>
</trans-unit>
<trans-unit id="s2e1d5a7d320c25ef">
<source>Enter the code from your authenticator device.</source>
</trans-unit>
<trans-unit id="se2d65e13768468e0">
<source>Internal</source>
<target>Intern</target>
</trans-unit>
<trans-unit id="s84fcddede27b8e2a">
<source>External</source>
</trans-unit>
<trans-unit id="s1a635369edaf4dc3">
<source>Service account</source>
</trans-unit>
<trans-unit id="sff930bf2834e2201">
<source>Service account (internal)</source>
</trans-unit>
<trans-unit id="scb489a1a173ac3f0">
<source>Yes</source>
<target>Ja</target>
</trans-unit>
<trans-unit id="s09205907b5b56cda">
<source>No</source>
<target>Nee</target>
</trans-unit>
<trans-unit id="s7f073c746d0f6324">
<source>Form actions</source>
</trans-unit>
<trans-unit id="s98b1cb8fb62909ec">
<source>Group</source>
<target>Groep</target>
</trans-unit>
<trans-unit id="s2e422519ed38f7d8">
<source>Pass</source>
</trans-unit>
<trans-unit id="sac315d5bd28d4efa">
<source>Don't Pass</source>
</trans-unit>
<trans-unit id="s042baf59902a711f">
<source>Policy</source>
<target>Beleid</target>
</trans-unit>
<trans-unit id="sd8f220c999726151">
<source>Redirect</source>
<target>Doorverwijzing</target>
</trans-unit>
<trans-unit id="s03f42eea72154959">
<source>Username</source>
<target>Gebruikersnaam</target>
</trans-unit>
<trans-unit id="s5f5bf4ef2bd93c04">
<source>Group mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Groeptoewijzingen kunnen alleen worden gecontroleerd als een gebruiker al is aangemeld bij het proberen toegang te krijgen tot deze bron.</target>
</trans-unit>
<trans-unit id="s6c607d74bdfe9f36">
<source>User mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Gebruikerstoewijzingen kunnen alleen worden gecontroleerd als een gebruiker al is aangemeld bij het proberen toegang te krijgen tot deze bron.</target>
</trans-unit>
<trans-unit id="sf6e1665c7022a1f8">
<source>Password</source>
<target>Wachtwoord</target>
</trans-unit>
<trans-unit id="sd1f44f1a8bc20e67">
<source>Email</source>
<target>E-mail</target>
</trans-unit>
<trans-unit id="s8939f574b096054a">
<source>Not you?</source>
<target>Niet uzelf?</target>
</trans-unit>
<trans-unit id="s296fbffaaa7c910a">
<source>Required.</source>
<target>Vereist.</target>
</trans-unit>
<trans-unit id="s81ecf2d4386b8e84">
<source>Continue</source>
<target>Doorgaan</target>
</trans-unit>
<trans-unit id="s61e48919db20538a">
<source>UPN</source>
<target>UPN</target>
</trans-unit>
<trans-unit id="s67ac11d47f1ce794">
<source>WebAuthn requires this page to be accessed via HTTPS.</source>
</trans-unit>
<trans-unit id="se9e9e1d6799b86a5">
<source>WebAuthn not supported by browser.</source>
</trans-unit>
<trans-unit id="sa4be93eb7f4e51e3">
<source>Site links</source>
</trans-unit>
<trans-unit id="s6fe64b4625517333">
<source>Powered by authentik</source>
<target>Ondersteund door authentik</target>
</trans-unit>
<trans-unit id="sd766cdc29b25ff95">
<source>Authenticating with Apple...</source>
<target>Authenticatie met Apple...</target>
</trans-unit>
<trans-unit id="s2c8189544e3ea679">
<source>Retry</source>
<target>Opnieuw proberen</target>
</trans-unit>
<trans-unit id="s420d2cdedcaf8cd0">
<source>Authenticating with Plex...</source>
<target>Authenticatie met Plex...</target>
</trans-unit>
<trans-unit id="s2ddbebcb8a49b005">
<source>Waiting for authentication...</source>
<target>Wachten op authenticatie...</target>
</trans-unit>
<trans-unit id="sb15fe7b9d09bb419">
<source>If no Plex popup opens, click the button below.</source>
<target>Als er geen Plex pop-up wordt geopend, klik dan op de onderstaande knop.</target>
</trans-unit>
<trans-unit id="sbc625b4c669b9ce8">
<source>Open login</source>
<target>Open aanmelding</target>
</trans-unit>
<trans-unit id="sf376ae7e9ef41c1a">
<source>Authenticating with Telegram...</source>
</trans-unit>
<trans-unit id="s76ea993fdc8503d8">
<source>Click the button below to start.</source>
</trans-unit>
<trans-unit id="s15d6fabebb4ef2d8">
<source>User information</source>
</trans-unit>
<trans-unit id="s9bd9ba84819493d4">
<source>Something went wrong! Please try again later.</source>
<target>Er is iets fout gegaan! Probeer het later opnieuw.</target>
</trans-unit>
<trans-unit id="s4090dd0c0e45988b">
<source>Request ID</source>
<target>Aanvraag-ID</target>
</trans-unit>
<trans-unit id="s4d7fe7be1c49896c">
<source>You may close this page now.</source>
<target>U kunt deze pagina nu sluiten.</target>
</trans-unit>
<trans-unit id="s197420b40df164f8">
<source>Follow redirect</source>
<target>Volg omleiding</target>
</trans-unit>
<trans-unit id="s3ab772345f78aee0">
<source>Flow inspector</source>
<target>Flowinspecteur</target>
</trans-unit>
<trans-unit id="sb69e43f2f6bd1b54">
<source>Close flow inspector</source>
</trans-unit>
<trans-unit id="s502884e1977b2c06">
<source>Next stage</source>
<target>Volgende fase</target>
</trans-unit>
<trans-unit id="sb3fa80ccfa97ee54">
<source>Stage name</source>
<target>Fasenaam</target>
</trans-unit>
<trans-unit id="sbea3c1e4f2fd623d">
<source>Stage kind</source>
<target>Fasetype</target>
</trans-unit>
<trans-unit id="s2bc8aa1740d3da34">
<source>Stage object</source>
<target>Stadium object</target>
</trans-unit>
<trans-unit id="sc3e1c4f1fff8e1ca">
<source>This flow is completed.</source>
<target>Deze flow is voltooid.</target>
</trans-unit>
<trans-unit id="s342eccabf83c9bde">
<source>Plan history</source>
<target>Plangeschiedenis</target>
</trans-unit>
<trans-unit id="sb2f307e79d20bb56">
<source>Current plan context</source>
<target>Huidige plancontext</target>
</trans-unit>
<trans-unit id="sa13e6c8310000e30">
<source>Session ID</source>
<target>Sessie-ID</target>
</trans-unit>
<trans-unit id="s857cf5aa8955cf5c">
<source>Flow inspector loading</source>
</trans-unit>
<trans-unit id="sa11e92683c5860c7">
<source>Request has been denied.</source>
<target>Aanvraag is geweigerd.</target>
</trans-unit>
<trans-unit id="s2f7f35f6a5b733f5">
<source>Show password</source>
</trans-unit>
<trans-unit id="s452f791e0ff6a13e">
<source>Hide password</source>
</trans-unit>
<trans-unit id="scf5ce91bfba10a61">
<source>Please enter your password</source>
<target>Voer uw wachtwoord in</target>
</trans-unit>
<trans-unit id="s6bb30c61df4cf486">
<source>Caps Lock is enabled.</source>
</trans-unit>
<trans-unit id="s8d6236ad153d42c0">
<source>CAPTCHA challenge</source>
</trans-unit>
<trans-unit id="s30d6ff9e15e0a40a">
<source>Verifying...</source>
</trans-unit>
<trans-unit id="s1c336c2d6cef77b3">
<source>Remember me on this device</source>
</trans-unit>
<trans-unit id="seb6ab868740e4e36">
<source>Continue with <x id="0" equiv-text="${name}"/></source>
</trans-unit>
<trans-unit id="sc4eedb434536bdb4">
<source>Need an account?</source>
<target>Heeft u een account nodig?</target>
</trans-unit>
<trans-unit id="s38f774cd7e9b9dad">
<source>Sign up.</source>
<target>Meld u aan.</target>
</trans-unit>
<trans-unit id="sa03aa46068460c95">
<source>Forgot username or password?</source>
<target>Gebruikersnaam of wachtwoord vergeten?</target>
</trans-unit>
<trans-unit id="s05a941e4b4bfca9f">
<source>Additional actions</source>
</trans-unit>
<trans-unit id="s6ecfc18dbfeedd76">
<source>Select one of the options below to continue.</source>
</trans-unit>
<trans-unit id="s091d5407b5b32e84">
<source>Or</source>
<target>Of</target>
</trans-unit>
<trans-unit id="se5fd752dbbc3cd28">
<source>Use a security key</source>
<target>Gebruik een beveiligingssleutel</target>
</trans-unit>
<trans-unit id="s53dddf1733e26c98">
<source>Login sources</source>
</trans-unit>
<trans-unit id="s85366fac18679f28">
<source>Forgot password?</source>
<target>Wachtwoord vergeten?</target>
</trans-unit>
<trans-unit id="s14c552fb0a4c0186">
<source>Application requires following permissions:</source>
<target>Toepassing vereist de volgende rechten:</target>
</trans-unit>
<trans-unit id="s7073489bb01b3c24">
<source>Application already has access to the following permissions:</source>
<target>Toepassing heeft al toegang tot de volgende rechten:</target>
</trans-unit>
<trans-unit id="s98dc556f8bf707dc">
<source>Application requires following new permissions:</source>
<target>Toepassing vereist de volgende nieuwe rechten:</target>
</trans-unit>
<trans-unit id="s06bfe45ffef2cf60">
<source>Stage name: <x id="0" equiv-text="${this.challenge?.name}"/></source>
</trans-unit>
<trans-unit id="sbd19064fc3f405c1">
<source>Check your Inbox for a verification email.</source>
<target>Controleer uw Postvak IN voor een verificatie-e-mail.</target>
</trans-unit>
<trans-unit id="s8aff572e64b7936b">
<source>Send Email again.</source>
<target>Stuur de e-mail opnieuw.</target>
</trans-unit>
<trans-unit id="sc091f75b942ec081">
<source>QR-Code to setup a time-based one-time password</source>
</trans-unit>
<trans-unit id="s6db67c7681b8be6e">
<source>Copy time-based one-time password configuration</source>
</trans-unit>
<trans-unit id="s43e859bf711e3599">
<source>Copy TOTP Config</source>
</trans-unit>
<trans-unit id="s90064dd5c4dde2c6">
<source>Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.</source>
<target>Scan de bovenstaande QR-code met de Microsoft Authenticator, Google Authenticator of een andere authenticator-app op je apparaat. Voer vervolgens de code in die op je apparaat wordt weergegeven om het instellen van de MFA te voltooien.</target>
</trans-unit>
<trans-unit id="sa5562e0115ffbccd">
<source>Time-based one-time password</source>
</trans-unit>
<trans-unit id="s40f44c0d88807fd5">
<source>TOTP Code</source>
</trans-unit>
<trans-unit id="s95474cc8c73dd9c0">
<source>Type your TOTP code...</source>
</trans-unit>
<trans-unit id="s168d0c138b63286d">
<source>Type your time-based one-time password code.</source>
</trans-unit>
<trans-unit id="sc2ec367e3108fe65">
<source>Duo activation QR code</source>
<target>Duo-activerings-QR-code</target>
</trans-unit>
<trans-unit id="sc5668cb23167e9bb">
<source>Alternatively, if your current device has Duo installed, click on this link:</source>
<target>Of klik op deze link als uw huidige apparaat Duo geïnstalleerd heeft:</target>
</trans-unit>
<trans-unit id="s721d94ae700b5dfd">
<source>Duo activation</source>
<target>Duo-activering</target>
</trans-unit>
<trans-unit id="s708d9a4a0db0be8f">
<source>Check status</source>
<target>Status controleren</target>
</trans-unit>
<trans-unit id="s31fba571065f2c87">
<source>Make sure to keep these tokens in a safe place.</source>
<target>Zorg ervoor dat u deze tokens op een veilige plaats bewaart.</target>
</trans-unit>
<trans-unit id="s3f8a07912545e72e">
<source>Configure your email</source>
</trans-unit>
<trans-unit id="scedf77e8b75cad5a">
<source>Please enter your email address.</source>
</trans-unit>
<trans-unit id="s3643189d1abbb7f4">
<source>Code</source>
<target>Code</target>
</trans-unit>
<trans-unit id="s7cdd62c100b6b17b">
<source>Please enter the code you received via email</source>
</trans-unit>
<trans-unit id="sc0a0c87d5c556c38">
<source>Phone number</source>
<target>Telefoonnummer</target>
</trans-unit>
<trans-unit id="s04c1210202f48dc9">
<source>Please enter your Phone number.</source>
<target>Voer uw telefoonnummer in.</target>
</trans-unit>
<trans-unit id="seb0c08d9f233bbfe">
<source>Please enter the code you received via SMS</source>
<target>Voer de code in die u via sms heeft ontvangen</target>
</trans-unit>
<trans-unit id="s98bb2ae796f1ceef">
<source>Select another authentication method</source>
</trans-unit>
<trans-unit id="s844fea0bfb10a72a">
<source>Authentication code</source>
<target>Verificatiecode</target>
</trans-unit>
<trans-unit id="s7abc9d08b0f70fd6">
<source>Static token</source>
<target>Statische token</target>
</trans-unit>
<trans-unit id="s14e8ac4d377a1a99">
<source>Type an authentication code...</source>
</trans-unit>
<trans-unit id="s39002897db60bb28">
<source>Sending Duo push notification...</source>
</trans-unit>
<trans-unit id="sd2b8c1caa0340ed6">
<source>Failed to authenticate</source>
</trans-unit>
<trans-unit id="s363abde8a254ea5f">
<source>Authentication failed. Please try again.</source>
</trans-unit>
<trans-unit id="sffef1a8596bc58bb">
<source>Authenticating...</source>
</trans-unit>
<trans-unit id="se409d01b52c4e12f">
<source>Retry authentication</source>
<target>Herhaal authenticatie</target>
</trans-unit>
<trans-unit id="s8d857061510fe794">
<source>Duo push-notifications</source>
<target>Duo pushmeldingen</target>
</trans-unit>
<trans-unit id="s47490298c17b753a">
<source>Receive a push notification on your device.</source>
<target>Ontvang een pushmelding op uw apparaat.</target>
</trans-unit>
<trans-unit id="sd6a025d66f2637d1">
<source>Traditional authenticator</source>
<target>Traditionele authenticator</target>
</trans-unit>
<trans-unit id="sb25e689e00c61829">
<source>Use a code-based authenticator.</source>
<target>Gebruik een op codes gebaseerde authenticator.</target>
</trans-unit>
<trans-unit id="s9e568afec3810bfe">
<source>Recovery keys</source>
<target>Herstelsleutels</target>
</trans-unit>
<trans-unit id="s8bb0a1b672b52954">
<source>In case you lose access to your primary authenticators.</source>
</trans-unit>
<trans-unit id="s97f2dc19fa556a6a">
<source>SMS</source>
<target>SMS</target>
</trans-unit>
<trans-unit id="s0e516232f2ab4e04">
<source>Tokens sent via SMS.</source>
<target>Tokens verstuurd via SMS.</target>
</trans-unit>
<trans-unit id="s833cfe815918c143">
<source>Tokens sent via email.</source>
</trans-unit>
<trans-unit id="s76d21e163887ddd1">
<source>Unknown device</source>
</trans-unit>
<trans-unit id="sf0ceaf3116e31fd4">
<source>An unknown device class was provided.</source>
</trans-unit>
<trans-unit id="s610fced3957d0471">
<source>Select an authentication method</source>
</trans-unit>
<trans-unit id="s958cedec1cb3fc52">
<source>Select a configuration stage</source>
</trans-unit>
<trans-unit id="sac17f177f884e238">
<source>Stay signed in?</source>
<target>Aangemeld blijven?</target>
</trans-unit>
<trans-unit id="s859b2e00391da380">
<source>Select Yes to reduce the number of times you're asked to sign in.</source>
<target>Selecteer Ja om het aantal keren dat u wordt gevraagd om u aan te melden te verminderen.</target>
</trans-unit>
<trans-unit id="s23da7320dee28a60">
<source>Device Code</source>
</trans-unit>
<trans-unit id="s3cd84e82e83e35ad">
<source>Please enter your code</source>
<target>Voer uw code in</target>
</trans-unit>
<trans-unit id="s455a8fc21077e7f9">
<source>You've successfully authenticated your device.</source>
<target>U heeft uw apparaat succesvol geauthenticeerd.</target>
</trans-unit>
<trans-unit id="sac88482c48453fc8">
<source>You've logged out of <x id="0" equiv-text="${challenge.applicationName}"/>. You can go back to the overview to launch another application, or log out of your authentik account.</source>
</trans-unit>
<trans-unit id="s3108167b562674e2">
<source>Go back to overview</source>
</trans-unit>
<trans-unit id="sdb749e793de55478">
<source>Log out of <x id="0" equiv-text="${challenge.brandName}"/></source>
</trans-unit>
<trans-unit id="s521681ed1d5ff814">
<source>Log back into <x id="0" equiv-text="${challenge.applicationName}"/></source>
</trans-unit>
<trans-unit id="s78869b8b2bc26d0d">
<source>SAML Provider</source>
</trans-unit>
<trans-unit id="sca83a1f9227f74b9">
<source>SAML logout complete</source>
</trans-unit>
<trans-unit id="s7b90eab7969ae056">
<source>Redirecting to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s3e6174b645d96835">
<source>Posting logout request to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s0b1ffff8bedd6b8a">
<source>Unknown Provider</source>
</trans-unit>
<trans-unit id="s777e86d562523c85">
<source>Logging out of providers...</source>
</trans-unit>
<trans-unit id="s4980379bf8461c2d">
<source>Single Logout</source>
</trans-unit>
<trans-unit id="s3736936aac1adc2e">
<source>Open flow inspector</source>
</trans-unit>
<trans-unit id="sa17ce23517e56461">
<source>Authentication form</source>
</trans-unit>
<trans-unit id="s7fa4e5e409d43573">
<source>Error creating credential: <x id="0" equiv-text="${err}"/></source>
</trans-unit>
<trans-unit id="s9d95f09deb601f34">
<source>Server validation of credential failed: <x id="0" equiv-text="${err}"/></source>
</trans-unit>
<trans-unit id="sb0821a9e92cac5eb">
<source>Failed to register. Please try again.</source>
</trans-unit>
<trans-unit id="s238784fc1dc672ae">
<source>Registering...</source>
</trans-unit>
<trans-unit id="s009bd1c98a9f5de2">
<source>Failed to register</source>
</trans-unit>
<trans-unit id="sb166ce92e8e807d6">
<source>Retry registration</source>
</trans-unit>
<trans-unit id="s95094b57684716a5">
<source>Failed to validate device.</source>
</trans-unit>
<trans-unit id="se99d25eb70c767ef">
<source>Verifying your device...</source>
</trans-unit>
<trans-unit id="s1af2337b6d11d4c6">
<source>Data export ready</source>
</trans-unit>
<trans-unit id="en-XA">
<source>English (Pseudo-Accents)</source>
</trans-unit>
<trans-unit id="avatar.alt-text-for-user">
<source>Avatar for <x id="0" equiv-text="${this.username}"/></source>
</trans-unit>
<trans-unit id="avatar.alt-text">
<source>User avatar</source>
</trans-unit>
<trans-unit id="flow.navigation.go-back">
<source>Go back</source>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent-to-address">
<source>A verification token has been sent to your configured email address: <x id="0" equiv-text="${email}"/></source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's configured email address.</note>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent">
<source>A verification token has been sent to your email address.</source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's email address.</note>
</trans-unit>
<trans-unit id="scd909e0bc55fc548">
<source>Security key</source>
</trans-unit>
<trans-unit id="sd0de938d9c37ad5f">
<source>Use a Passkey or security key to prove your identity.</source>
</trans-unit>
<trans-unit id="sb94beab52540d2b7">
<source>The CAPTCHA challenge failed to load.</source>
</trans-unit>
<trans-unit id="s217a96c47caaf73d">
<source>Could not find a suitable CAPTCHA provider.</source>
</trans-unit>
<trans-unit id="sdf2794b96386c868">
<source>Copy time-based one-time password secret</source>
</trans-unit>
<trans-unit id="sc78d16417878afd0">
<source>Copy Secret</source>
</trans-unit>
<trans-unit id="clipboard.write.success.message.entity">
<source><x id="0" equiv-text="${entityLabel}"/> copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.success.generic">
<source>Copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.failure.description">
<source>Clipboard not available. Please copy the value manually.</source>
</trans-unit>
<trans-unit id="totp.config">
<source>TOTP Config</source>
</trans-unit>
<trans-unit id="totp.config.clipboard.description">
<source>Paste this URL into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="totp.secret">
<source>TOTP Secret</source>
</trans-unit>
<trans-unit id="totp.secret.clipboard.description">
<source>Paste this secret into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="s92e22f9319fdb85d">
<source>Configuration warning</source>
</trans-unit>
<trans-unit id="saa088a2d0f90d5a9">
<source>Posting logout response to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s776d93092ad9ce90">
<source>Review initiated</source>
</trans-unit>
<trans-unit id="sad46bcad1a343b51">
<source>Review overdue</source>
</trans-unit>
<trans-unit id="s59d168d966cecbaf">
<source>Review attested</source>
</trans-unit>
<trans-unit id="s5158b7f014cecefc">
<source>Review completed</source>
</trans-unit>
<trans-unit id="sdd2ea73c24b40d5d">
<source>Site footer</source>
</trans-unit>
<trans-unit id="sf910cca0f06bbc31">
<source>Enter the email address or username associated with your account.</source>
</trans-unit>
<trans-unit id="s6e858c4c4c3b6b76">
<source>You're about to be redirected to the following URL.</source>
</trans-unit>
<trans-unit id="sd5d2b94a1ccba1a9">
<source>Log in to continue to <x id="0" equiv-text="${prelude}"/>.</source>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,871 @@
<?xml version="1.0"?><xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file target-language="pl-PL" source-language="en" original="lit-localize-inputs" datatype="plaintext">
<body>
<!-- #region Locales -->
<trans-unit id="en">
<source>English</source>
<target>Angielski</target>
</trans-unit>
<trans-unit id="ja-JP">
<source>Japanese</source>
<target>Japoński</target>
</trans-unit>
<trans-unit id="ko-KR">
<source>Korean</source>
<target>Koreański</target>
</trans-unit>
<trans-unit id="zh-Hans">
<source>Chinese (Simplified)</source>
<target>Chiński</target>
</trans-unit>
<trans-unit id="zh-Hant">
<source>Chinese (Traditional)</source>
<target>Chiński</target>
</trans-unit>
<!-- #endregion -->
<!-- #region Locale selector -->
<trans-unit id="locale-auto-detect-option">
<source>Auto-detect</source>
<target>Automatyczne wykrywanie</target>
<note from="lit-localize">Label for the auto-detect locale option in language selection dropdown</note>
</trans-unit>
<trans-unit id="language-selector-label">
<source>Select language</source>
<target>Wybierz język</target>
<note from="lit-localize">Label for the language selection dropdown</note>
</trans-unit>
<trans-unit id="locale-option-localized-label">
<source><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</source>
<note from="lit-localize">Locale option label showing the localized language name along with the native language name in parentheses.</note>
</trans-unit>
<!-- #endregion -->
<trans-unit id="s12d6dde9b30c3093">
<source>Dismiss</source>
</trans-unit>
<trans-unit id="sfe629863ba1338c2">
<source>Connection error, reconnecting...</source>
<target>Błąd połączenia, ponowne łączenie...</target>
</trans-unit>
<trans-unit id="sdaecc3c29a27c5c5">
<source>An unknown error occurred</source>
</trans-unit>
<trans-unit id="se84ba7f105934495">
<source>Please check the browser console for more details.</source>
</trans-unit>
<trans-unit id="sdea479482318489d">
<source>Status messages</source>
</trans-unit>
<trans-unit id="s91ae4b6bf981682b">
<source>authentik Logo</source>
</trans-unit>
<trans-unit id="s49730f3d5751a433">
<source>Loading...</source>
<target>Ładowanie...</target>
</trans-unit>
<trans-unit id="sa50a6326530d8a0d">
<source>Show less</source>
<target>Pokaż mniej</target>
</trans-unit>
<trans-unit id="sb2c57b2d347203dd">
<source>Show more</source>
<target>Pokaż więcej</target>
</trans-unit>
<trans-unit id="sa48f81f001b893d2">
<source>User</source>
<target>Użytkownik</target>
</trans-unit>
<trans-unit id="sb59d68ed12d46377">
<source>Loading</source>
<target>Ładowanie</target>
</trans-unit>
<trans-unit id="s0382d73823585617">
<source><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></source>
<target>
<x id="0" equiv-text="${this.errorMessage}"/>:
<x id="1" equiv-text="${e.toString()}"/></target>
</trans-unit>
<trans-unit id="sae5d87e99fe081e0">
<source>Required</source>
<target>Wymagany</target>
</trans-unit>
<trans-unit id="s1cd198d689c66e4b">
<source>API Access</source>
<target>Dostęp API</target>
</trans-unit>
<trans-unit id="sf29883ac9ec43085">
<source>App password</source>
<target>Hasło aplikacji</target>
</trans-unit>
<trans-unit id="s6ac670086eb137c6">
<source>Recovery</source>
<target>Odzyskiwanie</target>
</trans-unit>
<trans-unit id="sfe211545fd02f73e">
<source>Verification</source>
<target>Weryfikacja</target>
</trans-unit>
<trans-unit id="sd73b202ec04eefd9">
<source>Unknown intent</source>
<target>Nieznany zamiar</target>
</trans-unit>
<trans-unit id="sc8da3cc71de63832">
<source>Login</source>
<target>Logowanie</target>
</trans-unit>
<trans-unit id="sb4564c127ab8b921">
<source>Failed login</source>
<target>Nieudane logowanie</target>
</trans-unit>
<trans-unit id="s67749057edb2586b">
<source>Logout</source>
<target>Wyloguj</target>
</trans-unit>
<trans-unit id="s7e537ad68d7c16e1">
<source>User was written to</source>
<target>Użytkownik zapisał do</target>
</trans-unit>
<trans-unit id="sa0e0bdd7e244416b">
<source>Suspicious request</source>
<target>Podejrzane zapytanie</target>
</trans-unit>
<trans-unit id="s7bda44013984fc48">
<source>Password set</source>
<target>Hasło ustawione</target>
</trans-unit>
<trans-unit id="sa1b41e334ad89d94">
<source>Secret was viewed</source>
<target>Sekret został wyświetlony</target>
</trans-unit>
<trans-unit id="s92ca679592a36b35">
<source>Secret was rotated</source>
<target>Sekret został obrócony</target>
</trans-unit>
<trans-unit id="s8a1d9403ca90989b">
<source>Invitation used</source>
<target>Wykorzystano zaproszenie</target>
</trans-unit>
<trans-unit id="s5f496533610103f2">
<source>Application authorized</source>
<target>Aplikacja autoryzowana</target>
</trans-unit>
<trans-unit id="sdc9e222be9612939">
<source>Source linked</source>
<target>Źródło połączone</target>
</trans-unit>
<trans-unit id="sb1c91762ae3a9bee">
<source>Impersonation started</source>
<target>Rozpoczęto podszywanie się</target>
</trans-unit>
<trans-unit id="s9c73bd29b279d26b">
<source>Impersonation ended</source>
<target>Podszywanie się zostało zakończone</target>
</trans-unit>
<trans-unit id="s1cd264012278c047">
<source>Flow execution</source>
<target>Wykonanie przepływu</target>
</trans-unit>
<trans-unit id="s32f04d33924ce8ad">
<source>Policy execution</source>
<target>Wykonanie zasad</target>
</trans-unit>
<trans-unit id="sb6d7128df5978cee">
<source>Policy exception</source>
<target>Wyjątek zasad</target>
</trans-unit>
<trans-unit id="s77f572257f69a8db">
<source>Property Mapping exception</source>
<target>Wyjątek mapowania właściwości</target>
</trans-unit>
<trans-unit id="s2543cffd6ebb6803">
<source>System task execution</source>
<target>Wykonywanie zadań systemowych</target>
</trans-unit>
<trans-unit id="se2f258b996f7279c">
<source>System task exception</source>
<target>Wyjątek zadania systemowego</target>
</trans-unit>
<trans-unit id="s81eff3409d572a21">
<source>General system exception</source>
<target>Ogólny wyjątek systemowy</target>
</trans-unit>
<trans-unit id="sf8f49cdbf0036343">
<source>Configuration error</source>
<target>Błąd konfiguracji</target>
</trans-unit>
<trans-unit id="s9c6f61dc47bc4f0a">
<source>Model created</source>
<target>Utworzono model</target>
</trans-unit>
<trans-unit id="s47a4983a2c6bb749">
<source>Model updated</source>
<target>Zaktualizowano model</target>
</trans-unit>
<trans-unit id="sc9f69360b58706c7">
<source>Model deleted</source>
<target>Model usunięty</target>
</trans-unit>
<trans-unit id="sa266303caf1bd27f">
<source>Email sent</source>
<target>Email wysłany</target>
</trans-unit>
<trans-unit id="s6c410fedda2a575f">
<source>Update available</source>
<target>Dostępna aktualizacja</target>
</trans-unit>
<trans-unit id="sf1ec4acb8d744ed9">
<source>Alert</source>
<target>Alert</target>
</trans-unit>
<trans-unit id="s9117fb5195e75151">
<source>Notice</source>
<target>Uwaga</target>
</trans-unit>
<trans-unit id="s34be76c6b1eadbef">
<source>Warning</source>
<target>Ostrzeżenie</target>
</trans-unit>
<trans-unit id="s02240309358f557c">
<source>Unknown severity</source>
<target>Nieznana intensywność</target>
</trans-unit>
<trans-unit id="s858e7ac4b3cf955f">
<source>Static tokens</source>
<target>Tokeny statyczne</target>
</trans-unit>
<trans-unit id="sfcfcf85a57eea78a">
<source>TOTP Device</source>
<target>Urządzenie TOTP</target>
</trans-unit>
<trans-unit id="s482bc55a78891ef7">
<source>A code has been sent to your address: <x id="0" equiv-text="${email}"/></source>
</trans-unit>
<trans-unit id="s5afa3fc77ce8d94d">
<source>A code has been sent to your email address.</source>
</trans-unit>
<trans-unit id="s37f47fa981493c3b">
<source>A one-time use code has been sent to you via SMS text message.</source>
</trans-unit>
<trans-unit id="sc92a7248dba5f388">
<source>Open your authenticator app to retrieve a one-time use code.</source>
</trans-unit>
<trans-unit id="s21d95b4651ad7a1e">
<source>Enter a one-time recovery code for this user.</source>
</trans-unit>
<trans-unit id="s2e1d5a7d320c25ef">
<source>Enter the code from your authenticator device.</source>
</trans-unit>
<trans-unit id="se2d65e13768468e0">
<source>Internal</source>
<target>Wewnętrzny</target>
</trans-unit>
<trans-unit id="s84fcddede27b8e2a">
<source>External</source>
<target>Zewnętrzny</target>
</trans-unit>
<trans-unit id="s1a635369edaf4dc3">
<source>Service account</source>
<target>Konto usługowe</target>
</trans-unit>
<trans-unit id="sff930bf2834e2201">
<source>Service account (internal)</source>
<target>Konto usługowe (wewnętrzne)</target>
</trans-unit>
<trans-unit id="scb489a1a173ac3f0">
<source>Yes</source>
<target>Tak</target>
</trans-unit>
<trans-unit id="s09205907b5b56cda">
<source>No</source>
<target>Nie</target>
</trans-unit>
<trans-unit id="s7f073c746d0f6324">
<source>Form actions</source>
</trans-unit>
<trans-unit id="s98b1cb8fb62909ec">
<source>Group</source>
<target>Grupa</target>
</trans-unit>
<trans-unit id="s2e422519ed38f7d8">
<source>Pass</source>
<target>Przepuść</target>
</trans-unit>
<trans-unit id="sac315d5bd28d4efa">
<source>Don't Pass</source>
</trans-unit>
<trans-unit id="s042baf59902a711f">
<source>Policy</source>
<target>Zasada</target>
</trans-unit>
<trans-unit id="sd8f220c999726151">
<source>Redirect</source>
<target>Przekierowanie</target>
</trans-unit>
<trans-unit id="s03f42eea72154959">
<source>Username</source>
<target>Nazwa użytkownika</target>
</trans-unit>
<trans-unit id="s5f5bf4ef2bd93c04">
<source>Group mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Mapowania grup można sprawdzić tylko wtedy, gdy użytkownik jest już zalogowany podczas próby uzyskania dostępu do tego źródła.</target>
</trans-unit>
<trans-unit id="s6c607d74bdfe9f36">
<source>User mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>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.</target>
</trans-unit>
<trans-unit id="sf6e1665c7022a1f8">
<source>Password</source>
<target>Hasło</target>
</trans-unit>
<trans-unit id="sd1f44f1a8bc20e67">
<source>Email</source>
<target>E-mail</target>
</trans-unit>
<trans-unit id="s8939f574b096054a">
<source>Not you?</source>
<target>Nie ty?</target>
</trans-unit>
<trans-unit id="s296fbffaaa7c910a">
<source>Required.</source>
<target>Wymagany.</target>
</trans-unit>
<trans-unit id="s81ecf2d4386b8e84">
<source>Continue</source>
<target>Kontynuuj</target>
</trans-unit>
<trans-unit id="s61e48919db20538a">
<source>UPN</source>
<target>UPN</target>
</trans-unit>
<trans-unit id="s67ac11d47f1ce794">
<source>WebAuthn requires this page to be accessed via HTTPS.</source>
<target>WebAuthn wymaga dostępu do tej strony za pośrednictwem protokołu HTTPS.</target>
</trans-unit>
<trans-unit id="se9e9e1d6799b86a5">
<source>WebAuthn not supported by browser.</source>
<target>WebAuthn nie jest obsługiwany przez przeglądarkę.</target>
</trans-unit>
<trans-unit id="sa4be93eb7f4e51e3">
<source>Site links</source>
</trans-unit>
<trans-unit id="s6fe64b4625517333">
<source>Powered by authentik</source>
<target>Napędzane przez authentik</target>
</trans-unit>
<trans-unit id="sd766cdc29b25ff95">
<source>Authenticating with Apple...</source>
<target>Uwierzytelnianie z Apple...</target>
</trans-unit>
<trans-unit id="s2c8189544e3ea679">
<source>Retry</source>
<target>Ponów</target>
</trans-unit>
<trans-unit id="s420d2cdedcaf8cd0">
<source>Authenticating with Plex...</source>
<target>Uwierzytelnianie z Plex...</target>
</trans-unit>
<trans-unit id="s2ddbebcb8a49b005">
<source>Waiting for authentication...</source>
<target>Oczekiwanie na uwierzytelnienie...</target>
</trans-unit>
<trans-unit id="sb15fe7b9d09bb419">
<source>If no Plex popup opens, click the button below.</source>
<target>Jeśli nie otworzy się wyskakujące okienko Plex, kliknij przycisk poniżej.</target>
</trans-unit>
<trans-unit id="sbc625b4c669b9ce8">
<source>Open login</source>
<target>Otwórz logowanie</target>
</trans-unit>
<trans-unit id="sf376ae7e9ef41c1a">
<source>Authenticating with Telegram...</source>
</trans-unit>
<trans-unit id="s76ea993fdc8503d8">
<source>Click the button below to start.</source>
</trans-unit>
<trans-unit id="s15d6fabebb4ef2d8">
<source>User information</source>
</trans-unit>
<trans-unit id="s9bd9ba84819493d4">
<source>Something went wrong! Please try again later.</source>
<target>Coś poszło nie tak! Spróbuj ponownie później.</target>
</trans-unit>
<trans-unit id="s4090dd0c0e45988b">
<source>Request ID</source>
<target>Identyfikator żądania</target>
</trans-unit>
<trans-unit id="s4d7fe7be1c49896c">
<source>You may close this page now.</source>
<target>Możesz już zamknąć tę stronę.</target>
</trans-unit>
<trans-unit id="s197420b40df164f8">
<source>Follow redirect</source>
<target>Śledź przekierowanie</target>
</trans-unit>
<trans-unit id="s3ab772345f78aee0">
<source>Flow inspector</source>
<target>Inspektor przepływu</target>
</trans-unit>
<trans-unit id="sb69e43f2f6bd1b54">
<source>Close flow inspector</source>
</trans-unit>
<trans-unit id="s502884e1977b2c06">
<source>Next stage</source>
<target>Następny etap</target>
</trans-unit>
<trans-unit id="sb3fa80ccfa97ee54">
<source>Stage name</source>
<target>Nazwa etapu</target>
</trans-unit>
<trans-unit id="sbea3c1e4f2fd623d">
<source>Stage kind</source>
<target>Rodzaj etapu</target>
</trans-unit>
<trans-unit id="s2bc8aa1740d3da34">
<source>Stage object</source>
<target>Obiekt etapu</target>
</trans-unit>
<trans-unit id="sc3e1c4f1fff8e1ca">
<source>This flow is completed.</source>
<target>Ten przepływ jest zakończony.</target>
</trans-unit>
<trans-unit id="s342eccabf83c9bde">
<source>Plan history</source>
<target>Historia planu</target>
</trans-unit>
<trans-unit id="sb2f307e79d20bb56">
<source>Current plan context</source>
<target>Aktualny kontekst planu</target>
</trans-unit>
<trans-unit id="sa13e6c8310000e30">
<source>Session ID</source>
<target>ID sesji</target>
</trans-unit>
<trans-unit id="s857cf5aa8955cf5c">
<source>Flow inspector loading</source>
</trans-unit>
<trans-unit id="sa11e92683c5860c7">
<source>Request has been denied.</source>
<target>Żądanie zostało odrzucone.</target>
</trans-unit>
<trans-unit id="s2f7f35f6a5b733f5">
<source>Show password</source>
<target>Pokaż hasło</target>
</trans-unit>
<trans-unit id="s452f791e0ff6a13e">
<source>Hide password</source>
<target>Ukryj hasło</target>
</trans-unit>
<trans-unit id="scf5ce91bfba10a61">
<source>Please enter your password</source>
<target>Wprowadź hasło</target>
</trans-unit>
<trans-unit id="s6bb30c61df4cf486">
<source>Caps Lock is enabled.</source>
</trans-unit>
<trans-unit id="s8d6236ad153d42c0">
<source>CAPTCHA challenge</source>
</trans-unit>
<trans-unit id="s30d6ff9e15e0a40a">
<source>Verifying...</source>
<target>Weryfikowanie...</target>
</trans-unit>
<trans-unit id="s1c336c2d6cef77b3">
<source>Remember me on this device</source>
</trans-unit>
<trans-unit id="seb6ab868740e4e36">
<source>Continue with <x id="0" equiv-text="${name}"/></source>
</trans-unit>
<trans-unit id="sc4eedb434536bdb4">
<source>Need an account?</source>
<target>Potrzebujesz konta?</target>
</trans-unit>
<trans-unit id="s38f774cd7e9b9dad">
<source>Sign up.</source>
<target>Zarejestruj się.</target>
</trans-unit>
<trans-unit id="sa03aa46068460c95">
<source>Forgot username or password?</source>
<target>Zapomniałeś nazwy użytkownika lub hasła?</target>
</trans-unit>
<trans-unit id="s05a941e4b4bfca9f">
<source>Additional actions</source>
</trans-unit>
<trans-unit id="s6ecfc18dbfeedd76">
<source>Select one of the options below to continue.</source>
<target>Wybierz jedną z poniższych opcji, aby kontynuować.</target>
</trans-unit>
<trans-unit id="s091d5407b5b32e84">
<source>Or</source>
<target>Lub</target>
</trans-unit>
<trans-unit id="se5fd752dbbc3cd28">
<source>Use a security key</source>
<target>Użyj klucza bezpieczeństwa</target>
</trans-unit>
<trans-unit id="s53dddf1733e26c98">
<source>Login sources</source>
</trans-unit>
<trans-unit id="s85366fac18679f28">
<source>Forgot password?</source>
<target>Zapomniałeś hasła?</target>
</trans-unit>
<trans-unit id="s14c552fb0a4c0186">
<source>Application requires following permissions:</source>
<target>Aplikacja wymaga następujących uprawnień:</target>
</trans-unit>
<trans-unit id="s7073489bb01b3c24">
<source>Application already has access to the following permissions:</source>
<target>Aplikacja ma już dostęp do następujących uprawnień:</target>
</trans-unit>
<trans-unit id="s98dc556f8bf707dc">
<source>Application requires following new permissions:</source>
<target>Aplikacja wymaga następujących nowych uprawnień:</target>
</trans-unit>
<trans-unit id="s06bfe45ffef2cf60">
<source>Stage name: <x id="0" equiv-text="${this.challenge?.name}"/></source>
<target>Nazwa etapu: <x id="0" equiv-text="${this.challenge.name}"/></target>
</trans-unit>
<trans-unit id="sbd19064fc3f405c1">
<source>Check your Inbox for a verification email.</source>
<target>Sprawdź swoją skrzynkę odbiorczą pod kątem e-maila weryfikacyjnego.</target>
</trans-unit>
<trans-unit id="s8aff572e64b7936b">
<source>Send Email again.</source>
<target>Wyślij e-mail ponownie.</target>
</trans-unit>
<trans-unit id="sc091f75b942ec081">
<source>QR-Code to setup a time-based one-time password</source>
</trans-unit>
<trans-unit id="s6db67c7681b8be6e">
<source>Copy time-based one-time password configuration</source>
</trans-unit>
<trans-unit id="s43e859bf711e3599">
<source>Copy TOTP Config</source>
</trans-unit>
<trans-unit id="s90064dd5c4dde2c6">
<source>Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.</source>
<target>Zeskanuj powyższy kod QR za pomocą aplikacji Microsoft Authenticator, Google Authenticator lub innej aplikacji uwierzytelniającej na swoim urządzeniu i wprowadź kod wyświetlany przez urządzenie poniżej, aby zakończyć konfigurację urządzenia MFA.</target>
</trans-unit>
<trans-unit id="sa5562e0115ffbccd">
<source>Time-based one-time password</source>
</trans-unit>
<trans-unit id="s40f44c0d88807fd5">
<source>TOTP Code</source>
</trans-unit>
<trans-unit id="s95474cc8c73dd9c0">
<source>Type your TOTP code...</source>
</trans-unit>
<trans-unit id="s168d0c138b63286d">
<source>Type your time-based one-time password code.</source>
</trans-unit>
<trans-unit id="sc2ec367e3108fe65">
<source>Duo activation QR code</source>
<target>Kod QR aktywacji Duo</target>
</trans-unit>
<trans-unit id="sc5668cb23167e9bb">
<source>Alternatively, if your current device has Duo installed, click on this link:</source>
<target>Alternatywnie, jeśli na Twoim obecnym urządzeniu jest zainstalowany Duo, kliknij ten link:</target>
</trans-unit>
<trans-unit id="s721d94ae700b5dfd">
<source>Duo activation</source>
<target>Aktywacja Duo</target>
</trans-unit>
<trans-unit id="s708d9a4a0db0be8f">
<source>Check status</source>
<target>Sprawdź status</target>
</trans-unit>
<trans-unit id="s31fba571065f2c87">
<source>Make sure to keep these tokens in a safe place.</source>
<target>Upewnij się, że przechowujesz te tokeny w bezpiecznym miejscu.</target>
</trans-unit>
<trans-unit id="s3f8a07912545e72e">
<source>Configure your email</source>
</trans-unit>
<trans-unit id="scedf77e8b75cad5a">
<source>Please enter your email address.</source>
</trans-unit>
<trans-unit id="s3643189d1abbb7f4">
<source>Code</source>
<target>Kod</target>
</trans-unit>
<trans-unit id="s7cdd62c100b6b17b">
<source>Please enter the code you received via email</source>
</trans-unit>
<trans-unit id="sc0a0c87d5c556c38">
<source>Phone number</source>
<target>Numer telefonu</target>
</trans-unit>
<trans-unit id="s04c1210202f48dc9">
<source>Please enter your Phone number.</source>
<target>Podaj swój numer telefonu.</target>
</trans-unit>
<trans-unit id="seb0c08d9f233bbfe">
<source>Please enter the code you received via SMS</source>
<target>Wprowadź kod otrzymany SMS-em</target>
</trans-unit>
<trans-unit id="s98bb2ae796f1ceef">
<source>Select another authentication method</source>
</trans-unit>
<trans-unit id="s844fea0bfb10a72a">
<source>Authentication code</source>
<target>Kod uwierzytelnienia</target>
</trans-unit>
<trans-unit id="s7abc9d08b0f70fd6">
<source>Static token</source>
<target>Token statyczny</target>
</trans-unit>
<trans-unit id="s14e8ac4d377a1a99">
<source>Type an authentication code...</source>
</trans-unit>
<trans-unit id="s39002897db60bb28">
<source>Sending Duo push notification...</source>
<target>Wysyłam powiadomienie push Duo</target>
</trans-unit>
<trans-unit id="sd2b8c1caa0340ed6">
<source>Failed to authenticate</source>
<target>Nie udało się uwierzytelnić</target>
</trans-unit>
<trans-unit id="s363abde8a254ea5f">
<source>Authentication failed. Please try again.</source>
<target>Uwierzytelnianie nie powiodło się. Spróbuj ponownie.</target>
</trans-unit>
<trans-unit id="sffef1a8596bc58bb">
<source>Authenticating...</source>
<target>Uwierzytelnianie...</target>
</trans-unit>
<trans-unit id="se409d01b52c4e12f">
<source>Retry authentication</source>
<target>Ponów uwierzytelnianie</target>
</trans-unit>
<trans-unit id="s8d857061510fe794">
<source>Duo push-notifications</source>
<target>Powiadomienia push Duo</target>
</trans-unit>
<trans-unit id="s47490298c17b753a">
<source>Receive a push notification on your device.</source>
<target>Otrzymuj powiadomienia push na swoje urządzenie.</target>
</trans-unit>
<trans-unit id="sd6a025d66f2637d1">
<source>Traditional authenticator</source>
<target>Tradycyjny uwierzytelniacz</target>
</trans-unit>
<trans-unit id="sb25e689e00c61829">
<source>Use a code-based authenticator.</source>
<target>Użyj uwierzytelniacza opartego na kodzie.</target>
</trans-unit>
<trans-unit id="s9e568afec3810bfe">
<source>Recovery keys</source>
<target>Klucze odzyskiwania</target>
</trans-unit>
<trans-unit id="s8bb0a1b672b52954">
<source>In case you lose access to your primary authenticators.</source>
</trans-unit>
<trans-unit id="s97f2dc19fa556a6a">
<source>SMS</source>
<target>SMS</target>
</trans-unit>
<trans-unit id="s0e516232f2ab4e04">
<source>Tokens sent via SMS.</source>
<target>Tokeny wysyłane SMS-em.</target>
</trans-unit>
<trans-unit id="s833cfe815918c143">
<source>Tokens sent via email.</source>
</trans-unit>
<trans-unit id="s76d21e163887ddd1">
<source>Unknown device</source>
</trans-unit>
<trans-unit id="sf0ceaf3116e31fd4">
<source>An unknown device class was provided.</source>
</trans-unit>
<trans-unit id="s610fced3957d0471">
<source>Select an authentication method</source>
</trans-unit>
<trans-unit id="s958cedec1cb3fc52">
<source>Select a configuration stage</source>
</trans-unit>
<trans-unit id="sac17f177f884e238">
<source>Stay signed in?</source>
<target>Pozostań zalogowanym?</target>
</trans-unit>
<trans-unit id="s859b2e00391da380">
<source>Select Yes to reduce the number of times you're asked to sign in.</source>
<target>Wybierz Tak, aby zmniejszyć liczbę razy kiedy wymagane będzie logowanie.</target>
</trans-unit>
<trans-unit id="s23da7320dee28a60">
<source>Device Code</source>
</trans-unit>
<trans-unit id="s3cd84e82e83e35ad">
<source>Please enter your code</source>
<target>Proszę wprowadź swój kod</target>
</trans-unit>
<trans-unit id="s455a8fc21077e7f9">
<source>You've successfully authenticated your device.</source>
<target>Pomyślnie uwierzytelniłeś swoje urządzenie.</target>
</trans-unit>
<trans-unit id="sac88482c48453fc8">
<source>You've logged out of <x id="0" equiv-text="${challenge.applicationName}"/>. You can go back to the overview to launch another application, or log out of your authentik account.</source>
</trans-unit>
<trans-unit id="s3108167b562674e2">
<source>Go back to overview</source>
</trans-unit>
<trans-unit id="sdb749e793de55478">
<source>Log out of <x id="0" equiv-text="${challenge.brandName}"/></source>
</trans-unit>
<trans-unit id="s521681ed1d5ff814">
<source>Log back into <x id="0" equiv-text="${challenge.applicationName}"/></source>
</trans-unit>
<trans-unit id="s78869b8b2bc26d0d">
<source>SAML Provider</source>
</trans-unit>
<trans-unit id="sca83a1f9227f74b9">
<source>SAML logout complete</source>
</trans-unit>
<trans-unit id="s7b90eab7969ae056">
<source>Redirecting to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s3e6174b645d96835">
<source>Posting logout request to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s0b1ffff8bedd6b8a">
<source>Unknown Provider</source>
</trans-unit>
<trans-unit id="s777e86d562523c85">
<source>Logging out of providers...</source>
</trans-unit>
<trans-unit id="s4980379bf8461c2d">
<source>Single Logout</source>
</trans-unit>
<trans-unit id="s3736936aac1adc2e">
<source>Open flow inspector</source>
</trans-unit>
<trans-unit id="sa17ce23517e56461">
<source>Authentication form</source>
</trans-unit>
<trans-unit id="s7fa4e5e409d43573">
<source>Error creating credential: <x id="0" equiv-text="${err}"/></source>
<target>Błąd podczas tworzenia poświadczenia:
<x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="s9d95f09deb601f34">
<source>Server validation of credential failed: <x id="0" equiv-text="${err}"/></source>
<target>Weryfikacja poświadczeń serwera nie powiodła się:
<x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="sb0821a9e92cac5eb">
<source>Failed to register. Please try again.</source>
<target>Rejestracja nie powiodła się. Spróbuj ponownie.</target>
</trans-unit>
<trans-unit id="s238784fc1dc672ae">
<source>Registering...</source>
<target>Rejestrowanie...</target>
</trans-unit>
<trans-unit id="s009bd1c98a9f5de2">
<source>Failed to register</source>
<target>Nie udało się zarejestrować</target>
</trans-unit>
<trans-unit id="sb166ce92e8e807d6">
<source>Retry registration</source>
<target>Ponów rejestrację</target>
</trans-unit>
<trans-unit id="s95094b57684716a5">
<source>Failed to validate device.</source>
</trans-unit>
<trans-unit id="se99d25eb70c767ef">
<source>Verifying your device...</source>
</trans-unit>
<trans-unit id="s1af2337b6d11d4c6">
<source>Data export ready</source>
</trans-unit>
<trans-unit id="en-XA">
<source>English (Pseudo-Accents)</source>
</trans-unit>
<trans-unit id="avatar.alt-text-for-user">
<source>Avatar for <x id="0" equiv-text="${this.username}"/></source>
</trans-unit>
<trans-unit id="avatar.alt-text">
<source>User avatar</source>
</trans-unit>
<trans-unit id="flow.navigation.go-back">
<source>Go back</source>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent-to-address">
<source>A verification token has been sent to your configured email address: <x id="0" equiv-text="${email}"/></source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's configured email address.</note>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent">
<source>A verification token has been sent to your email address.</source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's email address.</note>
</trans-unit>
<trans-unit id="scd909e0bc55fc548">
<source>Security key</source>
</trans-unit>
<trans-unit id="sd0de938d9c37ad5f">
<source>Use a Passkey or security key to prove your identity.</source>
</trans-unit>
<trans-unit id="sb94beab52540d2b7">
<source>The CAPTCHA challenge failed to load.</source>
</trans-unit>
<trans-unit id="s217a96c47caaf73d">
<source>Could not find a suitable CAPTCHA provider.</source>
</trans-unit>
<trans-unit id="sdf2794b96386c868">
<source>Copy time-based one-time password secret</source>
</trans-unit>
<trans-unit id="sc78d16417878afd0">
<source>Copy Secret</source>
</trans-unit>
<trans-unit id="clipboard.write.success.message.entity">
<source><x id="0" equiv-text="${entityLabel}"/> copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.success.generic">
<source>Copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.failure.description">
<source>Clipboard not available. Please copy the value manually.</source>
</trans-unit>
<trans-unit id="totp.config">
<source>TOTP Config</source>
</trans-unit>
<trans-unit id="totp.config.clipboard.description">
<source>Paste this URL into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="totp.secret">
<source>TOTP Secret</source>
</trans-unit>
<trans-unit id="totp.secret.clipboard.description">
<source>Paste this secret into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="s92e22f9319fdb85d">
<source>Configuration warning</source>
</trans-unit>
<trans-unit id="saa088a2d0f90d5a9">
<source>Posting logout response to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s776d93092ad9ce90">
<source>Review initiated</source>
</trans-unit>
<trans-unit id="sad46bcad1a343b51">
<source>Review overdue</source>
</trans-unit>
<trans-unit id="s59d168d966cecbaf">
<source>Review attested</source>
</trans-unit>
<trans-unit id="s5158b7f014cecefc">
<source>Review completed</source>
</trans-unit>
<trans-unit id="sdd2ea73c24b40d5d">
<source>Site footer</source>
</trans-unit>
<trans-unit id="sf910cca0f06bbc31">
<source>Enter the email address or username associated with your account.</source>
</trans-unit>
<trans-unit id="s6e858c4c4c3b6b76">
<source>You're about to be redirected to the following URL.</source>
</trans-unit>
<trans-unit id="sd5d2b94a1ccba1a9">
<source>Log in to continue to <x id="0" equiv-text="${prelude}"/>.</source>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,924 @@
<?xml version="1.0"?><xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file target-language="pt-BR" source-language="en" original="lit-localize-inputs" datatype="plaintext">
<body>
<!-- #region Locales -->
<trans-unit id="en">
<source>English</source>
<target>Inglês</target>
</trans-unit>
<trans-unit id="ja-JP">
<source>Japanese</source>
<target>Japonês</target>
</trans-unit>
<trans-unit id="ko-KR">
<source>Korean</source>
<target>Coreano</target>
</trans-unit>
<trans-unit id="zh-Hans">
<source>Chinese (Simplified)</source>
<target>Chinês</target>
</trans-unit>
<trans-unit id="zh-Hant">
<source>Chinese (Traditional)</source>
<target>Chinês</target>
</trans-unit>
<!-- #endregion -->
<!-- #region Locale selector -->
<trans-unit id="locale-auto-detect-option">
<source>Auto-detect</source>
<target>Detecção automática</target>
<note from="lit-localize">Label for the auto-detect locale option in language selection dropdown</note>
</trans-unit>
<trans-unit id="language-selector-label">
<source>Select language</source>
<target>Selecionar idioma</target>
<note from="lit-localize">Label for the language selection dropdown</note>
</trans-unit>
<trans-unit id="locale-option-localized-label">
<source><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</source>
<note from="lit-localize">Locale option label showing the localized language name along with the native language name in parentheses.</note>
</trans-unit>
<!-- #endregion -->
<trans-unit id="s12d6dde9b30c3093">
<source>Dismiss</source>
<target>Dispensar</target>
</trans-unit>
<trans-unit id="sfe629863ba1338c2">
<source>Connection error, reconnecting...</source>
<target>Erro de conexão, reconectando...</target>
</trans-unit>
<trans-unit id="sdaecc3c29a27c5c5">
<source>An unknown error occurred</source>
<target>Ocorreu um erro desconhecido</target>
</trans-unit>
<trans-unit id="se84ba7f105934495">
<source>Please check the browser console for more details.</source>
<target>Por favor, verifique o console do navegador para mais detalhes.</target>
</trans-unit>
<trans-unit id="sdea479482318489d">
<source>Status messages</source>
<target>Mensagens de status</target>
</trans-unit>
<trans-unit id="s91ae4b6bf981682b">
<source>authentik Logo</source>
<target>Logo do authentik</target>
</trans-unit>
<trans-unit id="s49730f3d5751a433">
<source>Loading...</source>
<target>Carregando...</target>
</trans-unit>
<trans-unit id="sa50a6326530d8a0d">
<source>Show less</source>
<target>Mostrar menos</target>
</trans-unit>
<trans-unit id="sb2c57b2d347203dd">
<source>Show more</source>
<target>Mostrar mais</target>
</trans-unit>
<trans-unit id="sa48f81f001b893d2">
<source>User</source>
<target>Usuário</target>
</trans-unit>
<trans-unit id="sb59d68ed12d46377">
<source>Loading</source>
<target>Carregando</target>
</trans-unit>
<trans-unit id="s0382d73823585617">
<source><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></source>
<target>
<x id="0" equiv-text="${this.errorMessage}"/>:
<x id="1" equiv-text="${e.toString()}"/></target>
</trans-unit>
<trans-unit id="sae5d87e99fe081e0">
<source>Required</source>
<target>Necessário</target>
</trans-unit>
<trans-unit id="s1cd198d689c66e4b">
<source>API Access</source>
<target>Acesso da API</target>
</trans-unit>
<trans-unit id="sf29883ac9ec43085">
<source>App password</source>
<target>Senha do aplicativo</target>
</trans-unit>
<trans-unit id="s6ac670086eb137c6">
<source>Recovery</source>
<target>Recuperação</target>
</trans-unit>
<trans-unit id="sfe211545fd02f73e">
<source>Verification</source>
<target>Verificação</target>
</trans-unit>
<trans-unit id="sd73b202ec04eefd9">
<source>Unknown intent</source>
<target>Intenção desconhecida</target>
</trans-unit>
<trans-unit id="sc8da3cc71de63832">
<source>Login</source>
<target>Login</target>
</trans-unit>
<trans-unit id="sb4564c127ab8b921">
<source>Failed login</source>
<target>Falha no login</target>
</trans-unit>
<trans-unit id="s67749057edb2586b">
<source>Logout</source>
<target>Sair</target>
</trans-unit>
<trans-unit id="s7e537ad68d7c16e1">
<source>User was written to</source>
<target>Usuário foi escrito para</target>
</trans-unit>
<trans-unit id="sa0e0bdd7e244416b">
<source>Suspicious request</source>
<target>Requisição suspeita</target>
</trans-unit>
<trans-unit id="s7bda44013984fc48">
<source>Password set</source>
<target>Senha definida</target>
</trans-unit>
<trans-unit id="sa1b41e334ad89d94">
<source>Secret was viewed</source>
<target>O segredo foi visualizado</target>
</trans-unit>
<trans-unit id="s92ca679592a36b35">
<source>Secret was rotated</source>
<target>O segredo foi rotacionado</target>
</trans-unit>
<trans-unit id="s8a1d9403ca90989b">
<source>Invitation used</source>
<target>Convite usado</target>
</trans-unit>
<trans-unit id="s5f496533610103f2">
<source>Application authorized</source>
<target>Aplicação autorizada</target>
</trans-unit>
<trans-unit id="sdc9e222be9612939">
<source>Source linked</source>
<target>Fonte vinculada</target>
</trans-unit>
<trans-unit id="sb1c91762ae3a9bee">
<source>Impersonation started</source>
<target>Representação iniciada</target>
</trans-unit>
<trans-unit id="s9c73bd29b279d26b">
<source>Impersonation ended</source>
<target>Representação encerrada</target>
</trans-unit>
<trans-unit id="s1cd264012278c047">
<source>Flow execution</source>
<target>Execução do fluxo</target>
</trans-unit>
<trans-unit id="s32f04d33924ce8ad">
<source>Policy execution</source>
<target>Execução da política</target>
</trans-unit>
<trans-unit id="sb6d7128df5978cee">
<source>Policy exception</source>
<target>Exceção de política</target>
</trans-unit>
<trans-unit id="s77f572257f69a8db">
<source>Property Mapping exception</source>
<target>Exceção de mapeamento de propriedade</target>
</trans-unit>
<trans-unit id="s2543cffd6ebb6803">
<source>System task execution</source>
<target>Execução de tarefa do sistema</target>
</trans-unit>
<trans-unit id="se2f258b996f7279c">
<source>System task exception</source>
<target>Exceção de tarefa do sistema</target>
</trans-unit>
<trans-unit id="s81eff3409d572a21">
<source>General system exception</source>
<target>Exceção geral do sistema</target>
</trans-unit>
<trans-unit id="sf8f49cdbf0036343">
<source>Configuration error</source>
<target>Erro de configuração</target>
</trans-unit>
<trans-unit id="s9c6f61dc47bc4f0a">
<source>Model created</source>
<target>Modelo criado</target>
</trans-unit>
<trans-unit id="s47a4983a2c6bb749">
<source>Model updated</source>
<target>Modelo atualizado</target>
</trans-unit>
<trans-unit id="sc9f69360b58706c7">
<source>Model deleted</source>
<target>Modelo deletado</target>
</trans-unit>
<trans-unit id="sa266303caf1bd27f">
<source>Email sent</source>
<target>E-mail enviado</target>
</trans-unit>
<trans-unit id="s6c410fedda2a575f">
<source>Update available</source>
<target>Atualização disponível</target>
</trans-unit>
<trans-unit id="sf1ec4acb8d744ed9">
<source>Alert</source>
<target>Alerta</target>
</trans-unit>
<trans-unit id="s9117fb5195e75151">
<source>Notice</source>
<target>Notificação</target>
</trans-unit>
<trans-unit id="s34be76c6b1eadbef">
<source>Warning</source>
<target>Aviso</target>
</trans-unit>
<trans-unit id="s02240309358f557c">
<source>Unknown severity</source>
<target>Severidade desconhecida</target>
</trans-unit>
<trans-unit id="s858e7ac4b3cf955f">
<source>Static tokens</source>
<target>Tokens estáticos</target>
</trans-unit>
<trans-unit id="sfcfcf85a57eea78a">
<source>TOTP Device</source>
<target>Dispositivo TOTP</target>
</trans-unit>
<trans-unit id="s482bc55a78891ef7">
<source>A code has been sent to your address: <x id="0" equiv-text="${email}"/></source>
<target>Um código foi enviado para seu email: <x id="0" equiv-text="${email}"/></target>
</trans-unit>
<trans-unit id="s5afa3fc77ce8d94d">
<source>A code has been sent to your email address.</source>
<target>Um código foi enviado para seu endereço de email.</target>
</trans-unit>
<trans-unit id="s37f47fa981493c3b">
<source>A one-time use code has been sent to you via SMS text message.</source>
<target>Um código de uso único foi enviado a você via mensagem SMS.</target>
</trans-unit>
<trans-unit id="sc92a7248dba5f388">
<source>Open your authenticator app to retrieve a one-time use code.</source>
<target>Abra seu aplicativo de autenticação para obter um código de uso único.</target>
</trans-unit>
<trans-unit id="s21d95b4651ad7a1e">
<source>Enter a one-time recovery code for this user.</source>
<target>Insira um código de recuperação de uso único para este usuário.</target>
</trans-unit>
<trans-unit id="s2e1d5a7d320c25ef">
<source>Enter the code from your authenticator device.</source>
<target>Insira o código do seu dispositivo autenticador.</target>
</trans-unit>
<trans-unit id="se2d65e13768468e0">
<source>Internal</source>
<target>Interno</target>
</trans-unit>
<trans-unit id="s84fcddede27b8e2a">
<source>External</source>
<target>Externo</target>
</trans-unit>
<trans-unit id="s1a635369edaf4dc3">
<source>Service account</source>
<target>Conta de serviço</target>
</trans-unit>
<trans-unit id="sff930bf2834e2201">
<source>Service account (internal)</source>
<target>Conta de serviço (interna)</target>
</trans-unit>
<trans-unit id="scb489a1a173ac3f0">
<source>Yes</source>
<target>Sim</target>
</trans-unit>
<trans-unit id="s09205907b5b56cda">
<source>No</source>
<target>Não</target>
</trans-unit>
<trans-unit id="s7f073c746d0f6324">
<source>Form actions</source>
<target>Ações do formulário</target>
</trans-unit>
<trans-unit id="s98b1cb8fb62909ec">
<source>Group</source>
<target>Grupo</target>
</trans-unit>
<trans-unit id="s2e422519ed38f7d8">
<source>Pass</source>
<target>Aprovado</target>
</trans-unit>
<trans-unit id="sac315d5bd28d4efa">
<source>Don't Pass</source>
<target>Não Passar</target>
</trans-unit>
<trans-unit id="s042baf59902a711f">
<source>Policy</source>
<target>Documentação</target>
</trans-unit>
<trans-unit id="sd8f220c999726151">
<source>Redirect</source>
<target>Redirecionar</target>
</trans-unit>
<trans-unit id="s03f42eea72154959">
<source>Username</source>
<target>Usuário</target>
</trans-unit>
<trans-unit id="s5f5bf4ef2bd93c04">
<source>Group mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Os mapeamentos de grupo só podem ser verificados se um usuário já estiver logado ao
tentar acessar esta fonte.</target>
</trans-unit>
<trans-unit id="s6c607d74bdfe9f36">
<source>User mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Os mapeamentos de usuário só podem ser verificados se um usuário já estiver logado ao tentar acessar esta fonte.</target>
</trans-unit>
<trans-unit id="sf6e1665c7022a1f8">
<source>Password</source>
<target>Senha</target>
</trans-unit>
<trans-unit id="sd1f44f1a8bc20e67">
<source>Email</source>
<target>Email</target>
</trans-unit>
<trans-unit id="s8939f574b096054a">
<source>Not you?</source>
<target>Não é você?</target>
</trans-unit>
<trans-unit id="s296fbffaaa7c910a">
<source>Required.</source>
<target>Necessário.</target>
</trans-unit>
<trans-unit id="s81ecf2d4386b8e84">
<source>Continue</source>
<target>Continuar</target>
</trans-unit>
<trans-unit id="s61e48919db20538a">
<source>UPN</source>
<target>UPN</target>
</trans-unit>
<trans-unit id="s67ac11d47f1ce794">
<source>WebAuthn requires this page to be accessed via HTTPS.</source>
<target>WebAuthn requer que esta página seja acessada via HTTPS.</target>
</trans-unit>
<trans-unit id="se9e9e1d6799b86a5">
<source>WebAuthn not supported by browser.</source>
<target>WebAuthn não é suportado pelo navegador.</target>
</trans-unit>
<trans-unit id="sa4be93eb7f4e51e3">
<source>Site links</source>
<target>Links do site</target>
</trans-unit>
<trans-unit id="s6fe64b4625517333">
<source>Powered by authentik</source>
<target>Desenvolvido por authentik</target>
</trans-unit>
<trans-unit id="sd766cdc29b25ff95">
<source>Authenticating with Apple...</source>
<target>Autenticando com Apple...</target>
</trans-unit>
<trans-unit id="s2c8189544e3ea679">
<source>Retry</source>
<target>Tentar novamente</target>
</trans-unit>
<trans-unit id="s420d2cdedcaf8cd0">
<source>Authenticating with Plex...</source>
<target>Autenticando com Plex...</target>
</trans-unit>
<trans-unit id="s2ddbebcb8a49b005">
<source>Waiting for authentication...</source>
<target>Aguardando autenticação...</target>
</trans-unit>
<trans-unit id="sb15fe7b9d09bb419">
<source>If no Plex popup opens, click the button below.</source>
<target>Se nenhuma janela pop-up do Plex abrir, clique no botão abaixo.</target>
</trans-unit>
<trans-unit id="sbc625b4c669b9ce8">
<source>Open login</source>
<target>Abrir login</target>
</trans-unit>
<trans-unit id="sf376ae7e9ef41c1a">
<source>Authenticating with Telegram...</source>
<target>Autenticando com Telegram...</target>
</trans-unit>
<trans-unit id="s76ea993fdc8503d8">
<source>Click the button below to start.</source>
<target>Clique no botão abaixo para iniciar.</target>
</trans-unit>
<trans-unit id="s15d6fabebb4ef2d8">
<source>User information</source>
<target>Informações do usuário</target>
</trans-unit>
<trans-unit id="s9bd9ba84819493d4">
<source>Something went wrong! Please try again later.</source>
<target>Algo deu errado! Por favor, tente novamente mais tarde.</target>
</trans-unit>
<trans-unit id="s4090dd0c0e45988b">
<source>Request ID</source>
<target>ID da solicitação</target>
</trans-unit>
<trans-unit id="s4d7fe7be1c49896c">
<source>You may close this page now.</source>
<target>Você pode fechar esta página agora.</target>
</trans-unit>
<trans-unit id="s197420b40df164f8">
<source>Follow redirect</source>
<target>Seguir redirecionamento</target>
</trans-unit>
<trans-unit id="s3ab772345f78aee0">
<source>Flow inspector</source>
<target>Inspecionador de fluxo</target>
</trans-unit>
<trans-unit id="sb69e43f2f6bd1b54">
<source>Close flow inspector</source>
<target>Fechar inspecionador de fluxo</target>
</trans-unit>
<trans-unit id="s502884e1977b2c06">
<source>Next stage</source>
<target>Próxima etapa</target>
</trans-unit>
<trans-unit id="sb3fa80ccfa97ee54">
<source>Stage name</source>
<target>Nome da etapa</target>
</trans-unit>
<trans-unit id="sbea3c1e4f2fd623d">
<source>Stage kind</source>
<target>Tipo de etapa</target>
</trans-unit>
<trans-unit id="s2bc8aa1740d3da34">
<source>Stage object</source>
<target>Objeto da etapa</target>
</trans-unit>
<trans-unit id="sc3e1c4f1fff8e1ca">
<source>This flow is completed.</source>
<target>Este fluxo está completo.</target>
</trans-unit>
<trans-unit id="s342eccabf83c9bde">
<source>Plan history</source>
<target>Histórico do plano</target>
</trans-unit>
<trans-unit id="sb2f307e79d20bb56">
<source>Current plan context</source>
<target>Contexto do plano atual</target>
</trans-unit>
<trans-unit id="sa13e6c8310000e30">
<source>Session ID</source>
<target>ID da sessão</target>
</trans-unit>
<trans-unit id="s857cf5aa8955cf5c">
<source>Flow inspector loading</source>
<target>Inspecionador de fluxo carregando</target>
</trans-unit>
<trans-unit id="sa11e92683c5860c7">
<source>Request has been denied.</source>
<target>A solicitação foi negada.</target>
</trans-unit>
<trans-unit id="s2f7f35f6a5b733f5">
<source>Show password</source>
<target>Mostrar senha</target>
</trans-unit>
<trans-unit id="s452f791e0ff6a13e">
<source>Hide password</source>
<target>Esconder senha</target>
</trans-unit>
<trans-unit id="scf5ce91bfba10a61">
<source>Please enter your password</source>
<target>Por favor, insira sua senha</target>
</trans-unit>
<trans-unit id="s6bb30c61df4cf486">
<source>Caps Lock is enabled.</source>
<target>Caps Lock está ativado.</target>
</trans-unit>
<trans-unit id="s8d6236ad153d42c0">
<source>CAPTCHA challenge</source>
<target>Desafio de CAPTCHA</target>
</trans-unit>
<trans-unit id="s30d6ff9e15e0a40a">
<source>Verifying...</source>
<target>Verificando...</target>
</trans-unit>
<trans-unit id="s1c336c2d6cef77b3">
<source>Remember me on this device</source>
<target>Lembrar de mim neste dispositivo</target>
</trans-unit>
<trans-unit id="seb6ab868740e4e36">
<source>Continue with <x id="0" equiv-text="${name}"/></source>
</trans-unit>
<trans-unit id="sc4eedb434536bdb4">
<source>Need an account?</source>
<target>Precisa de uma conta?</target>
</trans-unit>
<trans-unit id="s38f774cd7e9b9dad">
<source>Sign up.</source>
<target>Registre-se.</target>
</trans-unit>
<trans-unit id="sa03aa46068460c95">
<source>Forgot username or password?</source>
<target>Esqueceu seu usuário ou senha?</target>
</trans-unit>
<trans-unit id="s05a941e4b4bfca9f">
<source>Additional actions</source>
</trans-unit>
<trans-unit id="s6ecfc18dbfeedd76">
<source>Select one of the options below to continue.</source>
<target>Selecione uma das opções abaixo para continuar.</target>
</trans-unit>
<trans-unit id="s091d5407b5b32e84">
<source>Or</source>
<target>Ou</target>
</trans-unit>
<trans-unit id="se5fd752dbbc3cd28">
<source>Use a security key</source>
<target>Usar uma chave de segurança</target>
</trans-unit>
<trans-unit id="s53dddf1733e26c98">
<source>Login sources</source>
</trans-unit>
<trans-unit id="s85366fac18679f28">
<source>Forgot password?</source>
<target>Esqueceu sua senha?</target>
</trans-unit>
<trans-unit id="s14c552fb0a4c0186">
<source>Application requires following permissions:</source>
<target>O aplicativo requer as seguintes permissões:</target>
</trans-unit>
<trans-unit id="s7073489bb01b3c24">
<source>Application already has access to the following permissions:</source>
<target>O aplicativo já tem acesso às seguintes permissões:</target>
</trans-unit>
<trans-unit id="s98dc556f8bf707dc">
<source>Application requires following new permissions:</source>
<target>O aplicativo requer as seguintes novas permissões:</target>
</trans-unit>
<trans-unit id="s06bfe45ffef2cf60">
<source>Stage name: <x id="0" equiv-text="${this.challenge?.name}"/></source>
<target>Nome da etapa: <x id="0" equiv-text="${this.challenge.name}"/></target>
</trans-unit>
<trans-unit id="sbd19064fc3f405c1">
<source>Check your Inbox for a verification email.</source>
<target>Procure na sua Caixa de Entrada um e-mail de verificação.</target>
</trans-unit>
<trans-unit id="s8aff572e64b7936b">
<source>Send Email again.</source>
<target>Enviar Email novamente.</target>
</trans-unit>
<trans-unit id="sc091f75b942ec081">
<source>QR-Code to setup a time-based one-time password</source>
<target>QR-Code para configurar uma senha de uso único baseada em tempo</target>
</trans-unit>
<trans-unit id="s6db67c7681b8be6e">
<source>Copy time-based one-time password configuration</source>
<target>Copiar configuração de senha de uso único baseada em tempo</target>
</trans-unit>
<trans-unit id="s43e859bf711e3599">
<source>Copy TOTP Config</source>
<target>Copiar configuração TOTP</target>
</trans-unit>
<trans-unit id="s90064dd5c4dde2c6">
<source>Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.</source>
<target>Por favor, escaneie o código QR acima usando o Microsoft Authenticator, Google Authenticator ou outros aplicativos de autenticação em seu dispositivo e insira o código que o dispositivo exibe abaixo para concluir a configuração do dispositivo MFA.</target>
</trans-unit>
<trans-unit id="sa5562e0115ffbccd">
<source>Time-based one-time password</source>
<target>Senha de uso único baseada em tempo</target>
</trans-unit>
<trans-unit id="s40f44c0d88807fd5">
<source>TOTP Code</source>
<target>Código TOTP</target>
</trans-unit>
<trans-unit id="s95474cc8c73dd9c0">
<source>Type your TOTP code...</source>
<target>Digite seu código TOTP...</target>
</trans-unit>
<trans-unit id="s168d0c138b63286d">
<source>Type your time-based one-time password code.</source>
<target>Digite seu código de senha de uso único baseada em tempo.</target>
</trans-unit>
<trans-unit id="sc2ec367e3108fe65">
<source>Duo activation QR code</source>
<target>Código QR de ativação do Duo</target>
</trans-unit>
<trans-unit id="sc5668cb23167e9bb">
<source>Alternatively, if your current device has Duo installed, click on this link:</source>
<target>Alternativamente, se o seu dispositivo atual tiver o Duo instalado, clique neste link:</target>
</trans-unit>
<trans-unit id="s721d94ae700b5dfd">
<source>Duo activation</source>
<target>Ativação do Duo</target>
</trans-unit>
<trans-unit id="s708d9a4a0db0be8f">
<source>Check status</source>
<target>Verificar status</target>
</trans-unit>
<trans-unit id="s31fba571065f2c87">
<source>Make sure to keep these tokens in a safe place.</source>
<target>Certifique-se de manter esses tokens em um lugar seguro.</target>
</trans-unit>
<trans-unit id="s3f8a07912545e72e">
<source>Configure your email</source>
<target>Configure seu e-mail</target>
</trans-unit>
<trans-unit id="scedf77e8b75cad5a">
<source>Please enter your email address.</source>
<target>Por favor, insira seu endereço de e-mail.</target>
</trans-unit>
<trans-unit id="s3643189d1abbb7f4">
<source>Code</source>
<target>Código</target>
</trans-unit>
<trans-unit id="s7cdd62c100b6b17b">
<source>Please enter the code you received via email</source>
<target>Por favor, insira o código que você recebeu por e-mail</target>
</trans-unit>
<trans-unit id="sc0a0c87d5c556c38">
<source>Phone number</source>
<target>Número de telefone</target>
</trans-unit>
<trans-unit id="s04c1210202f48dc9">
<source>Please enter your Phone number.</source>
<target>Por favor, insira seu número de telefone.</target>
</trans-unit>
<trans-unit id="seb0c08d9f233bbfe">
<source>Please enter the code you received via SMS</source>
<target>Por favor, insira o código que você recebeu por SMS</target>
</trans-unit>
<trans-unit id="s98bb2ae796f1ceef">
<source>Select another authentication method</source>
<target>Selecionar outro método de autenticação</target>
</trans-unit>
<trans-unit id="s844fea0bfb10a72a">
<source>Authentication code</source>
<target>Código de autenticação</target>
</trans-unit>
<trans-unit id="s7abc9d08b0f70fd6">
<source>Static token</source>
<target>Token estático</target>
</trans-unit>
<trans-unit id="s14e8ac4d377a1a99">
<source>Type an authentication code...</source>
<target>Digite um código de autenticação...</target>
</trans-unit>
<trans-unit id="s39002897db60bb28">
<source>Sending Duo push notification...</source>
<target>Enviando notificação push do Duo...</target>
</trans-unit>
<trans-unit id="sd2b8c1caa0340ed6">
<source>Failed to authenticate</source>
<target>Falha ao autenticar</target>
</trans-unit>
<trans-unit id="s363abde8a254ea5f">
<source>Authentication failed. Please try again.</source>
<target>Falha na autenticação. Por favor, tente novamente.</target>
</trans-unit>
<trans-unit id="sffef1a8596bc58bb">
<source>Authenticating...</source>
<target>Autenticando...</target>
</trans-unit>
<trans-unit id="se409d01b52c4e12f">
<source>Retry authentication</source>
<target>Tentar novamente a autenticação</target>
</trans-unit>
<trans-unit id="s8d857061510fe794">
<source>Duo push-notifications</source>
<target>Notificações push do Duo</target>
</trans-unit>
<trans-unit id="s47490298c17b753a">
<source>Receive a push notification on your device.</source>
<target>Receber uma notificação push em seu dispositivo.</target>
</trans-unit>
<trans-unit id="sd6a025d66f2637d1">
<source>Traditional authenticator</source>
<target>Autenticador tradicional</target>
</trans-unit>
<trans-unit id="sb25e689e00c61829">
<source>Use a code-based authenticator.</source>
<target>Use um autenticador baseado em código.</target>
</trans-unit>
<trans-unit id="s9e568afec3810bfe">
<source>Recovery keys</source>
<target>Chaves de recuperação</target>
</trans-unit>
<trans-unit id="s8bb0a1b672b52954">
<source>In case you lose access to your primary authenticators.</source>
<target>Caso você perca acesso ao seu método de autenticação principal.</target>
</trans-unit>
<trans-unit id="s97f2dc19fa556a6a">
<source>SMS</source>
<target>SMS</target>
</trans-unit>
<trans-unit id="s0e516232f2ab4e04">
<source>Tokens sent via SMS.</source>
<target>Tokens enviados via SMS.</target>
</trans-unit>
<trans-unit id="s833cfe815918c143">
<source>Tokens sent via email.</source>
<target>Tokens enviados por e-mail.</target>
</trans-unit>
<trans-unit id="s76d21e163887ddd1">
<source>Unknown device</source>
<target>Dispositivo desconhecido</target>
</trans-unit>
<trans-unit id="sf0ceaf3116e31fd4">
<source>An unknown device class was provided.</source>
<target>Uma classe de dispositivo não reconhecida foi fornecida.</target>
</trans-unit>
<trans-unit id="s610fced3957d0471">
<source>Select an authentication method</source>
<target>Selecione um método de autenticação</target>
</trans-unit>
<trans-unit id="s958cedec1cb3fc52">
<source>Select a configuration stage</source>
<target>Selecione um estágio de configuração</target>
</trans-unit>
<trans-unit id="sac17f177f884e238">
<source>Stay signed in?</source>
<target>Permitir que eu permaneça conectado?</target>
</trans-unit>
<trans-unit id="s859b2e00391da380">
<source>Select Yes to reduce the number of times you're asked to sign in.</source>
<target>Selecione Sim para reduzir o número de vezes que você é solicitado a entrar.</target>
</trans-unit>
<trans-unit id="s23da7320dee28a60">
<source>Device Code</source>
<target>Código do Dispositivo</target>
</trans-unit>
<trans-unit id="s3cd84e82e83e35ad">
<source>Please enter your code</source>
<target>Por favor, insira seu código</target>
</trans-unit>
<trans-unit id="s455a8fc21077e7f9">
<source>You've successfully authenticated your device.</source>
<target>Você autenticou seu dispositivo com sucesso.</target>
</trans-unit>
<trans-unit id="sac88482c48453fc8">
<source>You've logged out of <x id="0" equiv-text="${challenge.applicationName}"/>. You can go back to the overview to launch another application, or log out of your authentik account.</source>
<target>Você saiu de <x id="0" equiv-text="${this.challenge.applicationName}"/>. Você pode voltar para a visão geral para iniciar outro aplicativo ou sair da sua conta authentik.</target>
</trans-unit>
<trans-unit id="s3108167b562674e2">
<source>Go back to overview</source>
<target>Voltar para a visão geral</target>
</trans-unit>
<trans-unit id="sdb749e793de55478">
<source>Log out of <x id="0" equiv-text="${challenge.brandName}"/></source>
<target>Sair de <x id="0" equiv-text="${this.challenge.brandName}"/></target>
</trans-unit>
<trans-unit id="s521681ed1d5ff814">
<source>Log back into <x id="0" equiv-text="${challenge.applicationName}"/></source>
<target>Entrar novamente em <x id="0" equiv-text="${this.challenge.applicationName}"/></target>
</trans-unit>
<trans-unit id="s78869b8b2bc26d0d">
<source>SAML Provider</source>
<target>Provedor SAML</target>
</trans-unit>
<trans-unit id="sca83a1f9227f74b9">
<source>SAML logout complete</source>
<target>Logout SAML finalizado</target>
</trans-unit>
<trans-unit id="s7b90eab7969ae056">
<source>Redirecting to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
<target>Redirecionando ao provedor SAML: <x id="0" equiv-text="${providerName}"/></target>
</trans-unit>
<trans-unit id="s3e6174b645d96835">
<source>Posting logout request to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
<target>Enviando requisição de logout ao provedor SAML: <x id="0" equiv-text="${providerName}"/></target>
</trans-unit>
<trans-unit id="s0b1ffff8bedd6b8a">
<source>Unknown Provider</source>
<target>Provedor Desconhecido</target>
</trans-unit>
<trans-unit id="s777e86d562523c85">
<source>Logging out of providers...</source>
<target>Saindo dos provedores...</target>
</trans-unit>
<trans-unit id="s4980379bf8461c2d">
<source>Single Logout</source>
<target>Logout Único</target>
</trans-unit>
<trans-unit id="s3736936aac1adc2e">
<source>Open flow inspector</source>
<target>Abrir inspecionador de fluxo</target>
</trans-unit>
<trans-unit id="sa17ce23517e56461">
<source>Authentication form</source>
<target>Formulário de autenticação</target>
</trans-unit>
<trans-unit id="s7fa4e5e409d43573">
<source>Error creating credential: <x id="0" equiv-text="${err}"/></source>
<target>Erro ao criar credencial: <x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="s9d95f09deb601f34">
<source>Server validation of credential failed: <x id="0" equiv-text="${err}"/></source>
<target>Falha na validação do servidor da credencial: <x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="sb0821a9e92cac5eb">
<source>Failed to register. Please try again.</source>
<target>Falha ao registrar. Por favor, tente novamente.</target>
</trans-unit>
<trans-unit id="s238784fc1dc672ae">
<source>Registering...</source>
<target>Registrando...</target>
</trans-unit>
<trans-unit id="s009bd1c98a9f5de2">
<source>Failed to register</source>
<target>Falha ao registrar</target>
</trans-unit>
<trans-unit id="sb166ce92e8e807d6">
<source>Retry registration</source>
<target>Tentar registrar novamente</target>
</trans-unit>
<trans-unit id="s95094b57684716a5">
<source>Failed to validate device.</source>
</trans-unit>
<trans-unit id="se99d25eb70c767ef">
<source>Verifying your device...</source>
</trans-unit>
<trans-unit id="s1af2337b6d11d4c6">
<source>Data export ready</source>
</trans-unit>
<trans-unit id="en-XA">
<source>English (Pseudo-Accents)</source>
</trans-unit>
<trans-unit id="avatar.alt-text-for-user">
<source>Avatar for <x id="0" equiv-text="${this.username}"/></source>
</trans-unit>
<trans-unit id="avatar.alt-text">
<source>User avatar</source>
</trans-unit>
<trans-unit id="flow.navigation.go-back">
<source>Go back</source>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent-to-address">
<source>A verification token has been sent to your configured email address: <x id="0" equiv-text="${email}"/></source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's configured email address.</note>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent">
<source>A verification token has been sent to your email address.</source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's email address.</note>
</trans-unit>
<trans-unit id="scd909e0bc55fc548">
<source>Security key</source>
</trans-unit>
<trans-unit id="sd0de938d9c37ad5f">
<source>Use a Passkey or security key to prove your identity.</source>
</trans-unit>
<trans-unit id="sb94beab52540d2b7">
<source>The CAPTCHA challenge failed to load.</source>
</trans-unit>
<trans-unit id="s217a96c47caaf73d">
<source>Could not find a suitable CAPTCHA provider.</source>
</trans-unit>
<trans-unit id="sdf2794b96386c868">
<source>Copy time-based one-time password secret</source>
</trans-unit>
<trans-unit id="sc78d16417878afd0">
<source>Copy Secret</source>
</trans-unit>
<trans-unit id="clipboard.write.success.message.entity">
<source><x id="0" equiv-text="${entityLabel}"/> copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.success.generic">
<source>Copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.failure.description">
<source>Clipboard not available. Please copy the value manually.</source>
</trans-unit>
<trans-unit id="totp.config">
<source>TOTP Config</source>
</trans-unit>
<trans-unit id="totp.config.clipboard.description">
<source>Paste this URL into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="totp.secret">
<source>TOTP Secret</source>
</trans-unit>
<trans-unit id="totp.secret.clipboard.description">
<source>Paste this secret into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="s92e22f9319fdb85d">
<source>Configuration warning</source>
</trans-unit>
<trans-unit id="saa088a2d0f90d5a9">
<source>Posting logout response to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s776d93092ad9ce90">
<source>Review initiated</source>
</trans-unit>
<trans-unit id="sad46bcad1a343b51">
<source>Review overdue</source>
</trans-unit>
<trans-unit id="s59d168d966cecbaf">
<source>Review attested</source>
</trans-unit>
<trans-unit id="s5158b7f014cecefc">
<source>Review completed</source>
</trans-unit>
<trans-unit id="sdd2ea73c24b40d5d">
<source>Site footer</source>
</trans-unit>
<trans-unit id="sf910cca0f06bbc31">
<source>Enter the email address or username associated with your account.</source>
</trans-unit>
<trans-unit id="s6e858c4c4c3b6b76">
<source>You're about to be redirected to the following URL.</source>
</trans-unit>
<trans-unit id="sd5d2b94a1ccba1a9">
<source>Log in to continue to <x id="0" equiv-text="${prelude}"/>.</source>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,877 @@
<?xml version="1.0"?><xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file target-language="ru-RU" source-language="en" original="lit-localize-inputs" datatype="plaintext">
<body>
<!-- #region Locales -->
<trans-unit id="en">
<source>English</source>
<target>Английский</target>
</trans-unit>
<trans-unit id="ja-JP">
<source>Japanese</source>
<target>Японский</target>
</trans-unit>
<trans-unit id="ko-KR">
<source>Korean</source>
<target>Корейский</target>
</trans-unit>
<trans-unit id="zh-Hans">
<source>Chinese (Simplified)</source>
<target>Китайский</target>
</trans-unit>
<trans-unit id="zh-Hant">
<source>Chinese (Traditional)</source>
<target>Китайский</target>
</trans-unit>
<!-- #endregion -->
<!-- #region Locale selector -->
<trans-unit id="locale-auto-detect-option">
<source>Auto-detect</source>
<target>Автоматическое определение</target>
<note from="lit-localize">Label for the auto-detect locale option in language selection dropdown</note>
</trans-unit>
<trans-unit id="language-selector-label">
<source>Select language</source>
<target>Выберите язык</target>
<note from="lit-localize">Label for the language selection dropdown</note>
</trans-unit>
<trans-unit id="locale-option-localized-label">
<source><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</source>
<note from="lit-localize">Locale option label showing the localized language name along with the native language name in parentheses.</note>
</trans-unit>
<!-- #endregion -->
<trans-unit id="s12d6dde9b30c3093">
<source>Dismiss</source>
</trans-unit>
<trans-unit id="sfe629863ba1338c2">
<source>Connection error, reconnecting...</source>
<target>Ошибка подключения, повторное подключение...</target>
</trans-unit>
<trans-unit id="sdaecc3c29a27c5c5">
<source>An unknown error occurred</source>
</trans-unit>
<trans-unit id="se84ba7f105934495">
<source>Please check the browser console for more details.</source>
</trans-unit>
<trans-unit id="sdea479482318489d">
<source>Status messages</source>
</trans-unit>
<trans-unit id="s91ae4b6bf981682b">
<source>authentik Logo</source>
<target>Логотип authentik</target>
</trans-unit>
<trans-unit id="s49730f3d5751a433">
<source>Loading...</source>
<target>Загрузка...</target>
</trans-unit>
<trans-unit id="sa50a6326530d8a0d">
<source>Show less</source>
<target>Показать меньше</target>
</trans-unit>
<trans-unit id="sb2c57b2d347203dd">
<source>Show more</source>
<target>Показать больше</target>
</trans-unit>
<trans-unit id="sa48f81f001b893d2">
<source>User</source>
<target>Пользователь</target>
</trans-unit>
<trans-unit id="sb59d68ed12d46377">
<source>Loading</source>
<target>Загрузка</target>
</trans-unit>
<trans-unit id="s0382d73823585617">
<source><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></source>
<target>
<x id="0" equiv-text="${this.errorMessage}"/>:
<x id="1" equiv-text="${e.toString()}"/></target>
</trans-unit>
<trans-unit id="sae5d87e99fe081e0">
<source>Required</source>
<target>Обязательно</target>
</trans-unit>
<trans-unit id="s1cd198d689c66e4b">
<source>API Access</source>
<target>Доступ к API</target>
</trans-unit>
<trans-unit id="sf29883ac9ec43085">
<source>App password</source>
<target>Пароль приложения</target>
</trans-unit>
<trans-unit id="s6ac670086eb137c6">
<source>Recovery</source>
<target>Восстановление</target>
</trans-unit>
<trans-unit id="sfe211545fd02f73e">
<source>Verification</source>
<target>Верификация</target>
</trans-unit>
<trans-unit id="sd73b202ec04eefd9">
<source>Unknown intent</source>
<target>Неизвестное намерение</target>
</trans-unit>
<trans-unit id="sc8da3cc71de63832">
<source>Login</source>
<target>Вход</target>
</trans-unit>
<trans-unit id="sb4564c127ab8b921">
<source>Failed login</source>
<target>Не удалось войти</target>
</trans-unit>
<trans-unit id="s67749057edb2586b">
<source>Logout</source>
<target>Выйти</target>
</trans-unit>
<trans-unit id="s7e537ad68d7c16e1">
<source>User was written to</source>
<target>Пользователь был записан в</target>
</trans-unit>
<trans-unit id="sa0e0bdd7e244416b">
<source>Suspicious request</source>
<target>Подозрительный запрос</target>
</trans-unit>
<trans-unit id="s7bda44013984fc48">
<source>Password set</source>
<target>Пароль установлен</target>
</trans-unit>
<trans-unit id="sa1b41e334ad89d94">
<source>Secret was viewed</source>
<target>Секрет просмотрен</target>
</trans-unit>
<trans-unit id="s92ca679592a36b35">
<source>Secret was rotated</source>
<target>Секрет был обновлен</target>
</trans-unit>
<trans-unit id="s8a1d9403ca90989b">
<source>Invitation used</source>
<target>Приглашение использовано</target>
</trans-unit>
<trans-unit id="s5f496533610103f2">
<source>Application authorized</source>
<target>Приложение авторизированно</target>
</trans-unit>
<trans-unit id="sdc9e222be9612939">
<source>Source linked</source>
<target>Источник привязан</target>
</trans-unit>
<trans-unit id="sb1c91762ae3a9bee">
<source>Impersonation started</source>
<target>Имитация пользователя началась</target>
</trans-unit>
<trans-unit id="s9c73bd29b279d26b">
<source>Impersonation ended</source>
<target>Имитация пользователя завершилась</target>
</trans-unit>
<trans-unit id="s1cd264012278c047">
<source>Flow execution</source>
<target>Выполнение потока</target>
</trans-unit>
<trans-unit id="s32f04d33924ce8ad">
<source>Policy execution</source>
<target>Политика выполнения</target>
</trans-unit>
<trans-unit id="sb6d7128df5978cee">
<source>Policy exception</source>
<target>Политика исключения</target>
</trans-unit>
<trans-unit id="s77f572257f69a8db">
<source>Property Mapping exception</source>
<target>Исключение из сопоставления свойств</target>
</trans-unit>
<trans-unit id="s2543cffd6ebb6803">
<source>System task execution</source>
<target>Выполнение системных задач</target>
</trans-unit>
<trans-unit id="se2f258b996f7279c">
<source>System task exception</source>
<target>Исключение системной задачи</target>
</trans-unit>
<trans-unit id="s81eff3409d572a21">
<source>General system exception</source>
<target>Общее системное исключение</target>
</trans-unit>
<trans-unit id="sf8f49cdbf0036343">
<source>Configuration error</source>
<target>Ошибка конфигурации</target>
</trans-unit>
<trans-unit id="s9c6f61dc47bc4f0a">
<source>Model created</source>
<target>Модель создана</target>
</trans-unit>
<trans-unit id="s47a4983a2c6bb749">
<source>Model updated</source>
<target>Модель обновлена</target>
</trans-unit>
<trans-unit id="sc9f69360b58706c7">
<source>Model deleted</source>
<target>Модель удалена</target>
</trans-unit>
<trans-unit id="sa266303caf1bd27f">
<source>Email sent</source>
<target>Письмо отправленно</target>
</trans-unit>
<trans-unit id="s6c410fedda2a575f">
<source>Update available</source>
<target>Обновление доступно</target>
</trans-unit>
<trans-unit id="sf1ec4acb8d744ed9">
<source>Alert</source>
<target>Оповещение</target>
</trans-unit>
<trans-unit id="s9117fb5195e75151">
<source>Notice</source>
<target>Уведомление</target>
</trans-unit>
<trans-unit id="s34be76c6b1eadbef">
<source>Warning</source>
<target>Предупреждение</target>
</trans-unit>
<trans-unit id="s02240309358f557c">
<source>Unknown severity</source>
<target>Неизвестная серьезность</target>
</trans-unit>
<trans-unit id="s858e7ac4b3cf955f">
<source>Static tokens</source>
<target>Статические токены</target>
</trans-unit>
<trans-unit id="sfcfcf85a57eea78a">
<source>TOTP Device</source>
<target>Устройство TOTP</target>
</trans-unit>
<trans-unit id="s482bc55a78891ef7">
<source>A code has been sent to your address: <x id="0" equiv-text="${email}"/></source>
</trans-unit>
<trans-unit id="s5afa3fc77ce8d94d">
<source>A code has been sent to your email address.</source>
</trans-unit>
<trans-unit id="s37f47fa981493c3b">
<source>A one-time use code has been sent to you via SMS text message.</source>
</trans-unit>
<trans-unit id="sc92a7248dba5f388">
<source>Open your authenticator app to retrieve a one-time use code.</source>
</trans-unit>
<trans-unit id="s21d95b4651ad7a1e">
<source>Enter a one-time recovery code for this user.</source>
</trans-unit>
<trans-unit id="s2e1d5a7d320c25ef">
<source>Enter the code from your authenticator device.</source>
</trans-unit>
<trans-unit id="se2d65e13768468e0">
<source>Internal</source>
<target>Внутренний</target>
</trans-unit>
<trans-unit id="s84fcddede27b8e2a">
<source>External</source>
<target>Внешний</target>
</trans-unit>
<trans-unit id="s1a635369edaf4dc3">
<source>Service account</source>
<target>Сервисный аккаунт</target>
</trans-unit>
<trans-unit id="sff930bf2834e2201">
<source>Service account (internal)</source>
<target>Сервисный аккаунт (внутренний)</target>
</trans-unit>
<trans-unit id="scb489a1a173ac3f0">
<source>Yes</source>
<target>Да</target>
</trans-unit>
<trans-unit id="s09205907b5b56cda">
<source>No</source>
<target>Нет</target>
</trans-unit>
<trans-unit id="s7f073c746d0f6324">
<source>Form actions</source>
</trans-unit>
<trans-unit id="s98b1cb8fb62909ec">
<source>Group</source>
<target>Группа</target>
</trans-unit>
<trans-unit id="s2e422519ed38f7d8">
<source>Pass</source>
<target>Пропуск</target>
</trans-unit>
<trans-unit id="sac315d5bd28d4efa">
<source>Don't Pass</source>
</trans-unit>
<trans-unit id="s042baf59902a711f">
<source>Policy</source>
<target>Политика</target>
</trans-unit>
<trans-unit id="sd8f220c999726151">
<source>Redirect</source>
<target>Перенаправление</target>
</trans-unit>
<trans-unit id="s03f42eea72154959">
<source>Username</source>
<target>Имя пользователя</target>
</trans-unit>
<trans-unit id="s5f5bf4ef2bd93c04">
<source>Group mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Групповые сопоставления могут быть проверены только в том случае, если пользователь уже вошел в систему при попытке получить доступ к этому источнику.</target>
</trans-unit>
<trans-unit id="s6c607d74bdfe9f36">
<source>User mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Пользовательские сопоставления могут быть проверены только в том случае, если пользователь уже вошел в систему при попытке получить доступ к этому источнику.</target>
</trans-unit>
<trans-unit id="sf6e1665c7022a1f8">
<source>Password</source>
<target>Пароль</target>
</trans-unit>
<trans-unit id="sd1f44f1a8bc20e67">
<source>Email</source>
<target>Электронная почта</target>
</trans-unit>
<trans-unit id="s8939f574b096054a">
<source>Not you?</source>
<target>Не вы?</target>
</trans-unit>
<trans-unit id="s296fbffaaa7c910a">
<source>Required.</source>
<target>Обязательно.</target>
</trans-unit>
<trans-unit id="s81ecf2d4386b8e84">
<source>Continue</source>
<target>Продолжить</target>
</trans-unit>
<trans-unit id="s61e48919db20538a">
<source>UPN</source>
<target>UPN</target>
</trans-unit>
<trans-unit id="s67ac11d47f1ce794">
<source>WebAuthn requires this page to be accessed via HTTPS.</source>
<target>WebAuthn требует, чтобы доступ к этой странице осуществлялся по протоколу HTTPS.</target>
</trans-unit>
<trans-unit id="se9e9e1d6799b86a5">
<source>WebAuthn not supported by browser.</source>
<target>WebAuthn не поддерживается браузером.</target>
</trans-unit>
<trans-unit id="sa4be93eb7f4e51e3">
<source>Site links</source>
</trans-unit>
<trans-unit id="s6fe64b4625517333">
<source>Powered by authentik</source>
<target>Основано на authentik</target>
</trans-unit>
<trans-unit id="sd766cdc29b25ff95">
<source>Authenticating with Apple...</source>
<target>Аутентификация с помощью Apple...</target>
</trans-unit>
<trans-unit id="s2c8189544e3ea679">
<source>Retry</source>
<target>Повторить</target>
</trans-unit>
<trans-unit id="s420d2cdedcaf8cd0">
<source>Authenticating with Plex...</source>
<target>Аутентификация с помощью Plex...</target>
</trans-unit>
<trans-unit id="s2ddbebcb8a49b005">
<source>Waiting for authentication...</source>
<target>Ожидание аутентификации...</target>
</trans-unit>
<trans-unit id="sb15fe7b9d09bb419">
<source>If no Plex popup opens, click the button below.</source>
<target>Если всплывающее окно Plex не открывается, нажмите кнопку ниже.</target>
</trans-unit>
<trans-unit id="sbc625b4c669b9ce8">
<source>Open login</source>
<target>Открытый логин</target>
</trans-unit>
<trans-unit id="sf376ae7e9ef41c1a">
<source>Authenticating with Telegram...</source>
</trans-unit>
<trans-unit id="s76ea993fdc8503d8">
<source>Click the button below to start.</source>
</trans-unit>
<trans-unit id="s15d6fabebb4ef2d8">
<source>User information</source>
</trans-unit>
<trans-unit id="s9bd9ba84819493d4">
<source>Something went wrong! Please try again later.</source>
<target>Что-то пошло не так! Пожалуйста, повторите попытку позже.</target>
</trans-unit>
<trans-unit id="s4090dd0c0e45988b">
<source>Request ID</source>
<target>ИД запроса</target>
</trans-unit>
<trans-unit id="s4d7fe7be1c49896c">
<source>You may close this page now.</source>
<target>Теперь вы можете закрыть эту страницу.</target>
</trans-unit>
<trans-unit id="s197420b40df164f8">
<source>Follow redirect</source>
<target>Следовать за перенаправлением</target>
</trans-unit>
<trans-unit id="s3ab772345f78aee0">
<source>Flow inspector</source>
<target>Инспектор потока</target>
</trans-unit>
<trans-unit id="sb69e43f2f6bd1b54">
<source>Close flow inspector</source>
</trans-unit>
<trans-unit id="s502884e1977b2c06">
<source>Next stage</source>
<target>Следующий этап</target>
</trans-unit>
<trans-unit id="sb3fa80ccfa97ee54">
<source>Stage name</source>
<target>Имя этапа</target>
</trans-unit>
<trans-unit id="sbea3c1e4f2fd623d">
<source>Stage kind</source>
<target>Вид этапа</target>
</trans-unit>
<trans-unit id="s2bc8aa1740d3da34">
<source>Stage object</source>
<target>Объект этапа</target>
</trans-unit>
<trans-unit id="sc3e1c4f1fff8e1ca">
<source>This flow is completed.</source>
<target>Этот поток завершен.</target>
</trans-unit>
<trans-unit id="s342eccabf83c9bde">
<source>Plan history</source>
<target>История плана</target>
</trans-unit>
<trans-unit id="sb2f307e79d20bb56">
<source>Current plan context</source>
<target>Контекст текущего плана</target>
</trans-unit>
<trans-unit id="sa13e6c8310000e30">
<source>Session ID</source>
<target>ID сессии</target>
</trans-unit>
<trans-unit id="s857cf5aa8955cf5c">
<source>Flow inspector loading</source>
</trans-unit>
<trans-unit id="sa11e92683c5860c7">
<source>Request has been denied.</source>
<target>Запрос был отклонен.</target>
</trans-unit>
<trans-unit id="s2f7f35f6a5b733f5">
<source>Show password</source>
<target>Показать пароль</target>
</trans-unit>
<trans-unit id="s452f791e0ff6a13e">
<source>Hide password</source>
<target>Скрыть пароль</target>
</trans-unit>
<trans-unit id="scf5ce91bfba10a61">
<source>Please enter your password</source>
<target>Пожалуйста, введите ваш пароль</target>
</trans-unit>
<trans-unit id="s6bb30c61df4cf486">
<source>Caps Lock is enabled.</source>
<target>Включена функция Caps Lock.</target>
</trans-unit>
<trans-unit id="s8d6236ad153d42c0">
<source>CAPTCHA challenge</source>
</trans-unit>
<trans-unit id="s30d6ff9e15e0a40a">
<source>Verifying...</source>
<target>Верификация...</target>
</trans-unit>
<trans-unit id="s1c336c2d6cef77b3">
<source>Remember me on this device</source>
</trans-unit>
<trans-unit id="seb6ab868740e4e36">
<source>Continue with <x id="0" equiv-text="${name}"/></source>
</trans-unit>
<trans-unit id="sc4eedb434536bdb4">
<source>Need an account?</source>
<target>Нужна учетная запись?</target>
</trans-unit>
<trans-unit id="s38f774cd7e9b9dad">
<source>Sign up.</source>
<target>Зарегистрироваться.</target>
</trans-unit>
<trans-unit id="sa03aa46068460c95">
<source>Forgot username or password?</source>
<target>Забыли имя пользователя или пароль?</target>
</trans-unit>
<trans-unit id="s05a941e4b4bfca9f">
<source>Additional actions</source>
</trans-unit>
<trans-unit id="s6ecfc18dbfeedd76">
<source>Select one of the options below to continue.</source>
<target>Выберите один из вариантов ниже, чтобы продолжить.</target>
</trans-unit>
<trans-unit id="s091d5407b5b32e84">
<source>Or</source>
<target>Или</target>
</trans-unit>
<trans-unit id="se5fd752dbbc3cd28">
<source>Use a security key</source>
<target>Используйте ключ безопасности</target>
</trans-unit>
<trans-unit id="s53dddf1733e26c98">
<source>Login sources</source>
</trans-unit>
<trans-unit id="s85366fac18679f28">
<source>Forgot password?</source>
<target>Забыли пароль?</target>
</trans-unit>
<trans-unit id="s14c552fb0a4c0186">
<source>Application requires following permissions:</source>
<target>Приложению необходимы следующие разрешения:</target>
</trans-unit>
<trans-unit id="s7073489bb01b3c24">
<source>Application already has access to the following permissions:</source>
<target>Приложение уже имеет доступ к следующим разрешениям:</target>
</trans-unit>
<trans-unit id="s98dc556f8bf707dc">
<source>Application requires following new permissions:</source>
<target>Приложение требует следующих новых разрешений:</target>
</trans-unit>
<trans-unit id="s06bfe45ffef2cf60">
<source>Stage name: <x id="0" equiv-text="${this.challenge?.name}"/></source>
<target>Название этапа: <x id="0" equiv-text="${this.challenge.name}"/></target>
</trans-unit>
<trans-unit id="sbd19064fc3f405c1">
<source>Check your Inbox for a verification email.</source>
<target>Проверьте свой почтовый ящик, чтобы получить письмо с подтверждением.</target>
</trans-unit>
<trans-unit id="s8aff572e64b7936b">
<source>Send Email again.</source>
<target>Отправить электронное письмо еще раз.</target>
</trans-unit>
<trans-unit id="sc091f75b942ec081">
<source>QR-Code to setup a time-based one-time password</source>
</trans-unit>
<trans-unit id="s6db67c7681b8be6e">
<source>Copy time-based one-time password configuration</source>
</trans-unit>
<trans-unit id="s43e859bf711e3599">
<source>Copy TOTP Config</source>
</trans-unit>
<trans-unit id="s90064dd5c4dde2c6">
<source>Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.</source>
<target>Пожалуйста, отсканируйте приведенный выше QR-код с помощью Microsoft Authenticator, Google Authenticator или других приложений-аутентификаторов на вашем устройстве и введите код, который устройство отобразит ниже, чтобы завершить настройку устройства MFA.</target>
</trans-unit>
<trans-unit id="sa5562e0115ffbccd">
<source>Time-based one-time password</source>
</trans-unit>
<trans-unit id="s40f44c0d88807fd5">
<source>TOTP Code</source>
</trans-unit>
<trans-unit id="s95474cc8c73dd9c0">
<source>Type your TOTP code...</source>
</trans-unit>
<trans-unit id="s168d0c138b63286d">
<source>Type your time-based one-time password code.</source>
</trans-unit>
<trans-unit id="sc2ec367e3108fe65">
<source>Duo activation QR code</source>
<target>QR-код активации Duo</target>
</trans-unit>
<trans-unit id="sc5668cb23167e9bb">
<source>Alternatively, if your current device has Duo installed, click on this link:</source>
<target>Кроме того, если на вашем текущем устройстве установлен Duo, перейдите по этой ссылке:</target>
</trans-unit>
<trans-unit id="s721d94ae700b5dfd">
<source>Duo activation</source>
<target>Duo активация</target>
</trans-unit>
<trans-unit id="s708d9a4a0db0be8f">
<source>Check status</source>
<target>Проверить статус</target>
</trans-unit>
<trans-unit id="s31fba571065f2c87">
<source>Make sure to keep these tokens in a safe place.</source>
<target>Обязательно храните эти токены в надежном месте.</target>
</trans-unit>
<trans-unit id="s3f8a07912545e72e">
<source>Configure your email</source>
<target>Настройте свою электронную почту</target>
</trans-unit>
<trans-unit id="scedf77e8b75cad5a">
<source>Please enter your email address.</source>
<target>Пожалуйста, введите свой адрес электронной почты.</target>
</trans-unit>
<trans-unit id="s3643189d1abbb7f4">
<source>Code</source>
<target>Код</target>
</trans-unit>
<trans-unit id="s7cdd62c100b6b17b">
<source>Please enter the code you received via email</source>
<target>Пожалуйста, введите код, который вы получили по электронной почте</target>
</trans-unit>
<trans-unit id="sc0a0c87d5c556c38">
<source>Phone number</source>
<target>Номер телефона</target>
</trans-unit>
<trans-unit id="s04c1210202f48dc9">
<source>Please enter your Phone number.</source>
<target>Пожалуйста, введите номер телефона.</target>
</trans-unit>
<trans-unit id="seb0c08d9f233bbfe">
<source>Please enter the code you received via SMS</source>
<target>Введите код, полученный по SMS</target>
</trans-unit>
<trans-unit id="s98bb2ae796f1ceef">
<source>Select another authentication method</source>
</trans-unit>
<trans-unit id="s844fea0bfb10a72a">
<source>Authentication code</source>
<target>Код аутентификации</target>
</trans-unit>
<trans-unit id="s7abc9d08b0f70fd6">
<source>Static token</source>
<target>Статический токен</target>
</trans-unit>
<trans-unit id="s14e8ac4d377a1a99">
<source>Type an authentication code...</source>
</trans-unit>
<trans-unit id="s39002897db60bb28">
<source>Sending Duo push notification...</source>
<target>Отправка push-уведомления Duo...</target>
</trans-unit>
<trans-unit id="sd2b8c1caa0340ed6">
<source>Failed to authenticate</source>
<target>Не удалось аутентифицироваться</target>
</trans-unit>
<trans-unit id="s363abde8a254ea5f">
<source>Authentication failed. Please try again.</source>
<target>Аутентификация не удалась. Пожалуйста, попробуйте еще раз</target>
</trans-unit>
<trans-unit id="sffef1a8596bc58bb">
<source>Authenticating...</source>
<target>Аутентификация...</target>
</trans-unit>
<trans-unit id="se409d01b52c4e12f">
<source>Retry authentication</source>
<target>Повторить аутентификацию</target>
</trans-unit>
<trans-unit id="s8d857061510fe794">
<source>Duo push-notifications</source>
<target>Duo push-уведомления</target>
</trans-unit>
<trans-unit id="s47490298c17b753a">
<source>Receive a push notification on your device.</source>
<target>Получите push-уведомление на свое устройство.</target>
</trans-unit>
<trans-unit id="sd6a025d66f2637d1">
<source>Traditional authenticator</source>
<target>Традиционный аутентификатор</target>
</trans-unit>
<trans-unit id="sb25e689e00c61829">
<source>Use a code-based authenticator.</source>
<target>Используйте аутентификатор на основе кода.</target>
</trans-unit>
<trans-unit id="s9e568afec3810bfe">
<source>Recovery keys</source>
<target>Ключи восстановления</target>
</trans-unit>
<trans-unit id="s8bb0a1b672b52954">
<source>In case you lose access to your primary authenticators.</source>
</trans-unit>
<trans-unit id="s97f2dc19fa556a6a">
<source>SMS</source>
<target>СМС</target>
</trans-unit>
<trans-unit id="s0e516232f2ab4e04">
<source>Tokens sent via SMS.</source>
<target>Токены отправляются по SMS.</target>
</trans-unit>
<trans-unit id="s833cfe815918c143">
<source>Tokens sent via email.</source>
<target>Токены, отправлены по электронной почте.</target>
</trans-unit>
<trans-unit id="s76d21e163887ddd1">
<source>Unknown device</source>
</trans-unit>
<trans-unit id="sf0ceaf3116e31fd4">
<source>An unknown device class was provided.</source>
</trans-unit>
<trans-unit id="s610fced3957d0471">
<source>Select an authentication method</source>
</trans-unit>
<trans-unit id="s958cedec1cb3fc52">
<source>Select a configuration stage</source>
</trans-unit>
<trans-unit id="sac17f177f884e238">
<source>Stay signed in?</source>
<target>Оставаться в системе?</target>
</trans-unit>
<trans-unit id="s859b2e00391da380">
<source>Select Yes to reduce the number of times you're asked to sign in.</source>
<target>Выберите Да, чтобы уменьшить количество запросов на вход.</target>
</trans-unit>
<trans-unit id="s23da7320dee28a60">
<source>Device Code</source>
</trans-unit>
<trans-unit id="s3cd84e82e83e35ad">
<source>Please enter your code</source>
<target>Пожалуйста, введите ваш код</target>
</trans-unit>
<trans-unit id="s455a8fc21077e7f9">
<source>You've successfully authenticated your device.</source>
<target>Вы успешно прошли проверку подлинности своего устройства.</target>
</trans-unit>
<trans-unit id="sac88482c48453fc8">
<source>You've logged out of <x id="0" equiv-text="${challenge.applicationName}"/>. You can go back to the overview to launch another application, or log out of your authentik account.</source>
</trans-unit>
<trans-unit id="s3108167b562674e2">
<source>Go back to overview</source>
</trans-unit>
<trans-unit id="sdb749e793de55478">
<source>Log out of <x id="0" equiv-text="${challenge.brandName}"/></source>
</trans-unit>
<trans-unit id="s521681ed1d5ff814">
<source>Log back into <x id="0" equiv-text="${challenge.applicationName}"/></source>
</trans-unit>
<trans-unit id="s78869b8b2bc26d0d">
<source>SAML Provider</source>
</trans-unit>
<trans-unit id="sca83a1f9227f74b9">
<source>SAML logout complete</source>
</trans-unit>
<trans-unit id="s7b90eab7969ae056">
<source>Redirecting to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s3e6174b645d96835">
<source>Posting logout request to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s0b1ffff8bedd6b8a">
<source>Unknown Provider</source>
</trans-unit>
<trans-unit id="s777e86d562523c85">
<source>Logging out of providers...</source>
</trans-unit>
<trans-unit id="s4980379bf8461c2d">
<source>Single Logout</source>
</trans-unit>
<trans-unit id="s3736936aac1adc2e">
<source>Open flow inspector</source>
</trans-unit>
<trans-unit id="sa17ce23517e56461">
<source>Authentication form</source>
</trans-unit>
<trans-unit id="s7fa4e5e409d43573">
<source>Error creating credential: <x id="0" equiv-text="${err}"/></source>
<target>Ошибка при создании учетных данных:
<x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="s9d95f09deb601f34">
<source>Server validation of credential failed: <x id="0" equiv-text="${err}"/></source>
<target>Проверка учетных данных на сервере не удалась:
<x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="sb0821a9e92cac5eb">
<source>Failed to register. Please try again.</source>
<target>Не удалось зарегистрироваться. Пожалуйста, попробуйте еще раз</target>
</trans-unit>
<trans-unit id="s238784fc1dc672ae">
<source>Registering...</source>
<target>Регистрация...</target>
</trans-unit>
<trans-unit id="s009bd1c98a9f5de2">
<source>Failed to register</source>
<target>Не удалось зарегистрироваться</target>
</trans-unit>
<trans-unit id="sb166ce92e8e807d6">
<source>Retry registration</source>
<target>Повторить регистрацию</target>
</trans-unit>
<trans-unit id="s95094b57684716a5">
<source>Failed to validate device.</source>
</trans-unit>
<trans-unit id="se99d25eb70c767ef">
<source>Verifying your device...</source>
</trans-unit>
<trans-unit id="s1af2337b6d11d4c6">
<source>Data export ready</source>
</trans-unit>
<trans-unit id="en-XA">
<source>English (Pseudo-Accents)</source>
</trans-unit>
<trans-unit id="avatar.alt-text-for-user">
<source>Avatar for <x id="0" equiv-text="${this.username}"/></source>
</trans-unit>
<trans-unit id="avatar.alt-text">
<source>User avatar</source>
</trans-unit>
<trans-unit id="flow.navigation.go-back">
<source>Go back</source>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent-to-address">
<source>A verification token has been sent to your configured email address: <x id="0" equiv-text="${email}"/></source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's configured email address.</note>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent">
<source>A verification token has been sent to your email address.</source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's email address.</note>
</trans-unit>
<trans-unit id="scd909e0bc55fc548">
<source>Security key</source>
</trans-unit>
<trans-unit id="sd0de938d9c37ad5f">
<source>Use a Passkey or security key to prove your identity.</source>
</trans-unit>
<trans-unit id="sb94beab52540d2b7">
<source>The CAPTCHA challenge failed to load.</source>
</trans-unit>
<trans-unit id="s217a96c47caaf73d">
<source>Could not find a suitable CAPTCHA provider.</source>
</trans-unit>
<trans-unit id="sdf2794b96386c868">
<source>Copy time-based one-time password secret</source>
</trans-unit>
<trans-unit id="sc78d16417878afd0">
<source>Copy Secret</source>
</trans-unit>
<trans-unit id="clipboard.write.success.message.entity">
<source><x id="0" equiv-text="${entityLabel}"/> copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.success.generic">
<source>Copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.failure.description">
<source>Clipboard not available. Please copy the value manually.</source>
</trans-unit>
<trans-unit id="totp.config">
<source>TOTP Config</source>
</trans-unit>
<trans-unit id="totp.config.clipboard.description">
<source>Paste this URL into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="totp.secret">
<source>TOTP Secret</source>
</trans-unit>
<trans-unit id="totp.secret.clipboard.description">
<source>Paste this secret into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="s92e22f9319fdb85d">
<source>Configuration warning</source>
</trans-unit>
<trans-unit id="saa088a2d0f90d5a9">
<source>Posting logout response to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s776d93092ad9ce90">
<source>Review initiated</source>
</trans-unit>
<trans-unit id="sad46bcad1a343b51">
<source>Review overdue</source>
</trans-unit>
<trans-unit id="s59d168d966cecbaf">
<source>Review attested</source>
</trans-unit>
<trans-unit id="s5158b7f014cecefc">
<source>Review completed</source>
</trans-unit>
<trans-unit id="sdd2ea73c24b40d5d">
<source>Site footer</source>
</trans-unit>
<trans-unit id="sf910cca0f06bbc31">
<source>Enter the email address or username associated with your account.</source>
</trans-unit>
<trans-unit id="s6e858c4c4c3b6b76">
<source>You're about to be redirected to the following URL.</source>
</trans-unit>
<trans-unit id="sd5d2b94a1ccba1a9">
<source>Log in to continue to <x id="0" equiv-text="${prelude}"/>.</source>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,874 @@
<?xml version="1.0"?><xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file target-language="tr-TR" source-language="en" original="lit-localize-inputs" datatype="plaintext">
<body>
<!-- #region Locales -->
<trans-unit id="en">
<source>English</source>
<target>İngilizce</target>
</trans-unit>
<trans-unit id="ja-JP">
<source>Japanese</source>
<target>Japonca</target>
</trans-unit>
<trans-unit id="ko-KR">
<source>Korean</source>
<target>Korece</target>
</trans-unit>
<trans-unit id="zh-Hans">
<source>Chinese (Simplified)</source>
<target>Çince</target>
</trans-unit>
<trans-unit id="zh-Hant">
<source>Chinese (Traditional)</source>
<target>Çince</target>
</trans-unit>
<!-- #endregion -->
<!-- #region Locale selector -->
<trans-unit id="locale-auto-detect-option">
<source>Auto-detect</source>
<target>Otomatik algılama</target>
<note from="lit-localize">Label for the auto-detect locale option in language selection dropdown</note>
</trans-unit>
<trans-unit id="language-selector-label">
<source>Select language</source>
<target>Dili seçin</target>
<note from="lit-localize">Label for the language selection dropdown</note>
</trans-unit>
<trans-unit id="locale-option-localized-label">
<source><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</source>
<note from="lit-localize">Locale option label showing the localized language name along with the native language name in parentheses.</note>
</trans-unit>
<!-- #endregion -->
<trans-unit id="s12d6dde9b30c3093">
<source>Dismiss</source>
</trans-unit>
<trans-unit id="sfe629863ba1338c2">
<source>Connection error, reconnecting...</source>
<target>Bağlantı hatası, yeniden bağlanıyor...</target>
</trans-unit>
<trans-unit id="sdaecc3c29a27c5c5">
<source>An unknown error occurred</source>
</trans-unit>
<trans-unit id="se84ba7f105934495">
<source>Please check the browser console for more details.</source>
</trans-unit>
<trans-unit id="sdea479482318489d">
<source>Status messages</source>
</trans-unit>
<trans-unit id="s91ae4b6bf981682b">
<source>authentik Logo</source>
</trans-unit>
<trans-unit id="s49730f3d5751a433">
<source>Loading...</source>
<target>Yükleniyor...</target>
</trans-unit>
<trans-unit id="sa50a6326530d8a0d">
<source>Show less</source>
<target>Daha az göster</target>
</trans-unit>
<trans-unit id="sb2c57b2d347203dd">
<source>Show more</source>
<target>Daha fazla göster</target>
</trans-unit>
<trans-unit id="sa48f81f001b893d2">
<source>User</source>
<target>Kullanıcı</target>
</trans-unit>
<trans-unit id="sb59d68ed12d46377">
<source>Loading</source>
<target>Yükleniyor</target>
</trans-unit>
<trans-unit id="s0382d73823585617">
<source><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></source>
<target><x id="0" equiv-text="${this.errorMessage}"/>: <x id="1" equiv-text="${e.toString()}"/></target>
</trans-unit>
<trans-unit id="sae5d87e99fe081e0">
<source>Required</source>
<target>Zorunlu</target>
</trans-unit>
<trans-unit id="s1cd198d689c66e4b">
<source>API Access</source>
<target>API Erişimi</target>
</trans-unit>
<trans-unit id="sf29883ac9ec43085">
<source>App password</source>
<target>Uygulama parolası</target>
</trans-unit>
<trans-unit id="s6ac670086eb137c6">
<source>Recovery</source>
<target>Kurtarma</target>
</trans-unit>
<trans-unit id="sfe211545fd02f73e">
<source>Verification</source>
<target>Doğrulama</target>
</trans-unit>
<trans-unit id="sd73b202ec04eefd9">
<source>Unknown intent</source>
<target>Bilinmeyen niyet</target>
</trans-unit>
<trans-unit id="sc8da3cc71de63832">
<source>Login</source>
<target>Giriş</target>
</trans-unit>
<trans-unit id="sb4564c127ab8b921">
<source>Failed login</source>
<target>Başarısız oturum açma</target>
</trans-unit>
<trans-unit id="s67749057edb2586b">
<source>Logout</source>
<target>Oturumu Kapa</target>
</trans-unit>
<trans-unit id="s7e537ad68d7c16e1">
<source>User was written to</source>
<target>Kullanıcı yazıldı</target>
</trans-unit>
<trans-unit id="sa0e0bdd7e244416b">
<source>Suspicious request</source>
<target>Şüpheli istek</target>
</trans-unit>
<trans-unit id="s7bda44013984fc48">
<source>Password set</source>
<target>Parola seti</target>
</trans-unit>
<trans-unit id="sa1b41e334ad89d94">
<source>Secret was viewed</source>
<target>Sır görüldü</target>
</trans-unit>
<trans-unit id="s92ca679592a36b35">
<source>Secret was rotated</source>
<target>Sırrı döndürüldü</target>
</trans-unit>
<trans-unit id="s8a1d9403ca90989b">
<source>Invitation used</source>
<target>Kullanılan davetiye</target>
</trans-unit>
<trans-unit id="s5f496533610103f2">
<source>Application authorized</source>
<target>Başvuru yetkili</target>
</trans-unit>
<trans-unit id="sdc9e222be9612939">
<source>Source linked</source>
<target>Kaynak bağlantılı</target>
</trans-unit>
<trans-unit id="sb1c91762ae3a9bee">
<source>Impersonation started</source>
<target>Kimliğe bürünme başladı</target>
</trans-unit>
<trans-unit id="s9c73bd29b279d26b">
<source>Impersonation ended</source>
<target>Taklit sona erdi</target>
</trans-unit>
<trans-unit id="s1cd264012278c047">
<source>Flow execution</source>
<target>Akış yürütme</target>
</trans-unit>
<trans-unit id="s32f04d33924ce8ad">
<source>Policy execution</source>
<target>İlke yürütme</target>
</trans-unit>
<trans-unit id="sb6d7128df5978cee">
<source>Policy exception</source>
<target>İlke hatası</target>
</trans-unit>
<trans-unit id="s77f572257f69a8db">
<source>Property Mapping exception</source>
<target>Özellik Eşleme hatası</target>
</trans-unit>
<trans-unit id="s2543cffd6ebb6803">
<source>System task execution</source>
<target>Sistem görevi yürütme</target>
</trans-unit>
<trans-unit id="se2f258b996f7279c">
<source>System task exception</source>
<target>Sistem görevi hatası</target>
</trans-unit>
<trans-unit id="s81eff3409d572a21">
<source>General system exception</source>
<target>Genel sistem hatası</target>
</trans-unit>
<trans-unit id="sf8f49cdbf0036343">
<source>Configuration error</source>
<target>Yapılandırma hatası</target>
</trans-unit>
<trans-unit id="s9c6f61dc47bc4f0a">
<source>Model created</source>
<target>Model oluşturuldu</target>
</trans-unit>
<trans-unit id="s47a4983a2c6bb749">
<source>Model updated</source>
<target>Model güncellendi</target>
</trans-unit>
<trans-unit id="sc9f69360b58706c7">
<source>Model deleted</source>
<target>Model silindi</target>
</trans-unit>
<trans-unit id="sa266303caf1bd27f">
<source>Email sent</source>
<target>E-posta gönderildi</target>
</trans-unit>
<trans-unit id="s6c410fedda2a575f">
<source>Update available</source>
<target>Güncelleme mevcut</target>
</trans-unit>
<trans-unit id="sf1ec4acb8d744ed9">
<source>Alert</source>
<target>Alarm</target>
</trans-unit>
<trans-unit id="s9117fb5195e75151">
<source>Notice</source>
<target>Uyarı</target>
</trans-unit>
<trans-unit id="s34be76c6b1eadbef">
<source>Warning</source>
<target>Uyarı</target>
</trans-unit>
<trans-unit id="s02240309358f557c">
<source>Unknown severity</source>
<target>Bilinmeyen önem derecesi</target>
</trans-unit>
<trans-unit id="s858e7ac4b3cf955f">
<source>Static tokens</source>
<target>Statik belirteçler</target>
</trans-unit>
<trans-unit id="sfcfcf85a57eea78a">
<source>TOTP Device</source>
<target>TOTP Cihazı</target>
</trans-unit>
<trans-unit id="s482bc55a78891ef7">
<source>A code has been sent to your address: <x id="0" equiv-text="${email}"/></source>
</trans-unit>
<trans-unit id="s5afa3fc77ce8d94d">
<source>A code has been sent to your email address.</source>
</trans-unit>
<trans-unit id="s37f47fa981493c3b">
<source>A one-time use code has been sent to you via SMS text message.</source>
</trans-unit>
<trans-unit id="sc92a7248dba5f388">
<source>Open your authenticator app to retrieve a one-time use code.</source>
</trans-unit>
<trans-unit id="s21d95b4651ad7a1e">
<source>Enter a one-time recovery code for this user.</source>
<target>Bu kullanıcı için tek seferlik bir kurtarma kodu girin.</target>
</trans-unit>
<trans-unit id="s2e1d5a7d320c25ef">
<source>Enter the code from your authenticator device.</source>
<target>Kimlik doğrulama cihazınızdaki kodu girin.</target>
</trans-unit>
<trans-unit id="se2d65e13768468e0">
<source>Internal</source>
<target>Dahili</target>
</trans-unit>
<trans-unit id="s84fcddede27b8e2a">
<source>External</source>
<target>Dış</target>
</trans-unit>
<trans-unit id="s1a635369edaf4dc3">
<source>Service account</source>
<target>Hizmet hesabı</target>
</trans-unit>
<trans-unit id="sff930bf2834e2201">
<source>Service account (internal)</source>
<target>Hizmet hesabı (dahili)</target>
</trans-unit>
<trans-unit id="scb489a1a173ac3f0">
<source>Yes</source>
<target>Evet</target>
</trans-unit>
<trans-unit id="s09205907b5b56cda">
<source>No</source>
<target>Hayır</target>
</trans-unit>
<trans-unit id="s7f073c746d0f6324">
<source>Form actions</source>
</trans-unit>
<trans-unit id="s98b1cb8fb62909ec">
<source>Group</source>
<target>Grup</target>
</trans-unit>
<trans-unit id="s2e422519ed38f7d8">
<source>Pass</source>
<target>Geçmek</target>
</trans-unit>
<trans-unit id="sac315d5bd28d4efa">
<source>Don't Pass</source>
</trans-unit>
<trans-unit id="s042baf59902a711f">
<source>Policy</source>
<target>İlke</target>
</trans-unit>
<trans-unit id="sd8f220c999726151">
<source>Redirect</source>
<target>Yönlendirme</target>
</trans-unit>
<trans-unit id="s03f42eea72154959">
<source>Username</source>
<target>Kullanıcı Adı</target>
</trans-unit>
<trans-unit id="s5f5bf4ef2bd93c04">
<source>Group mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Grup eşlemeleri, yalnızca bir kullanıcı bu kaynağa erişmeye çalışırken zaten oturum açmışsa kontrol edilebilir.</target>
</trans-unit>
<trans-unit id="s6c607d74bdfe9f36">
<source>User mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>Kullanıcı eşlemeleri, yalnızca bir kullanıcı bu kaynağa erişmeye çalışırken zaten oturum açmışsa kontrol edilebilir.</target>
</trans-unit>
<trans-unit id="sf6e1665c7022a1f8">
<source>Password</source>
<target>Parola</target>
</trans-unit>
<trans-unit id="sd1f44f1a8bc20e67">
<source>Email</source>
<target>E-posta</target>
</trans-unit>
<trans-unit id="s8939f574b096054a">
<source>Not you?</source>
<target>Sen değil mi?</target>
</trans-unit>
<trans-unit id="s296fbffaaa7c910a">
<source>Required.</source>
<target>Zorunlu.</target>
</trans-unit>
<trans-unit id="s81ecf2d4386b8e84">
<source>Continue</source>
<target>Devam Et</target>
</trans-unit>
<trans-unit id="s61e48919db20538a">
<source>UPN</source>
<target>UPN</target>
</trans-unit>
<trans-unit id="s67ac11d47f1ce794">
<source>WebAuthn requires this page to be accessed via HTTPS.</source>
<target>WebAuthn, bu sayfaya HTTPS üzerinden erişilmesini gerektirir.</target>
</trans-unit>
<trans-unit id="se9e9e1d6799b86a5">
<source>WebAuthn not supported by browser.</source>
<target>WebAuthn tarayıcı tarafından desteklenmiyor.</target>
</trans-unit>
<trans-unit id="sa4be93eb7f4e51e3">
<source>Site links</source>
</trans-unit>
<trans-unit id="s6fe64b4625517333">
<source>Powered by authentik</source>
<target>Auentik tarafından desteklenmektedir</target>
</trans-unit>
<trans-unit id="sd766cdc29b25ff95">
<source>Authenticating with Apple...</source>
<target>Apple ile kimlik doğrulaması...</target>
</trans-unit>
<trans-unit id="s2c8189544e3ea679">
<source>Retry</source>
<target>Yeniden dene</target>
</trans-unit>
<trans-unit id="s420d2cdedcaf8cd0">
<source>Authenticating with Plex...</source>
<target>Plex ile kimlik doğrulaması...</target>
</trans-unit>
<trans-unit id="s2ddbebcb8a49b005">
<source>Waiting for authentication...</source>
<target>Kimlik doğrulaması bekleniyor...</target>
</trans-unit>
<trans-unit id="sb15fe7b9d09bb419">
<source>If no Plex popup opens, click the button below.</source>
<target>Plex açılır penceresi açılmazsa, aşağıdaki düğmeyi tıklayın.</target>
</trans-unit>
<trans-unit id="sbc625b4c669b9ce8">
<source>Open login</source>
<target>Girişi aç</target>
</trans-unit>
<trans-unit id="sf376ae7e9ef41c1a">
<source>Authenticating with Telegram...</source>
</trans-unit>
<trans-unit id="s76ea993fdc8503d8">
<source>Click the button below to start.</source>
</trans-unit>
<trans-unit id="s15d6fabebb4ef2d8">
<source>User information</source>
</trans-unit>
<trans-unit id="s9bd9ba84819493d4">
<source>Something went wrong! Please try again later.</source>
<target>Bir şeyler ters gitti! Lütfen daha sonra tekrar deneyin.</target>
</trans-unit>
<trans-unit id="s4090dd0c0e45988b">
<source>Request ID</source>
<target>İstek Kimliği</target>
</trans-unit>
<trans-unit id="s4d7fe7be1c49896c">
<source>You may close this page now.</source>
<target>Bu sayfayı şimdi kapatabilirsiniz.</target>
</trans-unit>
<trans-unit id="s197420b40df164f8">
<source>Follow redirect</source>
<target>Yönlendirmeyi takip et</target>
</trans-unit>
<trans-unit id="s3ab772345f78aee0">
<source>Flow inspector</source>
<target>Akış denetçisi</target>
</trans-unit>
<trans-unit id="sb69e43f2f6bd1b54">
<source>Close flow inspector</source>
</trans-unit>
<trans-unit id="s502884e1977b2c06">
<source>Next stage</source>
<target>Sonraki aşama</target>
</trans-unit>
<trans-unit id="sb3fa80ccfa97ee54">
<source>Stage name</source>
<target>Aşama adı</target>
</trans-unit>
<trans-unit id="sbea3c1e4f2fd623d">
<source>Stage kind</source>
<target>Aşama türü</target>
</trans-unit>
<trans-unit id="s2bc8aa1740d3da34">
<source>Stage object</source>
<target>Aşama nesnesi</target>
</trans-unit>
<trans-unit id="sc3e1c4f1fff8e1ca">
<source>This flow is completed.</source>
<target>Bu akış tamamlandı.</target>
</trans-unit>
<trans-unit id="s342eccabf83c9bde">
<source>Plan history</source>
<target>Plan geçmişi</target>
</trans-unit>
<trans-unit id="sb2f307e79d20bb56">
<source>Current plan context</source>
<target>Mevcut plan bağlamı</target>
</trans-unit>
<trans-unit id="sa13e6c8310000e30">
<source>Session ID</source>
<target>Oturum Kimliği</target>
</trans-unit>
<trans-unit id="s857cf5aa8955cf5c">
<source>Flow inspector loading</source>
</trans-unit>
<trans-unit id="sa11e92683c5860c7">
<source>Request has been denied.</source>
<target>İstek reddedildi.</target>
</trans-unit>
<trans-unit id="s2f7f35f6a5b733f5">
<source>Show password</source>
<target>Şifreyi göster</target>
</trans-unit>
<trans-unit id="s452f791e0ff6a13e">
<source>Hide password</source>
<target>Şifreyi gizle</target>
</trans-unit>
<trans-unit id="scf5ce91bfba10a61">
<source>Please enter your password</source>
<target>Lütfen parolanızı girin</target>
</trans-unit>
<trans-unit id="s6bb30c61df4cf486">
<source>Caps Lock is enabled.</source>
</trans-unit>
<trans-unit id="s8d6236ad153d42c0">
<source>CAPTCHA challenge</source>
</trans-unit>
<trans-unit id="s30d6ff9e15e0a40a">
<source>Verifying...</source>
<target>Doğrulama...</target>
</trans-unit>
<trans-unit id="s1c336c2d6cef77b3">
<source>Remember me on this device</source>
</trans-unit>
<trans-unit id="seb6ab868740e4e36">
<source>Continue with <x id="0" equiv-text="${name}"/></source>
</trans-unit>
<trans-unit id="sc4eedb434536bdb4">
<source>Need an account?</source>
<target>Bir hesaba mı ihtiyacınız var?</target>
</trans-unit>
<trans-unit id="s38f774cd7e9b9dad">
<source>Sign up.</source>
<target>Kaydolun.</target>
</trans-unit>
<trans-unit id="sa03aa46068460c95">
<source>Forgot username or password?</source>
<target>Kullanıcı adı veya parolayı mı unuttunuz?</target>
</trans-unit>
<trans-unit id="s05a941e4b4bfca9f">
<source>Additional actions</source>
</trans-unit>
<trans-unit id="s6ecfc18dbfeedd76">
<source>Select one of the options below to continue.</source>
<target>Devam etmek için aşağıdaki seçeneklerden birini belirleyin.</target>
</trans-unit>
<trans-unit id="s091d5407b5b32e84">
<source>Or</source>
<target>Veya</target>
</trans-unit>
<trans-unit id="se5fd752dbbc3cd28">
<source>Use a security key</source>
<target>Güvenlik anahtarı kullan</target>
</trans-unit>
<trans-unit id="s53dddf1733e26c98">
<source>Login sources</source>
</trans-unit>
<trans-unit id="s85366fac18679f28">
<source>Forgot password?</source>
<target>Parolanı mi unuttun?</target>
</trans-unit>
<trans-unit id="s14c552fb0a4c0186">
<source>Application requires following permissions:</source>
<target>Uygulama aşağıdaki izinleri gerektirir:</target>
</trans-unit>
<trans-unit id="s7073489bb01b3c24">
<source>Application already has access to the following permissions:</source>
<target>Uygulamanın zaten aşağıdaki izinlere erişimi var:</target>
</trans-unit>
<trans-unit id="s98dc556f8bf707dc">
<source>Application requires following new permissions:</source>
<target>Uygulama aşağıdaki yeni izinleri gerektirir:</target>
</trans-unit>
<trans-unit id="s06bfe45ffef2cf60">
<source>Stage name: <x id="0" equiv-text="${this.challenge?.name}"/></source>
<target>Aşama adı: <x id="0" equiv-text="${this.challenge.name}"/></target>
</trans-unit>
<trans-unit id="sbd19064fc3f405c1">
<source>Check your Inbox for a verification email.</source>
<target>Doğrulama e-postası için Gelen Kutunuzu kontrol edin.</target>
</trans-unit>
<trans-unit id="s8aff572e64b7936b">
<source>Send Email again.</source>
<target>E-postayı tekrar gönder.</target>
</trans-unit>
<trans-unit id="sc091f75b942ec081">
<source>QR-Code to setup a time-based one-time password</source>
</trans-unit>
<trans-unit id="s6db67c7681b8be6e">
<source>Copy time-based one-time password configuration</source>
</trans-unit>
<trans-unit id="s43e859bf711e3599">
<source>Copy TOTP Config</source>
</trans-unit>
<trans-unit id="s90064dd5c4dde2c6">
<source>Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.</source>
<target>Lütfen cihazınızdaki Microsoft Authenticator, Google Authenticator veya diğer kimlik doğrulama uygulamalarını kullanarak yukarıdaki QR kodunu tarayın ve MFA cihazının kurulumunu tamamlamak için cihazın aşağıda görüntülediği kodu girin.</target>
</trans-unit>
<trans-unit id="sa5562e0115ffbccd">
<source>Time-based one-time password</source>
</trans-unit>
<trans-unit id="s40f44c0d88807fd5">
<source>TOTP Code</source>
</trans-unit>
<trans-unit id="s95474cc8c73dd9c0">
<source>Type your TOTP code...</source>
</trans-unit>
<trans-unit id="s168d0c138b63286d">
<source>Type your time-based one-time password code.</source>
</trans-unit>
<trans-unit id="sc2ec367e3108fe65">
<source>Duo activation QR code</source>
<target>Duo aktivasyon QR kodu</target>
</trans-unit>
<trans-unit id="sc5668cb23167e9bb">
<source>Alternatively, if your current device has Duo installed, click on this link:</source>
<target>Alternatif olarak, mevcut cihazınızda Duo yüklüyse, şu bağlantıya tıklayın:</target>
</trans-unit>
<trans-unit id="s721d94ae700b5dfd">
<source>Duo activation</source>
<target>İkili aktivasyon</target>
</trans-unit>
<trans-unit id="s708d9a4a0db0be8f">
<source>Check status</source>
<target>Durumu kontrol et</target>
</trans-unit>
<trans-unit id="s31fba571065f2c87">
<source>Make sure to keep these tokens in a safe place.</source>
<target>Bu belirteçleri güvenli bir yerde tuttuğunuzdan emin olun.</target>
</trans-unit>
<trans-unit id="s3f8a07912545e72e">
<source>Configure your email</source>
</trans-unit>
<trans-unit id="scedf77e8b75cad5a">
<source>Please enter your email address.</source>
</trans-unit>
<trans-unit id="s3643189d1abbb7f4">
<source>Code</source>
<target>Kodu</target>
</trans-unit>
<trans-unit id="s7cdd62c100b6b17b">
<source>Please enter the code you received via email</source>
</trans-unit>
<trans-unit id="sc0a0c87d5c556c38">
<source>Phone number</source>
<target>Telefon numarası</target>
</trans-unit>
<trans-unit id="s04c1210202f48dc9">
<source>Please enter your Phone number.</source>
<target>Lütfen Telefon numaranızı girin.</target>
</trans-unit>
<trans-unit id="seb0c08d9f233bbfe">
<source>Please enter the code you received via SMS</source>
<target>Lütfen SMS ile aldığınız kodu girin</target>
</trans-unit>
<trans-unit id="s98bb2ae796f1ceef">
<source>Select another authentication method</source>
<target>Başka bir kimlik doğrulama yöntemi seçin</target>
</trans-unit>
<trans-unit id="s844fea0bfb10a72a">
<source>Authentication code</source>
<target>Kimlik doğrulama kodu</target>
</trans-unit>
<trans-unit id="s7abc9d08b0f70fd6">
<source>Static token</source>
<target>Statik belirteç</target>
</trans-unit>
<trans-unit id="s14e8ac4d377a1a99">
<source>Type an authentication code...</source>
</trans-unit>
<trans-unit id="s39002897db60bb28">
<source>Sending Duo push notification...</source>
<target>Duo push bildirimi gönderiliyor...</target>
</trans-unit>
<trans-unit id="sd2b8c1caa0340ed6">
<source>Failed to authenticate</source>
<target>Kimlik doğrulaması yapılamadı</target>
</trans-unit>
<trans-unit id="s363abde8a254ea5f">
<source>Authentication failed. Please try again.</source>
<target>Kimlik doğrulaması başarısız oldu. Lütfen tekrar deneyin.</target>
</trans-unit>
<trans-unit id="sffef1a8596bc58bb">
<source>Authenticating...</source>
<target>Kimlik doğrulama...</target>
</trans-unit>
<trans-unit id="se409d01b52c4e12f">
<source>Retry authentication</source>
<target>Kimlik doğrulamayı yeniden deneyin</target>
</trans-unit>
<trans-unit id="s8d857061510fe794">
<source>Duo push-notifications</source>
<target>Duo push-bildirimleri</target>
</trans-unit>
<trans-unit id="s47490298c17b753a">
<source>Receive a push notification on your device.</source>
<target>Cihazınızda anında iletme bildirimi alın.</target>
</trans-unit>
<trans-unit id="sd6a025d66f2637d1">
<source>Traditional authenticator</source>
<target>Geleneksel kimlik doğrulayıcı</target>
</trans-unit>
<trans-unit id="sb25e689e00c61829">
<source>Use a code-based authenticator.</source>
<target>Kod tabanlı kimlik doğrulayıcı kullanın.</target>
</trans-unit>
<trans-unit id="s9e568afec3810bfe">
<source>Recovery keys</source>
<target>Kurtarma tuşları</target>
</trans-unit>
<trans-unit id="s8bb0a1b672b52954">
<source>In case you lose access to your primary authenticators.</source>
</trans-unit>
<trans-unit id="s97f2dc19fa556a6a">
<source>SMS</source>
<target>SMS</target>
</trans-unit>
<trans-unit id="s0e516232f2ab4e04">
<source>Tokens sent via SMS.</source>
<target>Belirteçler SMS ile gönderildi.</target>
</trans-unit>
<trans-unit id="s833cfe815918c143">
<source>Tokens sent via email.</source>
</trans-unit>
<trans-unit id="s76d21e163887ddd1">
<source>Unknown device</source>
</trans-unit>
<trans-unit id="sf0ceaf3116e31fd4">
<source>An unknown device class was provided.</source>
</trans-unit>
<trans-unit id="s610fced3957d0471">
<source>Select an authentication method</source>
</trans-unit>
<trans-unit id="s958cedec1cb3fc52">
<source>Select a configuration stage</source>
</trans-unit>
<trans-unit id="sac17f177f884e238">
<source>Stay signed in?</source>
<target>Oturumunuz açık kaldı mı?</target>
</trans-unit>
<trans-unit id="s859b2e00391da380">
<source>Select Yes to reduce the number of times you're asked to sign in.</source>
<target>Oturum açmanızın istenme sayısını azaltmak için Evet'i seçin.</target>
</trans-unit>
<trans-unit id="s23da7320dee28a60">
<source>Device Code</source>
</trans-unit>
<trans-unit id="s3cd84e82e83e35ad">
<source>Please enter your code</source>
<target>Lütfen kodunuzu giriniz</target>
</trans-unit>
<trans-unit id="s455a8fc21077e7f9">
<source>You've successfully authenticated your device.</source>
<target>Cihazınızın kimliğini başarıyla doğruladınız.</target>
</trans-unit>
<trans-unit id="sac88482c48453fc8">
<source>You've logged out of <x id="0" equiv-text="${challenge.applicationName}"/>. You can go back to the overview to launch another application, or log out of your authentik account.</source>
<target><x id="0" equiv-text="${this.challenge.applicationName}"/> ourumunu kapattınız. Başka bir uygulama başlatmak için genel bakışa geri dönebilir veya authentik hesabınızdan çıkış yapabilirsiniz.</target>
</trans-unit>
<trans-unit id="s3108167b562674e2">
<source>Go back to overview</source>
<target>Genel bakışa geri dön</target>
</trans-unit>
<trans-unit id="sdb749e793de55478">
<source>Log out of <x id="0" equiv-text="${challenge.brandName}"/></source>
<target><x id="0" equiv-text="${this.challenge.brandName}"/> oturumunu kapatın</target>
</trans-unit>
<trans-unit id="s521681ed1d5ff814">
<source>Log back into <x id="0" equiv-text="${challenge.applicationName}"/></source>
<target><x id="0" equiv-text="${this.challenge.applicationName}"/> oturumuna tekrar giriş yapın</target>
</trans-unit>
<trans-unit id="s78869b8b2bc26d0d">
<source>SAML Provider</source>
</trans-unit>
<trans-unit id="sca83a1f9227f74b9">
<source>SAML logout complete</source>
</trans-unit>
<trans-unit id="s7b90eab7969ae056">
<source>Redirecting to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s3e6174b645d96835">
<source>Posting logout request to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s0b1ffff8bedd6b8a">
<source>Unknown Provider</source>
</trans-unit>
<trans-unit id="s777e86d562523c85">
<source>Logging out of providers...</source>
</trans-unit>
<trans-unit id="s4980379bf8461c2d">
<source>Single Logout</source>
</trans-unit>
<trans-unit id="s3736936aac1adc2e">
<source>Open flow inspector</source>
</trans-unit>
<trans-unit id="sa17ce23517e56461">
<source>Authentication form</source>
</trans-unit>
<trans-unit id="s7fa4e5e409d43573">
<source>Error creating credential: <x id="0" equiv-text="${err}"/></source>
<target>Kimlik bilgisi oluşturulurken hata oluştu: <x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="s9d95f09deb601f34">
<source>Server validation of credential failed: <x id="0" equiv-text="${err}"/></source>
<target>Kimlik bilgilerinin sunucu doğrulaması başarısız oldu: <x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="sb0821a9e92cac5eb">
<source>Failed to register. Please try again.</source>
<target>Kayıt başarısız oldu. Lütfen tekrar deneyin.</target>
</trans-unit>
<trans-unit id="s238784fc1dc672ae">
<source>Registering...</source>
<target>Kaydediliyor...</target>
</trans-unit>
<trans-unit id="s009bd1c98a9f5de2">
<source>Failed to register</source>
<target>Kayıt başarısız oldu</target>
</trans-unit>
<trans-unit id="sb166ce92e8e807d6">
<source>Retry registration</source>
<target>Kaydı yeniden deneyin</target>
</trans-unit>
<trans-unit id="s95094b57684716a5">
<source>Failed to validate device.</source>
</trans-unit>
<trans-unit id="se99d25eb70c767ef">
<source>Verifying your device...</source>
</trans-unit>
<trans-unit id="s1af2337b6d11d4c6">
<source>Data export ready</source>
</trans-unit>
<trans-unit id="en-XA">
<source>English (Pseudo-Accents)</source>
</trans-unit>
<trans-unit id="avatar.alt-text-for-user">
<source>Avatar for <x id="0" equiv-text="${this.username}"/></source>
</trans-unit>
<trans-unit id="avatar.alt-text">
<source>User avatar</source>
</trans-unit>
<trans-unit id="flow.navigation.go-back">
<source>Go back</source>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent-to-address">
<source>A verification token has been sent to your configured email address: <x id="0" equiv-text="${email}"/></source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's configured email address.</note>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent">
<source>A verification token has been sent to your email address.</source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's email address.</note>
</trans-unit>
<trans-unit id="scd909e0bc55fc548">
<source>Security key</source>
</trans-unit>
<trans-unit id="sd0de938d9c37ad5f">
<source>Use a Passkey or security key to prove your identity.</source>
</trans-unit>
<trans-unit id="sb94beab52540d2b7">
<source>The CAPTCHA challenge failed to load.</source>
</trans-unit>
<trans-unit id="s217a96c47caaf73d">
<source>Could not find a suitable CAPTCHA provider.</source>
</trans-unit>
<trans-unit id="sdf2794b96386c868">
<source>Copy time-based one-time password secret</source>
</trans-unit>
<trans-unit id="sc78d16417878afd0">
<source>Copy Secret</source>
</trans-unit>
<trans-unit id="clipboard.write.success.message.entity">
<source><x id="0" equiv-text="${entityLabel}"/> copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.success.generic">
<source>Copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.failure.description">
<source>Clipboard not available. Please copy the value manually.</source>
</trans-unit>
<trans-unit id="totp.config">
<source>TOTP Config</source>
</trans-unit>
<trans-unit id="totp.config.clipboard.description">
<source>Paste this URL into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="totp.secret">
<source>TOTP Secret</source>
</trans-unit>
<trans-unit id="totp.secret.clipboard.description">
<source>Paste this secret into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="s92e22f9319fdb85d">
<source>Configuration warning</source>
</trans-unit>
<trans-unit id="saa088a2d0f90d5a9">
<source>Posting logout response to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s776d93092ad9ce90">
<source>Review initiated</source>
</trans-unit>
<trans-unit id="sad46bcad1a343b51">
<source>Review overdue</source>
</trans-unit>
<trans-unit id="s59d168d966cecbaf">
<source>Review attested</source>
</trans-unit>
<trans-unit id="s5158b7f014cecefc">
<source>Review completed</source>
</trans-unit>
<trans-unit id="sdd2ea73c24b40d5d">
<source>Site footer</source>
</trans-unit>
<trans-unit id="sf910cca0f06bbc31">
<source>Enter the email address or username associated with your account.</source>
</trans-unit>
<trans-unit id="s6e858c4c4c3b6b76">
<source>You're about to be redirected to the following URL.</source>
</trans-unit>
<trans-unit id="sd5d2b94a1ccba1a9">
<source>Log in to continue to <x id="0" equiv-text="${prelude}"/>.</source>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,940 @@
<?xml version="1.0"?><xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file target-language="zh-Hans" source-language="en" original="lit-localize-inputs" datatype="plaintext">
<body>
<!-- #region Locales -->
<trans-unit id="en">
<source>English</source>
<target>英语</target>
</trans-unit>
<trans-unit id="ja-JP">
<source>Japanese</source>
<target>日语</target>
</trans-unit>
<trans-unit id="ko-KR">
<source>Korean</source>
<target>韩语</target>
</trans-unit>
<trans-unit id="zh-Hans">
<source>Chinese (Simplified)</source>
<target>简体中文</target>
</trans-unit>
<trans-unit id="zh-Hant">
<source>Chinese (Traditional)</source>
<target>繁体中文</target>
</trans-unit>
<!-- #endregion -->
<!-- #region Locale selector -->
<trans-unit id="locale-auto-detect-option">
<source>Auto-detect</source>
<target>自动检测</target>
<note from="lit-localize">Label for the auto-detect locale option in language selection dropdown</note>
</trans-unit>
<trans-unit id="language-selector-label">
<source>Select language</source>
<target>语言选择</target>
<note from="lit-localize">Label for the language selection dropdown</note>
</trans-unit>
<trans-unit id="locale-option-localized-label">
<source><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</source>
<target><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</target>
<note from="lit-localize">Locale option label showing the localized language name along with the native language name in parentheses.</note>
</trans-unit>
<!-- #endregion -->
<trans-unit id="s12d6dde9b30c3093">
<source>Dismiss</source>
<target>取消</target>
</trans-unit>
<trans-unit id="sfe629863ba1338c2">
<source>Connection error, reconnecting...</source>
<target>连接错误,正在重新连接……</target>
</trans-unit>
<trans-unit id="sdaecc3c29a27c5c5">
<source>An unknown error occurred</source>
<target>发生了未知的错误</target>
</trans-unit>
<trans-unit id="se84ba7f105934495">
<source>Please check the browser console for more details.</source>
<target>请检查浏览器控制台以获取更多信息。</target>
</trans-unit>
<trans-unit id="sdea479482318489d">
<source>Status messages</source>
<target>状态消息</target>
</trans-unit>
<trans-unit id="s91ae4b6bf981682b">
<source>authentik Logo</source>
<target>authentik 图标</target>
</trans-unit>
<trans-unit id="s49730f3d5751a433">
<source>Loading...</source>
<target>正在加载……</target>
</trans-unit>
<trans-unit id="sa50a6326530d8a0d">
<source>Show less</source>
<target>显示更少</target>
</trans-unit>
<trans-unit id="sb2c57b2d347203dd">
<source>Show more</source>
<target>显示更多</target>
</trans-unit>
<trans-unit id="sa48f81f001b893d2">
<source>User</source>
<target>用户</target>
</trans-unit>
<trans-unit id="sb59d68ed12d46377">
<source>Loading</source>
<target>正在加载</target>
</trans-unit>
<trans-unit id="s0382d73823585617">
<source><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></source>
<target>
<x id="0" equiv-text="${this.errorMessage}"/>
<x id="1" equiv-text="${e.toString()}"/></target>
</trans-unit>
<trans-unit id="sae5d87e99fe081e0">
<source>Required</source>
<target>必需</target>
</trans-unit>
<trans-unit id="s1cd198d689c66e4b">
<source>API Access</source>
<target>API 访问权限</target>
</trans-unit>
<trans-unit id="sf29883ac9ec43085">
<source>App password</source>
<target>应用密码</target>
</trans-unit>
<trans-unit id="s6ac670086eb137c6">
<source>Recovery</source>
<target>恢复</target>
</trans-unit>
<trans-unit id="sfe211545fd02f73e">
<source>Verification</source>
<target>验证</target>
</trans-unit>
<trans-unit id="sd73b202ec04eefd9">
<source>Unknown intent</source>
<target>未知意图</target>
</trans-unit>
<trans-unit id="sc8da3cc71de63832">
<source>Login</source>
<target>登录</target>
</trans-unit>
<trans-unit id="sb4564c127ab8b921">
<source>Failed login</source>
<target>登录失败</target>
</trans-unit>
<trans-unit id="s67749057edb2586b">
<source>Logout</source>
<target>注销</target>
</trans-unit>
<trans-unit id="s7e537ad68d7c16e1">
<source>User was written to</source>
<target>用户被写入</target>
</trans-unit>
<trans-unit id="sa0e0bdd7e244416b">
<source>Suspicious request</source>
<target>可疑请求</target>
</trans-unit>
<trans-unit id="s7bda44013984fc48">
<source>Password set</source>
<target>密码已设置</target>
</trans-unit>
<trans-unit id="sa1b41e334ad89d94">
<source>Secret was viewed</source>
<target>Secret 已查看</target>
</trans-unit>
<trans-unit id="s92ca679592a36b35">
<source>Secret was rotated</source>
<target>Secret 已轮换</target>
</trans-unit>
<trans-unit id="s8a1d9403ca90989b">
<source>Invitation used</source>
<target>已使用邀请</target>
</trans-unit>
<trans-unit id="s5f496533610103f2">
<source>Application authorized</source>
<target>应用程序已授权</target>
</trans-unit>
<trans-unit id="sdc9e222be9612939">
<source>Source linked</source>
<target>源已链接</target>
</trans-unit>
<trans-unit id="sb1c91762ae3a9bee">
<source>Impersonation started</source>
<target>已开始模拟身份</target>
</trans-unit>
<trans-unit id="s9c73bd29b279d26b">
<source>Impersonation ended</source>
<target>已结束模拟身份</target>
</trans-unit>
<trans-unit id="s1cd264012278c047">
<source>Flow execution</source>
<target>流程执行</target>
</trans-unit>
<trans-unit id="s32f04d33924ce8ad">
<source>Policy execution</source>
<target>策略执行</target>
</trans-unit>
<trans-unit id="sb6d7128df5978cee">
<source>Policy exception</source>
<target>策略异常</target>
</trans-unit>
<trans-unit id="s77f572257f69a8db">
<source>Property Mapping exception</source>
<target>属性映射异常</target>
</trans-unit>
<trans-unit id="s2543cffd6ebb6803">
<source>System task execution</source>
<target>系统任务执行</target>
</trans-unit>
<trans-unit id="se2f258b996f7279c">
<source>System task exception</source>
<target>系统任务异常</target>
</trans-unit>
<trans-unit id="s81eff3409d572a21">
<source>General system exception</source>
<target>一般系统异常</target>
</trans-unit>
<trans-unit id="sf8f49cdbf0036343">
<source>Configuration error</source>
<target>配置错误</target>
</trans-unit>
<trans-unit id="s9c6f61dc47bc4f0a">
<source>Model created</source>
<target>模型已创建</target>
</trans-unit>
<trans-unit id="s47a4983a2c6bb749">
<source>Model updated</source>
<target>模型已更新</target>
</trans-unit>
<trans-unit id="sc9f69360b58706c7">
<source>Model deleted</source>
<target>模型已删除</target>
</trans-unit>
<trans-unit id="sa266303caf1bd27f">
<source>Email sent</source>
<target>已发送电子邮件</target>
</trans-unit>
<trans-unit id="s6c410fedda2a575f">
<source>Update available</source>
<target>更新可用</target>
</trans-unit>
<trans-unit id="sf1ec4acb8d744ed9">
<source>Alert</source>
<target>注意</target>
</trans-unit>
<trans-unit id="s9117fb5195e75151">
<source>Notice</source>
<target>通知</target>
</trans-unit>
<trans-unit id="s34be76c6b1eadbef">
<source>Warning</source>
<target>警告</target>
</trans-unit>
<trans-unit id="s02240309358f557c">
<source>Unknown severity</source>
<target>未知严重程度</target>
</trans-unit>
<trans-unit id="s858e7ac4b3cf955f">
<source>Static tokens</source>
<target>静态令牌</target>
</trans-unit>
<trans-unit id="sfcfcf85a57eea78a">
<source>TOTP Device</source>
<target>TOTP 设备</target>
</trans-unit>
<trans-unit id="s482bc55a78891ef7">
<source>A code has been sent to your address: <x id="0" equiv-text="${email}"/></source>
<target>一份代码已发送到您的电子邮箱地址:<x id="0" equiv-text="${email}"/></target>
</trans-unit>
<trans-unit id="s5afa3fc77ce8d94d">
<source>A code has been sent to your email address.</source>
<target>一份代码已发送到您的电子邮箱。</target>
</trans-unit>
<trans-unit id="s37f47fa981493c3b">
<source>A one-time use code has been sent to you via SMS text message.</source>
<target>一份一次性代码以通过短信发送给您。</target>
</trans-unit>
<trans-unit id="sc92a7248dba5f388">
<source>Open your authenticator app to retrieve a one-time use code.</source>
<target>打开您的两步验证应用收取一次性代码。</target>
</trans-unit>
<trans-unit id="s21d95b4651ad7a1e">
<source>Enter a one-time recovery code for this user.</source>
<target>为此用户输入一次性恢复代码。</target>
</trans-unit>
<trans-unit id="s2e1d5a7d320c25ef">
<source>Enter the code from your authenticator device.</source>
<target>请输入来自您身份验证设备的代码。</target>
</trans-unit>
<trans-unit id="se2d65e13768468e0">
<source>Internal</source>
<target>内部</target>
</trans-unit>
<trans-unit id="s84fcddede27b8e2a">
<source>External</source>
<target>外部</target>
</trans-unit>
<trans-unit id="s1a635369edaf4dc3">
<source>Service account</source>
<target>服务账户</target>
</trans-unit>
<trans-unit id="sff930bf2834e2201">
<source>Service account (internal)</source>
<target>服务账户(内部)</target>
</trans-unit>
<trans-unit id="scb489a1a173ac3f0">
<source>Yes</source>
<target>是</target>
</trans-unit>
<trans-unit id="s09205907b5b56cda">
<source>No</source>
<target>否</target>
</trans-unit>
<trans-unit id="s7f073c746d0f6324">
<source>Form actions</source>
<target>表单操作</target>
</trans-unit>
<trans-unit id="s98b1cb8fb62909ec">
<source>Group</source>
<target>组</target>
</trans-unit>
<trans-unit id="s2e422519ed38f7d8">
<source>Pass</source>
<target>通过</target>
</trans-unit>
<trans-unit id="sac315d5bd28d4efa">
<source>Don't Pass</source>
<target>不通过</target>
</trans-unit>
<trans-unit id="s042baf59902a711f">
<source>Policy</source>
<target>策略</target>
</trans-unit>
<trans-unit id="sd8f220c999726151">
<source>Redirect</source>
<target>重定向</target>
</trans-unit>
<trans-unit id="s03f42eea72154959">
<source>Username</source>
<target>用户名</target>
</trans-unit>
<trans-unit id="s5f5bf4ef2bd93c04">
<source>Group mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>组绑定仅会在已登录用户访问此源时检查。</target>
</trans-unit>
<trans-unit id="s6c607d74bdfe9f36">
<source>User mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>用户绑定仅会在已登录用户访问此源时检查。</target>
</trans-unit>
<trans-unit id="sf6e1665c7022a1f8">
<source>Password</source>
<target>密码</target>
</trans-unit>
<trans-unit id="sd1f44f1a8bc20e67">
<source>Email</source>
<target>电子邮箱</target>
</trans-unit>
<trans-unit id="s8939f574b096054a">
<source>Not you?</source>
<target>不是您?</target>
</trans-unit>
<trans-unit id="s296fbffaaa7c910a">
<source>Required.</source>
<target>必需。</target>
</trans-unit>
<trans-unit id="s81ecf2d4386b8e84">
<source>Continue</source>
<target>继续</target>
</trans-unit>
<trans-unit id="s61e48919db20538a">
<source>UPN</source>
<target>UPN</target>
</trans-unit>
<trans-unit id="s67ac11d47f1ce794">
<source>WebAuthn requires this page to be accessed via HTTPS.</source>
<target>WebAuthn 需要此页面通过 HTTPS 访问。</target>
</trans-unit>
<trans-unit id="se9e9e1d6799b86a5">
<source>WebAuthn not supported by browser.</source>
<target>浏览器不支持 WebAuthn。</target>
</trans-unit>
<trans-unit id="sa4be93eb7f4e51e3">
<source>Site links</source>
<target>网站链接</target>
</trans-unit>
<trans-unit id="s6fe64b4625517333">
<source>Powered by authentik</source>
<target>由 authentik 强力驱动</target>
</trans-unit>
<trans-unit id="sd766cdc29b25ff95">
<source>Authenticating with Apple...</source>
<target>正在使用 Apple 进行身份验证...</target>
</trans-unit>
<trans-unit id="s2c8189544e3ea679">
<source>Retry</source>
<target>重试</target>
</trans-unit>
<trans-unit id="s420d2cdedcaf8cd0">
<source>Authenticating with Plex...</source>
<target>正在使用 Plex 进行身份验证...</target>
</trans-unit>
<trans-unit id="s2ddbebcb8a49b005">
<source>Waiting for authentication...</source>
<target>正在等待身份验证…</target>
</trans-unit>
<trans-unit id="sb15fe7b9d09bb419">
<source>If no Plex popup opens, click the button below.</source>
<target>如果 Plex 没有弹出窗口,则点击下面的按钮。</target>
</trans-unit>
<trans-unit id="sbc625b4c669b9ce8">
<source>Open login</source>
<target>打开登录</target>
</trans-unit>
<trans-unit id="sf376ae7e9ef41c1a">
<source>Authenticating with Telegram...</source>
<target>正在使用 Telegram 进行身份验证...</target>
</trans-unit>
<trans-unit id="s76ea993fdc8503d8">
<source>Click the button below to start.</source>
<target>单击下面的按钮开始。</target>
</trans-unit>
<trans-unit id="s15d6fabebb4ef2d8">
<source>User information</source>
<target>用户信息</target>
</trans-unit>
<trans-unit id="s9bd9ba84819493d4">
<source>Something went wrong! Please try again later.</source>
<target>发生了某些错误!请稍后重试。</target>
</trans-unit>
<trans-unit id="s4090dd0c0e45988b">
<source>Request ID</source>
<target>请求 ID</target>
</trans-unit>
<trans-unit id="s4d7fe7be1c49896c">
<source>You may close this page now.</source>
<target>您可以关闭此页面了。</target>
</trans-unit>
<trans-unit id="s197420b40df164f8">
<source>Follow redirect</source>
<target>跟随重定向</target>
</trans-unit>
<trans-unit id="s3ab772345f78aee0">
<source>Flow inspector</source>
<target>流程检视器</target>
</trans-unit>
<trans-unit id="sb69e43f2f6bd1b54">
<source>Close flow inspector</source>
<target>关闭流程检视器</target>
</trans-unit>
<trans-unit id="s502884e1977b2c06">
<source>Next stage</source>
<target>下一阶段</target>
</trans-unit>
<trans-unit id="sb3fa80ccfa97ee54">
<source>Stage name</source>
<target>阶段名称</target>
</trans-unit>
<trans-unit id="sbea3c1e4f2fd623d">
<source>Stage kind</source>
<target>阶段种类</target>
</trans-unit>
<trans-unit id="s2bc8aa1740d3da34">
<source>Stage object</source>
<target>阶段对象</target>
</trans-unit>
<trans-unit id="sc3e1c4f1fff8e1ca">
<source>This flow is completed.</source>
<target>此流程已完成。</target>
</trans-unit>
<trans-unit id="s342eccabf83c9bde">
<source>Plan history</source>
<target>规划历史记录</target>
</trans-unit>
<trans-unit id="sb2f307e79d20bb56">
<source>Current plan context</source>
<target>当前计划上下文</target>
</trans-unit>
<trans-unit id="sa13e6c8310000e30">
<source>Session ID</source>
<target>会话 ID</target>
</trans-unit>
<trans-unit id="s857cf5aa8955cf5c">
<source>Flow inspector loading</source>
<target>正在加载流程检视器</target>
</trans-unit>
<trans-unit id="sa11e92683c5860c7">
<source>Request has been denied.</source>
<target>请求被拒绝。</target>
</trans-unit>
<trans-unit id="s2f7f35f6a5b733f5">
<source>Show password</source>
<target>显示密码</target>
</trans-unit>
<trans-unit id="s452f791e0ff6a13e">
<source>Hide password</source>
<target>隐藏密码</target>
</trans-unit>
<trans-unit id="scf5ce91bfba10a61">
<source>Please enter your password</source>
<target>请输入您的密码</target>
</trans-unit>
<trans-unit id="s6bb30c61df4cf486">
<source>Caps Lock is enabled.</source>
<target>大写锁定已启用。</target>
</trans-unit>
<trans-unit id="s8d6236ad153d42c0">
<source>CAPTCHA challenge</source>
<target>CAPTCHA 挑战</target>
</trans-unit>
<trans-unit id="s30d6ff9e15e0a40a">
<source>Verifying...</source>
<target>正在验证...</target>
</trans-unit>
<trans-unit id="s1c336c2d6cef77b3">
<source>Remember me on this device</source>
<target>在此设备上记住我</target>
</trans-unit>
<trans-unit id="seb6ab868740e4e36">
<source>Continue with <x id="0" equiv-text="${name}"/></source>
<target>以 <x id="0" equiv-text="${source.name}"/> 继续</target>
</trans-unit>
<trans-unit id="sc4eedb434536bdb4">
<source>Need an account?</source>
<target>需要一个账户?</target>
</trans-unit>
<trans-unit id="s38f774cd7e9b9dad">
<source>Sign up.</source>
<target>注册。</target>
</trans-unit>
<trans-unit id="sa03aa46068460c95">
<source>Forgot username or password?</source>
<target>忘记用户名或密码?</target>
</trans-unit>
<trans-unit id="s05a941e4b4bfca9f">
<source>Additional actions</source>
<target>更多操作</target>
</trans-unit>
<trans-unit id="s6ecfc18dbfeedd76">
<source>Select one of the options below to continue.</source>
<target>选择以下选项之一以继续。</target>
</trans-unit>
<trans-unit id="s091d5407b5b32e84">
<source>Or</source>
<target>或者</target>
</trans-unit>
<trans-unit id="se5fd752dbbc3cd28">
<source>Use a security key</source>
<target>使用安全密钥</target>
</trans-unit>
<trans-unit id="s53dddf1733e26c98">
<source>Login sources</source>
<target>登录可用的源</target>
</trans-unit>
<trans-unit id="s85366fac18679f28">
<source>Forgot password?</source>
<target>忘记密码了吗?</target>
</trans-unit>
<trans-unit id="s14c552fb0a4c0186">
<source>Application requires following permissions:</source>
<target>应用程序需要以下权限:</target>
</trans-unit>
<trans-unit id="s7073489bb01b3c24">
<source>Application already has access to the following permissions:</source>
<target>应用程序已经获得以下权限:</target>
</trans-unit>
<trans-unit id="s98dc556f8bf707dc">
<source>Application requires following new permissions:</source>
<target>应用程序需要以下新权限:</target>
</trans-unit>
<trans-unit id="s06bfe45ffef2cf60">
<source>Stage name: <x id="0" equiv-text="${this.challenge?.name}"/></source>
<target>阶段名称:<x id="0" equiv-text="${this.challenge?.name}"/></target>
</trans-unit>
<trans-unit id="sbd19064fc3f405c1">
<source>Check your Inbox for a verification email.</source>
<target>检查您的收件箱是否有验证电子邮件。</target>
</trans-unit>
<trans-unit id="s8aff572e64b7936b">
<source>Send Email again.</source>
<target>再次发送电子邮件。</target>
</trans-unit>
<trans-unit id="sc091f75b942ec081">
<source>QR-Code to setup a time-based one-time password</source>
<target>设置基于时间的一次性密码的二维码</target>
</trans-unit>
<trans-unit id="s6db67c7681b8be6e">
<source>Copy time-based one-time password configuration</source>
<target>复制基于时间的一次性密码的配置</target>
</trans-unit>
<trans-unit id="s43e859bf711e3599">
<source>Copy TOTP Config</source>
<target>复制 TOTP 配置</target>
</trans-unit>
<trans-unit id="s90064dd5c4dde2c6">
<source>Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.</source>
<target>请用 Microsoft 身份验证器、Google 身份验证器或您设备上的其他身份验证器应用扫描上面的二维码,然后在下方输入设备上显示的代码,以完成 MFA 设备设置。</target>
</trans-unit>
<trans-unit id="sa5562e0115ffbccd">
<source>Time-based one-time password</source>
<target>基于时间的一次性密码</target>
</trans-unit>
<trans-unit id="s40f44c0d88807fd5">
<source>TOTP Code</source>
<target>TOTP 代码</target>
</trans-unit>
<trans-unit id="s95474cc8c73dd9c0">
<source>Type your TOTP code...</source>
<target>输入您的 TOTP 代码...</target>
</trans-unit>
<trans-unit id="s168d0c138b63286d">
<source>Type your time-based one-time password code.</source>
<target>输入您的基于时间的一次性密码。</target>
</trans-unit>
<trans-unit id="sc2ec367e3108fe65">
<source>Duo activation QR code</source>
<target>Duo 激活二维码</target>
</trans-unit>
<trans-unit id="sc5668cb23167e9bb">
<source>Alternatively, if your current device has Duo installed, click on this link:</source>
<target>或者,如果您当前的设备已安装 Duo请点击此链接</target>
</trans-unit>
<trans-unit id="s721d94ae700b5dfd">
<source>Duo activation</source>
<target>Duo 激活</target>
</trans-unit>
<trans-unit id="s708d9a4a0db0be8f">
<source>Check status</source>
<target>检查状态</target>
</trans-unit>
<trans-unit id="s31fba571065f2c87">
<source>Make sure to keep these tokens in a safe place.</source>
<target>确保将这些令牌保存在安全的地方。</target>
</trans-unit>
<trans-unit id="s3f8a07912545e72e">
<source>Configure your email</source>
<target>配置您的电子邮件</target>
</trans-unit>
<trans-unit id="scedf77e8b75cad5a">
<source>Please enter your email address.</source>
<target>请输入您的电子邮件地址。</target>
</trans-unit>
<trans-unit id="s3643189d1abbb7f4">
<source>Code</source>
<target>代码</target>
</trans-unit>
<trans-unit id="s7cdd62c100b6b17b">
<source>Please enter the code you received via email</source>
<target>请输入您通过电子邮件收到的代码</target>
</trans-unit>
<trans-unit id="sc0a0c87d5c556c38">
<source>Phone number</source>
<target>电话号码</target>
</trans-unit>
<trans-unit id="s04c1210202f48dc9">
<source>Please enter your Phone number.</source>
<target>请输入您的电话号码。</target>
</trans-unit>
<trans-unit id="seb0c08d9f233bbfe">
<source>Please enter the code you received via SMS</source>
<target>请输入您通过短信收到的验证码</target>
</trans-unit>
<trans-unit id="s98bb2ae796f1ceef">
<source>Select another authentication method</source>
<target>选择另一种身份验证方法</target>
</trans-unit>
<trans-unit id="s844fea0bfb10a72a">
<source>Authentication code</source>
<target>身份验证代码</target>
</trans-unit>
<trans-unit id="s7abc9d08b0f70fd6">
<source>Static token</source>
<target>静态令牌</target>
</trans-unit>
<trans-unit id="s14e8ac4d377a1a99">
<source>Type an authentication code...</source>
<target>输入身份验证代码...</target>
</trans-unit>
<trans-unit id="s39002897db60bb28">
<source>Sending Duo push notification...</source>
<target>正在发送 Duo 推送通知...</target>
</trans-unit>
<trans-unit id="sd2b8c1caa0340ed6">
<source>Failed to authenticate</source>
<target>身份验证失败</target>
</trans-unit>
<trans-unit id="s363abde8a254ea5f">
<source>Authentication failed. Please try again.</source>
<target>身份验证失败。请重试。</target>
</trans-unit>
<trans-unit id="sffef1a8596bc58bb">
<source>Authenticating...</source>
<target>正在验证身份...</target>
</trans-unit>
<trans-unit id="se409d01b52c4e12f">
<source>Retry authentication</source>
<target>重试身份验证</target>
</trans-unit>
<trans-unit id="s8d857061510fe794">
<source>Duo push-notifications</source>
<target>Duo 推送通知</target>
</trans-unit>
<trans-unit id="s47490298c17b753a">
<source>Receive a push notification on your device.</source>
<target>在您的设备上接收推送通知。</target>
</trans-unit>
<trans-unit id="sd6a025d66f2637d1">
<source>Traditional authenticator</source>
<target>传统身份验证器</target>
</trans-unit>
<trans-unit id="sb25e689e00c61829">
<source>Use a code-based authenticator.</source>
<target>使用基于代码的身份验证器。</target>
</trans-unit>
<trans-unit id="s9e568afec3810bfe">
<source>Recovery keys</source>
<target>恢复密钥</target>
</trans-unit>
<trans-unit id="s8bb0a1b672b52954">
<source>In case you lose access to your primary authenticators.</source>
<target>以防您无法访问主要身份验证器。</target>
</trans-unit>
<trans-unit id="s97f2dc19fa556a6a">
<source>SMS</source>
<target>短信</target>
</trans-unit>
<trans-unit id="s0e516232f2ab4e04">
<source>Tokens sent via SMS.</source>
<target>通过短信发送的令牌。</target>
</trans-unit>
<trans-unit id="s833cfe815918c143">
<source>Tokens sent via email.</source>
<target>通过电子邮件发送的令牌。</target>
</trans-unit>
<trans-unit id="s76d21e163887ddd1">
<source>Unknown device</source>
<target>未知设备</target>
</trans-unit>
<trans-unit id="sf0ceaf3116e31fd4">
<source>An unknown device class was provided.</source>
<target>提供了位置的设备类型。</target>
</trans-unit>
<trans-unit id="s610fced3957d0471">
<source>Select an authentication method</source>
<target>选择身份验证方法</target>
</trans-unit>
<trans-unit id="s958cedec1cb3fc52">
<source>Select a configuration stage</source>
<target>选择配置阶段</target>
</trans-unit>
<trans-unit id="sac17f177f884e238">
<source>Stay signed in?</source>
<target>保持登录?</target>
</trans-unit>
<trans-unit id="s859b2e00391da380">
<source>Select Yes to reduce the number of times you're asked to sign in.</source>
<target>选择“是”以减少您被要求登录的次数。</target>
</trans-unit>
<trans-unit id="s23da7320dee28a60">
<source>Device Code</source>
<target>设备代码</target>
</trans-unit>
<trans-unit id="s3cd84e82e83e35ad">
<source>Please enter your code</source>
<target>请输入您的代码</target>
</trans-unit>
<trans-unit id="s455a8fc21077e7f9">
<source>You've successfully authenticated your device.</source>
<target>您成功验证了此设备的身份。</target>
</trans-unit>
<trans-unit id="sac88482c48453fc8">
<source>You've logged out of <x id="0" equiv-text="${challenge.applicationName}"/>. You can go back to the overview to launch another application, or log out of your authentik account.</source>
<target>您已成功注销 <x id="0" equiv-text="${challenge.applicationName}"/>。现在您可以返回总览页来启动其他应用,或者注销您的 authentik 账户。</target>
</trans-unit>
<trans-unit id="s3108167b562674e2">
<source>Go back to overview</source>
<target>返回总览</target>
</trans-unit>
<trans-unit id="sdb749e793de55478">
<source>Log out of <x id="0" equiv-text="${challenge.brandName}"/></source>
<target>注销 <x id="0" equiv-text="${challenge.brandName}"/></target>
</trans-unit>
<trans-unit id="s521681ed1d5ff814">
<source>Log back into <x id="0" equiv-text="${challenge.applicationName}"/></source>
<target>重新登录 <x id="0" equiv-text="${challenge.applicationName}"/></target>
</trans-unit>
<trans-unit id="s78869b8b2bc26d0d">
<source>SAML Provider</source>
<target>SAML 提供程序</target>
</trans-unit>
<trans-unit id="sca83a1f9227f74b9">
<source>SAML logout complete</source>
<target>SAML 登出完成</target>
</trans-unit>
<trans-unit id="s7b90eab7969ae056">
<source>Redirecting to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
<target>正在重定向到 SAML 提供程序:<x id="0" equiv-text="${providerName}"/></target>
</trans-unit>
<trans-unit id="s3e6174b645d96835">
<source>Posting logout request to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
<target>正在向 SAML 提供程序 <x id="0" equiv-text="${providerName}"/> 发送注销请求</target>
</trans-unit>
<trans-unit id="s0b1ffff8bedd6b8a">
<source>Unknown Provider</source>
<target>未知提供程序</target>
</trans-unit>
<trans-unit id="s777e86d562523c85">
<source>Logging out of providers...</source>
<target>正在从提供程序登出...</target>
</trans-unit>
<trans-unit id="s4980379bf8461c2d">
<source>Single Logout</source>
<target>单点登出</target>
</trans-unit>
<trans-unit id="s3736936aac1adc2e">
<source>Open flow inspector</source>
<target>打开流程检视器</target>
</trans-unit>
<trans-unit id="sa17ce23517e56461">
<source>Authentication form</source>
<target>身份验证表单</target>
</trans-unit>
<trans-unit id="s7fa4e5e409d43573">
<source>Error creating credential: <x id="0" equiv-text="${err}"/></source>
<target>创建凭据时出错:
<x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="s9d95f09deb601f34">
<source>Server validation of credential failed: <x id="0" equiv-text="${err}"/></source>
<target>服务器验证凭据失败:
<x id="0" equiv-text="${err}"/></target>
</trans-unit>
<trans-unit id="sb0821a9e92cac5eb">
<source>Failed to register. Please try again.</source>
<target>注册失败。请重试。</target>
</trans-unit>
<trans-unit id="s238784fc1dc672ae">
<source>Registering...</source>
<target>正在注册...</target>
</trans-unit>
<trans-unit id="s009bd1c98a9f5de2">
<source>Failed to register</source>
<target>注册失败</target>
</trans-unit>
<trans-unit id="sb166ce92e8e807d6">
<source>Retry registration</source>
<target>重试注册</target>
</trans-unit>
<trans-unit id="s95094b57684716a5">
<source>Failed to validate device.</source>
<target>验证设备失败。</target>
</trans-unit>
<trans-unit id="se99d25eb70c767ef">
<source>Verifying your device...</source>
<target>正在验证你的设备...</target>
</trans-unit>
<trans-unit id="s1af2337b6d11d4c6">
<source>Data export ready</source>
<target>数据导出就绪</target>
</trans-unit>
<trans-unit id="en-XA">
<source>English (Pseudo-Accents)</source>
<target>英语(伪口音)</target>
</trans-unit>
<trans-unit id="avatar.alt-text-for-user">
<source>Avatar for <x id="0" equiv-text="${this.username}"/></source>
<target><x id="0" equiv-text="${this.username}"/> 的头像</target>
</trans-unit>
<trans-unit id="avatar.alt-text">
<source>User avatar</source>
<target>用户头像</target>
</trans-unit>
<trans-unit id="flow.navigation.go-back">
<source>Go back</source>
<target>返回</target>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent-to-address">
<source>A verification token has been sent to your configured email address: <x id="0" equiv-text="${email}"/></source>
<target>一份验证代码已发送到您配置的电子邮箱地址:<x id="0" equiv-text="${email}"/></target>
<note from="lit-localize">Displayed when a verification token has been sent to the user's configured email address.</note>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent">
<source>A verification token has been sent to your email address.</source>
<target>一份验证代码已发送到您的电子邮箱。</target>
<note from="lit-localize">Displayed when a verification token has been sent to the user's email address.</note>
</trans-unit>
<trans-unit id="scd909e0bc55fc548">
<source>Security key</source>
<target>安全密钥</target>
</trans-unit>
<trans-unit id="sd0de938d9c37ad5f">
<source>Use a Passkey or security key to prove your identity.</source>
<target>使用 passkey 或安全密钥证明您的身份。</target>
</trans-unit>
<trans-unit id="sb94beab52540d2b7">
<source>The CAPTCHA challenge failed to load.</source>
</trans-unit>
<trans-unit id="s217a96c47caaf73d">
<source>Could not find a suitable CAPTCHA provider.</source>
</trans-unit>
<trans-unit id="sdf2794b96386c868">
<source>Copy time-based one-time password secret</source>
</trans-unit>
<trans-unit id="sc78d16417878afd0">
<source>Copy Secret</source>
</trans-unit>
<trans-unit id="clipboard.write.success.message.entity">
<source><x id="0" equiv-text="${entityLabel}"/> copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.success.generic">
<source>Copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.failure.description">
<source>Clipboard not available. Please copy the value manually.</source>
</trans-unit>
<trans-unit id="totp.config">
<source>TOTP Config</source>
</trans-unit>
<trans-unit id="totp.config.clipboard.description">
<source>Paste this URL into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="totp.secret">
<source>TOTP Secret</source>
</trans-unit>
<trans-unit id="totp.secret.clipboard.description">
<source>Paste this secret into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="s92e22f9319fdb85d">
<source>Configuration warning</source>
</trans-unit>
<trans-unit id="saa088a2d0f90d5a9">
<source>Posting logout response to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s776d93092ad9ce90">
<source>Review initiated</source>
</trans-unit>
<trans-unit id="sad46bcad1a343b51">
<source>Review overdue</source>
</trans-unit>
<trans-unit id="s59d168d966cecbaf">
<source>Review attested</source>
</trans-unit>
<trans-unit id="s5158b7f014cecefc">
<source>Review completed</source>
</trans-unit>
<trans-unit id="sdd2ea73c24b40d5d">
<source>Site footer</source>
</trans-unit>
<trans-unit id="sf910cca0f06bbc31">
<source>Enter the email address or username associated with your account.</source>
</trans-unit>
<trans-unit id="s6e858c4c4c3b6b76">
<source>You're about to be redirected to the following URL.</source>
</trans-unit>
<trans-unit id="sd5d2b94a1ccba1a9">
<source>Log in to continue to <x id="0" equiv-text="${prelude}"/>.</source>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,850 @@
<?xml version="1.0"?><xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file target-language="zh-Hant" source-language="en" original="lit-localize-inputs" datatype="plaintext">
<body>
<!-- #region Locales -->
<trans-unit id="en">
<source>English</source>
<target>英語</target>
</trans-unit>
<trans-unit id="ja-JP">
<source>Japanese</source>
<target>日語</target>
</trans-unit>
<trans-unit id="ko-KR">
<source>Korean</source>
<target>韓語</target>
</trans-unit>
<trans-unit id="zh-Hans">
<source>Chinese (Simplified)</source>
<target>簡體中文</target>
</trans-unit>
<trans-unit id="zh-Hant">
<source>Chinese (Traditional)</source>
<target>繁體中文</target>
</trans-unit>
<!-- #endregion -->
<!-- #region Locale selector -->
<trans-unit id="locale-auto-detect-option">
<source>Auto-detect</source>
<target>自動偵測</target>
<note from="lit-localize">Label for the auto-detect locale option in language selection dropdown</note>
</trans-unit>
<trans-unit id="language-selector-label">
<source>Select language</source>
<target>選擇語言</target>
<note from="lit-localize">Label for the language selection dropdown</note>
</trans-unit>
<trans-unit id="locale-option-localized-label">
<source><x id="0" equiv-text="${relativeDisplayName}"/> (<x id="1" equiv-text="${localizedDisplayName}"/>)</source>
<note from="lit-localize">Locale option label showing the localized language name along with the native language name in parentheses.</note>
</trans-unit>
<!-- #endregion -->
<trans-unit id="s12d6dde9b30c3093">
<source>Dismiss</source>
</trans-unit>
<trans-unit id="sfe629863ba1338c2">
<source>Connection error, reconnecting...</source>
<target>連線錯誤,正在重新連線……</target>
</trans-unit>
<trans-unit id="sdaecc3c29a27c5c5">
<source>An unknown error occurred</source>
</trans-unit>
<trans-unit id="se84ba7f105934495">
<source>Please check the browser console for more details.</source>
</trans-unit>
<trans-unit id="sdea479482318489d">
<source>Status messages</source>
</trans-unit>
<trans-unit id="s91ae4b6bf981682b">
<source>authentik Logo</source>
</trans-unit>
<trans-unit id="s49730f3d5751a433">
<source>Loading...</source>
<target>載入中……</target>
</trans-unit>
<trans-unit id="sa50a6326530d8a0d">
<source>Show less</source>
<target>顯示更少</target>
</trans-unit>
<trans-unit id="sb2c57b2d347203dd">
<source>Show more</source>
<target>顯示更多</target>
</trans-unit>
<trans-unit id="sa48f81f001b893d2">
<source>User</source>
<target>使用者</target>
</trans-unit>
<trans-unit id="sb59d68ed12d46377">
<source>Loading</source>
<target>載入中</target>
</trans-unit>
<trans-unit id="s0382d73823585617">
<source><x id="0" equiv-text="${fieldName}"/>: <x id="1" equiv-text="${detail}"/></source>
</trans-unit>
<trans-unit id="sae5d87e99fe081e0">
<source>Required</source>
<target>必需</target>
</trans-unit>
<trans-unit id="s1cd198d689c66e4b">
<source>API Access</source>
<target>API 存取權限</target>
</trans-unit>
<trans-unit id="sf29883ac9ec43085">
<source>App password</source>
<target>應用程式密碼</target>
</trans-unit>
<trans-unit id="s6ac670086eb137c6">
<source>Recovery</source>
<target>救援</target>
</trans-unit>
<trans-unit id="sfe211545fd02f73e">
<source>Verification</source>
<target>驗證</target>
</trans-unit>
<trans-unit id="sd73b202ec04eefd9">
<source>Unknown intent</source>
<target>未知使用目的</target>
</trans-unit>
<trans-unit id="sc8da3cc71de63832">
<source>Login</source>
<target>登入</target>
</trans-unit>
<trans-unit id="sb4564c127ab8b921">
<source>Failed login</source>
<target>登入失敗</target>
</trans-unit>
<trans-unit id="s67749057edb2586b">
<source>Logout</source>
<target>登出</target>
</trans-unit>
<trans-unit id="s7e537ad68d7c16e1">
<source>User was written to</source>
<target>使用者已經被寫入到</target>
</trans-unit>
<trans-unit id="sa0e0bdd7e244416b">
<source>Suspicious request</source>
<target>可疑的要求</target>
</trans-unit>
<trans-unit id="s7bda44013984fc48">
<source>Password set</source>
<target>密碼設定完成</target>
</trans-unit>
<trans-unit id="sa1b41e334ad89d94">
<source>Secret was viewed</source>
<target>機密密碼已被查看</target>
</trans-unit>
<trans-unit id="s92ca679592a36b35">
<source>Secret was rotated</source>
<target>機密密碼已被輪替</target>
</trans-unit>
<trans-unit id="s8a1d9403ca90989b">
<source>Invitation used</source>
<target>已使用邀請函</target>
</trans-unit>
<trans-unit id="s5f496533610103f2">
<source>Application authorized</source>
<target>已成功授權應用程式</target>
</trans-unit>
<trans-unit id="sdc9e222be9612939">
<source>Source linked</source>
<target>已連接來源</target>
</trans-unit>
<trans-unit id="sb1c91762ae3a9bee">
<source>Impersonation started</source>
<target>已開始模擬</target>
</trans-unit>
<trans-unit id="s9c73bd29b279d26b">
<source>Impersonation ended</source>
<target>已結束模擬</target>
</trans-unit>
<trans-unit id="s1cd264012278c047">
<source>Flow execution</source>
<target>流程的執行事件</target>
</trans-unit>
<trans-unit id="s32f04d33924ce8ad">
<source>Policy execution</source>
<target>政策的執行事件</target>
</trans-unit>
<trans-unit id="sb6d7128df5978cee">
<source>Policy exception</source>
<target>政策的例外事件</target>
</trans-unit>
<trans-unit id="s77f572257f69a8db">
<source>Property Mapping exception</source>
<target>屬性對應例外事件</target>
</trans-unit>
<trans-unit id="s2543cffd6ebb6803">
<source>System task execution</source>
<target>系統工作執行事件</target>
</trans-unit>
<trans-unit id="se2f258b996f7279c">
<source>System task exception</source>
<target>系統工作例外事件</target>
</trans-unit>
<trans-unit id="s81eff3409d572a21">
<source>General system exception</source>
<target>一般系統例外事件</target>
</trans-unit>
<trans-unit id="sf8f49cdbf0036343">
<source>Configuration error</source>
<target>設定錯誤</target>
</trans-unit>
<trans-unit id="s9c6f61dc47bc4f0a">
<source>Model created</source>
<target>已建立模型</target>
</trans-unit>
<trans-unit id="s47a4983a2c6bb749">
<source>Model updated</source>
<target>已更新模型</target>
</trans-unit>
<trans-unit id="sc9f69360b58706c7">
<source>Model deleted</source>
<target>已刪除模型</target>
</trans-unit>
<trans-unit id="sa266303caf1bd27f">
<source>Email sent</source>
<target>已發送電子郵件</target>
</trans-unit>
<trans-unit id="s6c410fedda2a575f">
<source>Update available</source>
<target>有可用更新</target>
</trans-unit>
<trans-unit id="sf1ec4acb8d744ed9">
<source>Alert</source>
<target>警報</target>
</trans-unit>
<trans-unit id="s9117fb5195e75151">
<source>Notice</source>
<target>注意</target>
</trans-unit>
<trans-unit id="s34be76c6b1eadbef">
<source>Warning</source>
<target>警告</target>
</trans-unit>
<trans-unit id="s02240309358f557c">
<source>Unknown severity</source>
<target>嚴重程度未知</target>
</trans-unit>
<trans-unit id="s858e7ac4b3cf955f">
<source>Static tokens</source>
<target>靜態權杖</target>
</trans-unit>
<trans-unit id="sfcfcf85a57eea78a">
<source>TOTP Device</source>
<target>TOTP 裝置</target>
</trans-unit>
<trans-unit id="s482bc55a78891ef7">
<source>A code has been sent to your address: <x id="0" equiv-text="${email}"/></source>
</trans-unit>
<trans-unit id="s5afa3fc77ce8d94d">
<source>A code has been sent to your email address.</source>
</trans-unit>
<trans-unit id="s37f47fa981493c3b">
<source>A one-time use code has been sent to you via SMS text message.</source>
</trans-unit>
<trans-unit id="sc92a7248dba5f388">
<source>Open your authenticator app to retrieve a one-time use code.</source>
</trans-unit>
<trans-unit id="s21d95b4651ad7a1e">
<source>Enter a one-time recovery code for this user.</source>
</trans-unit>
<trans-unit id="s2e1d5a7d320c25ef">
<source>Enter the code from your authenticator device.</source>
</trans-unit>
<trans-unit id="se2d65e13768468e0">
<source>Internal</source>
<target>內部位置</target>
</trans-unit>
<trans-unit id="s84fcddede27b8e2a">
<source>External</source>
<target>外部</target>
</trans-unit>
<trans-unit id="s1a635369edaf4dc3">
<source>Service account</source>
<target>服務帳號</target>
</trans-unit>
<trans-unit id="sff930bf2834e2201">
<source>Service account (internal)</source>
<target>服務帳號(內部)</target>
</trans-unit>
<trans-unit id="scb489a1a173ac3f0">
<source>Yes</source>
<target>是</target>
</trans-unit>
<trans-unit id="s09205907b5b56cda">
<source>No</source>
<target>否</target>
</trans-unit>
<trans-unit id="s7f073c746d0f6324">
<source>Form actions</source>
</trans-unit>
<trans-unit id="s98b1cb8fb62909ec">
<source>Group</source>
<target>群組</target>
</trans-unit>
<trans-unit id="s2e422519ed38f7d8">
<source>Pass</source>
<target>通過</target>
</trans-unit>
<trans-unit id="sac315d5bd28d4efa">
<source>Don't Pass</source>
</trans-unit>
<trans-unit id="s042baf59902a711f">
<source>Policy</source>
<target>政策</target>
</trans-unit>
<trans-unit id="sd8f220c999726151">
<source>Redirect</source>
<target>重新導向</target>
</trans-unit>
<trans-unit id="s03f42eea72154959">
<source>Username</source>
<target>使用者名稱</target>
</trans-unit>
<trans-unit id="s5f5bf4ef2bd93c04">
<source>Group mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>僅當已登入的使用者在存取此來源時,才能檢查群組對應。</target>
</trans-unit>
<trans-unit id="s6c607d74bdfe9f36">
<source>User mappings can only be checked if a user is already logged in when trying to access this source.</source>
<target>僅當已登入的使用者在存取此來源時,才能檢查使用者對應。</target>
</trans-unit>
<trans-unit id="sf6e1665c7022a1f8">
<source>Password</source>
<target>密碼</target>
</trans-unit>
<trans-unit id="sd1f44f1a8bc20e67">
<source>Email</source>
<target>電子郵件</target>
</trans-unit>
<trans-unit id="s8939f574b096054a">
<source>Not you?</source>
<target>不是您?</target>
</trans-unit>
<trans-unit id="s296fbffaaa7c910a">
<source>Required.</source>
<target>必需。</target>
</trans-unit>
<trans-unit id="s81ecf2d4386b8e84">
<source>Continue</source>
<target>繼續</target>
</trans-unit>
<trans-unit id="s61e48919db20538a">
<source>UPN</source>
<target>UPN</target>
</trans-unit>
<trans-unit id="s67ac11d47f1ce794">
<source>WebAuthn requires this page to be accessed via HTTPS.</source>
<target>WebAuthn 需要使用 HTTPS 存取這個頁面。</target>
</trans-unit>
<trans-unit id="se9e9e1d6799b86a5">
<source>WebAuthn not supported by browser.</source>
<target>不支援 WebAuthn 的瀏覽器。</target>
</trans-unit>
<trans-unit id="sa4be93eb7f4e51e3">
<source>Site links</source>
</trans-unit>
<trans-unit id="s6fe64b4625517333">
<source>Powered by authentik</source>
<target>由 authentik 技術支援</target>
</trans-unit>
<trans-unit id="sd766cdc29b25ff95">
<source>Authenticating with Apple...</source>
<target>使用 Apple 進行身分認證中……</target>
</trans-unit>
<trans-unit id="s2c8189544e3ea679">
<source>Retry</source>
<target>重試</target>
</trans-unit>
<trans-unit id="s420d2cdedcaf8cd0">
<source>Authenticating with Plex...</source>
<target>使用 Plex 進行身分認證中……</target>
</trans-unit>
<trans-unit id="s2ddbebcb8a49b005">
<source>Waiting for authentication...</source>
<target>等待身分認證中……</target>
</trans-unit>
<trans-unit id="sb15fe7b9d09bb419">
<source>If no Plex popup opens, click the button below.</source>
<target>如果 Plex 彈出視窗未開啟,請點選以下按鈕前往。</target>
</trans-unit>
<trans-unit id="sbc625b4c669b9ce8">
<source>Open login</source>
<target>開啟登入頁面</target>
</trans-unit>
<trans-unit id="sf376ae7e9ef41c1a">
<source>Authenticating with Telegram...</source>
</trans-unit>
<trans-unit id="s76ea993fdc8503d8">
<source>Click the button below to start.</source>
</trans-unit>
<trans-unit id="s15d6fabebb4ef2d8">
<source>User information</source>
</trans-unit>
<trans-unit id="s9bd9ba84819493d4">
<source>Something went wrong! Please try again later.</source>
<target>發生錯誤,請稍後再次嘗試。</target>
</trans-unit>
<trans-unit id="s4090dd0c0e45988b">
<source>Request ID</source>
<target>要求 ID</target>
</trans-unit>
<trans-unit id="s4d7fe7be1c49896c">
<source>You may close this page now.</source>
<target>您現在可以關閉這個頁面。</target>
</trans-unit>
<trans-unit id="s197420b40df164f8">
<source>Follow redirect</source>
<target>跟隨重新導向</target>
</trans-unit>
<trans-unit id="s3ab772345f78aee0">
<source>Flow inspector</source>
<target>流程檢閱器</target>
</trans-unit>
<trans-unit id="sb69e43f2f6bd1b54">
<source>Close flow inspector</source>
</trans-unit>
<trans-unit id="s502884e1977b2c06">
<source>Next stage</source>
<target>下一個階段</target>
</trans-unit>
<trans-unit id="sb3fa80ccfa97ee54">
<source>Stage name</source>
<target>階段名稱</target>
</trans-unit>
<trans-unit id="sbea3c1e4f2fd623d">
<source>Stage kind</source>
<target>階段類型</target>
</trans-unit>
<trans-unit id="s2bc8aa1740d3da34">
<source>Stage object</source>
<target>階段物件</target>
</trans-unit>
<trans-unit id="sc3e1c4f1fff8e1ca">
<source>This flow is completed.</source>
<target>此流程已執行完成。</target>
</trans-unit>
<trans-unit id="s342eccabf83c9bde">
<source>Plan history</source>
<target>計劃歷史紀錄</target>
</trans-unit>
<trans-unit id="sb2f307e79d20bb56">
<source>Current plan context</source>
<target>目前計劃的上下文</target>
</trans-unit>
<trans-unit id="sa13e6c8310000e30">
<source>Session ID</source>
<target>會談 ID</target>
</trans-unit>
<trans-unit id="s857cf5aa8955cf5c">
<source>Flow inspector loading</source>
</trans-unit>
<trans-unit id="sa11e92683c5860c7">
<source>Request has been denied.</source>
<target>要求被拒。</target>
</trans-unit>
<trans-unit id="s2f7f35f6a5b733f5">
<source>Show password</source>
</trans-unit>
<trans-unit id="s452f791e0ff6a13e">
<source>Hide password</source>
</trans-unit>
<trans-unit id="scf5ce91bfba10a61">
<source>Please enter your password</source>
<target>請輸入您的密碼</target>
</trans-unit>
<trans-unit id="s6bb30c61df4cf486">
<source>Caps Lock is enabled.</source>
</trans-unit>
<trans-unit id="s8d6236ad153d42c0">
<source>CAPTCHA challenge</source>
</trans-unit>
<trans-unit id="s30d6ff9e15e0a40a">
<source>Verifying...</source>
</trans-unit>
<trans-unit id="s1c336c2d6cef77b3">
<source>Remember me on this device</source>
</trans-unit>
<trans-unit id="seb6ab868740e4e36">
<source>Continue with <x id="0" equiv-text="${name}"/></source>
</trans-unit>
<trans-unit id="sc4eedb434536bdb4">
<source>Need an account?</source>
<target>需要一個帳號嗎?</target>
</trans-unit>
<trans-unit id="s38f774cd7e9b9dad">
<source>Sign up.</source>
<target>註冊。</target>
</trans-unit>
<trans-unit id="sa03aa46068460c95">
<source>Forgot username or password?</source>
<target>忘記使用者名稱或密碼?</target>
</trans-unit>
<trans-unit id="s05a941e4b4bfca9f">
<source>Additional actions</source>
</trans-unit>
<trans-unit id="s6ecfc18dbfeedd76">
<source>Select one of the options below to continue.</source>
</trans-unit>
<trans-unit id="s091d5407b5b32e84">
<source>Or</source>
<target>或</target>
</trans-unit>
<trans-unit id="se5fd752dbbc3cd28">
<source>Use a security key</source>
<target>使用安全金鑰登入</target>
</trans-unit>
<trans-unit id="s53dddf1733e26c98">
<source>Login sources</source>
</trans-unit>
<trans-unit id="s85366fac18679f28">
<source>Forgot password?</source>
<target>忘記密碼</target>
</trans-unit>
<trans-unit id="s14c552fb0a4c0186">
<source>Application requires following permissions:</source>
<target>應用程式需要以下權限:</target>
</trans-unit>
<trans-unit id="s7073489bb01b3c24">
<source>Application already has access to the following permissions:</source>
<target>應用程式已用擁有已下存取權限:</target>
</trans-unit>
<trans-unit id="s98dc556f8bf707dc">
<source>Application requires following new permissions:</source>
<target>應用程式需要新增以下權限:</target>
</trans-unit>
<trans-unit id="s06bfe45ffef2cf60">
<source>Stage name: <x id="0" equiv-text="${this.challenge?.name}"/></source>
</trans-unit>
<trans-unit id="sbd19064fc3f405c1">
<source>Check your Inbox for a verification email.</source>
<target>檢查您的收件夾確認是否收到驗證電子郵件。</target>
</trans-unit>
<trans-unit id="s8aff572e64b7936b">
<source>Send Email again.</source>
<target>再次傳送電子郵件。</target>
</trans-unit>
<trans-unit id="sc091f75b942ec081">
<source>QR-Code to setup a time-based one-time password</source>
</trans-unit>
<trans-unit id="s6db67c7681b8be6e">
<source>Copy time-based one-time password configuration</source>
</trans-unit>
<trans-unit id="s43e859bf711e3599">
<source>Copy TOTP Config</source>
</trans-unit>
<trans-unit id="s90064dd5c4dde2c6">
<source>Please scan the QR code above using the Microsoft Authenticator, Google Authenticator, or other authenticator apps on your device, and enter the code the device displays below to finish setting up the MFA device.</source>
</trans-unit>
<trans-unit id="sa5562e0115ffbccd">
<source>Time-based one-time password</source>
</trans-unit>
<trans-unit id="s40f44c0d88807fd5">
<source>TOTP Code</source>
</trans-unit>
<trans-unit id="s95474cc8c73dd9c0">
<source>Type your TOTP code...</source>
</trans-unit>
<trans-unit id="s168d0c138b63286d">
<source>Type your time-based one-time password code.</source>
</trans-unit>
<trans-unit id="sc2ec367e3108fe65">
<source>Duo activation QR code</source>
<target>Duo 啟用的二維條碼</target>
</trans-unit>
<trans-unit id="sc5668cb23167e9bb">
<source>Alternatively, if your current device has Duo installed, click on this link:</source>
<target>或者如果您目前裝置已安裝 Duo請點擊此連結</target>
</trans-unit>
<trans-unit id="s721d94ae700b5dfd">
<source>Duo activation</source>
<target>Duo 啟用</target>
</trans-unit>
<trans-unit id="s708d9a4a0db0be8f">
<source>Check status</source>
<target>檢查狀態</target>
</trans-unit>
<trans-unit id="s31fba571065f2c87">
<source>Make sure to keep these tokens in a safe place.</source>
<target>請將這些權杖保存在安全的地方。</target>
</trans-unit>
<trans-unit id="s3f8a07912545e72e">
<source>Configure your email</source>
</trans-unit>
<trans-unit id="scedf77e8b75cad5a">
<source>Please enter your email address.</source>
</trans-unit>
<trans-unit id="s3643189d1abbb7f4">
<source>Code</source>
<target>認證碼</target>
</trans-unit>
<trans-unit id="s7cdd62c100b6b17b">
<source>Please enter the code you received via email</source>
</trans-unit>
<trans-unit id="sc0a0c87d5c556c38">
<source>Phone number</source>
<target>電話號碼</target>
</trans-unit>
<trans-unit id="s04c1210202f48dc9">
<source>Please enter your Phone number.</source>
<target>請輸入您的電話號碼。</target>
</trans-unit>
<trans-unit id="seb0c08d9f233bbfe">
<source>Please enter the code you received via SMS</source>
<target>請輸入您簡訊收到的認證碼。</target>
</trans-unit>
<trans-unit id="s98bb2ae796f1ceef">
<source>Select another authentication method</source>
</trans-unit>
<trans-unit id="s844fea0bfb10a72a">
<source>Authentication code</source>
<target>認證碼</target>
</trans-unit>
<trans-unit id="s7abc9d08b0f70fd6">
<source>Static token</source>
<target>靜態權杖</target>
</trans-unit>
<trans-unit id="s14e8ac4d377a1a99">
<source>Type an authentication code...</source>
</trans-unit>
<trans-unit id="s39002897db60bb28">
<source>Sending Duo push notification...</source>
</trans-unit>
<trans-unit id="sd2b8c1caa0340ed6">
<source>Failed to authenticate</source>
</trans-unit>
<trans-unit id="s363abde8a254ea5f">
<source>Authentication failed. Please try again.</source>
</trans-unit>
<trans-unit id="sffef1a8596bc58bb">
<source>Authenticating...</source>
</trans-unit>
<trans-unit id="se409d01b52c4e12f">
<source>Retry authentication</source>
<target>重試身分認證</target>
</trans-unit>
<trans-unit id="s8d857061510fe794">
<source>Duo push-notifications</source>
<target>Duo 推播通知</target>
</trans-unit>
<trans-unit id="s47490298c17b753a">
<source>Receive a push notification on your device.</source>
<target>在您的裝置上接收推播通知。</target>
</trans-unit>
<trans-unit id="sd6a025d66f2637d1">
<source>Traditional authenticator</source>
<target>傳統身分認證器</target>
</trans-unit>
<trans-unit id="sb25e689e00c61829">
<source>Use a code-based authenticator.</source>
<target>使用基於認證碼的身分認證器。</target>
</trans-unit>
<trans-unit id="s9e568afec3810bfe">
<source>Recovery keys</source>
<target>救援金鑰</target>
</trans-unit>
<trans-unit id="s8bb0a1b672b52954">
<source>In case you lose access to your primary authenticators.</source>
</trans-unit>
<trans-unit id="s97f2dc19fa556a6a">
<source>SMS</source>
<target>簡訊</target>
</trans-unit>
<trans-unit id="s0e516232f2ab4e04">
<source>Tokens sent via SMS.</source>
<target>通過簡訊傳送權杖。</target>
</trans-unit>
<trans-unit id="s833cfe815918c143">
<source>Tokens sent via email.</source>
</trans-unit>
<trans-unit id="s76d21e163887ddd1">
<source>Unknown device</source>
</trans-unit>
<trans-unit id="sf0ceaf3116e31fd4">
<source>An unknown device class was provided.</source>
</trans-unit>
<trans-unit id="s610fced3957d0471">
<source>Select an authentication method</source>
</trans-unit>
<trans-unit id="s958cedec1cb3fc52">
<source>Select a configuration stage</source>
</trans-unit>
<trans-unit id="sac17f177f884e238">
<source>Stay signed in?</source>
<target>繼續保持登入?</target>
</trans-unit>
<trans-unit id="s859b2e00391da380">
<source>Select Yes to reduce the number of times you're asked to sign in.</source>
<target>選擇「是」來減少詢問登入的次數。</target>
</trans-unit>
<trans-unit id="s23da7320dee28a60">
<source>Device Code</source>
</trans-unit>
<trans-unit id="s3cd84e82e83e35ad">
<source>Please enter your code</source>
<target>請輸入您的認證碼</target>
</trans-unit>
<trans-unit id="s455a8fc21077e7f9">
<source>You've successfully authenticated your device.</source>
<target>您已成功透過裝置認證。</target>
</trans-unit>
<trans-unit id="sac88482c48453fc8">
<source>You've logged out of <x id="0" equiv-text="${challenge.applicationName}"/>. You can go back to the overview to launch another application, or log out of your authentik account.</source>
</trans-unit>
<trans-unit id="s3108167b562674e2">
<source>Go back to overview</source>
</trans-unit>
<trans-unit id="sdb749e793de55478">
<source>Log out of <x id="0" equiv-text="${challenge.brandName}"/></source>
</trans-unit>
<trans-unit id="s521681ed1d5ff814">
<source>Log back into <x id="0" equiv-text="${challenge.applicationName}"/></source>
</trans-unit>
<trans-unit id="s78869b8b2bc26d0d">
<source>SAML Provider</source>
</trans-unit>
<trans-unit id="sca83a1f9227f74b9">
<source>SAML logout complete</source>
</trans-unit>
<trans-unit id="s7b90eab7969ae056">
<source>Redirecting to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s3e6174b645d96835">
<source>Posting logout request to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s0b1ffff8bedd6b8a">
<source>Unknown Provider</source>
</trans-unit>
<trans-unit id="s777e86d562523c85">
<source>Logging out of providers...</source>
</trans-unit>
<trans-unit id="s4980379bf8461c2d">
<source>Single Logout</source>
</trans-unit>
<trans-unit id="s3736936aac1adc2e">
<source>Open flow inspector</source>
</trans-unit>
<trans-unit id="sa17ce23517e56461">
<source>Authentication form</source>
</trans-unit>
<trans-unit id="s7fa4e5e409d43573">
<source>Error creating credential: <x id="0" equiv-text="${err}"/></source>
</trans-unit>
<trans-unit id="s9d95f09deb601f34">
<source>Server validation of credential failed: <x id="0" equiv-text="${err}"/></source>
</trans-unit>
<trans-unit id="sb0821a9e92cac5eb">
<source>Failed to register. Please try again.</source>
</trans-unit>
<trans-unit id="s238784fc1dc672ae">
<source>Registering...</source>
</trans-unit>
<trans-unit id="s009bd1c98a9f5de2">
<source>Failed to register</source>
</trans-unit>
<trans-unit id="sb166ce92e8e807d6">
<source>Retry registration</source>
</trans-unit>
<trans-unit id="s95094b57684716a5">
<source>Failed to validate device.</source>
</trans-unit>
<trans-unit id="se99d25eb70c767ef">
<source>Verifying your device...</source>
</trans-unit>
<trans-unit id="s1af2337b6d11d4c6">
<source>Data export ready</source>
</trans-unit>
<trans-unit id="en-XA">
<source>English (Pseudo-Accents)</source>
</trans-unit>
<trans-unit id="avatar.alt-text-for-user">
<source>Avatar for <x id="0" equiv-text="${this.username}"/></source>
</trans-unit>
<trans-unit id="avatar.alt-text">
<source>User avatar</source>
</trans-unit>
<trans-unit id="flow.navigation.go-back">
<source>Go back</source>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent-to-address">
<source>A verification token has been sent to your configured email address: <x id="0" equiv-text="${email}"/></source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's configured email address.</note>
</trans-unit>
<trans-unit id="stage.authenticator.email.sent">
<source>A verification token has been sent to your email address.</source>
<note from="lit-localize">Displayed when a verification token has been sent to the user's email address.</note>
</trans-unit>
<trans-unit id="scd909e0bc55fc548">
<source>Security key</source>
</trans-unit>
<trans-unit id="sd0de938d9c37ad5f">
<source>Use a Passkey or security key to prove your identity.</source>
</trans-unit>
<trans-unit id="sb94beab52540d2b7">
<source>The CAPTCHA challenge failed to load.</source>
</trans-unit>
<trans-unit id="s217a96c47caaf73d">
<source>Could not find a suitable CAPTCHA provider.</source>
</trans-unit>
<trans-unit id="sdf2794b96386c868">
<source>Copy time-based one-time password secret</source>
</trans-unit>
<trans-unit id="sc78d16417878afd0">
<source>Copy Secret</source>
</trans-unit>
<trans-unit id="clipboard.write.success.message.entity">
<source><x id="0" equiv-text="${entityLabel}"/> copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.success.generic">
<source>Copied to clipboard.</source>
</trans-unit>
<trans-unit id="clipboard.write.failure.description">
<source>Clipboard not available. Please copy the value manually.</source>
</trans-unit>
<trans-unit id="totp.config">
<source>TOTP Config</source>
</trans-unit>
<trans-unit id="totp.config.clipboard.description">
<source>Paste this URL into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="totp.secret">
<source>TOTP Secret</source>
</trans-unit>
<trans-unit id="totp.secret.clipboard.description">
<source>Paste this secret into your authenticator app to set up a time-based one-time password.</source>
</trans-unit>
<trans-unit id="s92e22f9319fdb85d">
<source>Configuration warning</source>
</trans-unit>
<trans-unit id="saa088a2d0f90d5a9">
<source>Posting logout response to SAML provider: <x id="0" equiv-text="${providerName}"/></source>
</trans-unit>
<trans-unit id="s776d93092ad9ce90">
<source>Review initiated</source>
</trans-unit>
<trans-unit id="sad46bcad1a343b51">
<source>Review overdue</source>
</trans-unit>
<trans-unit id="s59d168d966cecbaf">
<source>Review attested</source>
</trans-unit>
<trans-unit id="s5158b7f014cecefc">
<source>Review completed</source>
</trans-unit>
<trans-unit id="sdd2ea73c24b40d5d">
<source>Site footer</source>
</trans-unit>
<trans-unit id="sf910cca0f06bbc31">
<source>Enter the email address or username associated with your account.</source>
</trans-unit>
<trans-unit id="s6e858c4c4c3b6b76">
<source>You're about to be redirected to the following URL.</source>
</trans-unit>
<trans-unit id="sd5d2b94a1ccba1a9">
<source>Log in to continue to <x id="0" equiv-text="${prelude}"/>.</source>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -9,6 +9,8 @@ import "@patternfly/elements/pf-tooltip/pf-tooltip.js";
import { globalAK } from "#common/global";
import { configureSentry } from "#common/sentry/index";
import { PseudoLanguageTag } from "#common/ui/locale/definitions";
import { LocaleLoaderInit } from "#common/ui/locale/loaders";
import { isGuest } from "#common/users";
import { WebsocketClient } from "#common/ws/WebSocketClient";
@@ -51,6 +53,27 @@ if (process.env.NODE_ENV === "development") {
@customElement("ak-interface-user")
class UserInterface extends WithBrandConfig(WithSession(AuthenticatedInterface)) {
public static localeLoader: LocaleLoaderInit = {
loaders: {
[PseudoLanguageTag]: () => import("#user/locales/en-XA"),
"cs-CZ": () => import("#user/locales/cs-CZ"),
"de-DE": () => import("#user/locales/de-DE"),
"es-ES": () => import("#user/locales/es-ES"),
"fi-FI": () => import("#user/locales/fi-FI"),
"fr-FR": () => import("#user/locales/fr-FR"),
"it-IT": () => import("#user/locales/it-IT"),
"ja-JP": () => import("#user/locales/ja-JP"),
"ko-KR": () => import("#user/locales/ko-KR"),
"nl-NL": () => import("#user/locales/nl-NL"),
"pl-PL": () => import("#user/locales/pl-PL"),
"pt-BR": () => import("#user/locales/pt-BR"),
"ru-RU": () => import("#user/locales/ru-RU"),
"tr-TR": () => import("#user/locales/tr-TR"),
"zh-Hans": () => import("#user/locales/zh-Hans"),
"zh-Hant": () => import("#user/locales/zh-Hant"),
},
};
public static readonly styles = [
PFDisplay,
PFBrand,

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More