@stackframe/react 2.8.61 → 2.8.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/quetzal-translations.js +62 -62
- package/dist/esm/generated/quetzal-translations.js.map +1 -1
- package/dist/esm/lib/stack-app/apps/implementations/common.js +1 -1
- package/dist/esm/lib/stack-app/apps/implementations/common.js.map +1 -1
- package/dist/generated/quetzal-translations.js +62 -62
- package/dist/generated/quetzal-translations.js.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/lib/stack-app/apps/implementations/common.js +1 -1
- package/dist/lib/stack-app/apps/implementations/common.js.map +1 -1
- package/package.json +3 -3
|
@@ -10,7 +10,7 @@ import { Store } from "@stackframe/stack-shared/dist/utils/stores";
|
|
|
10
10
|
import React, { useCallback } from "react";
|
|
11
11
|
import { stackAppInternalsSymbol } from "../../common.js";
|
|
12
12
|
var process = globalThis.process ?? { env: {} };
|
|
13
|
-
var clientVersion = "js @stackframe/react@2.8.
|
|
13
|
+
var clientVersion = "js @stackframe/react@2.8.62";
|
|
14
14
|
if (clientVersion.startsWith("STACK_COMPILE_TIME")) {
|
|
15
15
|
throw new StackAssertionError("Client version was not replaced. Something went wrong during build!");
|
|
16
16
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../src/lib/stack-app/apps/implementations/common.ts"],"sourcesContent":["\n//===========================================\n// THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY, INSTEAD EDIT THE CORRESPONDING FILE IN packages/template\n//===========================================\nimport { InternalSession } from \"@stackframe/stack-shared/dist/sessions\";\nimport { AsyncCache } from \"@stackframe/stack-shared/dist/utils/caches\";\nimport { isBrowserLike } from \"@stackframe/stack-shared/dist/utils/env\";\nimport { StackAssertionError, concatStacktraces, throwErr } from \"@stackframe/stack-shared/dist/utils/errors\";\nimport { getGlobal } from \"@stackframe/stack-shared/dist/utils/globals\";\nimport { filterUndefined, omit } from \"@stackframe/stack-shared/dist/utils/objects\";\nimport { ReactPromise } from \"@stackframe/stack-shared/dist/utils/promises\";\nimport { suspendIfSsr, use } from \"@stackframe/stack-shared/dist/utils/react\";\nimport { Result } from \"@stackframe/stack-shared/dist/utils/results\";\nimport { Store } from \"@stackframe/stack-shared/dist/utils/stores\";\nimport React, { useCallback } from \"react\"; // THIS_LINE_PLATFORM react-like\nimport { HandlerUrls, stackAppInternalsSymbol } from \"../../common\";\n\n// hack to make sure process is defined in non-node environments\nconst process = (globalThis as any).process ?? { env: {} }; // THIS_LINE_PLATFORM js react\n\nexport const clientVersion = \"js @stackframe/react@2.8.61\";\nif (clientVersion.startsWith(\"STACK_COMPILE_TIME\")) {\n throw new StackAssertionError(\"Client version was not replaced. Something went wrong during build!\");\n}\n\nconst replaceStackPortPrefix = <T extends string | undefined>(input: T): T => {\n if (!input) return input;\n const prefix = process.env.NEXT_PUBLIC_STACK_PORT_PREFIX;\n return prefix ? input.replace(/\\$\\{NEXT_PUBLIC_STACK_PORT_PREFIX:-81\\}/g, prefix) as T : input;\n};\n\n\nexport const createCache = <D extends any[], T>(fetcher: (dependencies: D) => Promise<T>) => {\n return new AsyncCache<D, Result<T>>(\n async (dependencies) => await Result.fromThrowingAsync(async () => await fetcher(dependencies)),\n {},\n );\n};\n\nexport const createCacheBySession = <D extends any[], T>(fetcher: (session: InternalSession, extraDependencies: D) => Promise<T> ) => {\n return new AsyncCache<[InternalSession, ...D], Result<T>>(\n async ([session, ...extraDependencies]) => await Result.fromThrowingAsync(async () => await fetcher(session, extraDependencies)),\n {\n onSubscribe: ([session], refresh) => {\n const handler = session.onInvalidate(() => refresh());\n return () => handler.unsubscribe();\n },\n },\n );\n};\n\n\ntype AppLike = { [stackAppInternalsSymbol]: { getConstructorOptions: () => any } };\nexport function resolveConstructorOptions<T extends { inheritsFrom?: AppLike }>(options: T): T & { inheritsFrom?: undefined } {\n return {\n ...options.inheritsFrom?.[stackAppInternalsSymbol].getConstructorOptions() ?? {},\n ...filterUndefined(omit(options, [\"inheritsFrom\"])),\n };\n}\n\nexport function getUrls(partial: Partial<HandlerUrls>): HandlerUrls {\n const handler = partial.handler ?? \"/handler\";\n const home = partial.home ?? \"/\";\n const afterSignIn = partial.afterSignIn ?? home;\n return {\n handler,\n signIn: `${handler}/sign-in`,\n afterSignIn: home,\n signUp: `${handler}/sign-up`,\n afterSignUp: afterSignIn,\n signOut: `${handler}/sign-out`,\n afterSignOut: home,\n emailVerification: `${handler}/email-verification`,\n passwordReset: `${handler}/password-reset`,\n forgotPassword: `${handler}/forgot-password`,\n oauthCallback: `${handler}/oauth-callback`,\n magicLinkCallback: `${handler}/magic-link-callback`,\n home: home,\n accountSettings: `${handler}/account-settings`,\n error: `${handler}/error`,\n teamInvitation: `${handler}/team-invitation`,\n mfa: `${handler}/mfa`,\n onboarding: `${handler}/onboarding`,\n ...filterUndefined(partial),\n };\n}\n\nexport function getDefaultProjectId() {\n return process.env.NEXT_PUBLIC_STACK_PROJECT_ID || process.env.STACK_PROJECT_ID || throwErr(new Error(\"Welcome to Stack Auth! It seems that you haven't provided a project ID. Please create a project on the Stack dashboard at https://app.stack-auth.com and put it in the NEXT_PUBLIC_STACK_PROJECT_ID environment variable.\"));\n}\n\nexport function getDefaultPublishableClientKey() {\n return process.env.NEXT_PUBLIC_STACK_PUBLISHABLE_CLIENT_KEY || process.env.STACK_PUBLISHABLE_CLIENT_KEY || throwErr(new Error(\"Welcome to Stack Auth! It seems that you haven't provided a publishable client key. Please create an API key for your project on the Stack dashboard at https://app.stack-auth.com and copy your publishable client key into the NEXT_PUBLIC_STACK_PUBLISHABLE_CLIENT_KEY environment variable.\"));\n}\n\nexport function getDefaultSecretServerKey() {\n return process.env.STACK_SECRET_SERVER_KEY || throwErr(new Error(\"No secret server key provided. Please copy your key from the Stack dashboard and put it in the STACK_SECRET_SERVER_KEY environment variable.\"));\n}\n\nexport function getDefaultSuperSecretAdminKey() {\n return process.env.STACK_SUPER_SECRET_ADMIN_KEY || throwErr(new Error(\"No super secret admin key provided. Please copy your key from the Stack dashboard and put it in the STACK_SUPER_SECRET_ADMIN_KEY environment variable.\"));\n}\n\nexport function getDefaultExtraRequestHeaders() {\n return JSON.parse(process.env.NEXT_PUBLIC_STACK_EXTRA_REQUEST_HEADERS || process.env.STACK_EXTRA_REQUEST_HEADERS || '{}');\n}\n\n/**\n * Returns the base URL for the Stack API.\n *\n * The URL can be specified in several ways, in order of precedence:\n * 1. Directly through userSpecifiedBaseUrl parameter as string or browser/server object\n * 2. Through environment variables:\n * - Browser: NEXT_PUBLIC_BROWSER_STACK_API_URL\n * - Server: NEXT_PUBLIC_SERVER_STACK_API_URL\n * - Fallback: NEXT_PUBLIC_STACK_API_URL or NEXT_PUBLIC_STACK_URL\n * 3. Default base URL if none of the above are specified\n *\n * The function also ensures the URL doesn't end with a trailing slash\n * by removing it if present.\n *\n * @param userSpecifiedBaseUrl - Optional URL override as string or {browser, server} object\n * @returns The configured base URL without trailing slash\n\n */\nexport function getBaseUrl(userSpecifiedBaseUrl: string | { browser: string, server: string } | undefined) {\n let url;\n if (userSpecifiedBaseUrl) {\n if (typeof userSpecifiedBaseUrl === \"string\") {\n url = userSpecifiedBaseUrl;\n } else {\n if (isBrowserLike()) {\n url = userSpecifiedBaseUrl.browser;\n } else {\n url = userSpecifiedBaseUrl.server;\n }\n }\n } else {\n // note: NEXT_PUBLIC_BROWSER_STACK_API_URL was renamed to NEXT_PUBLIC_STACK_API_URL_BROWSER, and NEXT_PUBLIC_STACK_URL to NEXT_PUBLIC_STACK_API_URL\n if (isBrowserLike()) {\n url = process.env.NEXT_PUBLIC_BROWSER_STACK_API_URL || process.env.NEXT_PUBLIC_STACK_API_URL_BROWSER || process.env.STACK_API_URL_BROWSER;\n } else {\n url = process.env.NEXT_PUBLIC_SERVER_STACK_API_URL || process.env.NEXT_PUBLIC_STACK_API_URL_SERVER || process.env.STACK_API_URL_SERVER;\n }\n url = url || process.env.NEXT_PUBLIC_STACK_API_URL || process.env.STACK_API_URL || process.env.NEXT_PUBLIC_STACK_URL || defaultBaseUrl;\n }\n\n return replaceStackPortPrefix(url.endsWith('/') ? url.slice(0, -1) : url);\n}\nexport const defaultBaseUrl = \"https://api.stack-auth.com\";\n\nexport type TokenObject = {\n accessToken: string | null,\n refreshToken: string | null,\n};\n\nexport function createEmptyTokenStore() {\n return new Store<TokenObject>({\n refreshToken: null,\n accessToken: null,\n });\n}\n\n\nconst cachePromiseByHookId = new Map<string, ReactPromise<Result<unknown>>>();\nexport function useAsyncCache<D extends any[], T>(cache: AsyncCache<D, Result<T>>, dependencies: D, caller: string): T {\n // we explicitly don't want to run this hook in SSR\n suspendIfSsr(caller);\n\n // on the dashboard, we do some perf monitoring for pre-fetching which should hook right in here\n const asyncCacheHooks: any[] = getGlobal(\"use-async-cache-execution-hooks\") ?? [];\n for (const hook of asyncCacheHooks) {\n hook({ cache, caller, dependencies });\n }\n\n const id = React.useId();\n\n // whenever the dependencies change, we need to refresh the promise cache\n React.useEffect(() => {\n cachePromiseByHookId.delete(id);\n }, [...dependencies, id]);\n\n const subscribe = useCallback((cb: () => void) => {\n const { unsubscribe } = cache.onStateChange(dependencies, () => {\n cachePromiseByHookId.delete(id);\n cb();\n });\n return unsubscribe;\n }, [cache, ...dependencies]);\n const getSnapshot = useCallback(() => {\n // React checks whether a promise passed to `use` is still the same as the previous one by comparing the reference.\n // If we didn't cache here, this wouldn't work because the promise would be recreated every time the value changes.\n if (!cachePromiseByHookId.has(id)) {\n cachePromiseByHookId.set(id, cache.getOrWait(dependencies, \"read-write\"));\n }\n return cachePromiseByHookId.get(id) as ReactPromise<Result<T>>;\n }, [cache, ...dependencies]);\n\n // note: we must use React.useSyncExternalStore instead of importing the function directly, as it will otherwise\n // throw an error on Next.js (\"can't import useSyncExternalStore from the server\")\n const promise = React.useSyncExternalStore(\n subscribe,\n getSnapshot,\n () => throwErr(new Error(\"getServerSnapshot should never be called in useAsyncCache because we restrict to CSR earlier\"))\n );\n\n const result = use(promise);\n if (result.status === \"error\") {\n const error = result.error;\n if (error instanceof Error && !(error as any).__stackHasConcatenatedStacktraces) {\n concatStacktraces(error, new Error());\n (error as any).__stackHasConcatenatedStacktraces = true;\n }\n throw error;\n }\n return result.data;\n}\n"],"mappings":"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","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../../../../src/lib/stack-app/apps/implementations/common.ts"],"sourcesContent":["\n//===========================================\n// THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY, INSTEAD EDIT THE CORRESPONDING FILE IN packages/template\n//===========================================\nimport { InternalSession } from \"@stackframe/stack-shared/dist/sessions\";\nimport { AsyncCache } from \"@stackframe/stack-shared/dist/utils/caches\";\nimport { isBrowserLike } from \"@stackframe/stack-shared/dist/utils/env\";\nimport { StackAssertionError, concatStacktraces, throwErr } from \"@stackframe/stack-shared/dist/utils/errors\";\nimport { getGlobal } from \"@stackframe/stack-shared/dist/utils/globals\";\nimport { filterUndefined, omit } from \"@stackframe/stack-shared/dist/utils/objects\";\nimport { ReactPromise } from \"@stackframe/stack-shared/dist/utils/promises\";\nimport { suspendIfSsr, use } from \"@stackframe/stack-shared/dist/utils/react\";\nimport { Result } from \"@stackframe/stack-shared/dist/utils/results\";\nimport { Store } from \"@stackframe/stack-shared/dist/utils/stores\";\nimport React, { useCallback } from \"react\"; // THIS_LINE_PLATFORM react-like\nimport { HandlerUrls, stackAppInternalsSymbol } from \"../../common\";\n\n// hack to make sure process is defined in non-node environments\nconst process = (globalThis as any).process ?? { env: {} }; // THIS_LINE_PLATFORM js react\n\nexport const clientVersion = \"js @stackframe/react@2.8.62\";\nif (clientVersion.startsWith(\"STACK_COMPILE_TIME\")) {\n throw new StackAssertionError(\"Client version was not replaced. Something went wrong during build!\");\n}\n\nconst replaceStackPortPrefix = <T extends string | undefined>(input: T): T => {\n if (!input) return input;\n const prefix = process.env.NEXT_PUBLIC_STACK_PORT_PREFIX;\n return prefix ? input.replace(/\\$\\{NEXT_PUBLIC_STACK_PORT_PREFIX:-81\\}/g, prefix) as T : input;\n};\n\n\nexport const createCache = <D extends any[], T>(fetcher: (dependencies: D) => Promise<T>) => {\n return new AsyncCache<D, Result<T>>(\n async (dependencies) => await Result.fromThrowingAsync(async () => await fetcher(dependencies)),\n {},\n );\n};\n\nexport const createCacheBySession = <D extends any[], T>(fetcher: (session: InternalSession, extraDependencies: D) => Promise<T> ) => {\n return new AsyncCache<[InternalSession, ...D], Result<T>>(\n async ([session, ...extraDependencies]) => await Result.fromThrowingAsync(async () => await fetcher(session, extraDependencies)),\n {\n onSubscribe: ([session], refresh) => {\n const handler = session.onInvalidate(() => refresh());\n return () => handler.unsubscribe();\n },\n },\n );\n};\n\n\ntype AppLike = { [stackAppInternalsSymbol]: { getConstructorOptions: () => any } };\nexport function resolveConstructorOptions<T extends { inheritsFrom?: AppLike }>(options: T): T & { inheritsFrom?: undefined } {\n return {\n ...options.inheritsFrom?.[stackAppInternalsSymbol].getConstructorOptions() ?? {},\n ...filterUndefined(omit(options, [\"inheritsFrom\"])),\n };\n}\n\nexport function getUrls(partial: Partial<HandlerUrls>): HandlerUrls {\n const handler = partial.handler ?? \"/handler\";\n const home = partial.home ?? \"/\";\n const afterSignIn = partial.afterSignIn ?? home;\n return {\n handler,\n signIn: `${handler}/sign-in`,\n afterSignIn: home,\n signUp: `${handler}/sign-up`,\n afterSignUp: afterSignIn,\n signOut: `${handler}/sign-out`,\n afterSignOut: home,\n emailVerification: `${handler}/email-verification`,\n passwordReset: `${handler}/password-reset`,\n forgotPassword: `${handler}/forgot-password`,\n oauthCallback: `${handler}/oauth-callback`,\n magicLinkCallback: `${handler}/magic-link-callback`,\n home: home,\n accountSettings: `${handler}/account-settings`,\n error: `${handler}/error`,\n teamInvitation: `${handler}/team-invitation`,\n mfa: `${handler}/mfa`,\n onboarding: `${handler}/onboarding`,\n ...filterUndefined(partial),\n };\n}\n\nexport function getDefaultProjectId() {\n return process.env.NEXT_PUBLIC_STACK_PROJECT_ID || process.env.STACK_PROJECT_ID || throwErr(new Error(\"Welcome to Stack Auth! It seems that you haven't provided a project ID. Please create a project on the Stack dashboard at https://app.stack-auth.com and put it in the NEXT_PUBLIC_STACK_PROJECT_ID environment variable.\"));\n}\n\nexport function getDefaultPublishableClientKey() {\n return process.env.NEXT_PUBLIC_STACK_PUBLISHABLE_CLIENT_KEY || process.env.STACK_PUBLISHABLE_CLIENT_KEY || throwErr(new Error(\"Welcome to Stack Auth! It seems that you haven't provided a publishable client key. Please create an API key for your project on the Stack dashboard at https://app.stack-auth.com and copy your publishable client key into the NEXT_PUBLIC_STACK_PUBLISHABLE_CLIENT_KEY environment variable.\"));\n}\n\nexport function getDefaultSecretServerKey() {\n return process.env.STACK_SECRET_SERVER_KEY || throwErr(new Error(\"No secret server key provided. Please copy your key from the Stack dashboard and put it in the STACK_SECRET_SERVER_KEY environment variable.\"));\n}\n\nexport function getDefaultSuperSecretAdminKey() {\n return process.env.STACK_SUPER_SECRET_ADMIN_KEY || throwErr(new Error(\"No super secret admin key provided. Please copy your key from the Stack dashboard and put it in the STACK_SUPER_SECRET_ADMIN_KEY environment variable.\"));\n}\n\nexport function getDefaultExtraRequestHeaders() {\n return JSON.parse(process.env.NEXT_PUBLIC_STACK_EXTRA_REQUEST_HEADERS || process.env.STACK_EXTRA_REQUEST_HEADERS || '{}');\n}\n\n/**\n * Returns the base URL for the Stack API.\n *\n * The URL can be specified in several ways, in order of precedence:\n * 1. Directly through userSpecifiedBaseUrl parameter as string or browser/server object\n * 2. Through environment variables:\n * - Browser: NEXT_PUBLIC_BROWSER_STACK_API_URL\n * - Server: NEXT_PUBLIC_SERVER_STACK_API_URL\n * - Fallback: NEXT_PUBLIC_STACK_API_URL or NEXT_PUBLIC_STACK_URL\n * 3. Default base URL if none of the above are specified\n *\n * The function also ensures the URL doesn't end with a trailing slash\n * by removing it if present.\n *\n * @param userSpecifiedBaseUrl - Optional URL override as string or {browser, server} object\n * @returns The configured base URL without trailing slash\n\n */\nexport function getBaseUrl(userSpecifiedBaseUrl: string | { browser: string, server: string } | undefined) {\n let url;\n if (userSpecifiedBaseUrl) {\n if (typeof userSpecifiedBaseUrl === \"string\") {\n url = userSpecifiedBaseUrl;\n } else {\n if (isBrowserLike()) {\n url = userSpecifiedBaseUrl.browser;\n } else {\n url = userSpecifiedBaseUrl.server;\n }\n }\n } else {\n // note: NEXT_PUBLIC_BROWSER_STACK_API_URL was renamed to NEXT_PUBLIC_STACK_API_URL_BROWSER, and NEXT_PUBLIC_STACK_URL to NEXT_PUBLIC_STACK_API_URL\n if (isBrowserLike()) {\n url = process.env.NEXT_PUBLIC_BROWSER_STACK_API_URL || process.env.NEXT_PUBLIC_STACK_API_URL_BROWSER || process.env.STACK_API_URL_BROWSER;\n } else {\n url = process.env.NEXT_PUBLIC_SERVER_STACK_API_URL || process.env.NEXT_PUBLIC_STACK_API_URL_SERVER || process.env.STACK_API_URL_SERVER;\n }\n url = url || process.env.NEXT_PUBLIC_STACK_API_URL || process.env.STACK_API_URL || process.env.NEXT_PUBLIC_STACK_URL || defaultBaseUrl;\n }\n\n return replaceStackPortPrefix(url.endsWith('/') ? url.slice(0, -1) : url);\n}\nexport const defaultBaseUrl = \"https://api.stack-auth.com\";\n\nexport type TokenObject = {\n accessToken: string | null,\n refreshToken: string | null,\n};\n\nexport function createEmptyTokenStore() {\n return new Store<TokenObject>({\n refreshToken: null,\n accessToken: null,\n });\n}\n\n\nconst cachePromiseByHookId = new Map<string, ReactPromise<Result<unknown>>>();\nexport function useAsyncCache<D extends any[], T>(cache: AsyncCache<D, Result<T>>, dependencies: D, caller: string): T {\n // we explicitly don't want to run this hook in SSR\n suspendIfSsr(caller);\n\n // on the dashboard, we do some perf monitoring for pre-fetching which should hook right in here\n const asyncCacheHooks: any[] = getGlobal(\"use-async-cache-execution-hooks\") ?? [];\n for (const hook of asyncCacheHooks) {\n hook({ cache, caller, dependencies });\n }\n\n const id = React.useId();\n\n // whenever the dependencies change, we need to refresh the promise cache\n React.useEffect(() => {\n cachePromiseByHookId.delete(id);\n }, [...dependencies, id]);\n\n const subscribe = useCallback((cb: () => void) => {\n const { unsubscribe } = cache.onStateChange(dependencies, () => {\n cachePromiseByHookId.delete(id);\n cb();\n });\n return unsubscribe;\n }, [cache, ...dependencies]);\n const getSnapshot = useCallback(() => {\n // React checks whether a promise passed to `use` is still the same as the previous one by comparing the reference.\n // If we didn't cache here, this wouldn't work because the promise would be recreated every time the value changes.\n if (!cachePromiseByHookId.has(id)) {\n cachePromiseByHookId.set(id, cache.getOrWait(dependencies, \"read-write\"));\n }\n return cachePromiseByHookId.get(id) as ReactPromise<Result<T>>;\n }, [cache, ...dependencies]);\n\n // note: we must use React.useSyncExternalStore instead of importing the function directly, as it will otherwise\n // throw an error on Next.js (\"can't import useSyncExternalStore from the server\")\n const promise = React.useSyncExternalStore(\n subscribe,\n getSnapshot,\n () => throwErr(new Error(\"getServerSnapshot should never be called in useAsyncCache because we restrict to CSR earlier\"))\n );\n\n const result = use(promise);\n if (result.status === \"error\") {\n const error = result.error;\n if (error instanceof Error && !(error as any).__stackHasConcatenatedStacktraces) {\n concatStacktraces(error, new Error());\n (error as any).__stackHasConcatenatedStacktraces = true;\n }\n throw error;\n }\n return result.data;\n}\n"],"mappings":"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","names":[]}
|
|
@@ -355,10 +355,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
355
355
|
"__stack-auto-translation-114": "Laden Sie einen Benutzer per E-Mail in Ihr Team ein",
|
|
356
356
|
"__stack-auto-translation-115": "Mitglied einladen",
|
|
357
357
|
"__stack-auto-translation-116": "Benutzer einladen",
|
|
358
|
-
"__stack-auto-translation-117": "
|
|
358
|
+
"__stack-auto-translation-117": "Rechnung",
|
|
359
359
|
"__stack-auto-translation-118": "Rechnungen",
|
|
360
360
|
"__stack-auto-translation-119": "IP-Adresse",
|
|
361
|
-
"__stack-auto-translation-12": "
|
|
361
|
+
"__stack-auto-translation-12": "Betrag",
|
|
362
362
|
"__stack-auto-translation-120": "Beitreten",
|
|
363
363
|
"__stack-auto-translation-121": "Zuletzt verwendet",
|
|
364
364
|
"__stack-auto-translation-122": "Verlassen",
|
|
@@ -457,7 +457,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
457
457
|
"__stack-auto-translation-206": "Verifizierungs-E-Mail erneut senden",
|
|
458
458
|
"__stack-auto-translation-207": "Passwort zur\xFCcksetzen",
|
|
459
459
|
"__stack-auto-translation-208": "Passwort zur\xFCcksetzen",
|
|
460
|
-
"__stack-auto-translation-209": "
|
|
460
|
+
"__stack-auto-translation-209": "Vergangene Rechnungen und Belege einsehen.",
|
|
461
461
|
"__stack-auto-translation-21": "Sind Sie sicher, dass Sie das Team verlassen m\xF6chten?",
|
|
462
462
|
"__stack-auto-translation-210": "Widerrufen",
|
|
463
463
|
"__stack-auto-translation-211": "Alle anderen Sitzungen widerrufen",
|
|
@@ -525,7 +525,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
525
525
|
"__stack-auto-translation-268": "TOTP-Mehrfaktor-Authentifizierungs-QR-Code",
|
|
526
526
|
"__stack-auto-translation-269": "Erneut versuchen",
|
|
527
527
|
"__stack-auto-translation-27": "Abo k\xFCndigen",
|
|
528
|
-
"__stack-auto-translation-270": "
|
|
528
|
+
"__stack-auto-translation-270": "Nicht verf\xFCgbar",
|
|
529
529
|
"__stack-auto-translation-271": "Uneinbringlich",
|
|
530
530
|
"__stack-auto-translation-272": "Unbekannt",
|
|
531
531
|
"__stack-auto-translation-273": "Nicht verifiziert",
|
|
@@ -547,7 +547,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
547
547
|
"__stack-auto-translation-288": "Best\xE4tigen",
|
|
548
548
|
"__stack-auto-translation-289": "Best\xE4tigung...",
|
|
549
549
|
"__stack-auto-translation-29": "\xE4ndern",
|
|
550
|
-
"__stack-auto-translation-290": "
|
|
550
|
+
"__stack-auto-translation-290": "Ansehen",
|
|
551
551
|
"__stack-auto-translation-291": "Aktive Tarife und K\xE4ufe anzeigen.",
|
|
552
552
|
"__stack-auto-translation-292": "Storniert",
|
|
553
553
|
"__stack-auto-translation-293": "WARNUNG: Stellen Sie sicher, dass Sie der Kommandozeilenanwendung vertrauen, da sie Zugriff auf Ihr Konto erhalten wird. Falls Sie diese Anfrage nicht initiiert haben, k\xF6nnen Sie diese Seite schlie\xDFen und ignorieren. Wir werden Ihnen diesen Link niemals per E-Mail oder auf anderem Wege zusenden.",
|
|
@@ -588,7 +588,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
588
588
|
"__stack-auto-translation-50": "Aktuelle Sitzung",
|
|
589
589
|
"__stack-auto-translation-51": "Aktuelles Team",
|
|
590
590
|
"__stack-auto-translation-52": "Gefahrenzone",
|
|
591
|
-
"__stack-auto-translation-53": "
|
|
591
|
+
"__stack-auto-translation-53": "Datum",
|
|
592
592
|
"__stack-auto-translation-54": "Konto l\xF6schen",
|
|
593
593
|
"__stack-auto-translation-55": "Konto l\xF6schen",
|
|
594
594
|
"__stack-auto-translation-56": "Passkey l\xF6schen",
|
|
@@ -969,10 +969,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
969
969
|
"__stack-auto-translation-114": "Invita a un usuario a tu equipo por correo electr\xF3nico",
|
|
970
970
|
"__stack-auto-translation-115": "Invitar miembro",
|
|
971
971
|
"__stack-auto-translation-116": "Invitar Usuario",
|
|
972
|
-
"__stack-auto-translation-117": "
|
|
972
|
+
"__stack-auto-translation-117": "Factura",
|
|
973
973
|
"__stack-auto-translation-118": "Facturas",
|
|
974
974
|
"__stack-auto-translation-119": "Direcci\xF3n IP",
|
|
975
|
-
"__stack-auto-translation-12": "
|
|
975
|
+
"__stack-auto-translation-12": "Monto",
|
|
976
976
|
"__stack-auto-translation-120": "Unirse",
|
|
977
977
|
"__stack-auto-translation-121": "\xDAltimo uso",
|
|
978
978
|
"__stack-auto-translation-122": "Salir",
|
|
@@ -1139,7 +1139,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1139
1139
|
"__stack-auto-translation-268": "C\xF3digo QR de autenticaci\xF3n multifactor TOTP",
|
|
1140
1140
|
"__stack-auto-translation-269": "Intentar de nuevo",
|
|
1141
1141
|
"__stack-auto-translation-27": "Cancelar suscripci\xF3n",
|
|
1142
|
-
"__stack-auto-translation-270": "
|
|
1142
|
+
"__stack-auto-translation-270": "No disponible",
|
|
1143
1143
|
"__stack-auto-translation-271": "Incobrable",
|
|
1144
1144
|
"__stack-auto-translation-272": "Desconocido",
|
|
1145
1145
|
"__stack-auto-translation-273": "No verificado",
|
|
@@ -1161,7 +1161,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1161
1161
|
"__stack-auto-translation-288": "Verificar",
|
|
1162
1162
|
"__stack-auto-translation-289": "Verificando...",
|
|
1163
1163
|
"__stack-auto-translation-29": "cambiar",
|
|
1164
|
-
"__stack-auto-translation-290": "
|
|
1164
|
+
"__stack-auto-translation-290": "Ver",
|
|
1165
1165
|
"__stack-auto-translation-291": "Ver tus planes activos y compras.",
|
|
1166
1166
|
"__stack-auto-translation-292": "Anulada",
|
|
1167
1167
|
"__stack-auto-translation-293": "ADVERTENCIA: Aseg\xFArese de confiar en la aplicaci\xF3n de l\xEDnea de comandos, ya que obtendr\xE1 acceso a su cuenta. Si no inici\xF3 esta solicitud, puede cerrar esta p\xE1gina e ignorarla. Nunca le enviaremos este enlace por correo electr\xF3nico ni por ning\xFAn otro medio.",
|
|
@@ -1202,7 +1202,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1202
1202
|
"__stack-auto-translation-50": "Sesi\xF3n actual",
|
|
1203
1203
|
"__stack-auto-translation-51": "Equipo actual",
|
|
1204
1204
|
"__stack-auto-translation-52": "Zona de peligro",
|
|
1205
|
-
"__stack-auto-translation-53": "
|
|
1205
|
+
"__stack-auto-translation-53": "Fecha",
|
|
1206
1206
|
"__stack-auto-translation-54": "Eliminar cuenta",
|
|
1207
1207
|
"__stack-auto-translation-55": "Eliminar cuenta",
|
|
1208
1208
|
"__stack-auto-translation-56": "Eliminar clave de acceso",
|
|
@@ -1276,10 +1276,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1276
1276
|
"__stack-auto-translation-114": "Invita a un usuario a tu equipo por correo electr\xF3nico",
|
|
1277
1277
|
"__stack-auto-translation-115": "Invitar miembro",
|
|
1278
1278
|
"__stack-auto-translation-116": "Invitar usuario",
|
|
1279
|
-
"__stack-auto-translation-117": "
|
|
1279
|
+
"__stack-auto-translation-117": "Factura",
|
|
1280
1280
|
"__stack-auto-translation-118": "Facturas",
|
|
1281
1281
|
"__stack-auto-translation-119": "Direcci\xF3n IP",
|
|
1282
|
-
"__stack-auto-translation-12": "
|
|
1282
|
+
"__stack-auto-translation-12": "Importe",
|
|
1283
1283
|
"__stack-auto-translation-120": "Unirse",
|
|
1284
1284
|
"__stack-auto-translation-121": "\xDAltimo uso",
|
|
1285
1285
|
"__stack-auto-translation-122": "Salir",
|
|
@@ -1446,7 +1446,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1446
1446
|
"__stack-auto-translation-268": "C\xF3digo QR de autenticaci\xF3n multifactor TOTP",
|
|
1447
1447
|
"__stack-auto-translation-269": "Intentar de nuevo",
|
|
1448
1448
|
"__stack-auto-translation-27": "Cancelar suscripci\xF3n",
|
|
1449
|
-
"__stack-auto-translation-270": "
|
|
1449
|
+
"__stack-auto-translation-270": "No disponible",
|
|
1450
1450
|
"__stack-auto-translation-271": "Incobrable",
|
|
1451
1451
|
"__stack-auto-translation-272": "Desconocido",
|
|
1452
1452
|
"__stack-auto-translation-273": "Sin verificar",
|
|
@@ -1468,7 +1468,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1468
1468
|
"__stack-auto-translation-288": "Verificar",
|
|
1469
1469
|
"__stack-auto-translation-289": "Verificando...",
|
|
1470
1470
|
"__stack-auto-translation-29": "cambiar",
|
|
1471
|
-
"__stack-auto-translation-290": "
|
|
1471
|
+
"__stack-auto-translation-290": "Ver",
|
|
1472
1472
|
"__stack-auto-translation-291": "Ver tus planes activos y compras.",
|
|
1473
1473
|
"__stack-auto-translation-292": "Anulada",
|
|
1474
1474
|
"__stack-auto-translation-293": "ADVERTENCIA: Aseg\xFArate de confiar en la aplicaci\xF3n de l\xEDnea de comandos, ya que obtendr\xE1 acceso a tu cuenta. Si no iniciaste esta solicitud, puedes cerrar esta p\xE1gina e ignorarla. Nunca te enviaremos este enlace por correo electr\xF3nico ni por ning\xFAn otro medio.",
|
|
@@ -1509,7 +1509,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1509
1509
|
"__stack-auto-translation-50": "Sesi\xF3n actual",
|
|
1510
1510
|
"__stack-auto-translation-51": "Equipo actual",
|
|
1511
1511
|
"__stack-auto-translation-52": "Zona de peligro",
|
|
1512
|
-
"__stack-auto-translation-53": "
|
|
1512
|
+
"__stack-auto-translation-53": "Fecha",
|
|
1513
1513
|
"__stack-auto-translation-54": "Eliminar cuenta",
|
|
1514
1514
|
"__stack-auto-translation-55": "Eliminar cuenta",
|
|
1515
1515
|
"__stack-auto-translation-56": "Eliminar clave de acceso",
|
|
@@ -1583,10 +1583,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1583
1583
|
"__stack-auto-translation-114": "Invitez un utilisateur \xE0 votre \xE9quipe par courriel",
|
|
1584
1584
|
"__stack-auto-translation-115": "Inviter un membre",
|
|
1585
1585
|
"__stack-auto-translation-116": "Inviter l'utilisateur",
|
|
1586
|
-
"__stack-auto-translation-117": "
|
|
1586
|
+
"__stack-auto-translation-117": "Facture",
|
|
1587
1587
|
"__stack-auto-translation-118": "Factures",
|
|
1588
1588
|
"__stack-auto-translation-119": "Adresse IP",
|
|
1589
|
-
"__stack-auto-translation-12": "
|
|
1589
|
+
"__stack-auto-translation-12": "Montant",
|
|
1590
1590
|
"__stack-auto-translation-120": "Joindre",
|
|
1591
1591
|
"__stack-auto-translation-121": "Derni\xE8re utilisation",
|
|
1592
1592
|
"__stack-auto-translation-122": "Quitter",
|
|
@@ -1753,7 +1753,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1753
1753
|
"__stack-auto-translation-268": "Code QR d'authentification \xE0 plusieurs facteurs TOTP",
|
|
1754
1754
|
"__stack-auto-translation-269": "R\xE9essayer",
|
|
1755
1755
|
"__stack-auto-translation-27": "Annuler l'abonnement",
|
|
1756
|
-
"__stack-auto-translation-270": "
|
|
1756
|
+
"__stack-auto-translation-270": "Non disponible",
|
|
1757
1757
|
"__stack-auto-translation-271": "Irr\xE9couvrable",
|
|
1758
1758
|
"__stack-auto-translation-272": "Inconnu",
|
|
1759
1759
|
"__stack-auto-translation-273": "Non v\xE9rifi\xE9",
|
|
@@ -1775,7 +1775,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1775
1775
|
"__stack-auto-translation-288": "V\xE9rifier",
|
|
1776
1776
|
"__stack-auto-translation-289": "V\xE9rification...",
|
|
1777
1777
|
"__stack-auto-translation-29": "modifier",
|
|
1778
|
-
"__stack-auto-translation-290": "
|
|
1778
|
+
"__stack-auto-translation-290": "Voir",
|
|
1779
1779
|
"__stack-auto-translation-291": "Consultez vos forfaits actifs et vos achats.",
|
|
1780
1780
|
"__stack-auto-translation-292": "Annul\xE9e",
|
|
1781
1781
|
"__stack-auto-translation-293": "AVERTISSEMENT : Assurez-vous de faire confiance \xE0 l'application en ligne de commande, car elle aura acc\xE8s \xE0 votre compte. Si vous n'avez pas initi\xE9 cette demande, vous pouvez fermer cette page et l'ignorer. Nous ne vous enverrons jamais ce lien par courriel ou par tout autre moyen.",
|
|
@@ -1890,10 +1890,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1890
1890
|
"__stack-auto-translation-114": "Invitez un utilisateur \xE0 rejoindre votre \xE9quipe par e-mail",
|
|
1891
1891
|
"__stack-auto-translation-115": "Inviter un membre",
|
|
1892
1892
|
"__stack-auto-translation-116": "Inviter l'utilisateur",
|
|
1893
|
-
"__stack-auto-translation-117": "
|
|
1893
|
+
"__stack-auto-translation-117": "Facture",
|
|
1894
1894
|
"__stack-auto-translation-118": "Factures",
|
|
1895
1895
|
"__stack-auto-translation-119": "Adresse IP",
|
|
1896
|
-
"__stack-auto-translation-12": "
|
|
1896
|
+
"__stack-auto-translation-12": "Montant",
|
|
1897
1897
|
"__stack-auto-translation-120": "Rejoindre",
|
|
1898
1898
|
"__stack-auto-translation-121": "Derni\xE8re utilisation",
|
|
1899
1899
|
"__stack-auto-translation-122": "Quitter",
|
|
@@ -2060,7 +2060,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2060
2060
|
"__stack-auto-translation-268": "Code QR d'authentification \xE0 plusieurs facteurs TOTP",
|
|
2061
2061
|
"__stack-auto-translation-269": "R\xE9essayer",
|
|
2062
2062
|
"__stack-auto-translation-27": "Annuler l'abonnement",
|
|
2063
|
-
"__stack-auto-translation-270": "
|
|
2063
|
+
"__stack-auto-translation-270": "Indisponible",
|
|
2064
2064
|
"__stack-auto-translation-271": "Irr\xE9couvrable",
|
|
2065
2065
|
"__stack-auto-translation-272": "Inconnu",
|
|
2066
2066
|
"__stack-auto-translation-273": "Non v\xE9rifi\xE9",
|
|
@@ -2082,7 +2082,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2082
2082
|
"__stack-auto-translation-288": "V\xE9rifier",
|
|
2083
2083
|
"__stack-auto-translation-289": "V\xE9rification...",
|
|
2084
2084
|
"__stack-auto-translation-29": "modifier",
|
|
2085
|
-
"__stack-auto-translation-290": "
|
|
2085
|
+
"__stack-auto-translation-290": "Voir",
|
|
2086
2086
|
"__stack-auto-translation-291": "Consultez vos abonnements et achats actifs.",
|
|
2087
2087
|
"__stack-auto-translation-292": "Annul\xE9e",
|
|
2088
2088
|
"__stack-auto-translation-293": "AVERTISSEMENT : Assurez-vous de faire confiance \xE0 l'application en ligne de commande, car elle aura acc\xE8s \xE0 votre compte. Si vous n'avez pas initi\xE9 cette demande, vous pouvez fermer cette page et l'ignorer. Nous ne vous enverrons jamais ce lien par email ou par tout autre moyen.",
|
|
@@ -2197,10 +2197,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2197
2197
|
"__stack-auto-translation-114": "Invita un utente al tuo team tramite email",
|
|
2198
2198
|
"__stack-auto-translation-115": "Invita membro",
|
|
2199
2199
|
"__stack-auto-translation-116": "Invita Utente",
|
|
2200
|
-
"__stack-auto-translation-117": "
|
|
2200
|
+
"__stack-auto-translation-117": "Fattura",
|
|
2201
2201
|
"__stack-auto-translation-118": "Fatture",
|
|
2202
2202
|
"__stack-auto-translation-119": "Indirizzo IP",
|
|
2203
|
-
"__stack-auto-translation-12": "
|
|
2203
|
+
"__stack-auto-translation-12": "Importo",
|
|
2204
2204
|
"__stack-auto-translation-120": "Unisciti",
|
|
2205
2205
|
"__stack-auto-translation-121": "Ultimo utilizzo",
|
|
2206
2206
|
"__stack-auto-translation-122": "Abbandona",
|
|
@@ -2367,7 +2367,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2367
2367
|
"__stack-auto-translation-268": "Codice QR per l'autenticazione a pi\xF9 fattori TOTP",
|
|
2368
2368
|
"__stack-auto-translation-269": "Riprova",
|
|
2369
2369
|
"__stack-auto-translation-27": "Annulla abbonamento",
|
|
2370
|
-
"__stack-auto-translation-270": "
|
|
2370
|
+
"__stack-auto-translation-270": "Non disponibile",
|
|
2371
2371
|
"__stack-auto-translation-271": "Inesigibile",
|
|
2372
2372
|
"__stack-auto-translation-272": "Sconosciuto",
|
|
2373
2373
|
"__stack-auto-translation-273": "Non verificato",
|
|
@@ -2389,7 +2389,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2389
2389
|
"__stack-auto-translation-288": "Verifica",
|
|
2390
2390
|
"__stack-auto-translation-289": "Verifica in corso...",
|
|
2391
2391
|
"__stack-auto-translation-29": "modifica",
|
|
2392
|
-
"__stack-auto-translation-290": "
|
|
2392
|
+
"__stack-auto-translation-290": "Visualizza",
|
|
2393
2393
|
"__stack-auto-translation-291": "Visualizza i tuoi piani attivi e acquisti.",
|
|
2394
2394
|
"__stack-auto-translation-292": "Annullata",
|
|
2395
2395
|
"__stack-auto-translation-293": "ATTENZIONE: Assicurati di fidarti dell'applicazione da riga di comando, poich\xE9 avr\xE0 accesso al tuo account. Se non hai avviato tu questa richiesta, puoi chiudere questa pagina e ignorarla. Non ti invieremo mai questo link via email o con altri mezzi.",
|
|
@@ -2430,7 +2430,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2430
2430
|
"__stack-auto-translation-50": "Sessione Corrente",
|
|
2431
2431
|
"__stack-auto-translation-51": "Team attuale",
|
|
2432
2432
|
"__stack-auto-translation-52": "Zona pericolosa",
|
|
2433
|
-
"__stack-auto-translation-53": "
|
|
2433
|
+
"__stack-auto-translation-53": "Data",
|
|
2434
2434
|
"__stack-auto-translation-54": "Elimina account",
|
|
2435
2435
|
"__stack-auto-translation-55": "Elimina Account",
|
|
2436
2436
|
"__stack-auto-translation-56": "Elimina Passkey",
|
|
@@ -2504,10 +2504,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2504
2504
|
"__stack-auto-translation-114": "\u30E1\u30FC\u30EB\u3067\u30C1\u30FC\u30E0\u306B\u30E6\u30FC\u30B6\u30FC\u3092\u62DB\u5F85",
|
|
2505
2505
|
"__stack-auto-translation-115": "\u30E1\u30F3\u30D0\u30FC\u3092\u62DB\u5F85",
|
|
2506
2506
|
"__stack-auto-translation-116": "\u30E6\u30FC\u30B6\u30FC\u3092\u62DB\u5F85",
|
|
2507
|
-
"__stack-auto-translation-117": "
|
|
2507
|
+
"__stack-auto-translation-117": "\u8ACB\u6C42\u66F8",
|
|
2508
2508
|
"__stack-auto-translation-118": "\u8ACB\u6C42\u66F8",
|
|
2509
2509
|
"__stack-auto-translation-119": "IP\u30A2\u30C9\u30EC\u30B9",
|
|
2510
|
-
"__stack-auto-translation-12": "
|
|
2510
|
+
"__stack-auto-translation-12": "\u91D1\u984D",
|
|
2511
2511
|
"__stack-auto-translation-120": "\u53C2\u52A0",
|
|
2512
2512
|
"__stack-auto-translation-121": "\u6700\u7D42\u4F7F\u7528\u65E5\u6642",
|
|
2513
2513
|
"__stack-auto-translation-122": "\u9000\u51FA",
|
|
@@ -2606,7 +2606,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2606
2606
|
"__stack-auto-translation-206": "\u78BA\u8A8D\u30E1\u30FC\u30EB\u3092\u518D\u9001\u4FE1",
|
|
2607
2607
|
"__stack-auto-translation-207": "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u30EA\u30BB\u30C3\u30C8",
|
|
2608
2608
|
"__stack-auto-translation-208": "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u30EA\u30BB\u30C3\u30C8",
|
|
2609
|
-
"__stack-auto-translation-209": "
|
|
2609
|
+
"__stack-auto-translation-209": "\u904E\u53BB\u306E\u8ACB\u6C42\u66F8\u3068\u9818\u53CE\u66F8\u3092\u78BA\u8A8D\u3057\u307E\u3059\u3002",
|
|
2610
2610
|
"__stack-auto-translation-21": "\u30C1\u30FC\u30E0\u3092\u9000\u51FA\u3057\u3066\u3082\u3088\u308D\u3057\u3044\u3067\u3059\u304B\uFF1F",
|
|
2611
2611
|
"__stack-auto-translation-210": "\u53D6\u308A\u6D88\u3059",
|
|
2612
2612
|
"__stack-auto-translation-211": "\u4ED6\u306E\u3059\u3079\u3066\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u3092\u53D6\u308A\u6D88\u3059",
|
|
@@ -2674,7 +2674,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2674
2674
|
"__stack-auto-translation-268": "TOTP\u591A\u8981\u7D20\u8A8D\u8A3CQR\u30B3\u30FC\u30C9",
|
|
2675
2675
|
"__stack-auto-translation-269": "\u518D\u8A66\u884C",
|
|
2676
2676
|
"__stack-auto-translation-27": "\u30B5\u30D6\u30B9\u30AF\u30EA\u30D7\u30B7\u30E7\u30F3\u3092\u30AD\u30E3\u30F3\u30BB\u30EB",
|
|
2677
|
-
"__stack-auto-translation-270": "
|
|
2677
|
+
"__stack-auto-translation-270": "\u5229\u7528\u4E0D\u53EF",
|
|
2678
2678
|
"__stack-auto-translation-271": "\u56DE\u53CE\u4E0D\u80FD",
|
|
2679
2679
|
"__stack-auto-translation-272": "\u4E0D\u660E",
|
|
2680
2680
|
"__stack-auto-translation-273": "\u672A\u8A8D\u8A3C",
|
|
@@ -2696,7 +2696,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2696
2696
|
"__stack-auto-translation-288": "\u78BA\u8A8D",
|
|
2697
2697
|
"__stack-auto-translation-289": "\u78BA\u8A8D\u4E2D...",
|
|
2698
2698
|
"__stack-auto-translation-29": "\u5909\u66F4",
|
|
2699
|
-
"__stack-auto-translation-290": "
|
|
2699
|
+
"__stack-auto-translation-290": "\u8868\u793A",
|
|
2700
2700
|
"__stack-auto-translation-291": "\u6709\u52B9\u306A\u30D7\u30E9\u30F3\u3068\u8CFC\u5165\u5185\u5BB9\u3092\u8868\u793A\u3057\u307E\u3059\u3002",
|
|
2701
2701
|
"__stack-auto-translation-292": "\u7121\u52B9",
|
|
2702
2702
|
"__stack-auto-translation-293": "\u8B66\u544A\uFF1A\u30B3\u30DE\u30F3\u30C9\u30E9\u30A4\u30F3\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u304C\u3042\u306A\u305F\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u306B\u30A2\u30AF\u30BB\u30B9\u3059\u308B\u305F\u3081\u3001\u4FE1\u983C\u3067\u304D\u308B\u3053\u3068\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002\u3053\u306E\u30EA\u30AF\u30A8\u30B9\u30C8\u3092\u958B\u59CB\u3057\u3066\u3044\u306A\u3044\u5834\u5408\u306F\u3001\u3053\u306E\u30DA\u30FC\u30B8\u3092\u9589\u3058\u3066\u7121\u8996\u3057\u3066\u304F\u3060\u3055\u3044\u3002\u5F53\u793E\u304C\u3053\u306E\u30EA\u30F3\u30AF\u3092\u30E1\u30FC\u30EB\u3084\u305D\u306E\u4ED6\u306E\u624B\u6BB5\u3067\u9001\u4FE1\u3059\u308B\u3053\u3068\u306F\u6C7A\u3057\u3066\u3042\u308A\u307E\u305B\u3093\u3002",
|
|
@@ -2737,7 +2737,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2737
2737
|
"__stack-auto-translation-50": "\u73FE\u5728\u306E\u30BB\u30C3\u30B7\u30E7\u30F3",
|
|
2738
2738
|
"__stack-auto-translation-51": "\u73FE\u5728\u306E\u30C1\u30FC\u30E0",
|
|
2739
2739
|
"__stack-auto-translation-52": "\u5371\u967A\u30A8\u30EA\u30A2",
|
|
2740
|
-
"__stack-auto-translation-53": "
|
|
2740
|
+
"__stack-auto-translation-53": "\u65E5\u4ED8",
|
|
2741
2741
|
"__stack-auto-translation-54": "\u30A2\u30AB\u30A6\u30F3\u30C8\u524A\u9664",
|
|
2742
2742
|
"__stack-auto-translation-55": "\u30A2\u30AB\u30A6\u30F3\u30C8\u524A\u9664",
|
|
2743
2743
|
"__stack-auto-translation-56": "\u30D1\u30B9\u30AD\u30FC\u3092\u524A\u9664",
|
|
@@ -2811,10 +2811,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2811
2811
|
"__stack-auto-translation-114": "\uC774\uBA54\uC77C\uB85C \uD300\uC5D0 \uC0AC\uC6A9\uC790 \uCD08\uB300\uD558\uAE30",
|
|
2812
2812
|
"__stack-auto-translation-115": "\uBA64\uBC84 \uCD08\uB300",
|
|
2813
2813
|
"__stack-auto-translation-116": "\uC0AC\uC6A9\uC790 \uCD08\uB300",
|
|
2814
|
-
"__stack-auto-translation-117": "
|
|
2814
|
+
"__stack-auto-translation-117": "\uCCAD\uAD6C\uC11C",
|
|
2815
2815
|
"__stack-auto-translation-118": "\uCCAD\uAD6C\uC11C",
|
|
2816
2816
|
"__stack-auto-translation-119": "IP \uC8FC\uC18C",
|
|
2817
|
-
"__stack-auto-translation-12": "
|
|
2817
|
+
"__stack-auto-translation-12": "\uAE08\uC561",
|
|
2818
2818
|
"__stack-auto-translation-120": "\uCC38\uC5EC",
|
|
2819
2819
|
"__stack-auto-translation-121": "\uCD5C\uADFC \uC0AC\uC6A9",
|
|
2820
2820
|
"__stack-auto-translation-122": "\uB098\uAC00\uAE30",
|
|
@@ -2913,7 +2913,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2913
2913
|
"__stack-auto-translation-206": "\uC778\uC99D \uC774\uBA54\uC77C \uC7AC\uC804\uC1A1",
|
|
2914
2914
|
"__stack-auto-translation-207": "\uBE44\uBC00\uBC88\uD638 \uC7AC\uC124\uC815",
|
|
2915
2915
|
"__stack-auto-translation-208": "\uBE44\uBC00\uBC88\uD638 \uC7AC\uC124\uC815",
|
|
2916
|
-
"__stack-auto-translation-209": "
|
|
2916
|
+
"__stack-auto-translation-209": "\uACFC\uAC70 \uCCAD\uAD6C\uC11C \uBC0F \uC601\uC218\uC99D\uC744 \uD655\uC778\uD558\uC138\uC694.",
|
|
2917
2917
|
"__stack-auto-translation-21": "\uC815\uB9D0\uB85C \uD300\uC744 \uB098\uAC00\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?",
|
|
2918
2918
|
"__stack-auto-translation-210": "\uCDE8\uC18C",
|
|
2919
2919
|
"__stack-auto-translation-211": "\uB2E4\uB978 \uBAA8\uB4E0 \uC138\uC158 \uCDE8\uC18C",
|
|
@@ -2981,7 +2981,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2981
2981
|
"__stack-auto-translation-268": "TOTP \uB2E4\uC911 \uC778\uC99D QR \uCF54\uB4DC",
|
|
2982
2982
|
"__stack-auto-translation-269": "\uB2E4\uC2DC \uC2DC\uB3C4",
|
|
2983
2983
|
"__stack-auto-translation-27": "\uAD6C\uB3C5 \uCDE8\uC18C",
|
|
2984
|
-
"__stack-auto-translation-270": "
|
|
2984
|
+
"__stack-auto-translation-270": "\uC0AC\uC6A9 \uBD88\uAC00",
|
|
2985
2985
|
"__stack-auto-translation-271": "\uD68C\uC218\uBD88\uAC00",
|
|
2986
2986
|
"__stack-auto-translation-272": "\uC54C \uC218 \uC5C6\uC74C",
|
|
2987
2987
|
"__stack-auto-translation-273": "\uBBF8\uC778\uC99D",
|
|
@@ -3003,7 +3003,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3003
3003
|
"__stack-auto-translation-288": "\uC778\uC99D",
|
|
3004
3004
|
"__stack-auto-translation-289": "\uC778\uC99D \uC911...",
|
|
3005
3005
|
"__stack-auto-translation-29": "\uBCC0\uACBD",
|
|
3006
|
-
"__stack-auto-translation-290": "
|
|
3006
|
+
"__stack-auto-translation-290": "\uBCF4\uAE30",
|
|
3007
3007
|
"__stack-auto-translation-291": "\uD65C\uC131 \uD50C\uB79C \uBC0F \uAD6C\uB9E4 \uB0B4\uC5ED\uC744 \uD655\uC778\uD558\uC138\uC694.",
|
|
3008
3008
|
"__stack-auto-translation-292": "\uBB34\uD6A8",
|
|
3009
3009
|
"__stack-auto-translation-293": "\uACBD\uACE0: \uBA85\uB839\uC904 \uC560\uD50C\uB9AC\uCF00\uC774\uC158\uC744 \uC2E0\uB8B0\uD560 \uC218 \uC788\uB294\uC9C0 \uD655\uC778\uD558\uC138\uC694. \uD574\uB2F9 \uC571\uC774 \uACC4\uC815\uC5D0 \uC811\uADFC\uD560 \uC218 \uC788\uAC8C \uB429\uB2C8\uB2E4. \uC774 \uC694\uCCAD\uC744 \uC2DC\uC791\uD558\uC9C0 \uC54A\uC558\uB2E4\uBA74 \uC774 \uD398\uC774\uC9C0\uB97C \uB2EB\uACE0 \uBB34\uC2DC\uD558\uC138\uC694. \uB2F9\uC0AC\uB294 \uC808\uB300 \uC774 \uB9C1\uD06C\uB97C \uC774\uBA54\uC77C\uC774\uB098 \uB2E4\uB978 \uBC29\uBC95\uC73C\uB85C \uBCF4\uB0B4\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.",
|
|
@@ -3044,7 +3044,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3044
3044
|
"__stack-auto-translation-50": "\uD604\uC7AC \uC138\uC158",
|
|
3045
3045
|
"__stack-auto-translation-51": "\uD604\uC7AC \uD300",
|
|
3046
3046
|
"__stack-auto-translation-52": "\uC704\uD5D8 \uAD6C\uC5ED",
|
|
3047
|
-
"__stack-auto-translation-53": "
|
|
3047
|
+
"__stack-auto-translation-53": "\uB0A0\uC9DC",
|
|
3048
3048
|
"__stack-auto-translation-54": "\uACC4\uC815 \uC0AD\uC81C",
|
|
3049
3049
|
"__stack-auto-translation-55": "\uACC4\uC815 \uC0AD\uC81C",
|
|
3050
3050
|
"__stack-auto-translation-56": "\uD328\uC2A4\uD0A4 \uC0AD\uC81C",
|
|
@@ -3118,10 +3118,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3118
3118
|
"__stack-auto-translation-114": "Convide um usu\xE1rio para sua equipe por e-mail",
|
|
3119
3119
|
"__stack-auto-translation-115": "Convidar membro",
|
|
3120
3120
|
"__stack-auto-translation-116": "Convidar Usu\xE1rio",
|
|
3121
|
-
"__stack-auto-translation-117": "
|
|
3121
|
+
"__stack-auto-translation-117": "Fatura",
|
|
3122
3122
|
"__stack-auto-translation-118": "Faturas",
|
|
3123
3123
|
"__stack-auto-translation-119": "Endere\xE7o IP",
|
|
3124
|
-
"__stack-auto-translation-12": "
|
|
3124
|
+
"__stack-auto-translation-12": "Valor",
|
|
3125
3125
|
"__stack-auto-translation-120": "Entrar",
|
|
3126
3126
|
"__stack-auto-translation-121": "\xDAltimo uso",
|
|
3127
3127
|
"__stack-auto-translation-122": "Sair",
|
|
@@ -3288,7 +3288,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3288
3288
|
"__stack-auto-translation-268": "C\xF3digo QR de autentica\xE7\xE3o de m\xFAltiplos fatores TOTP",
|
|
3289
3289
|
"__stack-auto-translation-269": "Tentar novamente",
|
|
3290
3290
|
"__stack-auto-translation-27": "Cancelar assinatura",
|
|
3291
|
-
"__stack-auto-translation-270": "
|
|
3291
|
+
"__stack-auto-translation-270": "Indispon\xEDvel",
|
|
3292
3292
|
"__stack-auto-translation-271": "Incobr\xE1vel",
|
|
3293
3293
|
"__stack-auto-translation-272": "Desconhecido",
|
|
3294
3294
|
"__stack-auto-translation-273": "N\xE3o verificado",
|
|
@@ -3310,7 +3310,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3310
3310
|
"__stack-auto-translation-288": "Verificar",
|
|
3311
3311
|
"__stack-auto-translation-289": "Verificando...",
|
|
3312
3312
|
"__stack-auto-translation-29": "alterar",
|
|
3313
|
-
"__stack-auto-translation-290": "
|
|
3313
|
+
"__stack-auto-translation-290": "Visualizar",
|
|
3314
3314
|
"__stack-auto-translation-291": "Veja seus planos ativos e compras.",
|
|
3315
3315
|
"__stack-auto-translation-292": "Anulada",
|
|
3316
3316
|
"__stack-auto-translation-293": "AVISO: Certifique-se de confiar no aplicativo de linha de comando, pois ele ter\xE1 acesso \xE0 sua conta. Se voc\xEA n\xE3o iniciou esta solicita\xE7\xE3o, voc\xEA pode fechar esta p\xE1gina e ignor\xE1-la. Nunca enviaremos este link por email ou qualquer outro meio.",
|
|
@@ -3351,7 +3351,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3351
3351
|
"__stack-auto-translation-50": "Sess\xE3o Atual",
|
|
3352
3352
|
"__stack-auto-translation-51": "Equipe atual",
|
|
3353
3353
|
"__stack-auto-translation-52": "Zona de perigo",
|
|
3354
|
-
"__stack-auto-translation-53": "
|
|
3354
|
+
"__stack-auto-translation-53": "Data",
|
|
3355
3355
|
"__stack-auto-translation-54": "Excluir conta",
|
|
3356
3356
|
"__stack-auto-translation-55": "Excluir Conta",
|
|
3357
3357
|
"__stack-auto-translation-56": "Excluir Chave de acesso",
|
|
@@ -3425,10 +3425,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3425
3425
|
"__stack-auto-translation-114": "Convidar um utilizador para a sua equipa atrav\xE9s de e-mail",
|
|
3426
3426
|
"__stack-auto-translation-115": "Convidar membro",
|
|
3427
3427
|
"__stack-auto-translation-116": "Convidar Utilizador",
|
|
3428
|
-
"__stack-auto-translation-117": "
|
|
3428
|
+
"__stack-auto-translation-117": "Fatura",
|
|
3429
3429
|
"__stack-auto-translation-118": "Faturas",
|
|
3430
3430
|
"__stack-auto-translation-119": "Endere\xE7o IP",
|
|
3431
|
-
"__stack-auto-translation-12": "
|
|
3431
|
+
"__stack-auto-translation-12": "Valor",
|
|
3432
3432
|
"__stack-auto-translation-120": "Juntar",
|
|
3433
3433
|
"__stack-auto-translation-121": "\xDAltima utiliza\xE7\xE3o",
|
|
3434
3434
|
"__stack-auto-translation-122": "Sair",
|
|
@@ -3527,7 +3527,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3527
3527
|
"__stack-auto-translation-206": "Reenviar email de verifica\xE7\xE3o",
|
|
3528
3528
|
"__stack-auto-translation-207": "Redefinir Palavra-passe",
|
|
3529
3529
|
"__stack-auto-translation-208": "Repor a Sua Palavra-passe",
|
|
3530
|
-
"__stack-auto-translation-209": "
|
|
3530
|
+
"__stack-auto-translation-209": "Rever faturas e recibos anteriores.",
|
|
3531
3531
|
"__stack-auto-translation-21": "Tem a certeza de que deseja sair da equipa?",
|
|
3532
3532
|
"__stack-auto-translation-210": "Revogar",
|
|
3533
3533
|
"__stack-auto-translation-211": "Revogar Todas as Outras Sess\xF5es",
|
|
@@ -3595,7 +3595,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3595
3595
|
"__stack-auto-translation-268": "C\xF3digo QR de autentica\xE7\xE3o multifator TOTP",
|
|
3596
3596
|
"__stack-auto-translation-269": "Tentar Novamente",
|
|
3597
3597
|
"__stack-auto-translation-27": "Cancelar subscri\xE7\xE3o",
|
|
3598
|
-
"__stack-auto-translation-270": "
|
|
3598
|
+
"__stack-auto-translation-270": "Indispon\xEDvel",
|
|
3599
3599
|
"__stack-auto-translation-271": "Incobr\xE1vel",
|
|
3600
3600
|
"__stack-auto-translation-272": "Desconhecido",
|
|
3601
3601
|
"__stack-auto-translation-273": "N\xE3o verificado",
|
|
@@ -3617,7 +3617,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3617
3617
|
"__stack-auto-translation-288": "Verificar",
|
|
3618
3618
|
"__stack-auto-translation-289": "A verificar...",
|
|
3619
3619
|
"__stack-auto-translation-29": "alterar",
|
|
3620
|
-
"__stack-auto-translation-290": "
|
|
3620
|
+
"__stack-auto-translation-290": "Ver",
|
|
3621
3621
|
"__stack-auto-translation-291": "Ver os seus planos ativos e compras.",
|
|
3622
3622
|
"__stack-auto-translation-292": "Anulada",
|
|
3623
3623
|
"__stack-auto-translation-293": "AVISO: Certifique-se de que confia na aplica\xE7\xE3o de linha de comandos, pois esta ter\xE1 acesso \xE0 sua conta. Se n\xE3o iniciou este pedido, pode fechar esta p\xE1gina e ignor\xE1-lo. Nunca enviaremos este link por email ou qualquer outro meio.",
|
|
@@ -3658,7 +3658,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3658
3658
|
"__stack-auto-translation-50": "Sess\xE3o Atual",
|
|
3659
3659
|
"__stack-auto-translation-51": "Equipa atual",
|
|
3660
3660
|
"__stack-auto-translation-52": "Zona de perigo",
|
|
3661
|
-
"__stack-auto-translation-53": "
|
|
3661
|
+
"__stack-auto-translation-53": "Data",
|
|
3662
3662
|
"__stack-auto-translation-54": "Eliminar conta",
|
|
3663
3663
|
"__stack-auto-translation-55": "Eliminar Conta",
|
|
3664
3664
|
"__stack-auto-translation-56": "Eliminar Chave de Acesso",
|
|
@@ -3732,10 +3732,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3732
3732
|
"__stack-auto-translation-114": "\u901A\u8FC7\u7535\u5B50\u90AE\u4EF6\u9080\u8BF7\u7528\u6237\u52A0\u5165\u60A8\u7684\u56E2\u961F",
|
|
3733
3733
|
"__stack-auto-translation-115": "\u9080\u8BF7\u6210\u5458",
|
|
3734
3734
|
"__stack-auto-translation-116": "\u9080\u8BF7\u7528\u6237",
|
|
3735
|
-
"__stack-auto-translation-117": "
|
|
3735
|
+
"__stack-auto-translation-117": "\u53D1\u7968",
|
|
3736
3736
|
"__stack-auto-translation-118": "\u53D1\u7968",
|
|
3737
3737
|
"__stack-auto-translation-119": "IP \u5730\u5740",
|
|
3738
|
-
"__stack-auto-translation-12": "
|
|
3738
|
+
"__stack-auto-translation-12": "\u91D1\u989D",
|
|
3739
3739
|
"__stack-auto-translation-120": "\u52A0\u5165",
|
|
3740
3740
|
"__stack-auto-translation-121": "\u4E0A\u6B21\u4F7F\u7528",
|
|
3741
3741
|
"__stack-auto-translation-122": "\u79BB\u5F00",
|
|
@@ -3902,7 +3902,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3902
3902
|
"__stack-auto-translation-268": "TOTP \u591A\u91CD\u8EAB\u4EFD\u8BA4\u8BC1\u4E8C\u7EF4\u7801",
|
|
3903
3903
|
"__stack-auto-translation-269": "\u91CD\u8BD5",
|
|
3904
3904
|
"__stack-auto-translation-27": "\u53D6\u6D88\u8BA2\u9605",
|
|
3905
|
-
"__stack-auto-translation-270": "
|
|
3905
|
+
"__stack-auto-translation-270": "\u4E0D\u53EF\u7528",
|
|
3906
3906
|
"__stack-auto-translation-271": "\u65E0\u6CD5\u6536\u6B3E",
|
|
3907
3907
|
"__stack-auto-translation-272": "\u672A\u77E5",
|
|
3908
3908
|
"__stack-auto-translation-273": "\u672A\u9A8C\u8BC1",
|
|
@@ -3924,7 +3924,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3924
3924
|
"__stack-auto-translation-288": "\u9A8C\u8BC1",
|
|
3925
3925
|
"__stack-auto-translation-289": "\u9A8C\u8BC1\u4E2D...",
|
|
3926
3926
|
"__stack-auto-translation-29": "\u66F4\u6539",
|
|
3927
|
-
"__stack-auto-translation-290": "
|
|
3927
|
+
"__stack-auto-translation-290": "\u67E5\u770B",
|
|
3928
3928
|
"__stack-auto-translation-291": "\u67E5\u770B\u60A8\u7684\u6D3B\u52A8\u5957\u9910\u548C\u8D2D\u4E70\u8BB0\u5F55\u3002",
|
|
3929
3929
|
"__stack-auto-translation-292": "\u4F5C\u5E9F",
|
|
3930
3930
|
"__stack-auto-translation-293": "\u8B66\u544A\uFF1A\u8BF7\u786E\u4FDD\u60A8\u4FE1\u4EFB\u8BE5\u547D\u4EE4\u884C\u5E94\u7528\u7A0B\u5E8F\uFF0C\u56E0\u4E3A\u5B83\u5C06\u83B7\u5F97\u60A8\u8D26\u6237\u7684\u8BBF\u95EE\u6743\u9650\u3002\u5982\u679C\u60A8\u672A\u53D1\u8D77\u6B64\u8BF7\u6C42\uFF0C\u53EF\u4EE5\u5173\u95ED\u6B64\u9875\u9762\u5E76\u5FFD\u7565\u5B83\u3002\u6211\u4EEC\u7EDD\u4E0D\u4F1A\u901A\u8FC7\u7535\u5B50\u90AE\u7BB1\u6216\u5176\u4ED6\u65B9\u5F0F\u5411\u60A8\u53D1\u9001\u6B64\u94FE\u63A5\u3002",
|
|
@@ -3965,7 +3965,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3965
3965
|
"__stack-auto-translation-50": "\u5F53\u524D\u4F1A\u8BDD",
|
|
3966
3966
|
"__stack-auto-translation-51": "\u5F53\u524D\u56E2\u961F",
|
|
3967
3967
|
"__stack-auto-translation-52": "\u5371\u9669\u533A\u57DF",
|
|
3968
|
-
"__stack-auto-translation-53": "
|
|
3968
|
+
"__stack-auto-translation-53": "\u65E5\u671F",
|
|
3969
3969
|
"__stack-auto-translation-54": "\u5220\u9664\u8D26\u6237",
|
|
3970
3970
|
"__stack-auto-translation-55": "\u5220\u9664\u8D26\u6237",
|
|
3971
3971
|
"__stack-auto-translation-56": "\u5220\u9664\u5BC6\u94A5",
|
|
@@ -4039,10 +4039,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
4039
4039
|
"__stack-auto-translation-114": "\u900F\u904E\u96FB\u5B50\u90F5\u4EF6\u9080\u8ACB\u4F7F\u7528\u8005\u52A0\u5165\u60A8\u7684\u5718\u968A",
|
|
4040
4040
|
"__stack-auto-translation-115": "\u9080\u8ACB\u6210\u54E1",
|
|
4041
4041
|
"__stack-auto-translation-116": "\u9080\u8ACB\u7528\u6236",
|
|
4042
|
-
"__stack-auto-translation-117": "
|
|
4042
|
+
"__stack-auto-translation-117": "\u767C\u7968",
|
|
4043
4043
|
"__stack-auto-translation-118": "\u767C\u7968",
|
|
4044
4044
|
"__stack-auto-translation-119": "IP \u4F4D\u5740",
|
|
4045
|
-
"__stack-auto-translation-12": "
|
|
4045
|
+
"__stack-auto-translation-12": "\u91D1\u984D",
|
|
4046
4046
|
"__stack-auto-translation-120": "\u52A0\u5165",
|
|
4047
4047
|
"__stack-auto-translation-121": "\u6700\u5F8C\u4F7F\u7528",
|
|
4048
4048
|
"__stack-auto-translation-122": "\u96E2\u958B",
|
|
@@ -4209,7 +4209,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
4209
4209
|
"__stack-auto-translation-268": "TOTP \u591A\u91CD\u8981\u7D20\u9A57\u8B49 QR \u78BC",
|
|
4210
4210
|
"__stack-auto-translation-269": "\u91CD\u8A66",
|
|
4211
4211
|
"__stack-auto-translation-27": "\u53D6\u6D88\u8A02\u95B1",
|
|
4212
|
-
"__stack-auto-translation-270": "
|
|
4212
|
+
"__stack-auto-translation-270": "\u7121\u6CD5\u4F7F\u7528",
|
|
4213
4213
|
"__stack-auto-translation-271": "\u7121\u6CD5\u6536\u6B3E",
|
|
4214
4214
|
"__stack-auto-translation-272": "\u672A\u77E5",
|
|
4215
4215
|
"__stack-auto-translation-273": "\u672A\u9A57\u8B49",
|
|
@@ -4231,7 +4231,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
4231
4231
|
"__stack-auto-translation-288": "\u9A57\u8B49",
|
|
4232
4232
|
"__stack-auto-translation-289": "\u9A57\u8B49\u4E2D...",
|
|
4233
4233
|
"__stack-auto-translation-29": "\u8B8A\u66F4",
|
|
4234
|
-
"__stack-auto-translation-290": "
|
|
4234
|
+
"__stack-auto-translation-290": "\u6AA2\u8996",
|
|
4235
4235
|
"__stack-auto-translation-291": "\u6AA2\u8996\u60A8\u7684\u6709\u6548\u65B9\u6848\u8207\u8CFC\u8CB7\u9805\u76EE\u3002",
|
|
4236
4236
|
"__stack-auto-translation-292": "\u4F5C\u5EE2",
|
|
4237
4237
|
"__stack-auto-translation-293": "\u8B66\u544A\uFF1A\u8ACB\u78BA\u4FDD\u60A8\u4FE1\u4EFB\u8A72\u547D\u4EE4\u884C\u61C9\u7528\u7A0B\u5F0F\uFF0C\u56E0\u70BA\u5B83\u5C07\u7372\u53D6\u60A8\u5E33\u6236\u7684\u8A2A\u554F\u6B0A\u9650\u3002\u5982\u679C\u60A8\u6C92\u6709\u767C\u8D77\u6B64\u8ACB\u6C42\uFF0C\u60A8\u53EF\u4EE5\u95DC\u9589\u6B64\u9801\u9762\u4E26\u5FFD\u7565\u5B83\u3002\u6211\u5011\u7D55\u4E0D\u6703\u901A\u904E\u96FB\u5B50\u90F5\u4EF6\u6216\u5176\u4ED6\u65B9\u5F0F\u5411\u60A8\u767C\u9001\u6B64\u9023\u7D50\u3002",
|
|
@@ -4272,7 +4272,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
4272
4272
|
"__stack-auto-translation-50": "\u76EE\u524D\u5DE5\u4F5C\u968E\u6BB5",
|
|
4273
4273
|
"__stack-auto-translation-51": "\u76EE\u524D\u5718\u968A",
|
|
4274
4274
|
"__stack-auto-translation-52": "\u5371\u96AA\u5340\u57DF",
|
|
4275
|
-
"__stack-auto-translation-53": "
|
|
4275
|
+
"__stack-auto-translation-53": "\u65E5\u671F",
|
|
4276
4276
|
"__stack-auto-translation-54": "\u522A\u9664\u5E33\u865F",
|
|
4277
4277
|
"__stack-auto-translation-55": "\u522A\u9664\u5E33\u6236",
|
|
4278
4278
|
"__stack-auto-translation-56": "\u522A\u9664\u901A\u884C\u91D1\u9470",
|